mirror of https://gitee.com/openkylin/linux.git
ARM: dts: Re-organize RTC status for exynos5250
Some boards might not have RTC xtal, so RTC shouldn't really be enabled by default. Enable it in the required board files. For now enable it for all board files to maintain the enabled status exisitng prior to this patch. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
451c402b75
commit
65cedf0e25
|
@ -25,6 +25,10 @@ chosen {
|
||||||
bootargs = "console=ttySAC2,115200";
|
bootargs = "console=ttySAC2,115200";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rtc@101E0000 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
codec@11000000 {
|
codec@11000000 {
|
||||||
samsung,mfc-r = <0x43000000 0x800000>;
|
samsung,mfc-r = <0x43000000 0x800000>;
|
||||||
samsung,mfc-l = <0x51000000 0x800000>;
|
samsung,mfc-l = <0x51000000 0x800000>;
|
||||||
|
|
|
@ -27,6 +27,10 @@ chosen {
|
||||||
bootargs = "root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC2,115200 init=/linuxrc";
|
bootargs = "root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC2,115200 init=/linuxrc";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rtc@101E0000 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
i2c@12C60000 {
|
i2c@12C60000 {
|
||||||
samsung,i2c-sda-delay = <100>;
|
samsung,i2c-sda-delay = <100>;
|
||||||
samsung,i2c-max-bus-freq = <20000>;
|
samsung,i2c-max-bus-freq = <20000>;
|
||||||
|
|
|
@ -20,6 +20,10 @@ aliases {
|
||||||
i2c104 = &i2c_104;
|
i2c104 = &i2c_104;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rtc@101E0000 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
pinctrl@11400000 {
|
pinctrl@11400000 {
|
||||||
sd3_clk: sd3-clk {
|
sd3_clk: sd3-clk {
|
||||||
samsung,pin-drv = <0>;
|
samsung,pin-drv = <0>;
|
||||||
|
|
|
@ -201,7 +201,7 @@ codec@11000000 {
|
||||||
rtc@101E0000 {
|
rtc@101E0000 {
|
||||||
clocks = <&clock 337>;
|
clocks = <&clock 337>;
|
||||||
clock-names = "rtc";
|
clock-names = "rtc";
|
||||||
status = "okay";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
tmu@10060000 {
|
tmu@10060000 {
|
||||||
|
|
Loading…
Reference in New Issue