mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
31 lines
535 B
Text
31 lines
535 B
Text
|
// SPDX-License-Identifier: GPL-2.0-only
|
||
|
/*
|
||
|
* Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
|
||
|
*/
|
||
|
|
||
|
&ldo3_reg {
|
||
|
regulator-min-microvolt = <1800000>;
|
||
|
regulator-max-microvolt = <1800000>;
|
||
|
regulator-always-on;
|
||
|
};
|
||
|
|
||
|
&mmc1 {
|
||
|
vmmc-supply = <&vmmcsd_fixed>;
|
||
|
};
|
||
|
|
||
|
&mmc2 {
|
||
|
vmmc-supply = <&vmmcsd_fixed>;
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&emmc_pins>;
|
||
|
bus-width = <8>;
|
||
|
status = "okay";
|
||
|
non-removable;
|
||
|
};
|
||
|
|
||
|
/ {
|
||
|
memory@80000000 {
|
||
|
device_type = "memory";
|
||
|
reg = <0x80000000 0x20000000>; /* 512 MB */
|
||
|
};
|
||
|
};
|