diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2009-06-04 14:12:31 -0400 |
---|---|---|
committer | Pierre Ossman <pierre@ossman.eu> | 2009-06-13 16:42:59 -0400 |
commit | f0e46cc4971f6be96010d9248e0fc076b229d989 (patch) | |
tree | 5fc0b80993c82337b8928f063df0749fadc9d13e /drivers/mfd/tc6393xb.c | |
parent | fdd858db7113ca64132de390188d7ca00701013d (diff) |
MFD,mmc: tmio_mmc: make HCLK configurable
The Toshiba parts all have a 24 MHz HCLK, but HTC ASIC3 has a 24.576 MHz HCLK
and AMD Imageon w228x's HCLK is 80 MHz. With this patch, the MFD driver
provides the HCLK frequency to tmio_mmc via mfd_cell->driver_data.
Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
Acked-by: Ian Molton <ian@mnementh.co.uk>
Acked-by: Samuel Ortiz <sameo@openedhand.com>
Signed-off-by: Pierre Ossman <pierre@ossman.eu>
Diffstat (limited to 'drivers/mfd/tc6393xb.c')
-rw-r--r-- | drivers/mfd/tc6393xb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/mfd/tc6393xb.c b/drivers/mfd/tc6393xb.c index 77a12fc8045e..9d2abb5d6e2c 100644 --- a/drivers/mfd/tc6393xb.c +++ b/drivers/mfd/tc6393xb.c | |||
@@ -136,6 +136,10 @@ static int tc6393xb_nand_enable(struct platform_device *nand) | |||
136 | return 0; | 136 | return 0; |
137 | } | 137 | } |
138 | 138 | ||
139 | const static struct tmio_mmc_data tc6393xb_mmc_data = { | ||
140 | .hclk = 24000000, | ||
141 | }; | ||
142 | |||
139 | static struct resource __devinitdata tc6393xb_nand_resources[] = { | 143 | static struct resource __devinitdata tc6393xb_nand_resources[] = { |
140 | { | 144 | { |
141 | .start = 0x1000, | 145 | .start = 0x1000, |
@@ -351,6 +355,7 @@ static struct mfd_cell __devinitdata tc6393xb_cells[] = { | |||
351 | }, | 355 | }, |
352 | [TC6393XB_CELL_MMC] = { | 356 | [TC6393XB_CELL_MMC] = { |
353 | .name = "tmio-mmc", | 357 | .name = "tmio-mmc", |
358 | .driver_data = &tc6393xb_mmc_data, | ||
354 | .num_resources = ARRAY_SIZE(tc6393xb_mmc_resources), | 359 | .num_resources = ARRAY_SIZE(tc6393xb_mmc_resources), |
355 | .resources = tc6393xb_mmc_resources, | 360 | .resources = tc6393xb_mmc_resources, |
356 | }, | 361 | }, |