Skip to content

Commit 0d6367c

Browse files
committed
Merge tag 'samsung-dt-5.1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux into arm/dt
Samsung DTS ARM changes for v5.1, part 2 1. Enable ADC on Odroid HC1 board. 2. Fix clkout register failure on Exynos3250. 3. Allow using earlycon on Arndale board. 4. Disable ARM PMU on Odroid XU3 Lite because it is locked by Trusted Firmware. 5. Add support for secondary DAI to Odroid XU3 and XU4 boards. * tag 'samsung-dt-5.1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux: ARM: dts: exynos: Add support for secondary DAI to Odroid XU4 ARM: dts: exynos: Add support for secondary DAI to Odroid XU3 ARM: dts: exynos: Disable ARM PMU on Odroid XU3-lite ARM: dts: exynos: Add stdout path property to Arndale board ARM: dts: exynos: Add minimal clkout parameters to Exynos3250 PMU ARM: dts: exynos: Enable ADC on Odroid HC1 Signed-off-by: Arnd Bergmann <arnd@arndb.de>
2 parents b258ad9 + 625c731 commit 0d6367c

7 files changed

+24
-9
lines changed

arch/arm/boot/dts/exynos3250.dtsi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@
168168
interrupt-controller;
169169
#interrupt-cells = <3>;
170170
interrupt-parent = <&gic>;
171+
clock-names = "clkout8";
172+
clocks = <&cmu CLK_FIN_PLL>;
173+
#clock-cells = <1>;
171174
};
172175

173176
mipi_phy: video-phy {

arch/arm/boot/dts/exynos5250-arndale.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
};
2424

2525
chosen {
26-
bootargs = "console=ttySAC2,115200";
26+
stdout-path = "serial2:115200n8";
2727
};
2828

2929
gpio_keys {

arch/arm/boot/dts/exynos5422-odroid-core.dtsi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@
3636
};
3737
};
3838

39+
&adc {
40+
vdd-supply = <&ldo4_reg>;
41+
status = "okay";
42+
};
43+
3944
&bus_wcore {
4045
devfreq-events = <&nocp_mem0_0>, <&nocp_mem0_1>,
4146
<&nocp_mem1_0>, <&nocp_mem1_1>;

arch/arm/boot/dts/exynos5422-odroidxu3-audio.dtsi

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
"Headphone Jack", "MICBIAS",
2525
"IN1", "Headphone Jack",
2626
"Speakers", "SPKL",
27-
"Speakers", "SPKR";
27+
"Speakers", "SPKR",
28+
"I2S Playback", "Mixer DAI TX",
29+
"HiFi Playback", "Mixer DAI TX";
2830

2931
assigned-clocks = <&clock CLK_MOUT_EPLL>,
3032
<&clock CLK_MOUT_MAU_EPLL>,
@@ -51,7 +53,7 @@
5153
<196608000>;
5254

5355
cpu {
54-
sound-dai = <&i2s0 0>;
56+
sound-dai = <&i2s0 0>, <&i2s0 1>;
5557
};
5658
codec {
5759
sound-dai = <&hdmi>, <&max98090>;

arch/arm/boot/dts/exynos5422-odroidxu3-common.dtsi

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -362,11 +362,6 @@
362362
};
363363
};
364364

365-
&adc {
366-
vdd-supply = <&ldo4_reg>;
367-
status = "okay";
368-
};
369-
370365
&hdmi {
371366
status = "okay";
372367
ddc = <&i2c_2>;

arch/arm/boot/dts/exynos5422-odroidxu3-lite.dts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@
1818
compatible = "hardkernel,odroid-xu3-lite", "samsung,exynos5800", "samsung,exynos5";
1919
};
2020

21+
&arm_a7_pmu {
22+
status = "disabled";
23+
};
24+
25+
&arm_a15_pmu {
26+
status = "disabled";
27+
};
28+
2129
&pwm {
2230
/*
2331
* PWM 0 -- fan

arch/arm/boot/dts/exynos5422-odroidxu4.dts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
compatible = "samsung,odroid-xu3-audio";
3434
model = "Odroid-XU4";
3535

36+
samsung,audio-routing = "I2S Playback", "Mixer DAI TX";
37+
3638
assigned-clocks = <&clock CLK_MOUT_EPLL>,
3739
<&clock CLK_MOUT_MAU_EPLL>,
3840
<&clock CLK_MOUT_USER_MAU_EPLL>,
@@ -58,7 +60,7 @@
5860
<196608000>;
5961

6062
cpu {
61-
sound-dai = <&i2s0 0>;
63+
sound-dai = <&i2s0 0>, <&i2s0 1>;
6264
};
6365

6466
codec {

0 commit comments

Comments
 (0)