Skip to content

Commit 82567c8

Browse files
committed
Merge tag 'samsung-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into fixes
Merge "Samsung fixes for v4.2" from Kukjin Kim: From Krzysztof Kozlowski: 1. Fix exynos3250 MIPI DSI display and MIPI CSIS-2 camera sensorx after adding support for PMU regmap in exynos-video-mipi driver (issue introduced in v4.0). 2. Bring back cpufreq for exynos4210 after incomplete switch to cpufreq-dt driver in 4.2 merge window. The necessary DT changes for exynos4210 cpufreq was not applied to the same tree as rest of patchset because of multiple conflicts between clk and arm-soc trees. Unfortunately without the change the exynos4210 boards loose cpufreq feature. * tag 'samsung-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung: ARM: dts: add CPU OPP and regulator supply property for exynos4210 ARM: dts: Update video-phy node with syscon phandle for exynos3250 Signed-off-by: Olof Johansson <olof@lixom.net>
2 parents 3eae03d + 300bde7 commit 82567c8

File tree

5 files changed

+25
-1
lines changed

5 files changed

+25
-1
lines changed

arch/arm/boot/dts/exynos3250.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@
138138

139139
mipi_phy: video-phy@10020710 {
140140
compatible = "samsung,s5pv210-mipi-video-phy";
141-
reg = <0x10020710 8>;
142141
#phy-cells = <1>;
142+
syscon = <&pmu_system_controller>;
143143
};
144144

145145
pd_cam: cam-power-domain@10023C00 {

arch/arm/boot/dts/exynos4210-origen.dts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@
127127
};
128128
};
129129

130+
&cpu0 {
131+
cpu0-supply = <&buck1_reg>;
132+
};
133+
130134
&fimd {
131135
pinctrl-0 = <&lcd_en &lcd_clk &lcd_data24 &pwm0_out>;
132136
pinctrl-names = "default";

arch/arm/boot/dts/exynos4210-trats.dts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@
188188
};
189189
};
190190

191+
&cpu0 {
192+
cpu0-supply = <&varm_breg>;
193+
};
194+
191195
&dsi_0 {
192196
vddcore-supply = <&vusb_reg>;
193197
vddio-supply = <&vmipi_reg>;

arch/arm/boot/dts/exynos4210-universal_c210.dts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,10 @@
548548
};
549549
};
550550

551+
&cpu0 {
552+
cpu0-supply = <&vdd_arm_reg>;
553+
};
554+
551555
&pinctrl_1 {
552556
hdmi_hpd: hdmi-hpd {
553557
samsung,pins = "gpx3-7";

arch/arm/boot/dts/exynos4210.dtsi

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@
4040
device_type = "cpu";
4141
compatible = "arm,cortex-a9";
4242
reg = <0x900>;
43+
clocks = <&clock CLK_ARM_CLK>;
44+
clock-names = "cpu";
45+
clock-latency = <160000>;
46+
47+
operating-points = <
48+
1200000 1250000
49+
1000000 1150000
50+
800000 1075000
51+
500000 975000
52+
400000 975000
53+
200000 950000
54+
>;
4355
cooling-min-level = <4>;
4456
cooling-max-level = <2>;
4557
#cooling-cells = <2>; /* min followed by max */

0 commit comments

Comments
 (0)