All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/6] OMAP2: hwmod: Fix MMC hwmod structs for 2430
@ 2010-02-19 12:27 Rajendra Nayak
  2010-02-19 12:27 ` [PATCH 2/6] OMAP2xxx: hwmod: add I2C hwmods for OMAP2420, 2430 Rajendra Nayak
  2010-02-23 18:42 ` [PATCH 1/6] OMAP2: hwmod: Fix MMC hwmod structs for 2430 Kevin Hilman
  0 siblings, 2 replies; 9+ messages in thread
From: Rajendra Nayak @ 2010-02-19 12:27 UTC (permalink / raw)
  To: linux-omap, khilman; +Cc: Rajendra Nayak

The existing MMC hwmod structs for 2430 are fixed based
on the changes in hwmod framework structurs.

Signed-off-by: Rajendra Nayak <rnayak@ti.com>
---
 arch/arm/mach-omap2/omap_hwmod_2430.h |   26 +++++++++++++++-----------
 1 files changed, 15 insertions(+), 11 deletions(-)

diff --git a/arch/arm/mach-omap2/omap_hwmod_2430.h b/arch/arm/mach-omap2/omap_hwmod_2430.h
index 0b6ca6f..2898749 100644
--- a/arch/arm/mach-omap2/omap_hwmod_2430.h
+++ b/arch/arm/mach-omap2/omap_hwmod_2430.h
@@ -21,7 +21,7 @@
 #include <plat/cpu.h>
 #include <plat/dma.h>
 
-#include <mach/mmc.h>
+#include <plat/mmc.h>
 
 #include "cm-regbits-24xx.h"
 #include "prm-regbits-24xx.h"
