1 /* linux/arch/arm/mach-s5pc100/setup-sdhci.c
3 * Copyright 2008 Samsung Electronics
5 * S5PC100 - Helper functions for settign up SDHCI device(s) (HSMMC)
7 * Based on mach-s3c6410/setup-sdhci.c
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/interrupt.h>
17 #include <linux/platform_device.h>
20 #include <linux/mmc/card.h>
21 #include <linux/mmc/host.h>
23 #include <plat/regs-sdhci.h>
24 #include <plat/sdhci.h>
26 /* clock sources for the mmc bus clock, order as for the ctrl2[5..4] */
28 char *s5pc100_hsmmc_clksrcs
[4] = {
31 /* [2] = "mmc_bus", not yet successfully used yet */
32 /* [3] = "48m", - note not successfully used yet */
36 void s5pc100_setup_sdhci0_cfg_card(struct platform_device
*dev
,
39 struct mmc_card
*card
)
43 /* don't need to alter anything acording to card-type */
45 writel(S3C64XX_SDHCI_CONTROL4_DRIVE_9mA
, r
+ S3C64XX_SDHCI_CONTROL4
);
47 ctrl2
= readl(r
+ S3C_SDHCI_CONTROL2
);
48 ctrl2
&= S3C_SDHCI_CTRL2_SELBASECLK_MASK
;
49 ctrl2
|= (S3C64XX_SDHCI_CTRL2_ENSTAASYNCCLR
|
50 S3C64XX_SDHCI_CTRL2_ENCMDCNFMSK
|
51 S3C_SDHCI_CTRL2_ENFBCLKRX
|
52 S3C_SDHCI_CTRL2_DFCNT_NONE
|
53 S3C_SDHCI_CTRL2_ENCLKOUTHOLD
);
55 if (ios
->clock
< 25 * 1000000)
56 ctrl3
= (S3C_SDHCI_CTRL3_FCSEL3
|
57 S3C_SDHCI_CTRL3_FCSEL2
|
58 S3C_SDHCI_CTRL3_FCSEL1
|
59 S3C_SDHCI_CTRL3_FCSEL0
);
61 ctrl3
= (S3C_SDHCI_CTRL3_FCSEL1
| S3C_SDHCI_CTRL3_FCSEL0
);
63 writel(ctrl2
, r
+ S3C_SDHCI_CONTROL2
);
64 writel(ctrl3
, r
+ S3C_SDHCI_CONTROL3
);