• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Embedded Software » BIOS » BIOS forum » being able to decode teh log_printf without CCS for C6x
Share
BIOS
  • Forum
  • Announcements
Options
  • Subscribe via RSS

being able to decode teh log_printf without CCS for C6x

being able to decode teh log_printf without CCS for C6x

This question is answered
Mohsen Khayami
Posted by Mohsen Khayami
on Feb 11 2010 18:15 PM
Genius13245 points

Champs

 My customer is not using CCS but is trying to decode the log_printf stuff. I did send him the below web site but it still does not cleary specify what he is looking for. Please answer his question

http://tiexpressdsp.com/wiki/index.php?title=Accessing_DSP_BIOS_logs_without_JTAG

 

     I have already read (and commented on) this article.   Specifically, I have no problem "accessing" these logs.  The problem is that there is no documentation of how to interpret them.   The article explains the format, which I see clearly:  each entry consists of a sequence number followed by three words of data.   However, I can find no explanation anywhere of what those three words of data mean.  Since the GUIs do interpret this data, it is clear that someone in your organization knows the answer to this question.

Regards

Mohsen


 
Report Abuse
  • Reply
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
All Replies
  • Robert Tivy
    Posted by Robert Tivy
    on Feb 11 2010 18:31 PM
    Genius11090 points

    Perhaps your customer is not familiar with standard "printf" terminology.  The doc in that link does explain all the 4 words in a LOG entry.  It mentions that the 2nd and 3rd words are arguments to be used in conjunction with the format string (the 4th word).  If you understand printf() in general, that explanation says all it needs to say.

    Regards,

    - Rob

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Robert Tivy
    Posted by Robert Tivy
    on Feb 11 2010 19:12 PM
    Genius11090 points

    Expanding on my terse reply above...

    For illustration purposes I'll show how a C program on the host could decode this:

    struct LOG_event {
        UInt32 seq;
        UInt32 arg0;
        UInt32 arg1;
        UInt32 formatPtr;
    };

    struct LOG_event log;
    char format[];
    int i = 0;


    `copy current LOG entry into log`;
    do {
        chr = `read address (formatPtr+i) from COFF file`;

        format[i] = chr;
        i++;

    } while (chr != '\0');

    printf(format, log.arg0, log.arg1);

    The statements in `backticks` above are loosely specified because I'm not familiar with the methods (i.e., support APIs) with which to illustrate, but there are utilities (libraries) available with which to read COFF files.

    Regards,

    - Rob

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Mohsen Khayami
    Posted by Mohsen Khayami
    on Feb 11 2010 19:38 PM
    Verified Answer
    Verified by David Friedland
    Genius13245 points

    Robert

    Thanks that is a great example it make sense. Maybe we should add this to the wiki.

    Regards

    Mohsen


     
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
TI E2E™ Community
  • Support Forums
  • Blogs
  • Videos
  • Groups
  • Site Support & Feedback
  • Settings
TI E2E™ Community Groups
  • TI University Program
  • Make the Switch
  • Microcontroller Projects
  • Motor Drive & Control
Other Communities
  • Deyisupport
  • Designsomething.org
  • beagleboard.org
  • TI on Element 14
  • TI on TechXchangeSM
Other Technical & Support Resources
  • WEBENCH® Design Center
  • Product Information Centers
  • Technical Documents
  • TI Design Network
  • TI Technical Articles
  • TI Training

All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
embedded processors, along with software, tools and the industry’s largest sales/support staff.

© Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy Policy | Terms of Use