• 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 » Digital Signal Processors (DSP) » OMAP™ Processors » OMAP-L13x, AM1x and C674x Processors Forum » Can POOL_alloc call in low priority task block high priority task execution
Share
OMAP™ Processors
  • Forums
  • Announcements
Options
  • Subscribe via RSS
Resources
  • OMAP-L1x DSP+ARM9™-based Processors Product Folder
  • OMAP3525/30 DSP+ARM Cortex™-A8-based SOCs Product Folder

  • Top OMAPL Wiki Links
  • OMAPL3x Schematic Review Checklist
  • OMAPL13x Boot resources

  • OMAPL Document Resources
  • OMAPL137 Technical reference manual
  • OMAPL138 Technical reference manual
  • OMAPL Boot loader App Notes
  • Forums

    Can POOL_alloc call in low priority task block high priority task execution

    This question is answered
    barry mohan
    Posted by barry mohan
    on Aug 08 2012 08:01 AM
    Intellectual580 points

    Hi E2Er's

    We are working on OMAPL138 and have a low priority task which passes information (approx 42 Uint32's) from DSP->ARM every 1 second as follows


    LOWEST PRIORITY TASK
    {
        while(1)
        {
        TSK_sleep(1000);
        if(MSGQ_INVALIDMSGQ != gppQueueForLog)
        {
            msgqStatus = POOL_alloc () ;                
            if (msgqStatus != SYS_OK)
            {
                continue;        
            }
        
            msgqStatus = MSGQ_alloc();
            if (msgqStatus != SYS_OK)
            {      
                POOL_free();
                continue;    
            }
            else
            {
                memcpy();        
                HAL_cacheWbInv();

                MSGQ_setMsgId();                                        
                msgqStatus = MSGQ_put();
                if (msgqStatus != SYS_OK)
                {
                    POOL_free();
                    MSGQ_free();    
                }
                else
                {
                    // POOL_free() from ARM side in response to message           
                }
            }    
        }    
        }
    }

    What we are finding is that if we start getting POOL_alloc failures our higher priority Tasks appear to be starved of CPU time ? The other tasks do not rely on any of the information or processing of this low priority task (it's a built on test thread).

    If we run our application without this thread all is well. If we increase TSK_sleep(1000) to TSK_sleep(3000) again all is well.

    We don't understand how the higher priority tasks are being starved here?

    Is POOL_alloc() somehow blocking out the other higher pririty tasks when we are waiting for msgqStatus ? Any other ideas welcome.

    BR

    Barry

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    All Replies
    • Mariana
      Posted by Mariana
      on Aug 08 2012 09:27 AM
      Verified Answer
      Verified by barry mohan
      Mastermind24340 points

      Hi Barry,

      Ideally a low priority task should never interfere with a higher priority task. There are some exceptions, like if the low priority task disable/enable interrupts during it's execution, that will disable the scheduler and the higher priority task will have to wait. Pool_alloc allocates memory, copies memory, etc... the low level functions used for that intrinsically disable interrupts to prevent corruption.

      Regards,

      - Mariana

       

      ---------------------------------------------------------------------------------------------------------
      Please click the Verify Answer button on this post if it answers your question.
      --------------------------------------------------------------------------------------------------------- 

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • barry mohan
      Posted by barry mohan
      on Aug 09 2012 08:48 AM
      Intellectual580 points

      Hi Marina

      That does explain what we are seeing. A quick follow up question - does the '-mi' (-interrupt threashhold) within build options of CCS apply to the lower level functions ??

      BR

      Barry

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • Mariana
      Posted by Mariana
      on Aug 09 2012 09:06 AM
      Mastermind24340 points

      Yes, it does.

      An interesting article about the -mi:

      http://processors.wiki.ti.com/index.php/Interrupts_Disabled_by_C6000_Compiler

       

      - Mariana

       

      ---------------------------------------------------------------------------------------------------------
      Please click the Verify Answer button on this post if it answers your question.
      --------------------------------------------------------------------------------------------------------- 

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • barry mohan
      Posted by barry mohan
      on Aug 13 2012 03:04 AM
      Verified Answer
      Verified by barry mohan
      Intellectual580 points

      Thanks Mariana

      Very useful information......

      BR

      Barry

      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