alistair23-linux/arch/arm/mach-omap2
Kevin Hilman 414e41286e ARM: OMAP2+: WDTIMER integration: fix !PM boot crash, disarm timer after hwmod reset
Without runtime PM enabled, hwmod needs to leave all IP blocks in an
enabled state by default so any driver access to the HW will succeed.
This is accomplished by seting the postsetup_state to enabled for all
hwmods during init when runtime PM is disabled.

Currently, we have a special case for WDT in that its postsetup_state
is always set to disabled.  This is done so that the WDT is disabled
and the timer is disarmed at boot in case there is no WDT driver.
This also means that when runtime PM is disabled, if a WDT driver *is*
built in the kernel, the kernel will crash on the first access to the
WDT hardware.

We can't simply leave the WDT module enabled, because the timer is
armed by default after reset. That means that if there is no WDT
driver initialzed or loaded before the timer expires, the kernel will
reboot.

To fix this, a custom reset method is added to the watchdog class of
omap_hwmod.  This method will *always* disarm the timer after hwmod
reset.  The WDT timer then will only be rearmed when/if the driver is
loaded for the WDT.  With the timer disarmed by default, we no longer
need a special-case for the postsetup_state of WDT during init, so it
is removed.

Any platforms wishing to ensure the watchdog remains armed across the
entire boot boot can simply disable the reset-on-init feature of the
watchdog hwmod using omap_hwmod_no_setup_reset().

Tested on 3530/Overo, 4430/Panda.

NOTE: on 4430, the hwmod OCP reset does not seem to rearm the timer as
documented in the TRM (and what happens on OMAP3.)  I noticed this
because testing the HWMOD_INIT_NO_RESET feature with no driver loaded,
I expected a reboot part way through the boot, but did not see a
reboot.  Adding some debug to read the counter, I verified that right
after OCP softreset, the counter is not firing.  After writing the
magic start sequence, the timer starts counting.  This means that the
timer disarm sequence added here does not seem to be needed for 4430,
but is technically the correct way to ensure the timer is disarmed, so
it is left in for OMAP4.

Special thanks to Paul Walmsley for helping brainstorm ideas to fix
this problem.

Cc: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
[paul@pwsan.com: updated the omap2_wd_timer_reset() function in the
 wake of commit 3c55c1baff ("ARM:
 OMAP2+: hwmod: Revert "ARM: OMAP2+: hwmod: Make omap_hwmod_softreset
 wait for reset status""); added kerneldoc; rolled in warning fix from Kevin]
