arm64: dts: mt8183: add mmc node
Add mmc DTS node to the mt8183 and mt8183-evb. Signed-off-by: Jjian Zhou <jjian.zhou-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> Link: https://lore.kernel.org/r/1554888341-5249-1-git-send-email-jjian.zhou@mediatek.com Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
This commit is contained in:
Родитель
e9cabfd046
Коммит
5e6cdf0051
|
@ -73,6 +73,47 @@
|
||||||
clock-frequency = <1000000>;
|
clock-frequency = <1000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&mmc0 {
|
||||||
|
status = "okay";
|
||||||
|
pinctrl-names = "default", "state_uhs";
|
||||||
|
pinctrl-0 = <&mmc0_pins_default>;
|
||||||
|
pinctrl-1 = <&mmc0_pins_uhs>;
|
||||||
|
bus-width = <8>;
|
||||||
|
max-frequency = <200000000>;
|
||||||
|
cap-mmc-highspeed;
|
||||||
|
mmc-hs200-1_8v;
|
||||||
|
mmc-hs400-1_8v;
|
||||||
|
cap-mmc-hw-reset;
|
||||||
|
no-sdio;
|
||||||
|
no-sd;
|
||||||
|
hs400-ds-delay = <0x12814>;
|
||||||
|
vmmc-supply = <&mt6358_vemc_reg>;
|
||||||
|
vqmmc-supply = <&mt6358_vio18_reg>;
|
||||||
|
assigned-clocks = <&topckgen CLK_TOP_MUX_MSDC50_0>;
|
||||||
|
assigned-clock-parents = <&topckgen CLK_TOP_MSDCPLL_CK>;
|
||||||
|
non-removable;
|
||||||
|
};
|
||||||
|
|
||||||
|
&mmc1 {
|
||||||
|
status = "okay";
|
||||||
|
pinctrl-names = "default", "state_uhs";
|
||||||
|
pinctrl-0 = <&mmc1_pins_default>;
|
||||||
|
pinctrl-1 = <&mmc1_pins_uhs>;
|
||||||
|
bus-width = <4>;
|
||||||
|
max-frequency = <200000000>;
|
||||||
|
cap-sd-highspeed;
|
||||||
|
sd-uhs-sdr50;
|
||||||
|
sd-uhs-sdr104;
|
||||||
|
cap-sdio-irq;
|
||||||
|
no-mmc;
|
||||||
|
no-sd;
|
||||||
|
vmmc-supply = <&mt6358_vmch_reg>;
|
||||||
|
vqmmc-supply = <&mt6358_vmc_reg>;
|
||||||
|
keep-power-in-suspend;
|
||||||
|
enable-sdio-wakeup;
|
||||||
|
non-removable;
|
||||||
|
};
|
||||||
|
|
||||||
&pio {
|
&pio {
|
||||||
i2c_pins_0: i2c0{
|
i2c_pins_0: i2c0{
|
||||||
pins_i2c{
|
pins_i2c{
|
||||||
|
@ -138,6 +179,111 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mmc0_pins_default: mmc0default {
|
||||||
|
pins_cmd_dat {
|
||||||
|
pinmux = <PINMUX_GPIO123__FUNC_MSDC0_DAT0>,
|
||||||
|
<PINMUX_GPIO128__FUNC_MSDC0_DAT1>,
|
||||||
|
<PINMUX_GPIO125__FUNC_MSDC0_DAT2>,
|
||||||
|
<PINMUX_GPIO132__FUNC_MSDC0_DAT3>,
|
||||||
|
<PINMUX_GPIO126__FUNC_MSDC0_DAT4>,
|
||||||
|
<PINMUX_GPIO129__FUNC_MSDC0_DAT5>,
|
||||||
|
<PINMUX_GPIO127__FUNC_MSDC0_DAT6>,
|
||||||
|
<PINMUX_GPIO130__FUNC_MSDC0_DAT7>,
|
||||||
|
<PINMUX_GPIO122__FUNC_MSDC0_CMD>;
|
||||||
|
input-enable;
|
||||||
|
bias-pull-up;
|
||||||
|
};
|
||||||
|
|
||||||
|
pins_clk {
|
||||||
|
pinmux = <PINMUX_GPIO124__FUNC_MSDC0_CLK>;
|
||||||
|
bias-pull-down;
|
||||||
|
};
|
||||||
|
|
||||||
|
pins_rst {
|
||||||
|
pinmux = <PINMUX_GPIO133__FUNC_MSDC0_RSTB>;
|
||||||
|
bias-pull-up;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
mmc0_pins_uhs: mmc0@0{
|
||||||
|
pins_cmd_dat {
|
||||||
|
pinmux = <PINMUX_GPIO123__FUNC_MSDC0_DAT0>,
|
||||||
|
<PINMUX_GPIO128__FUNC_MSDC0_DAT1>,
|
||||||
|
<PINMUX_GPIO125__FUNC_MSDC0_DAT2>,
|
||||||
|
<PINMUX_GPIO132__FUNC_MSDC0_DAT3>,
|
||||||
|
<PINMUX_GPIO126__FUNC_MSDC0_DAT4>,
|
||||||
|
<PINMUX_GPIO129__FUNC_MSDC0_DAT5>,
|
||||||
|
<PINMUX_GPIO127__FUNC_MSDC0_DAT6>,
|
||||||
|
<PINMUX_GPIO130__FUNC_MSDC0_DAT7>,
|
||||||
|
<PINMUX_GPIO122__FUNC_MSDC0_CMD>;
|
||||||
|
input-enable;
|
||||||
|
drive-strength = <MTK_DRIVE_10mA>;
|
||||||
|
bias-pull-up = <MTK_PUPD_SET_R1R0_01>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pins_clk {
|
||||||
|
pinmux = <PINMUX_GPIO124__FUNC_MSDC0_CLK>;
|
||||||
|
drive-strength = <MTK_DRIVE_10mA>;
|
||||||
|
bias-pull-down = <MTK_PUPD_SET_R1R0_10>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pins_ds {
|
||||||
|
pinmux = <PINMUX_GPIO131__FUNC_MSDC0_DSL>;
|
||||||
|
drive-strength = <MTK_DRIVE_10mA>;
|
||||||
|
bias-pull-down = <MTK_PUPD_SET_R1R0_10>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pins_rst {
|
||||||
|
pinmux = <PINMUX_GPIO133__FUNC_MSDC0_RSTB>;
|
||||||
|
drive-strength = <MTK_DRIVE_10mA>;
|
||||||
|
bias-pull-up;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
mmc1_pins_default: mmc1default {
|
||||||
|
pins_cmd_dat {
|
||||||
|
pinmux = <PINMUX_GPIO31__FUNC_MSDC1_CMD>,
|
||||||
|
<PINMUX_GPIO32__FUNC_MSDC1_DAT0>,
|
||||||
|
<PINMUX_GPIO34__FUNC_MSDC1_DAT1>,
|
||||||
|
<PINMUX_GPIO33__FUNC_MSDC1_DAT2>,
|
||||||
|
<PINMUX_GPIO30__FUNC_MSDC1_DAT3>;
|
||||||
|
input-enable;
|
||||||
|
bias-pull-up;
|
||||||
|
};
|
||||||
|
|
||||||
|
pins_clk {
|
||||||
|
pinmux = <PINMUX_GPIO29__FUNC_MSDC1_CLK>;
|
||||||
|
input-enable;
|
||||||
|
bias-pull-down;
|
||||||
|
};
|
||||||
|
|
||||||
|
pins_pmu {
|
||||||
|
pinmux = <PINMUX_GPIO178__FUNC_GPIO178>,
|
||||||
|
<PINMUX_GPIO166__FUNC_GPIO166>;
|
||||||
|
output-high;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
mmc1_pins_uhs: mmc1@0{
|
||||||
|
pins_cmd_dat {
|
||||||
|
pinmux = <PINMUX_GPIO31__FUNC_MSDC1_CMD>,
|
||||||
|
<PINMUX_GPIO32__FUNC_MSDC1_DAT0>,
|
||||||
|
<PINMUX_GPIO34__FUNC_MSDC1_DAT1>,
|
||||||
|
<PINMUX_GPIO33__FUNC_MSDC1_DAT2>,
|
||||||
|
<PINMUX_GPIO30__FUNC_MSDC1_DAT3>;
|
||||||
|
drive-strength = <MTK_DRIVE_6mA>;
|
||||||
|
input-enable;
|
||||||
|
bias-pull-up = <MTK_PUPD_SET_R1R0_01>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pins_clk {
|
||||||
|
pinmux = <PINMUX_GPIO29__FUNC_MSDC1_CLK>;
|
||||||
|
drive-strength = <MTK_DRIVE_6mA>;
|
||||||
|
bias-pull-down = <MTK_PUPD_SET_R1R0_10>;
|
||||||
|
input-enable;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
spi_pins_1: spi1{
|
spi_pins_1: spi1{
|
||||||
pins_spi{
|
pins_spi{
|
||||||
pinmux = <PINMUX_GPIO161__FUNC_SPI1_A_MI>,
|
pinmux = <PINMUX_GPIO161__FUNC_SPI1_A_MI>,
|
||||||
|
|
|
@ -648,6 +648,30 @@
|
||||||
#clock-cells = <1>;
|
#clock-cells = <1>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mmc0: mmc@11230000 {
|
||||||
|
compatible = "mediatek,mt8183-mmc";
|
||||||
|
reg = <0 0x11230000 0 0x1000>,
|
||||||
|
<0 0x11f50000 0 0x1000>;
|
||||||
|
interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_LOW>;
|
||||||
|
clocks = <&topckgen CLK_TOP_MUX_MSDC50_0>,
|
||||||
|
<&infracfg CLK_INFRA_MSDC0>,
|
||||||
|
<&infracfg CLK_INFRA_MSDC0_SCK>;
|
||||||
|
clock-names = "source", "hclk", "source_cg";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
mmc1: mmc@11240000 {
|
||||||
|
compatible = "mediatek,mt8183-mmc";
|
||||||
|
reg = <0 0x11240000 0 0x1000>,
|
||||||
|
<0 0x11e10000 0 0x1000>;
|
||||||
|
interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_LOW>;
|
||||||
|
clocks = <&topckgen CLK_TOP_MUX_MSDC30_1>,
|
||||||
|
<&infracfg CLK_INFRA_MSDC1>,
|
||||||
|
<&infracfg CLK_INFRA_MSDC1_SCK>;
|
||||||
|
clock-names = "source", "hclk", "source_cg";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
efuse: efuse@11f10000 {
|
efuse: efuse@11f10000 {
|
||||||
compatible = "mediatek,mt8183-efuse",
|
compatible = "mediatek,mt8183-efuse",
|
||||||
"mediatek,efuse";
|
"mediatek,efuse";
|
||||||
|
|
Загрузка…
Ссылка в новой задаче