* [PATCHv4 03/10] arm/dts: dra7xx: add 'ti,set-rate-parent' for dss_dss_clk
[not found] <1433139798-23450-1-git-send-email-tomi.valkeinen@ti.com>
@ 2015-06-01 6:23 ` Tomi Valkeinen
2015-06-02 6:57 ` Tero Kristo
2015-06-01 6:23 ` [PATCHv4 08/10] arm/dts: dra7.dtsi: add DSS support Tomi Valkeinen
` (2 subsequent siblings)
3 siblings, 1 reply; 15+ messages in thread
From: Tomi Valkeinen @ 2015-06-01 6:23 UTC (permalink / raw)
To: Tony Lindgren, linux-omap, linux-arm-kernel
Cc: paul, Tero Kristo, Nishanth Menon, Tomi Valkeinen, devicetree
We need set-rate-parent flags for the display's clock path so that the
DSS driver can change the clock rate of the PLL.
This patchs adds the ti,set-rate-parent flag to 'dss_dss_clk' clock
node, which is only a gate clock, allowing the setting of the clock rate
to propagate to the PLL.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: devicetree@vger.kernel.org
---
arch/arm/boot/dts/dra7xx-clocks.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/boot/dts/dra7xx-clocks.dtsi b/arch/arm/boot/dts/dra7xx-clocks.dtsi
index 470f39c4e326..357bedeebfac 100644
--- a/arch/arm/boot/dts/dra7xx-clocks.dtsi
+++ b/arch/arm/boot/dts/dra7xx-clocks.dtsi
@@ -1531,6 +1531,7 @@
clocks = <&dpll_per_h12x2_ck>;
ti,bit-shift = <8>;
reg = <0x1120>;
+ ti,set-rate-parent;
};
dss_hdmi_clk: dss_hdmi_clk {
--
2.1.4
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCHv4 08/10] arm/dts: dra7.dtsi: add DSS support
[not found] <1433139798-23450-1-git-send-email-tomi.valkeinen@ti.com>
2015-06-01 6:23 ` [PATCHv4 03/10] arm/dts: dra7xx: add 'ti,set-rate-parent' for dss_dss_clk Tomi Valkeinen
@ 2015-06-01 6:23 ` Tomi Valkeinen
[not found] ` <1433139798-23450-9-git-send-email-tomi.valkeinen-l0cyMroinI0@public.gmane.org>
2015-06-01 6:23 ` [PATCHv4 09/10] arm/dts: dra72-evm.dts: add HDMI Tomi Valkeinen
2015-06-01 6:23 ` [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: " Tomi Valkeinen
3 siblings, 1 reply; 15+ messages in thread
From: Tomi Valkeinen @ 2015-06-01 6:23 UTC (permalink / raw)
To: Tony Lindgren, linux-omap, linux-arm-kernel
Cc: paul, Tero Kristo, Nishanth Menon, Tomi Valkeinen, devicetree
DRA7xxx contains a very similar DSS to OMAP5. The main differences are:
* no DSI or RFBI support.
* 1 or 2 dedicated video PLLs.
* need to do additional configuration to the DRA7 CONTROL module.
DRA72xx has only one video PLL, and DRA74xx has two.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: devicetree@vger.kernel.org
---
arch/arm/boot/dts/dra7.dtsi | 38 ++++++++++++++++++++++++++++++++++++++
arch/arm/boot/dts/dra72x.dtsi | 11 +++++++++++
arch/arm/boot/dts/dra74x.dtsi | 15 +++++++++++++++
3 files changed, 64 insertions(+)
diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
index db0890a36e96..f3a8237cea39 100644
--- a/arch/arm/boot/dts/dra7.dtsi
+++ b/arch/arm/boot/dts/dra7.dtsi
@@ -1474,6 +1474,44 @@
clocks = <&sys_clkin1>;
status = "disabled";
};
+
+ dss: dss@58000000 {
+ compatible = "ti,dra7-dss";
+ /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
+ /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
+ status = "disabled";
+ ti,hwmods = "dss_core";
+ /* CTRL_CORE_DSS_PLL_CONTROL */
+ syscon-pll-ctrl = <&scm_conf 0x538>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ ranges;
+
+ dispc@58001000 {
+ compatible = "ti,dra7-dispc";
+ reg = <0x58001000 0x1000>;
+ interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
+ ti,hwmods = "dss_dispc";
+ clocks = <&dss_dss_clk>;
+ clock-names = "fck";
+ /* CTRL_CORE_SMA_SW_1 */
+ syscon-pol = <&scm_conf 0x534>;
+ };
+
+ hdmi: encoder@58060000 {
+ compatible = "ti,dra7-hdmi";
+ reg = <0x58040000 0x200>,
+ <0x58040200 0x80>,
+ <0x58040300 0x80>,
+ <0x58060000 0x19000>;
+ reg-names = "wp", "pll", "phy", "core";
+ interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
+ status = "disabled";
+ ti,hwmods = "dss_hdmi";
+ clocks = <&dss_48mhz_clk>, <&dss_hdmi_clk>;
+ clock-names = "fck", "sys_clk";
+ };
+ };
};
thermal_zones: thermal-zones {
diff --git a/arch/arm/boot/dts/dra72x.dtsi b/arch/arm/boot/dts/dra72x.dtsi
index 03d742f8d572..eaca143faa77 100644
--- a/arch/arm/boot/dts/dra72x.dtsi
+++ b/arch/arm/boot/dts/dra72x.dtsi
@@ -34,3 +34,14 @@
interrupts = <GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>;
};
};
+
+&dss {
+ reg = <0x58000000 0x80>,
+ <0x58004054 0x4>,
+ <0x58004300 0x20>;
+ reg-names = "dss", "pll1_clkctrl", "pll1";
+
+ clocks = <&dss_dss_clk>,
+ <&dss_video1_clk>;
+ clock-names = "fck", "video1_clk";
+};
diff --git a/arch/arm/boot/dts/dra74x.dtsi b/arch/arm/boot/dts/dra74x.dtsi
index cc560a70926f..fa995d0ca1f2 100644
--- a/arch/arm/boot/dts/dra74x.dtsi
+++ b/arch/arm/boot/dts/dra74x.dtsi
@@ -73,3 +73,18 @@
};
};
};
+
+&dss {
+ reg = <0x58000000 0x80>,
+ <0x58004054 0x4>,
+ <0x58004300 0x20>,
+ <0x58005054 0x4>,
+ <0x58005300 0x20>;
+ reg-names = "dss", "pll1_clkctrl", "pll1",
+ "pll2_clkctrl", "pll2";
+
+ clocks = <&dss_dss_clk>,
+ <&dss_video1_clk>,
+ <&dss_video2_clk>;
+ clock-names = "fck", "video1_clk", "video2_clk";
+};
--
2.1.4
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCHv4 09/10] arm/dts: dra72-evm.dts: add HDMI
[not found] <1433139798-23450-1-git-send-email-tomi.valkeinen@ti.com>
2015-06-01 6:23 ` [PATCHv4 03/10] arm/dts: dra7xx: add 'ti,set-rate-parent' for dss_dss_clk Tomi Valkeinen
2015-06-01 6:23 ` [PATCHv4 08/10] arm/dts: dra7.dtsi: add DSS support Tomi Valkeinen
@ 2015-06-01 6:23 ` Tomi Valkeinen
2015-06-03 15:43 ` Tony Lindgren
2015-06-01 6:23 ` [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: " Tomi Valkeinen
3 siblings, 1 reply; 15+ messages in thread
From: Tomi Valkeinen @ 2015-06-01 6:23 UTC (permalink / raw)
To: Tony Lindgren, linux-omap, linux-arm-kernel
Cc: paul, Tero Kristo, Nishanth Menon, Tomi Valkeinen, devicetree
DRA72 EVM has a HDMI output. This patch adds the device tree nodes
required for HDMI.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: devicetree@vger.kernel.org
---
arch/arm/boot/dts/dra72-evm.dts | 110 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 110 insertions(+)
diff --git a/arch/arm/boot/dts/dra72-evm.dts b/arch/arm/boot/dts/dra72-evm.dts
index ce0390f081d9..4e1b60581782 100644
--- a/arch/arm/boot/dts/dra72-evm.dts
+++ b/arch/arm/boot/dts/dra72-evm.dts
@@ -19,6 +19,10 @@
reg = <0x80000000 0x40000000>; /* 1024 MB */
};
+ aliases {
+ display0 = &hdmi0;
+ };
+
evm_3v3: fixedregulator-evm_3v3 {
compatible = "regulator-fixed";
regulator-name = "evm_3v3";
@@ -35,6 +39,51 @@
compatible = "linux,extcon-usb-gpio";
id-gpio = <&pcf_gpio_21 2 GPIO_ACTIVE_HIGH>;
};
+
+ hdmi0: connector {
+ compatible = "hdmi-connector";
+ label = "hdmi";
+
+ type = "a";
+
+ port {
+ hdmi_connector_in: endpoint {
+ remote-endpoint = <&tpd12s015_out>;
+ };
+ };
+ };
+
+ tpd12s015: encoder {
+ compatible = "ti,tpd12s015";
+
+ pinctrl-names = "default";
+ pinctrl-0 = <&tpd12s015_pins>;
+
+ gpios = <&pcf_hdmi 4 GPIO_ACTIVE_HIGH>, /* P4, CT CP HPD */
+ <&pcf_hdmi 5 GPIO_ACTIVE_HIGH>, /* P5, LS OE */
+ <&gpio7 12 GPIO_ACTIVE_HIGH>; /* gpio7_12/sp1_cs2, HPD */
+
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port@0 {
+ reg = <0>;
+
+ tpd12s015_in: endpoint {
+ remote-endpoint = <&hdmi_out>;
+ };
+ };
+
+ port@1 {
+ reg = <1>;
+
+ tpd12s015_out: endpoint {
+ remote-endpoint = <&hdmi_connector_in>;
+ };
+ };
+ };
+ };
};
&dra7_pmx_core {
@@ -45,6 +94,13 @@
>;
};
+ i2c5_pins: pinmux_i2c5_pins {
+ pinctrl-single,pins = <
+ 0x2b4 (PIN_INPUT | MUX_MODE10) /* mcasp1_axr0.i2c5_sda */
+ 0x2b8 (PIN_INPUT | MUX_MODE10) /* mcasp1_axr1.i2c5_scl */
+ >;
+ };
+
nand_default: nand_default {
pinctrl-single,pins = <
0x0 (PIN_INPUT | MUX_MODE0) /* gpmc_ad0 */
@@ -142,6 +198,19 @@
0xb8 (PIN_OUTPUT | MUX_MODE1) /* gpmc_cs2.qspi1_cs0 */
>;
};
+
+ hdmi_pins: pinmux_hdmi_pins {
+ pinctrl-single,pins = <
+ 0x408 (PIN_INPUT | MUX_MODE1) /* i2c2_sda.hdmi1_ddc_scl */
+ 0x40c (PIN_INPUT | MUX_MODE1) /* i2c2_scl.hdmi1_ddc_sda */
+ >;
+ };
+
+ tpd12s015_pins: pinmux_tpd12s015_pins {
+ pinctrl-single,pins = <
+ 0x3b8 (PIN_INPUT_PULLDOWN | MUX_MODE14) /* gpio7_12 HPD */
+ >;
+ };
};
&i2c1 {
@@ -277,6 +346,27 @@
};
};
+&i2c5 {
+ status = "okay";
+ pinctrl-names = "default";
+ pinctrl-0 = <&i2c5_pins>;
+ clock-frequency = <400000>;
+
+ pcf_hdmi: pcf8575@26 {
+ compatible = "nxp,pcf8575";
+ reg = <0x26>;
+ gpio-controller;
+ #gpio-cells = <2>;
+ /*
+ * initial state is used here to keep the mdio interface
+ * selected on RU89 through SEL_VIN4_MUX_S0, VIN2_S1 and
+ * VIN2_S0 driven high otherwise Ethernet stops working
+ * VIN6_SEL_S0 is low, thus selecting McASP3 over VIN6
+ */
+ lines-initial-states = <0x0f2b>;
+ };
+};
+
&uart1 {
status = "okay";
};
@@ -566,3 +656,23 @@
};
};
};
+
+&dss {
+ status = "ok";
+
+ vdda_video-supply = <&ldo5_reg>;
+};
+
+&hdmi {
+ status = "ok";
+ vdda-supply = <&ldo3_reg>;
+
+ pinctrl-names = "default";
+ pinctrl-0 = <&hdmi_pins>;
+
+ port {
+ hdmi_out: endpoint {
+ remote-endpoint = <&tpd12s015_in>;
+ };
+ };
+};
--
2.1.4
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
[not found] <1433139798-23450-1-git-send-email-tomi.valkeinen@ti.com>
` (2 preceding siblings ...)
2015-06-01 6:23 ` [PATCHv4 09/10] arm/dts: dra72-evm.dts: add HDMI Tomi Valkeinen
@ 2015-06-01 6:23 ` Tomi Valkeinen
[not found] ` <1433139798-23450-11-git-send-email-tomi.valkeinen-l0cyMroinI0@public.gmane.org>
3 siblings, 1 reply; 15+ messages in thread
From: Tomi Valkeinen @ 2015-06-01 6:23 UTC (permalink / raw)
To: Tony Lindgren, linux-omap, linux-arm-kernel
Cc: paul, Tero Kristo, Nishanth Menon, Tomi Valkeinen, devicetree
AM57xx Beagle X15 has a HDMI output. This patch adds the device tree
nodes required for HDMI.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: devicetree@vger.kernel.org
---
arch/arm/boot/dts/am57xx-beagle-x15.dts | 81 +++++++++++++++++++++++++++++++++
1 file changed, 81 insertions(+)
diff --git a/arch/arm/boot/dts/am57xx-beagle-x15.dts b/arch/arm/boot/dts/am57xx-beagle-x15.dts
index 15f198e4864d..f1e430507e4f 100644
--- a/arch/arm/boot/dts/am57xx-beagle-x15.dts
+++ b/arch/arm/boot/dts/am57xx-beagle-x15.dts
@@ -18,6 +18,7 @@
aliases {
rtc0 = &mcp_rtc;
rtc1 = &tps659038_rtc;
+ display0 = &hdmi0;
};
memory {
@@ -102,6 +103,51 @@
pinctrl-names = "default";
pinctrl-0 = <&extcon_usb2_pins>;
};
+
+ hdmi0: connector {
+ compatible = "hdmi-connector";
+ label = "hdmi";
+
+ type = "a";
+
+ port {
+ hdmi_connector_in: endpoint {
+ remote-endpoint = <&tpd12s015_out>;
+ };
+ };
+ };
+
+ tpd12s015: encoder {
+ compatible = "ti,tpd12s015";
+
+ pinctrl-names = "default";
+ pinctrl-0 = <&tpd12s015_pins>;
+
+ gpios = <&gpio7 10 GPIO_ACTIVE_HIGH>, /* gpio7_10, CT CP HPD */
+ <&gpio6 28 GPIO_ACTIVE_HIGH>, /* gpio6_28, LS OE */
+ <&gpio7 12 GPIO_ACTIVE_HIGH>; /* gpio7_12/sp1_cs2, HPD */
+
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port@0 {
+ reg = <0>;
+
+ tpd12s015_in: endpoint {
+ remote-endpoint = <&hdmi_out>;
+ };
+ };
+
+ port@1 {
+ reg = <1>;
+
+ tpd12s015_out: endpoint {
+ remote-endpoint = <&hdmi_connector_in>;
+ };
+ };
+ };
+ };
};
&dra7_pmx_core {
@@ -121,6 +167,13 @@
>;
};
+ hdmi_pins: pinmux_hdmi_pins {
+ pinctrl-single,pins = <
+ 0x408 (PIN_INPUT | MUX_MODE1) /* i2c2_sda.hdmi1_ddc_scl */
+ 0x40c (PIN_INPUT | MUX_MODE1) /* i2c2_scl.hdmi1_ddc_sda */
+ >;
+ };
+
i2c3_pins_default: i2c3_pins_default {
pinctrl-single,pins = <
0x2a4 (PIN_INPUT| MUX_MODE10) /* mcasp1_aclkx.i2c3_sda */
@@ -277,6 +330,14 @@
0x3e8 (PIN_INPUT_PULLUP | MUX_MODE14) /* uart1_ctsn.gpio7_24 */
>;
};
+
+ tpd12s015_pins: pinmux_tpd12s015_pins {
+ pinctrl-single,pins = <
+ 0x3b0 (PIN_OUTPUT | MUX_MODE14) /* gpio7_10 CT_CP_HPD */
+ 0x3b8 (PIN_INPUT_PULLDOWN | MUX_MODE14) /* gpio7_12 HPD */
+ 0x370 (PIN_OUTPUT | MUX_MODE14) /* gpio6_28 LS_OE */
+ >;
+ };
};
&i2c1 {
@@ -607,3 +668,23 @@
};
};
};
+
+&dss {
+ status = "ok";
+
+ vdda_video-supply = <&ldoln_reg>;
+};
+
+&hdmi {
+ status = "ok";
+ vdda-supply = <&ldo3_reg>;
+
+ pinctrl-names = "default";
+ pinctrl-0 = <&hdmi_pins>;
+
+ port {
+ hdmi_out: endpoint {
+ remote-endpoint = <&tpd12s015_in>;
+ };
+ };
+};
--
2.1.4
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
[not found] ` <1433139798-23450-11-git-send-email-tomi.valkeinen-l0cyMroinI0@public.gmane.org>
@ 2015-06-01 21:51 ` Tony Lindgren
[not found] ` <20150601215115.GH30984-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
0 siblings, 1 reply; 15+ messages in thread
From: Tony Lindgren @ 2015-06-01 21:51 UTC (permalink / raw)
To: Tomi Valkeinen
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
paul-DWxLp4Yu+b8AvxtiuMwx3w, Tero Kristo, Nishanth Menon,
devicetree-u79uwXL29TY76Z2rM5mHXA
* Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org> [150531 23:25]:
> AM57xx Beagle X15 has a HDMI output. This patch adds the device tree
> nodes required for HDMI.
This one does not seem to apply to linux next, did not look
further where it conflicts.
Regards,
Tony
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
[not found] ` <20150601215115.GH30984-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
@ 2015-06-02 6:28 ` Tomi Valkeinen
2015-06-03 11:26 ` Tomi Valkeinen
1 sibling, 0 replies; 15+ messages in thread
From: Tomi Valkeinen @ 2015-06-02 6:28 UTC (permalink / raw)
To: Tony Lindgren
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
paul-DWxLp4Yu+b8AvxtiuMwx3w, Tero Kristo, Nishanth Menon,
devicetree-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
On 02/06/15 00:51, Tony Lindgren wrote:
> * Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org> [150531 23:25]:
>> AM57xx Beagle X15 has a HDMI output. This patch adds the device tree
>> nodes required for HDMI.
>
> This one does not seem to apply to linux next, did not look
> further where it conflicts.
Looks like a trivial one line conflict, about adding an alias to .dts.
Tomi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 03/10] arm/dts: dra7xx: add 'ti,set-rate-parent' for dss_dss_clk
2015-06-01 6:23 ` [PATCHv4 03/10] arm/dts: dra7xx: add 'ti,set-rate-parent' for dss_dss_clk Tomi Valkeinen
@ 2015-06-02 6:57 ` Tero Kristo
0 siblings, 0 replies; 15+ messages in thread
From: Tero Kristo @ 2015-06-02 6:57 UTC (permalink / raw)
To: Tomi Valkeinen, Tony Lindgren, linux-omap, linux-arm-kernel
Cc: paul, Nishanth Menon, devicetree
On 06/01/2015 09:23 AM, Tomi Valkeinen wrote:
> We need set-rate-parent flags for the display's clock path so that the
> DSS driver can change the clock rate of the PLL.
>
> This patchs adds the ti,set-rate-parent flag to 'dss_dss_clk' clock
> node, which is only a gate clock, allowing the setting of the clock rate
> to propagate to the PLL.
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> Cc: devicetree@vger.kernel.org
Acked-by: Tero Kristo <t-kristo@ti.com>
> ---
> arch/arm/boot/dts/dra7xx-clocks.dtsi | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/boot/dts/dra7xx-clocks.dtsi b/arch/arm/boot/dts/dra7xx-clocks.dtsi
> index 470f39c4e326..357bedeebfac 100644
> --- a/arch/arm/boot/dts/dra7xx-clocks.dtsi
> +++ b/arch/arm/boot/dts/dra7xx-clocks.dtsi
> @@ -1531,6 +1531,7 @@
> clocks = <&dpll_per_h12x2_ck>;
> ti,bit-shift = <8>;
> reg = <0x1120>;
> + ti,set-rate-parent;
> };
>
> dss_hdmi_clk: dss_hdmi_clk {
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
[not found] ` <20150601215115.GH30984-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2015-06-02 6:28 ` Tomi Valkeinen
@ 2015-06-03 11:26 ` Tomi Valkeinen
2015-06-03 15:44 ` Tony Lindgren
1 sibling, 1 reply; 15+ messages in thread
From: Tomi Valkeinen @ 2015-06-03 11:26 UTC (permalink / raw)
To: Tony Lindgren
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
paul-DWxLp4Yu+b8AvxtiuMwx3w, Tero Kristo, Nishanth Menon,
devicetree-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 516 bytes --]
On 02/06/15 00:51, Tony Lindgren wrote:
> * Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org> [150531 23:25]:
>> AM57xx Beagle X15 has a HDMI output. This patch adds the device tree
>> nodes required for HDMI.
>
> This one does not seem to apply to linux next, did not look
> further where it conflicts.
Looks like the change was also in -rc6. I've rebased my patches on -rc6,
and added the acks:
git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux.git dra7-dss-arch
Tomi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 08/10] arm/dts: dra7.dtsi: add DSS support
[not found] ` <1433139798-23450-9-git-send-email-tomi.valkeinen-l0cyMroinI0@public.gmane.org>
@ 2015-06-03 15:43 ` Tony Lindgren
0 siblings, 0 replies; 15+ messages in thread
From: Tony Lindgren @ 2015-06-03 15:43 UTC (permalink / raw)
To: Tomi Valkeinen
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
paul-DWxLp4Yu+b8AvxtiuMwx3w, Tero Kristo, Nishanth Menon,
devicetree-u79uwXL29TY76Z2rM5mHXA
* Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org> [150531 23:25]:
> DRA7xxx contains a very similar DSS to OMAP5. The main differences are:
>
> * no DSI or RFBI support.
> * 1 or 2 dedicated video PLLs.
> * need to do additional configuration to the DRA7 CONTROL module.
>
> DRA72xx has only one video PLL, and DRA74xx has two.
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org>
> Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Acked-by: Tony Lindgren <tonY-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 09/10] arm/dts: dra72-evm.dts: add HDMI
2015-06-01 6:23 ` [PATCHv4 09/10] arm/dts: dra72-evm.dts: add HDMI Tomi Valkeinen
@ 2015-06-03 15:43 ` Tony Lindgren
0 siblings, 0 replies; 15+ messages in thread
From: Tony Lindgren @ 2015-06-03 15:43 UTC (permalink / raw)
To: Tomi Valkeinen
Cc: linux-omap, linux-arm-kernel, paul, Tero Kristo, Nishanth Menon,
devicetree
* Tomi Valkeinen <tomi.valkeinen@ti.com> [150531 23:25]:
> DRA72 EVM has a HDMI output. This patch adds the device tree nodes
> required for HDMI.
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> Cc: devicetree@vger.kernel.org
Acked-by: Tony Lindgren <tonY@atomide.com>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
2015-06-03 11:26 ` Tomi Valkeinen
@ 2015-06-03 15:44 ` Tony Lindgren
2015-06-03 16:01 ` Tomi Valkeinen
0 siblings, 1 reply; 15+ messages in thread
From: Tony Lindgren @ 2015-06-03 15:44 UTC (permalink / raw)
To: Tomi Valkeinen
Cc: linux-omap, linux-arm-kernel, paul, Tero Kristo, Nishanth Menon,
devicetree
* Tomi Valkeinen <tomi.valkeinen@ti.com> [150603 04:28]:
>
>
> On 02/06/15 00:51, Tony Lindgren wrote:
> > * Tomi Valkeinen <tomi.valkeinen@ti.com> [150531 23:25]:
> >> AM57xx Beagle X15 has a HDMI output. This patch adds the device tree
> >> nodes required for HDMI.
> >
> > This one does not seem to apply to linux next, did not look
> > further where it conflicts.
>
> Looks like the change was also in -rc6. I've rebased my patches on -rc6,
> and added the acks:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux.git dra7-dss-arch
OK, since there are no other merge conflicts that I'm aware of,
it's best that you merge the whole branch. I've acked the patches,
so for this one too:
Acked-by: Tony Lindgren <tonY@atomide.com>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
2015-06-03 15:44 ` Tony Lindgren
@ 2015-06-03 16:01 ` Tomi Valkeinen
[not found] ` <556F24E6.7040003-l0cyMroinI0@public.gmane.org>
0 siblings, 1 reply; 15+ messages in thread
From: Tomi Valkeinen @ 2015-06-03 16:01 UTC (permalink / raw)
To: Tony Lindgren
Cc: linux-omap, linux-arm-kernel, paul, Tero Kristo, Nishanth Menon,
devicetree
[-- Attachment #1: Type: text/plain, Size: 906 bytes --]
On 03/06/15 18:44, Tony Lindgren wrote:
> * Tomi Valkeinen <tomi.valkeinen@ti.com> [150603 04:28]:
>>
>>
>> On 02/06/15 00:51, Tony Lindgren wrote:
>>> * Tomi Valkeinen <tomi.valkeinen@ti.com> [150531 23:25]:
>>>> AM57xx Beagle X15 has a HDMI output. This patch adds the device tree
>>>> nodes required for HDMI.
>>>
>>> This one does not seem to apply to linux next, did not look
>>> further where it conflicts.
>>
>> Looks like the change was also in -rc6. I've rebased my patches on -rc6,
>> and added the acks:
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux.git dra7-dss-arch
>
> OK, since there are no other merge conflicts that I'm aware of,
> it's best that you merge the whole branch. I've acked the patches,
> so for this one too:
Ok, I can do that, but isn't this more linux-arm stuff? All the driver
side code is already in the mainline.
Tomi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
[not found] ` <556F24E6.7040003-l0cyMroinI0@public.gmane.org>
@ 2015-06-03 16:10 ` Tony Lindgren
2015-06-03 17:16 ` Tony Lindgren
0 siblings, 1 reply; 15+ messages in thread
From: Tony Lindgren @ 2015-06-03 16:10 UTC (permalink / raw)
To: Tomi Valkeinen
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
paul-DWxLp4Yu+b8AvxtiuMwx3w, Tero Kristo, Nishanth Menon,
devicetree-u79uwXL29TY76Z2rM5mHXA
* Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org> [150603 09:03]:
>
>
> On 03/06/15 18:44, Tony Lindgren wrote:
> > * Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org> [150603 04:28]:
> >>
> >>
> >> On 02/06/15 00:51, Tony Lindgren wrote:
> >>> * Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org> [150531 23:25]:
> >>>> AM57xx Beagle X15 has a HDMI output. This patch adds the device tree
> >>>> nodes required for HDMI.
> >>>
> >>> This one does not seem to apply to linux next, did not look
> >>> further where it conflicts.
> >>
> >> Looks like the change was also in -rc6. I've rebased my patches on -rc6,
> >> and added the acks:
> >>
> >> git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux.git dra7-dss-arch
> >
> > OK, since there are no other merge conflicts that I'm aware of,
> > it's best that you merge the whole branch. I've acked the patches,
> > so for this one too:
>
> Ok, I can do that, but isn't this more linux-arm stuff? All the driver
> side code is already in the mainline.
Yes but we're getting so late into merge window that I'd rather not
take it for v4.2 at this point. And it's all DSS related.
Please make sure you get an ack for the drivers/clk/omap change from
Mike or Stephen though.
Regards,
Tony
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
2015-06-03 16:10 ` Tony Lindgren
@ 2015-06-03 17:16 ` Tony Lindgren
2015-06-04 6:13 ` Tomi Valkeinen
0 siblings, 1 reply; 15+ messages in thread
From: Tony Lindgren @ 2015-06-03 17:16 UTC (permalink / raw)
To: Tomi Valkeinen
Cc: linux-omap, linux-arm-kernel, paul, Tero Kristo, Nishanth Menon,
devicetree
* Tony Lindgren <tony@atomide.com> [150603 09:11]:
> * Tomi Valkeinen <tomi.valkeinen@ti.com> [150603 09:03]:
> >
> >
> > On 03/06/15 18:44, Tony Lindgren wrote:
> > > * Tomi Valkeinen <tomi.valkeinen@ti.com> [150603 04:28]:
> > >>
> > >>
> > >> On 02/06/15 00:51, Tony Lindgren wrote:
> > >>> * Tomi Valkeinen <tomi.valkeinen@ti.com> [150531 23:25]:
> > >>>> AM57xx Beagle X15 has a HDMI output. This patch adds the device tree
> > >>>> nodes required for HDMI.
> > >>>
> > >>> This one does not seem to apply to linux next, did not look
> > >>> further where it conflicts.
> > >>
> > >> Looks like the change was also in -rc6. I've rebased my patches on -rc6,
> > >> and added the acks:
> > >>
> > >> git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux.git dra7-dss-arch
> > >
> > > OK, since there are no other merge conflicts that I'm aware of,
> > > it's best that you merge the whole branch. I've acked the patches,
> > > so for this one too:
> >
> > Ok, I can do that, but isn't this more linux-arm stuff? All the driver
> > side code is already in the mainline.
>
> Yes but we're getting so late into merge window that I'd rather not
> take it for v4.2 at this point. And it's all DSS related.
>
> Please make sure you get an ack for the drivers/clk/omap change from
> Mike or Stephen though.
Naturally I mean "getting so close to the merge window" above :)
Regards,
Tony
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI
2015-06-03 17:16 ` Tony Lindgren
@ 2015-06-04 6:13 ` Tomi Valkeinen
0 siblings, 0 replies; 15+ messages in thread
From: Tomi Valkeinen @ 2015-06-04 6:13 UTC (permalink / raw)
To: Tony Lindgren
Cc: linux-omap, linux-arm-kernel, paul, Tero Kristo, Nishanth Menon,
devicetree, Mike Turquette
[-- Attachment #1: Type: text/plain, Size: 723 bytes --]
On 03/06/15 20:16, Tony Lindgren wrote:
>>>> OK, since there are no other merge conflicts that I'm aware of,
>>>> it's best that you merge the whole branch. I've acked the patches,
>>>> so for this one too:
>>>
>>> Ok, I can do that, but isn't this more linux-arm stuff? All the driver
>>> side code is already in the mainline.
>>
>> Yes but we're getting so late into merge window that I'd rather not
>> take it for v4.2 at this point. And it's all DSS related.
>>
>> Please make sure you get an ack for the drivers/clk/omap change from
>> Mike or Stephen though.
>
> Naturally I mean "getting so close to the merge window" above :)
Thanks everyone. I've pushed this to fbdev for-next.
Tomi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2015-06-04 6:13 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1433139798-23450-1-git-send-email-tomi.valkeinen@ti.com>
2015-06-01 6:23 ` [PATCHv4 03/10] arm/dts: dra7xx: add 'ti,set-rate-parent' for dss_dss_clk Tomi Valkeinen
2015-06-02 6:57 ` Tero Kristo
2015-06-01 6:23 ` [PATCHv4 08/10] arm/dts: dra7.dtsi: add DSS support Tomi Valkeinen
[not found] ` <1433139798-23450-9-git-send-email-tomi.valkeinen-l0cyMroinI0@public.gmane.org>
2015-06-03 15:43 ` Tony Lindgren
2015-06-01 6:23 ` [PATCHv4 09/10] arm/dts: dra72-evm.dts: add HDMI Tomi Valkeinen
2015-06-03 15:43 ` Tony Lindgren
2015-06-01 6:23 ` [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: " Tomi Valkeinen
[not found] ` <1433139798-23450-11-git-send-email-tomi.valkeinen-l0cyMroinI0@public.gmane.org>
2015-06-01 21:51 ` Tony Lindgren
[not found] ` <20150601215115.GH30984-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2015-06-02 6:28 ` Tomi Valkeinen
2015-06-03 11:26 ` Tomi Valkeinen
2015-06-03 15:44 ` Tony Lindgren
2015-06-03 16:01 ` Tomi Valkeinen
[not found] ` <556F24E6.7040003-l0cyMroinI0@public.gmane.org>
2015-06-03 16:10 ` Tony Lindgren
2015-06-03 17:16 ` Tony Lindgren
2015-06-04 6:13 ` Tomi Valkeinen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).