Signed-off-by: Paul Walmsley <paul@pwsan.com>
2012-05-08 17:25:37 -06:00
..
include/mach ARM: fix more fallout from 9f97da78bf (Disintegrate asm/system.h for ARM) 2012-03-31 09:07:30 +01:00
am35xx-emac.c ARM: OMAP: move generic EMAC init to separate file 2012-03-05 11:08:36 -08:00
am35xx-emac.h ARM: OMAP: move generic EMAC init to separate file 2012-03-05 11:08:36 -08:00
board-2430sdp.c Merge branch 'fixes-gpio-to-irq' into fixes 2012-03-29 10:16:04 -07:00
board-3430sdp.c ARM: OMAP2+: Split omap2_hsmmc_init() to properly support I2C GPIO pins 2012-02-20 10:00:39 -08:00
board-3630sdp.c Merge branch 'restart' into for-linus 2012-01-05 13:25:27 +00:00
board-4430sdp.c Merge branch 'fixes-gpio-to-irq' into fixes 2012-03-29 10:16:04 -07:00
board-am3517crane.c Merge branch 'restart' into for-linus 2012-01-05 13:25:27 +00:00
board-am3517evm.c ARM: board specific updates 2012-03-27 16:27:28 -07:00
board-apollon.c ARM: OMAP: boards: Fix OMAP_GPIO_IRQ usage with gpio_to_irq() 2012-03-29 08:41:01 -07:00
board-cm-t35.c ARM: OMAP2+: smsc911x: Add fixed board regulators 2012-04-03 10:33:19 -07:00
board-cm-t3517.c ARM: OMAP3: cm-t3517: add EMAC support 2012-03-05 11:08:36 -08:00
board-devkit8000.c Merge branch 'fixes-gpio-to-irq' into fixes 2012-03-29 10:16:04 -07:00
board-flash.c ARM: OMAP2+: Mark omap_hsmmc_init and omap_mux related functions as __init 2012-02-24 13:04:10 -08:00
board-flash.h
board-generic.c Generialize powerpc's irq_host as irq_domain 2012-03-21 10:27:19 -07:00
board-h4.c ARM: OMAP: boards: Fix OMAP_GPIO_IRQ usage with gpio_to_irq() 2012-03-29 08:41:01 -07:00
board-igep0020.c ARM: OMAP2+: smsc911x: Add fixed board regulators 2012-04-03 10:33:19 -07:00
board-ldp.c ARM: OMAP2+: smsc911x: Add fixed board regulators 2012-04-03 10:33:19 -07:00
board-n8x0.c ARM: global cleanups 2012-03-27 16:03:32 -07:00
board-omap3beagle.c ARM: OMAP2+: Mark omap_hsmmc_init and omap_mux related functions as __init 2012-02-24 13:04:10 -08:00
board-omap3evm.c ARM: OMAP2+: smsc911x: Add fixed board regulators 2012-04-03 10:33:19 -07:00
board-omap3logic.c ARM: OMAP2+: smsc911x: Add fixed board regulators 2012-04-03 10:33:19 -07:00
board-omap3pandora.c ARM: board specific updates 2012-03-27 16:27:28 -07:00
board-omap3stalker.c ARM: OMAP2+: smsc911x: Add fixed board regulators 2012-04-03 10:33:19 -07:00
board-omap3touchbook.c Disintegrate and delete asm/system.h 2012-03-28 15:58:21 -07:00
board-omap4panda.c Merge branch 'fixes-gpio-to-irq' into fixes 2012-03-29 10:16:04 -07:00
board-overo.c ARM: OMAP2+: smsc911x: Add fixed board regulators 2012-04-03 10:33:19 -07:00
board-rm680.c ARM: board specific updates 2012-03-27 16:27:28 -07:00
board-rx51-peripherals.c Merge branch 'fixes-gpio-to-irq' into fixes 2012-03-29 10:16:04 -07:00
board-rx51-video.c
board-rx51.c Merge branch 'restart' into for-linus 2012-01-05 13:25:27 +00:00
board-ti8168evm.c Merge branch 'samsung/cleanup' into next/boards 2012-01-09 17:06:36 +00:00
board-zoom-debugboard.c ARM: OMAP2+: smsc911x: Add fixed board regulators 2012-04-03 10:33:19 -07:00
board-zoom-display.c ARM: global cleanups 2012-03-27 16:03:32 -07:00
board-zoom-peripherals.c Merge branch 'fixes-gpio-to-irq' into fixes 2012-03-29 10:16:04 -07:00
board-zoom.c Merge branch 'restart' into for-linus 2012-01-05 13:25:27 +00:00
clkt2xxx_apll.c
clkt2xxx_dpll.c
clkt2xxx_dpllcore.c
clkt2xxx_osc.c
clkt2xxx_sys.c
clkt2xxx_virt_prcm_set.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
clkt34xx_dpll3m2.c
clkt_clksel.c ARM: OMAP2+: Fix build issues with missing include of linux/bug.h 2012-03-07 17:29:34 -08:00
clkt_dpll.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
clkt_iclk.c
clock.c ARM: OMAP2+: powerdomain: Get rid off duplicate pwrdm_clkdm_state_switch() API 2012-05-07 23:55:38 -06:00
clock.h ARM: OMAP: am33xx: Update common omap platform files 2011-12-13 10:46:43 -08:00
clock2xxx.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
clock2xxx.h
clock3xxx.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
clock3xxx.h
clock3xxx_data.c Merge branches 'clock_am35xx_cleanup_3.5', 'prm_cm_devel_a_3.5', 'clock_devel_a_3.5' and 'pwrdm_clkdm_cleanup_3.5' into prcm_devel_a_3.5 2012-05-07 23:55:56 -06:00
clock34xx.c
clock34xx.h
clock36xx.c
clock36xx.h
clock44xx.h
clock44xx_data.c ARM: OMAP2+: dmtimer: cleanup iclk usage 2012-05-07 23:55:30 -06:00
clock2420_data.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
clock2430.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
clock2430_data.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
clock3517.c
clock3517.h
clock_common_data.c
clockdomain.c ARM: OMAP2+: powerdomain: Get rid off duplicate pwrdm_clkdm_state_switch() API 2012-05-07 23:55:38 -06:00
clockdomain.h
clockdomain2xxx_3xxx.c
clockdomain44xx.c ARM: OMAP2+: clockdomains: make {prm,cm}_clkdm common 2012-04-19 13:33:49 -06:00
clockdomains2xxx_3xxx_data.c ARM: OMAP2+: clockdomains: make {prm,cm}_clkdm common 2012-04-19 13:33:49 -06:00
clockdomains3xxx_data.c arm: omap3: clockdomain data: Remove superfluous commas from gfx_sgx_3xxx_wkdeps[] 2012-05-07 23:55:38 -06:00
clockdomains44xx_data.c ARM: OMAP2+: clockdomains: make {prm,cm}_clkdm common 2012-04-19 13:33:49 -06:00
clockdomains2420_data.c
clockdomains2430_data.c
clockdomains_common_data.c ARM: OMAP2+: clockdomains: make {prm,cm}_clkdm common 2012-04-19 13:33:49 -06:00
cm-regbits-24xx.h
cm-regbits-34xx.h ARM: OMAP3: Fix CM register bit masks 2012-05-07 23:55:21 -06:00
cm-regbits-44xx.h
cm.h
cm1_44xx.h
cm2_44xx.h
cm2xxx_3xxx.c ARM: OMAP2+: Fix build error after merge 2012-03-07 09:03:03 -08:00
cm2xxx_3xxx.h
cm44xx.c ARM: OMAP2+: Move most of plat/io.h into local iomap.h 2012-02-24 10:34:35 -08:00
cm44xx.h
cminst44xx.c ARM: OMAP4+: Add prm and cm base init function. 2012-05-07 23:55:22 -06:00
cminst44xx.h
common-board-devices.c Merge branch 'fixes-gpio-to-irq' into fixes 2012-03-29 10:16:04 -07:00
common-board-devices.h
common.c ARM: OMAP4+: Add prm and cm base init function. 2012-05-07 23:55:22 -06:00
common.h ARM: OMAP4+: Add prm and cm base init function. 2012-05-07 23:55:22 -06:00
control.c ARM: OMAP2+: Fix build error after merge 2012-03-07 09:03:03 -08:00
control.h ARM: global cleanups 2012-03-27 16:03:32 -07:00
cpuidle34xx.c ARM: omap: Consolidate OMAP3 time keeping and irq enable 2012-03-21 02:00:52 -04:00
cpuidle44xx.c ARM: omap: Consolidate OMAP4 time keeping and irq enable 2012-03-21 02:01:08 -04:00
devices.c ARM: global cleanups 2012-03-27 16:03:32 -07:00
devices.h
display.c Merge branch 'fix-dss-mux' into fixes 2012-03-29 10:05:37 -07:00
display.h ARM: OMAP2PLUS: DSS: Ensure DSS works correctly if display is enabled in bootloader 2011-11-08 03:16:46 -07:00
dma.c OMAP4: dma: Correct CPU version check for dma_common_ch_end 2012-02-28 14:36:56 -08:00
dpll3xxx.c ARM: OMAP3+: dpll: Configure autoidle mode only if it's supported 2012-05-07 23:55:30 -06:00
dpll44xx.c
dsp.c ARM: OMAP: Fix export.h or module.h includes 2011-11-07 12:27:10 -08:00
emu.c ARM: OMAP2+: Fix L4_EMU_34XX_BASE error after iomap changes 2012-02-28 17:33:41 -08:00
gpio.c Merge branch 'cleanup-pm' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into next/cleanup 2012-03-10 09:08:09 -08:00
gpmc-nand.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
gpmc-onenand.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
gpmc-smc91x.c
gpmc-smsc911x.c ARM: OMAP2+: smsc911x: Remove regulator support from gmpc-smsc911x 2012-04-03 10:31:34 -07:00
gpmc.c ARM: OMAP2+: GPMC: Export gpmc_enable_hwecc and gpmc_calculate_ecc 2012-03-05 16:11:01 -08:00
hdq1w.c ARM: OMAP2+: HDQ1W: add custom reset function 2012-05-08 17:25:36 -06:00
hsmmc.c ARM: OMAP3xxx: HSMMC: avoid erratum workaround when transceiver is attached 2012-04-04 08:32:04 -06:00
hsmmc.h MMC highlights for 3.4: 2012-03-28 20:59:45 -07:00
hwspinlock.c Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock 2011-11-03 08:05:35 -07:00
i2c.c ARM: 7159/1: OMAP: Introduce local common.h files 2011-11-17 17:09:30 +00:00
id.c ARM: SoC specific updates 2012-03-27 16:14:44 -07:00
io.c ARM: OMAP2+: WDTIMER integration: fix !PM boot crash, disarm timer after hwmod reset 2012-05-08 17:25:37 -06:00
iomap.h ARM: create a common IOMEM definition 2012-03-13 21:22:09 -05:00
iommu2.c
irq.c ARM: device tree work 2012-03-27 16:47:35 -07:00
Kconfig ARM: device tree work 2012-03-27 16:47:35 -07:00
mailbox.c IOMMU fixes for Linux v3.3-rc6 2012-03-09 07:26:25 -08:00
Makefile ARM: OMAP2+: HDQ1W: add custom reset function 2012-05-08 17:25:36 -06:00
Makefile.boot
mcbsp.c ARM: Non-critical bug fixes 2012-03-27 15:55:54 -07:00
msdi.c ARM: OMAP2420: hwmod data: Add MMC hwmod data for 2420 2012-05-08 17:23:33 -06:00
mux.c Disintegrate and delete asm/system.h 2012-03-28 15:58:21 -07:00
mux.h ARM: OMAP2+: Fix board_mux section type conflict when OMAP_MUX is not set 2012-02-23 16:44:34 -08:00
mux34xx.c
mux34xx.h
mux44xx.c
mux44xx.h
mux2420.c
mux2420.h
mux2430.c
mux2430.h
omap-headsmp.S ARM: omap: fix section mismatch warning for omap_secondary_startup() 2012-02-13 10:00:37 +00:00
omap-hotplug.c ARM: OMAP: Fix section mismatch warning for platform_cpu_die() 2012-02-28 14:34:12 -08:00
omap-iommu.c ARM: OMAP: fix iommu, not mailbox 2012-03-05 15:18:20 +01:00
omap-mpuss-lowpower.c Disintegrate and delete asm/system.h 2012-03-28 15:58:21 -07:00
omap-secure.c ARM: Add arm_memblock_steal() to allocate memory away from the kernel 2012-01-13 15:02:35 +00:00
omap-smc.S ARM: OMAP: Add Secure HAL and monitor mode API infrastructure. 2011-12-08 11:29:00 -08:00
omap-smp.c ARM: OMAP2+: Move most of plat/io.h into local iomap.h 2012-02-24 10:34:35 -08:00
omap-wakeupgen.c ARM: OMAP2+: PM: fix wakeupgen warning when hotplug disabled 2012-03-06 13:21:37 -08:00
omap4-common.c ARM: OMAP2+: Fix module build errors with CONFIG_OMAP4_ERRATA_I688 2012-03-05 14:15:25 -08:00
omap4-sar-layout.h ARM: OMAP4: PM: Add L2X0 cache lowpower support 2011-12-08 11:29:01 -08:00
omap_hwmod.c ARM: OMAP: hwmod: remove code support for direct hwmod registration 2012-04-19 04:04:32 -06:00
omap_hwmod_2xxx_3xxx_interconnect_data.c ARM: OMAP2+: hwmod data: add HDQ/1-wire hwmod shared data 2012-05-08 17:25:36 -06:00
omap_hwmod_2xxx_3xxx_ipblock_data.c ARM: OMAP2+: hwmod data: add HDQ/1-wire hwmod shared data 2012-05-08 17:25:36 -06:00
omap_hwmod_2xxx_interconnect_data.c ARM: OMAP2xxx: hwmod data: share common interface data 2012-04-19 04:25:06 -06:00
omap_hwmod_2xxx_ipblock_data.c ARM: OMAP2+: WDTIMER integration: fix !PM boot crash, disarm timer after hwmod reset 2012-05-08 17:25:37 -06:00
omap_hwmod_3xxx_data.c ARM: OMAP2+: WDTIMER integration: fix !PM boot crash, disarm timer after hwmod reset 2012-05-08 17:25:37 -06:00
omap_hwmod_44xx_data.c ARM: OMAP2+: WDTIMER integration: fix !PM boot crash, disarm timer after hwmod reset 2012-05-08 17:25:37 -06:00
omap_hwmod_2420_data.c ARM: OMAP2/3: hwmod data: Add 32k-sync timer data to hwmod database 2012-05-08 17:25:36 -06:00
omap_hwmod_2430_data.c ARM: OMAP2/3: hwmod data: Add 32k-sync timer data to hwmod database 2012-05-08 17:25:36 -06:00
omap_hwmod_common_data.c ARM: OMAP2PLUS: DSS: Ensure DSS works correctly if display is enabled in bootloader 2011-11-08 03:16:46 -07:00
omap_hwmod_common_data.h ARM: OMAP2/3: hwmod data: Add 32k-sync timer data to hwmod database 2012-05-08 17:25:36 -06:00
omap_l3_noc.c ARM: OMAP2+: Fix Compilation error when omap_l3_noc built as module 2011-11-23 14:45:37 -08:00
omap_l3_noc.h
omap_l3_smx.c
omap_l3_smx.h
omap_opp_data.h
omap_phy_internal.c ARM: OMAP: musb: Add ti81xx phy power function 2011-12-13 10:50:58 -08:00
omap_twl.c
opp.c ARM: OMAP2+: OPP: allow OPP enumeration to continue if device is not present 2012-03-22 16:11:17 -07:00
opp2xxx.h ARM: OMAP: am33xx: Update common omap platform files 2011-12-13 10:46:43 -08:00
opp3xxx_data.c
opp4xxx_data.c
opp2420_data.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
opp2430_data.c ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
pm-debug.c ARM: OMAP2+: PM debug: fix the use of debugfs_create_* API 2012-03-05 15:38:02 -08:00
pm.c ARM: OMAP: pm: fix compilation break 2012-03-29 10:05:02 -07:00
pm.h Merge branch 'uart' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into next/cleanup 2012-03-10 09:10:21 -08:00
pm24xx.c Disintegrate and delete asm/system.h 2012-03-28 15:58:21 -07:00
pm34xx.c Merge branch 'for_3.4/fixes/pm' of git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap-pm into fixes 2012-04-03 11:31:38 -07:00
pm44xx.c Merge branch 'for_3.4/fixes/pm' of git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap-pm into fixes 2012-04-03 11:31:38 -07:00
powerdomain-common.c ARM: OMAP2+: Fix build issues with missing include of linux/bug.h 2012-03-07 17:29:34 -08:00
powerdomain.c ARM: OMAP2+: powerdomain: Get rid off duplicate pwrdm_clkdm_state_switch() API 2012-05-07 23:55:38 -06:00
powerdomain.h ARM: OMAP2+: powerdomain: Get rid off duplicate pwrdm_clkdm_state_switch() API 2012-05-07 23:55:38 -06:00
powerdomain2xxx_3xxx.c ARM: OMAP2+: Fix build issues with missing include of linux/bug.h 2012-03-07 17:29:34 -08:00
powerdomain44xx.c ARM: OMAP2+: Fix build for omap4 only builds with missing include of linux/bug.h 2012-03-08 10:48:12 -08:00
powerdomains2xxx_3xxx_data.c
powerdomains2xxx_3xxx_data.h
powerdomains2xxx_data.c
powerdomains3xxx_data.c ARM: OMAP2+: Fix build issues with missing include of linux/bug.h 2012-03-07 17:29:34 -08:00
powerdomains44xx_data.c
prcm-common.h ARM: OMAP4+: Add prm and cm base init function. 2012-05-07 23:55:22 -06:00
prcm.c ARM: OMAP4+: Add prm and cm base init function. 2012-05-07 23:55:22 -06:00
prcm44xx.h
prcm_mpu44xx.c ARM: OMAP2+: Move most of plat/io.h into local iomap.h 2012-02-24 10:34:35 -08:00
prcm_mpu44xx.h
prm-regbits-24xx.h
prm-regbits-34xx.h
prm-regbits-44xx.h
prm.h
prm2xxx_3xxx.c ARM: OMAP2/3: PRM: fix missing plat/irqs.h build breakage 2012-01-25 13:01:56 -07:00
prm2xxx_3xxx.h ARM: OMAP: PRCM: add suspend prepare / finish support 2011-12-16 14:36:58 -07:00
prm44xx.c Merge branch 'misc_devel_3.4' of git://git.pwsan.com/linux-2.6 into fixes 2012-04-03 09:49:32 -07:00
prm44xx.h ARM: OMAP: PRCM: add suspend prepare / finish support 2011-12-16 14:36:58 -07:00
prm_common.c Merge branch 'for_3.4/fixes/pm' of git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap-pm into fixes 2012-04-03 11:31:38 -07:00
prminst44xx.c ARM: OMAP4+: Add prm and cm base init function. 2012-05-07 23:55:22 -06:00
prminst44xx.h
scrm44xx.h
sdram-hynix-h8mbx00u0mer-0em.h
sdram-micron-mt46h32m32lf-6.h
sdram-nokia.c ARM: OMAP2+: Move most of plat/io.h into local iomap.h 2012-02-24 10:34:35 -08:00
sdram-nokia.h
sdram-numonyx-m65kxxxxam.h
sdram-qimonda-hyb18m512160af-6.h
sdrc.c ARM: 7159/1: OMAP: Introduce local common.h files 2011-11-17 17:09:30 +00:00
sdrc.h
sdrc2xxx.c ARM: OMAP2+: Fix build error after merge 2012-03-07 09:03:03 -08:00
serial.c ARM: OMAP2+: UART: remove unused fields in omap_uart_state. 2012-02-21 11:11:49 -08:00
sleep24xx.S ARM: OMAP2+: Move most of plat/io.h into local iomap.h 2012-02-24 10:34:35 -08:00
sleep34xx.S ARM: OMAP: Remove plat/io.h by splitting it into mach/io.h and mach/hardware.h 2012-02-24 10:34:35 -08:00
sleep44xx.S Disintegrate asm/system.h for ARM 2012-03-28 18:30:01 +01:00
smartreflex-class3.c ARM: OMAP3+: SmartReflex Class3: disable errorgen before disable VP 2012-03-05 11:29:26 -08:00
smartreflex.c ARM: OMAP3+: SmartReflex: fix error handling 2012-03-05 11:29:27 -08:00
smartreflex.h ARM: OMAP3+: SmartReflex Class3: disable errorgen before disable VP 2012-03-05 11:29:26 -08:00
sr_device.c Merge branch 'next/fixes-non-critical' into next/drivers 2012-03-20 22:42:24 +00:00
sram34xx.S ARM: OMAP2+: Move most of plat/io.h into local iomap.h 2012-02-24 10:34:35 -08:00
sram242x.S ARM: OMAP2+: Move most of plat/io.h into local iomap.h 2012-02-24 10:34:35 -08:00
sram243x.S ARM: OMAP2+: Move most of plat/io.h into local iomap.h 2012-02-24 10:34:35 -08:00
timer.c ARM: OMAP2+: dmtimer: cleanup iclk usage 2012-05-07 23:55:30 -06:00
twl-common.c ARM: OMAP2+: Remove apply_uV constraints for fixed regulator 2012-02-28 15:56:40 -08:00
twl-common.h ARM: OMAP: PM: only register TWL with voltage layer when device is present 2011-11-23 14:43:01 -08:00
usb-fs.c
usb-host.c ARM: OMAP: fix section mismatches in usb-host.c 2012-04-03 11:08:37 -07:00
usb-musb.c ARM: OMAP: musb: Adding support for ti81xx 2011-12-13 10:50:58 -08:00
usb-tusb6010.c arm: Add export.h to ARM specific files as required. 2011-10-31 19:30:50 -04:00
vc.c ARM: OMAP2+: Fix build for omap4 only builds with missing include of linux/bug.h 2012-03-08 10:48:12 -08:00
vc.h
vc3xxx_data.c ARM: 7159/1: OMAP: Introduce local common.h files 2011-11-17 17:09:30 +00:00
vc44xx_data.c ARM: 7159/1: OMAP: Introduce local common.h files 2011-11-17 17:09:30 +00:00
voltage.c ARM: 7159/1: OMAP: Introduce local common.h files 2011-11-17 17:09:30 +00:00
voltage.h
voltagedomains2xxx_data.c
voltagedomains3xxx_data.c ARM: OMAP: fix voltage domain build errors with PM_OPP disabled 2012-02-21 09:36:34 +00:00
voltagedomains44xx_data.c ARM: OMAP: fix voltage domain build errors with PM_OPP disabled 2012-02-21 09:36:34 +00:00
vp.c ARM: OMAP3+: PM: VP: fix integer truncation error 2012-03-06 16:13:50 -08:00
vp.h
vp3xxx_data.c ARM: 7159/1: OMAP: Introduce local common.h files 2011-11-17 17:09:30 +00:00
vp44xx_data.c ARM: 7159/1: OMAP: Introduce local common.h files 2011-11-17 17:09:30 +00:00
wd_timer.c ARM: OMAP2+: WDTIMER integration: fix !PM boot crash, disarm timer after hwmod reset 2012-05-08 17:25:37 -06:00
wd_timer.h ARM: OMAP2+: WDTIMER integration: fix !PM boot crash, disarm timer after hwmod reset 2012-05-08 17:25:37 -06:00