ODROID-M1: dtb/dtbo: pcf8563 is added.

Signed-off-by: Luke go <sangch.go@gmail.com>
Signed-off-by: Steve Jeong <steve@how2flow.net>
Change-Id: Ie4757602bcbdf9988cd171e984b38fd3853d8499
This commit is contained in:
Luke go
2023-05-17 16:35:33 +09:00
committed by codewalkerster
parent 776081b5e9
commit 2adc4426ea
2 changed files with 21 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ dtbo-$(CONFIG_ARCH_ROCKCHIP_ODROIDM1) += \
mcp2515_12mhz.dtbo \
mcp2515_16mhz.dtbo \
onewire.dtbo \
pcf8563.dtbo \
pwm1.dtbo \
pwm2.dtbo \
pwm9.dtbo \

View File

@@ -0,0 +1,20 @@
/dts-v1/;
/plugin/;
/ {
fragment@0 {
// i2c3 aliased with i2c0.
// This activates i2c3 but it will be named as i2c0 on the userspace.
target = <&i2c3>;
__overlay__ {
status = "okay";
pcf8563: rtc@51 {
status = "okay";
compatible = "nxp,pcf8563";
reg = <0x51>;
};
};
};
};