forked from Minki/linux
83089bb9a3
Currently TM2E dts includes TM2 but there are some differences between the two boards and TM2 has some properties that TM2E doesn't have. That's why it's important to keep the two dts files independent and put all the commonalities in a tm2-common.dtsi file. At the current status the only two differences between the two dts files (besides the board name) are ldo31 and ldo38. Signed-off-by: Andi Shyti <andi.shyti@samsung.com> Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
32 lines
806 B
Plaintext
32 lines
806 B
Plaintext
/*
|
|
* SAMSUNG Exynos5433 TM2E board device tree source
|
|
*
|
|
* Copyright (c) 2016 Samsung Electronics Co., Ltd.
|
|
*
|
|
* Device tree source file for Samsung's TM2E(TM2 EDGE) board which is based on
|
|
* Samsung Exynos5433 SoC.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include "exynos5433-tm2-common.dtsi"
|
|
|
|
/ {
|
|
model = "Samsung TM2E board";
|
|
compatible = "samsung,tm2e", "samsung,exynos5433";
|
|
};
|
|
|
|
&ldo31_reg {
|
|
regulator-name = "TSP_VDD_1.8V_AP";
|
|
regulator-min-microvolt = <1800000>;
|
|
regulator-max-microvolt = <1800000>;
|
|
};
|
|
|
|
&ldo38_reg {
|
|
regulator-name = "VCC_3.3V_MOTOR_AP";
|
|
regulator-min-microvolt = <3300000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
};
|