@@ -87,7 +87,8 @@ static struct omap_hwmod_addr_space omap2430_mmc1_addr_space[] = {
 static struct omap_hwmod_ocp_if omap2430_l4_core__mmc1 = {
 	.master		= &omap2430_l4_core_hwmod,
 	.slave		= &omap2430_mmc1_hwmod,
-	.interface_clk	= { .name = "mmchs1_ick" },
+	.clkdev_dev_id	= "mmci-omap-hs.0",
+	.clkdev_con_id	= "ick",
 	.addr		= omap2430_mmc1_addr_space,
 	.addr_cnt	= ARRAY_SIZE(omap2430_mmc1_addr_space),
 	.user		= OCP_USER_MPU | OCP_USER_SDMA,
@@ -105,7 +106,8 @@ static struct omap_hwmod_addr_space omap2430_mmc2_addr_space[] = {
 static struct omap_hwmod_ocp_if omap2430_l4_core__mmc2 = {
 	.master		= &omap2430_l4_core_hwmod,
 	.slave		= &omap2430_mmc2_hwmod,
-	.interface_clk	= { .name = "mmchs2_ick" },
+	.clkdev_dev_id	= "mmci-omap-hs.1",
+	.clkdev_con_id	= "ick",
 	.addr		= omap2430_mmc2_addr_space,
 	.addr_cnt	= ARRAY_SIZE(omap2430_mmc2_addr_space),
 	.user		= OCP_USER_MPU | OCP_USER_SDMA,
@@ -185,8 +187,8 @@ static struct mmc_dev_attr mmc1_dev_attr = {
 	.flags = MMC_INTERNAL_XCVR,
 };
 
-static u8 mmc1_mpu_irqs[] = {
-	INT_24XX_MMC_IRQ,
+static struct omap_hwmod_irq_info mmc1_mpu_irqs[] = {
+	{ .irq = INT_24XX_MMC_IRQ, },
 };
 
 static struct omap_hwmod_dma_info mmc1_sdma_chs[] = {
@@ -195,7 +197,7 @@ static struct omap_hwmod_dma_info mmc1_sdma_chs[] = {
 };
 
 static struct omap_hwmod_opt_clk mmc1_opt_clks[] = {
-	{ .role = "dbck", .clk = { .name = "mmchsdb1_fck" } },
+	{ .clkdev_dev_id = "mmci-omap-hs.0", .clkdev_con_id = "mmchsdb_fck" },
 };
 
 static struct omap_hwmod_ocp_if *omap2430_mmc1_slaves[] = {
@@ -210,7 +212,8 @@ static struct omap_hwmod omap2430_mmc1_hwmod = {
 	.sdma_chs_cnt	= ARRAY_SIZE(mmc1_sdma_chs),
 	.opt_clks	= mmc1_opt_clks,
 	.opt_clks_cnt	= ARRAY_SIZE(mmc1_opt_clks),
-	.main_clk	= { .name = "mmchs1_fck" },
+	.clkdev_dev_id	= "mmci-omap-hs.0",
+	.clkdev_con_id	= "fck",
 	.prcm		= {
 		.omap2 = {
 			.prcm_reg_id = 2,
@@ -230,8 +233,8 @@ static struct mmc_dev_attr mmc2_dev_attr = {
 	.flags = MMC_SUPPORTS_EXTERNAL_XCVR,
 };
 
-static u8 mmc2_mpu_irqs[] = {
-	INT_24XX_MMC2_IRQ,
+static struct omap_hwmod_irq_info mmc2_mpu_irqs[] = {
+	{ .irq = INT_24XX_MMC2_IRQ, },
 };
 
 static struct omap_hwmod_dma_info mmc2_sdma_chs[] = {
@@ -240,7 +243,7 @@ static struct omap_hwmod_dma_info mmc2_sdma_chs[] = {
 };
 
 static struct omap_hwmod_opt_clk mmc2_opt_clks[] = {
-	{ .role = "dbck", .clk = { .name = "mmchsdb2_fck" } },
+	{ .clkdev_dev_id = "mmci-omap-hs.1", .clkdev_con_id = "mmchsdb_fck" },
 };
 
 static struct omap_hwmod_ocp_if *omap2430_mmc2_slaves[] = {
@@ -255,7 +258,8 @@ static struct omap_hwmod omap2430_mmc2_hwmod = {
 	.sdma_chs_cnt	= ARRAY_SIZE(mmc2_sdma_chs),
 	.opt_clks	= mmc2_opt_clks,
 	.opt_clks_cnt	= ARRAY_SIZE(mmc2_opt_clks),
-	.main_clk	= { .name = "mmchs2_fck" },
+	.clkdev_dev_id	= "mmci-omap-hs.1",
+	.clkdev_con_id	= "fck",
 	.prcm		= {
 		.omap2 = {
 			.prcm_reg_id = 2,
-- 
1.5.4.7


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2010-02-24  8:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-19 12:27 [PATCH 1/6] OMAP2: hwmod: Fix MMC hwmod structs for 2430 Rajendra Nayak
2010-02-19 12:27 ` [PATCH 2/6] OMAP2xxx: hwmod: add I2C hwmods for OMAP2420, 2430 Rajendra Nayak
2010-02-19 12:27   ` [PATCH 3/6] OMAP3: hwmod: add I2C hwmods for OMAP3430 Rajendra Nayak
2010-02-19 12:27     ` [PATCH 4/6] OMAP: I2C: split device registration; convert OMAP2+ to omap_device Rajendra Nayak
2010-02-19 12:27       ` [PATCH 5/6] OMAP: I2C: Convert i2c driver to use omap_device/omap_hwmod Rajendra Nayak
2010-02-19 12:27         ` [PATCH 6/6] OMAP: Fix compile break in serial with CONFIG_PM disabled Rajendra Nayak
2010-02-23 19:32         ` [PATCH 5/6] OMAP: I2C: Convert i2c driver to use omap_device/omap_hwmod Kevin Hilman
2010-02-24  8:38           ` Nayak, Rajendra
2010-02-23 18:42 ` [PATCH 1/6] OMAP2: hwmod: Fix MMC hwmod structs for 2430 Kevin Hilman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.