diff options
author | Alex Bee <knaerzche@gmail.com> | 2023-12-02 16:05:06 +0300 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2023-12-05 11:20:45 +0300 |
commit | 697b39733df961910755f49284f87c0b2a9e5ad3 (patch) | |
tree | ab0c0585041658775e18208910ef99064a5ee0b8 | |
parent | 5ca860fb438bafdf8501567b320239ea99910748 (diff) | |
download | linux-697b39733df961910755f49284f87c0b2a9e5ad3.tar.xz |
ARM: dts: rockchip: Move i2c aliases to SoC dtsi for RK3128
SoC TRM, SoC datasheet and board schematics always refer to the
same i2c numbers - even if not all are used for a specific board.
In order to not have to re-define them for every board move the
aliases to SoC dtsi for RK3128 like it's being done for all other
Rockchip ARM SoCs.
Signed-off-by: Alex Bee <knaerzche@gmail.com>
Link: https://lore.kernel.org/r/20231202130506.66738-4-knaerzche@gmail.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
-rw-r--r-- | arch/arm/boot/dts/rockchip/rk3128-evb.dts | 1 | ||||
-rw-r--r-- | arch/arm/boot/dts/rockchip/rk3128.dtsi | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/rockchip/rk3128-evb.dts b/arch/arm/boot/dts/rockchip/rk3128-evb.dts index 776a483cc26b..c7ab7fcdb436 100644 --- a/arch/arm/boot/dts/rockchip/rk3128-evb.dts +++ b/arch/arm/boot/dts/rockchip/rk3128-evb.dts @@ -12,7 +12,6 @@ compatible = "rockchip,rk3128-evb", "rockchip,rk3128"; aliases { - i2c1 = &i2c1; mmc0 = &emmc; }; diff --git a/arch/arm/boot/dts/rockchip/rk3128.dtsi b/arch/arm/boot/dts/rockchip/rk3128.dtsi index 8e5a13eb4eff..35f09e1b6e89 100644 --- a/arch/arm/boot/dts/rockchip/rk3128.dtsi +++ b/arch/arm/boot/dts/rockchip/rk3128.dtsi @@ -21,6 +21,10 @@ gpio1 = &gpio1; gpio2 = &gpio2; gpio3 = &gpio3; + i2c0 = &i2c0; + i2c1 = &i2c1; + i2c2 = &i2c2; + i2c3 = &i2c3; }; arm-pmu { |