NOTICE: The Processors Wiki will End-of-Life on January 15, 2021. It is recommended to download any files or other content you may need that are hosted on processors.wiki.ti.com. The site is now set to read only.

OMAP35x and AM/DM37x Debug Steps for Idle Entry

From Texas Instruments Wiki
Jump to: navigation, search

MPU[edit]

The first step is to get the MPU to go into idle. You can check the PM_PREPWSTST_MPU.LASTPOWERSTATEENTERED bit field. This bit field will show what the MPU power state was for the previous idle state. This register can be cleared so that you can keep track of the MPU idle states. The MPU power domain must be active in order to clear it and when cleared it gets set to the “on” state.

In order for the MPU to go into idle there cannot be a pending interrupt or a pending wake up event. The most common wake up event is a wake up dependency with another domain.

The following steps can be used when debugging the MPU power domain not going into idle. It is recommended to dump the necessary registers prior to the wait for interrupt instruction when you want the MPU to go into retention or to add a long loop at this same location and then connect with a debugger.

  1. Verify all interrupts are cleared. Check the INTC registers to see what IRQ is pending. Be sure to service this IRQ by clearing the IRQSTATUS in the module’s registers.
  2. Check the PM_WKDEP_MPU register to make sure that only the domains desired are enabled. In most cases only the WKUP domain is enabled.

When the MPU is in idle (wait for interrupt instruction) then the MPU will need an interrupt and a wake up event to pull it out of idle. The wake up event is needed so that the PRCM will turn back on the clocks and power. The interrupt is needed so that the MPU will exit the wait for interrupt (WFI) instruction. If a wake up event occurs with no associated interrupt then the clocks and power will turn back on but the MPU will remain sitting in the WFI instruction.

CORE[edit]

The CORE power domain is more difficult to get into idle due to the number of peripherals. Similar to debugging the MPU, it is recommended to dump the necessary registers prior to the wait for interrupt instruction when you want the CORE to go into idle or to add a long loop at this same location and then connect with a debugger. You can check the PM_PREPWSTST_CORE.LASTPOWERSTATEENTERED bit field. This bit field will show what the CORE power state was during the previous idle state. This register can be cleared so that you can keep track of the CORE idle states. The CORE power domain must be active in order to clear it and when cleared it gets set to the “on” state. The following steps should be taken when debugging the CORE power domain not entering retention.

  1. Make sure all pending wake up events have been serviced by clearing the PM_WKST registers.
  2. Check the CM_IDLEST registers – this may be a quick indicator to let you know which interface clock is remaining on. Even though the CM_IDLEST registers show all peripherals inaccessible, it does not mean they are all in idle. But if one of the peripherals indicates it is accessible then it is definitely not in idle.
  3. Check the CM_IDLEST_CKGEN. All clocks except the DPLL3 should be in bypass. In some cases the 96MHz is not in bypass mode. This will indicate that a user of this clock is not idled. This will help narrow down which driver to look at since only serial interfaces use this clock. Note that the DPLL3 status will show as being locked because when you dumped this code the hardware has not placed the DPLL3 into bypass yet.
  4. If all of the previous checks did not fix the issue then the next thing to do is to look into each of the drivers that are being used and check the SYSCONFIG register within the module’s register set. You want to make sure the IDLEMODE is not set to “no idle”. It can be set to “smart idle” or “force idle”.

Checklist for CORE Power Domain Idle Entry[edit]

The CORE power domain on OMAP3 has 4 CORE clock domains:

  • CORE_L3
  • CORE_L4
  • CORE_D2D
  • CORE_CM


Each CORE clock domain needs to enter idle before the CORE power domain can enter any of the low power states.

Each clock domain has multiple dependencies with surrounding domains. It is required that all domains with hardware sleep dependencies are idled before the CORE power down transition can happen. A domain is considered idled when the initiators are mute (in standby) and the targets are idled. Initiators are masters and can generate traffic and targets are slaves and cannot generate traffic.

The following table shows the dependent domains for the CORE_L3 and CORE_L4 and whether the domain contains initiators or targets:



Domain
Initiator
Target
CORE L3
MPU


IVA2


SGX


PER


CORE L4


CORE D2D


DSS


CAM


USBHOST


WKUP


CORE L4
MPU


IVA2


CORE L3


CORE D2D



