diff options
author | Paul Walmsley <paul@pwsan.com> | 2011-03-10 05:50:07 -0500 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2011-03-10 05:50:07 -0500 |
commit | 43b01643355672a266b95c4719f47cd1abac4680 (patch) | |
tree | baf1a94d96b47e21a12e7309c9110c8656631f06 /arch/arm/plat-omap | |
parent | dd9c1549edef02290edced639f67b54a25abbe0e (diff) |
OMAP2+: hwmod: allow board files to prevent devices from being reset upon init
Some boards can't tolerate IP blocks being reset when they are initialized.
Michael Büsch cites a case with the Nokia N810:
http://www.spinics.net/lists/linux-omap/msg47277.html
To allow such boards to continue working normally, allow board file
maintainers to mark IP blocks to prevent them from being reset upon
init. This is done via a hwmod function, omap_hwmod_no_setup_reset().
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Michael Buesch <mb@bu3sch.de>
Diffstat (limited to 'arch/arm/plat-omap')
-rw-r--r-- | arch/arm/plat-omap/include/plat/omap_hwmod.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/include/plat/omap_hwmod.h b/arch/arm/plat-omap/include/plat/omap_hwmod.h index 1eee85a8abb3..bba234337d00 100644 --- a/arch/arm/plat-omap/include/plat/omap_hwmod.h +++ b/arch/arm/plat-omap/include/plat/omap_hwmod.h | |||
@@ -589,6 +589,8 @@ int omap_hwmod_for_each_by_class(const char *classname, | |||
589 | int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state); | 589 | int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state); |
590 | u32 omap_hwmod_get_context_loss_count(struct omap_hwmod *oh); | 590 | u32 omap_hwmod_get_context_loss_count(struct omap_hwmod *oh); |
591 | 591 | ||
592 | int omap_hwmod_no_setup_reset(struct omap_hwmod *oh); | ||
593 | |||
592 | /* | 594 | /* |
593 | * Chip variant-specific hwmod init routines - XXX should be converted | 595 | * Chip variant-specific hwmod init routines - XXX should be converted |
594 | * to use initcalls once the initial boot ordering is straightened out | 596 | * to use initcalls once the initial boot ordering is straightened out |