aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-omap/include
diff options
context:
space:
mode:
authorvikram pandita <vikram.pandita@ti.com>2009-11-22 13:10:57 -0500
committerTony Lindgren <tony@atomide.com>2009-11-22 13:24:32 -0500
commitf18af0a847f9e1a843bcb8ba69697ccbba2d03e9 (patch)
tree748288065cb809517544b62c1da4eb3396bbc580 /arch/arm/plat-omap/include
parent2456a10fb3a9b8c9e970b05e6c1370201675da0a (diff)
omap3: 3630: update is_chip variable
3630 is getting treated like next rev of 3430 omap_chip.oc variable has to be updated for 3630 version Otherwise the Core power domain is not getting registered. This gets used in the registration of power domains in: "arch/arm/mach-omap2/powerdomains34xx.h" core_34xx_es3_1_pwrdm OMAP_CHIP_INIT(CHIP_GE_OMAP3430ES3_1) Core power doman will get registered for 3630 only when .oc is populated correctly. Tested on Zoom3(3630) board Signed-off-by: Vikram Pandita <vikram.pandita@ti.com> Acked-by: Alexander Shishkin <virtuoso@slind.org> Acked-by: Ari Kauppi <kauppi@papupata.org> Acked-by: Nishanth Menon <nm@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/plat-omap/include')
-rw-r--r--arch/arm/plat-omap/include/plat/cpu.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h
index f4f7a2f0c036..7babefce62e1 100644
--- a/arch/arm/plat-omap/include/plat/cpu.h
+++ b/arch/arm/plat-omap/include/plat/cpu.h
@@ -454,6 +454,7 @@ IS_OMAP_TYPE(3430, 0x3430)
454#define CHIP_IS_OMAP3430ES2 (1 << 4) 454#define CHIP_IS_OMAP3430ES2 (1 << 4)
455#define CHIP_IS_OMAP3430ES3_0 (1 << 5) 455#define CHIP_IS_OMAP3430ES3_0 (1 << 5)
456#define CHIP_IS_OMAP3430ES3_1 (1 << 6) 456#define CHIP_IS_OMAP3430ES3_1 (1 << 6)
457#define CHIP_IS_OMAP3630ES1 (1 << 7)
457 458
458#define CHIP_IS_OMAP24XX (CHIP_IS_OMAP2420 | CHIP_IS_OMAP2430) 459#define CHIP_IS_OMAP24XX (CHIP_IS_OMAP2420 | CHIP_IS_OMAP2430)
459 460
@@ -465,8 +466,10 @@ IS_OMAP_TYPE(3430, 0x3430)
465 */ 466 */
466#define CHIP_GE_OMAP3430ES2 (CHIP_IS_OMAP3430ES2 | \ 467#define CHIP_GE_OMAP3430ES2 (CHIP_IS_OMAP3430ES2 | \
467 CHIP_IS_OMAP3430ES3_0 | \ 468 CHIP_IS_OMAP3430ES3_0 | \
468 CHIP_IS_OMAP3430ES3_1) 469 CHIP_IS_OMAP3430ES3_1 | \
469#define CHIP_GE_OMAP3430ES3_1 (CHIP_IS_OMAP3430ES3_1) 470 CHIP_IS_OMAP3630ES1)
471#define CHIP_GE_OMAP3430ES3_1 (CHIP_IS_OMAP3430ES3_1 | \
472 CHIP_IS_OMAP3630ES1)
470 473
471 474
472int omap_chip_is(struct omap_chip_id oci); 475int omap_chip_is(struct omap_chip_id oci);