All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] S3C: SDHCI: Add platform data parameters for clock configuration
@ 2010-03-09 13:38 Thomas Abraham
  2010-05-04  7:15 ` Ben Dooks
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Abraham @ 2010-03-09 13:38 UTC (permalink / raw)
  To: linux-samsung-soc

This patch adds two additional parameters in the S3C SDHCI platform
data structure for SDHCI SCLK clock configuration. This patch also
modifies the S3C SDHCI controller driver to use the new parameters.

Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
---
 arch/arm/plat-samsung/include/plat/sdhci.h |    5 +++++
 drivers/mmc/host/sdhci-s3c.c               |    3 +++
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/arch/arm/plat-samsung/include/plat/sdhci.h b/arch/arm/plat-samsung/include/plat/sdhci.h
index b0a0528..705eee8 100644
--- a/arch/arm/plat-samsung/include/plat/sdhci.h
+++ b/arch/arm/plat-samsung/include/plat/sdhci.h
@@ -29,6 +29,8 @@ struct mmc_ios;
  *            is necessary the controllers and/or GPIO blocks require the
  *	      changing of driver-strength and other controls dependant on
  *	      the card and speed of operation.
+ * @sclk_mmc_freq: Clock frequency of SCLK MMC (mmc_bus).
+ * @cfg_clocks: Configure platform specific clocks.
  * @cfg_ext_cd: Configure external interrupt line.
  * @is_card_present: Returns status of card availability.
  * @ext_cd: The external GPIO interrupt number to be used.
@@ -49,6 +51,9 @@ struct s3c_sdhci_platdata {
 			    struct mmc_ios *ios,
 			    struct mmc_card *card);
 
+	unsigned int	sclk_mmc_freq;
+	void		(*cfg_clocks)(struct platform_device *pdev);
+
 	void		(*cfg_ext_cd)(void);
 	unsigned int	(*is_card_present)(void);
 	unsigned int	ext_cd;
diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c
index 073b56f..980f906 100644
--- a/drivers/mmc/host/sdhci-s3c.c
+++ b/drivers/mmc/host/sdhci-s3c.c
@@ -282,6 +282,9 @@ static int __devinit sdhci_s3c_probe(struct platform_device *pdev)
 	/* enable the local io clock and keep it running for the moment. */
 	clk_enable(sc->clk_io);
 
+	if (pdata->cfg_clocks)
+		pdata->cfg_clocks(pdev);
+
 	for (clks = 0, ptr = 0; ptr < MAX_BUS_CLK; ptr++) {
 		struct clk *clk;
 		char *name = pdata->clocks[ptr];
-- 
1.6.6.rc2

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

end of thread, other threads:[~2010-05-04  7:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-09 13:38 [PATCH] S3C: SDHCI: Add platform data parameters for clock configuration Thomas Abraham
2010-05-04  7:15 ` Ben Dooks

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.