The following is a checklist for items that will prevent idle entry for the CORE power domain.

  1. The pin mux for the D2D Idle Ack and D2D MStandby must be pulled high. Set the CONTROL_PADCONF_SAD2D_IDLEACK and CONTROL_PADCONF_SAD2D_MSTDBY to have a pull up.
  2. In later silicon versions (ES3.0 and up) the D2D interface clock is enabled after reset. This clock must be disabled. This clock is located in bit 3 in the CM_ICLKEN1_CORE register.
  3. If a debugger is being used it is best practice to disconnect and remove the JTAG connection.
  4. The wake up status for the CORE, PER and WKUP domains must be cleared (PM_WKST1_CORE, PM_WKST3_CORE, PW_WKST_PER and PM_WKST_WKUP).
  5. For a module to generate a wake up, most modules require enabling the wake up capability in the PRCM registers (PM_WKEN) and also in the modules registers. If the wake up is enabled, then the IRQ status for this module must be cleared in the MPU INTC registers and also in the module’s registers. For example, the GPTIMER1_IRQSTATUS must be cleared and then the MPU INTC must be serviced and cleared for the GPTIMER1 IRQ.
    Note that GPIO modules have two IRQ status registers (IRQSTATUS1 and IRQSTATUS2) and both status registers must be cleared.
  6. Check the idle status for the modules to verify that all modules are not accessible (CM_IDLEST). This ensures the module is not accessible, but does not guarantee the module is idled.
  7. Disable the interface clock by clearing ICLK (CM_ICLKEN) or leave the ICLK enabled and at the same time enabling the AUTOIDLE feature in the PRCM (CM_AUTOIDLE).
  8. Manually disable all functional clocks (CM_FCLKEN).
  9. Caution should be made in that disabling a FCLK may not idle the module.
  10. In all of the module’s SYSCONFIG registers, ensure that the CLOCKACTIVITY bit field is set to 0x0 to allow the interface and functional clocks to be gated. This is not necessary but will help with power savings.
  11. For targets, in the module’s SYSCONFIG register, ensure the SIDLEMODE is set to FORCE_IDLE or SMART_IDLE and not set to NO_IDLE. SMART_IDLE is recommended.
  12. For initiators, in the module’s SYSCONFIG register, ensure that MIDLEMODE is set to SMART_STANDBY or FORCE_STANDBY and not set to NO_STANDBY. SMART_STANDBY is recommended.
  13. If the SYS_BOOT pins are configured for UART3 peripheral boot then the boot ROM sets the UART3_SYSCONFIG(SYSC_REG).IDLEMODE to NO_IDLE. This will need to be changed to SMART_IDLE or FORCE_IDLE.
  14. If the SYS_BOOT pins are configured for MMC1 peripheral boot then the boot ROM sets the MMCHS1_SYSCONFIG.SIDLEMODE to NO_IDLE. This will need to be changed to FORCE_IDLE.
  15. If the SYS_BOOT pins are configured for USB peripheral boot then the boot ROM sets the OTG_SYSCONFIG.SIDLEMODE to NO_IDLE. This will need to be changed to FORCE_IDLE.
  16. Often overlooked is the CONTROL_SYSCONFIG. Ensure IDLEMODE is set to SMART_IDLE.
  17. All DPLLs must be set up for AUTOIDLE (CM_AUTOIDLE).
  18. All DMA transfers must be completed and stopped.
  19. All pending transactions to the SDRAM must be stopped. For example a DMA moving data to or from the SDRAM must be completed.
  20. The SDRAM must be set up to allow self refresh on idle request. This is done by setting the SRFRONIDLEREQ bit in the SDRC_POWER_REG register.
  21. Enable Hardware supervised transition in CM_CLKSTCTRL registers for all domains – don’t forget about the EMU domain. The D2D must be set for hardware supervised transition by setting bits 4 and 5 in the CM_CLKSTCTRL_CORE register.
  22. The POWERSTATE bit field in the PM_PWSTCTRL registers must be set for the power state desired.
  23. The WFI instruction issued by the ARM is recommended to be executed from I-CACHE or Internal SRAM. Concern should be made when executing from I-CACHE that the instruction execution does not go back to SDRAM before the SDRAM is accessible. The WFI instruction may be executed from other memory locations but this has not been thoroughly tested.
E2e.jpg {{
  1. switchcategory:MultiCore=
  • For technical support on MultiCore devices, please post your questions in the C6000 MultiCore Forum
  • For questions related to the BIOS MultiCore SDK (MCSDK), please use the BIOS Forum

Please post only comments related to the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here.

Keystone=
  • For technical support on MultiCore devices, please post your questions in the C6000 MultiCore Forum
  • For questions related to the BIOS MultiCore SDK (MCSDK), please use the BIOS Forum

Please post only comments related to the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here.

C2000=For technical support on the C2000 please post your questions on The C2000 Forum. Please post only comments about the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here. DaVinci=For technical support on DaVincoplease post your questions on The DaVinci Forum. Please post only comments about the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here. MSP430=For technical support on MSP430 please post your questions on The MSP430 Forum. Please post only comments about the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here. OMAP35x=For technical support on OMAP please post your questions on The OMAP Forum. Please post only comments about the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here. OMAPL1=For technical support on OMAP please post your questions on The OMAP Forum. Please post only comments about the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here. MAVRK=For technical support on MAVRK please post your questions on The MAVRK Toolbox Forum. Please post only comments about the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here. For technical support please post your questions at http://e2e.ti.com. Please post only comments about the article OMAP35x and AM/DM37x Debug Steps for Idle Entry here.

}}

Hyperlink blue.png Links

Amplifiers & Linear
Audio
Broadband RF/IF & Digital Radio
Clocks & Timers
Data Converters

DLP & MEMS
High-Reliability
Interface
Logic
Power Management

Processors

Switches & Multiplexers
Temperature Sensors & Control ICs
Wireless Connectivity