mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
d5eb195f26
There are (atleast) two versions of the i.MX53 LOCO: - the MCIMX53-START board - the MCIMX53-START-R board The MCIMX53-START-R has a mc34708 pmic and is otherwise the similar to the MCIMX53-START. To prepare for the START-R, move all common nodes to a new imx53-qsb-common.dtsi and remove everything but the board name and pmic from the imx53-qsb.dts. Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
116 lines
2.6 KiB
Plaintext
116 lines
2.6 KiB
Plaintext
/*
|
|
* Copyright 2011 Freescale Semiconductor, Inc.
|
|
* Copyright 2011 Linaro Ltd.
|
|
*
|
|
* The code contained herein is licensed under the GNU General Public
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
* Version 2 or later at the following locations:
|
|
*
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "imx53-qsb-common.dtsi"
|
|
|
|
/ {
|
|
model = "Freescale i.MX53 Quick Start Board";
|
|
compatible = "fsl,imx53-qsb", "fsl,imx53";
|
|
};
|
|
|
|
&i2c1 {
|
|
pmic: dialog@48 {
|
|
compatible = "dlg,da9053-aa", "dlg,da9052";
|
|
reg = <0x48>;
|
|
interrupt-parent = <&gpio7>;
|
|
interrupts = <11 0x8>; /* low-level active IRQ at GPIO7_11 */
|
|
|
|
regulators {
|
|
buck1_reg: buck1 {
|
|
regulator-min-microvolt = <500000>;
|
|
regulator-max-microvolt = <2075000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
buck2_reg: buck2 {
|
|
regulator-min-microvolt = <500000>;
|
|
regulator-max-microvolt = <2075000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
buck3_reg: buck3 {
|
|
regulator-min-microvolt = <925000>;
|
|
regulator-max-microvolt = <2500000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
buck4_reg: buck4 {
|
|
regulator-min-microvolt = <925000>;
|
|
regulator-max-microvolt = <2500000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo1_reg: ldo1 {
|
|
regulator-min-microvolt = <600000>;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-boot-on;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo2_reg: ldo2 {
|
|
regulator-min-microvolt = <600000>;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo3_reg: ldo3 {
|
|
regulator-min-microvolt = <600000>;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo4_reg: ldo4 {
|
|
regulator-min-microvolt = <1725000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo5_reg: ldo5 {
|
|
regulator-min-microvolt = <1725000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo6_reg: ldo6 {
|
|
regulator-min-microvolt = <1200000>;
|
|
regulator-max-microvolt = <3600000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo7_reg: ldo7 {
|
|
regulator-min-microvolt = <1200000>;
|
|
regulator-max-microvolt = <3600000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo8_reg: ldo8 {
|
|
regulator-min-microvolt = <1200000>;
|
|
regulator-max-microvolt = <3600000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo9_reg: ldo9 {
|
|
regulator-min-microvolt = <1200000>;
|
|
regulator-max-microvolt = <3600000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
ldo10_reg: ldo10 {
|
|
regulator-min-microvolt = <1250000>;
|
|
regulator-max-microvolt = <3650000>;
|
|
regulator-always-on;
|
|
};
|
|
};
|
|
};
|
|
};
|