ARM: dts: lpc4357-ea4357: add mmcsd
authorJoachim Eastwood <manabian@gmail.com>
Thu, 2 Apr 2015 03:54:29 +0000 (05:54 +0200)
committerJoachim Eastwood <manabian@gmail.com>
Sat, 11 Jul 2015 21:08:19 +0000 (23:08 +0200)
Enable the MMC/SD controller on EA4357 devkit and add pin
muxing plus a regulator.

Signed-off-by: Joachim Eastwood <manabian@gmail.com>
arch/arm/boot/dts/lpc4357-ea4357-devkit.dts

index 06ba998d544fe9690804a2da2b6555dff995f738..d02f93f19bf5b79f9525e953ebe30cc8cf7ec786 100644 (file)
                device_type = "memory";
                reg = <0x28000000 0x2000000>; /* 32 MB */
        };
+
+       /* vmmc is controlled by sdmmc host internally */
+       vmmc: vmmc_fixed {
+               compatible = "regulator-fixed";
+               regulator-name = "vmmc-supply";
+               regulator-min-microvolt = <3300000>;
+               regulator-max-microvolt = <3300000>;
+       };
 };
 
 &pinctrl {
+       sdmmc_pins: sdmmc-pins {
+               sdmmc_clk_cfg {
+                       pins = "pc_0";
+                       function = "sdmmc";
+                       slew-rate = <1>;
+                       bias-pull-down;
+               };
+
+               sdmmc_cmd_dat0_3_cfg {
+                       pins = "pc_4", "pc_5", "pc_6", "pc_7", "pc_10";
+                       function = "sdmmc";
+                       slew-rate = <1>;
+                       bias-disable;
+                       input-enable;
+                       input-schmitt-disable;
+               };
+
+               sdmmc_cd_cfg {
+                       pins = "pc_8";
+                       function = "sdmmc";
+                       bias-pull-down;
+                       input-enable;
+               };
+
+               sdmmc_pow_cfg {
+                       pins = "pc_9";
+                       function = "sdmmc";
+                       bias-pull-down;
+               };
+       };
+
        uart0_pins: uart0-pins {
                uart0_rx_cfg {
                        pins = "pf_11";
        };
 };
 
+&mmcsd {
+       status = "okay";
+       bus-width = <4>;
+       vmmc-supply = <&vmmc>;
+       pinctrl-names = "default";
+       pinctrl-0 = <&sdmmc_pins>;
+};
+
 &uart0 {
        status = "okay";
        pinctrl-names = "default";
This page took 0.025556 seconds and 5 git commands to generate.