linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Patch v4 00/10] ARM: dts: dra7: add cal nodes
@ 2019-12-11 14:05 Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 01/10] clk: ti: dra7: add cam clkctrl data Benoit Parrot
                   ` (10 more replies)
  0 siblings, 11 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

This patch series adds the needed clkctrl and ty-sysc nodes for CAL module.
It also adds support for the module in related dtsi and dts for DRA72,
DRA76 and AM654 SoC.

Changes since v3:
- Added Tony's ack
- Added Rob's ack
- In all 3 .dts patch removed unneeded cal 'status = "ok"' lines 

Changes since v2:
- Add non-standard clock node naming to commit message as per Tony's
  comment

Changes since v1:
- Fix clock name to make it generic
- Updated the binding to use ti,camerrx-control instead of sycon_camerrx
- Split off the clk code into its own patch
- Add clk mailing list as requested

Benoit Parrot (10):
  clk: ti: dra7: add cam clkctrl data
  ARM: dts: dra7: add cam clkctrl node
  ARM: OMAP: DRA7xx: Make CAM clock domain SWSUP only
  ARM: dts: dra7-l4: Add ti-sysc node for CAM
  ARM: dts: DRA72: Add CAL dtsi node
  arm: dts: dra72-evm-common: Add entries for the CSI2 cameras
  arm: dtsi: dra76x: Add CAL dtsi node
  arm: dts: dra76-evm: Add CAL and OV5640 nodes
  arm64: dts: k3-am65-main Add CAL node
  arm64: dts: k3-am654-base-board: Add CSI2 OV5640 camera

 arch/arm/boot/dts/dra7-l4.dtsi                | 43 ++++++++++++++++---
 arch/arm/boot/dts/dra72-evm-common.dtsi       | 31 +++++++++++++
 arch/arm/boot/dts/dra72x.dtsi                 | 42 ++++++++++++++++++
 arch/arm/boot/dts/dra76-evm.dts               | 35 +++++++++++++++
 arch/arm/boot/dts/dra76x.dtsi                 | 42 ++++++++++++++++++
 arch/arm/boot/dts/dra7xx-clocks.dtsi          | 14 ++++++
 arch/arm/mach-omap2/clockdomains7xx_data.c    |  2 +-
 arch/arm64/boot/dts/ti/k3-am65-main.dtsi      | 22 ++++++++++
 .../arm64/boot/dts/ti/k3-am654-base-board.dts | 32 ++++++++++++++
 drivers/clk/ti/clk-7xx.c                      | 19 ++++++++
 include/dt-bindings/clock/dra7.h              | 10 +++++
 11 files changed, 285 insertions(+), 7 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Patch v4 01/10] clk: ti: dra7: add cam clkctrl data
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2019-12-30 19:58   ` Stephen Boyd
  2019-12-11 14:05 ` [Patch v4 02/10] ARM: dts: dra7: add cam clkctrl node Benoit Parrot
                   ` (9 subsequent siblings)
  10 siblings, 1 reply; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Add clkctrl data for CAM domain.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Acked-by: Rob Herring <robh@kernel.org>
---
 drivers/clk/ti/clk-7xx.c         | 19 +++++++++++++++++++
 include/dt-bindings/clock/dra7.h | 10 ++++++++++
 2 files changed, 29 insertions(+)

diff --git a/drivers/clk/ti/clk-7xx.c b/drivers/clk/ti/clk-7xx.c
index 34e49f909a07..ddfce4b050e5 100644
--- a/drivers/clk/ti/clk-7xx.c
+++ b/drivers/clk/ti/clk-7xx.c
@@ -151,6 +151,24 @@ static const struct omap_clkctrl_reg_data dra7_vpe_clkctrl_regs[] __initconst =
 	{ 0 },
 };
 
+static const char * const dra7_cam_gfclk_mux_parents[] __initconst = {
+	"l3_iclk_div",
+	"core_iss_main_clk",
+	NULL,
+};
+
+static const struct omap_clkctrl_bit_data dra7_cam_bit_data[] __initconst = {
+	{ 24, TI_CLK_MUX, dra7_cam_gfclk_mux_parents, NULL },
+	{ 0 },
+};
+
+static const struct omap_clkctrl_reg_data dra7_cam_clkctrl_regs[] __initconst = {
+	{ DRA7_CAM_VIP1_CLKCTRL, dra7_cam_bit_data, CLKF_HW_SUP, "l3_iclk_div" },
+	{ DRA7_CAM_VIP2_CLKCTRL, dra7_cam_bit_data, CLKF_HW_SUP, "l3_iclk_div" },
+	{ DRA7_CAM_VIP3_CLKCTRL, dra7_cam_bit_data, CLKF_HW_SUP, "l3_iclk_div" },
+	{ 0 },
+};
+
 static const struct omap_clkctrl_reg_data dra7_coreaon_clkctrl_regs[] __initconst = {
 	{ DRA7_COREAON_SMARTREFLEX_MPU_CLKCTRL, NULL, CLKF_SW_SUP, "wkupaon_iclk_mux" },
 	{ DRA7_COREAON_SMARTREFLEX_CORE_CLKCTRL, NULL, CLKF_SW_SUP, "wkupaon_iclk_mux" },
@@ -783,6 +801,7 @@ const struct omap_clkctrl_data dra7_clkctrl_data[] __initconst = {
 	{ 0x4a008c00, dra7_atl_clkctrl_regs },
 	{ 0x4a008d20, dra7_l4cfg_clkctrl_regs },
 	{ 0x4a008e20, dra7_l3instr_clkctrl_regs },
+	{ 0x4a009020, dra7_cam_clkctrl_regs },
 	{ 0x4a009120, dra7_dss_clkctrl_regs },
 	{ 0x4a009320, dra7_l3init_clkctrl_regs },
 	{ 0x4a0093b0, dra7_pcie_clkctrl_regs },
diff --git a/include/dt-bindings/clock/dra7.h b/include/dt-bindings/clock/dra7.h
index 2b765e579b2a..2c058a534bab 100644
--- a/include/dt-bindings/clock/dra7.h
+++ b/include/dt-bindings/clock/dra7.h
@@ -34,6 +34,11 @@
 #define DRA7_VPE_CLKCTRL_INDEX(offset)	((offset) - DRA7_VPE_CLKCTRL_OFFSET)
 #define DRA7_VPE_CLKCTRL	DRA7_VPE_CLKCTRL_INDEX(0x64)
 
+/* vip clocks */
+#define DRA7_VIP1_CLKCTRL	DRA7_CLKCTRL_INDEX(0x20)
+#define DRA7_VIP2_CLKCTRL	DRA7_CLKCTRL_INDEX(0x28)
+#define DRA7_VIP3_CLKCTRL	DRA7_CLKCTRL_INDEX(0x30)
+
 /* coreaon clocks */
 #define DRA7_SMARTREFLEX_MPU_CLKCTRL	DRA7_CLKCTRL_INDEX(0x28)
 #define DRA7_SMARTREFLEX_CORE_CLKCTRL	DRA7_CLKCTRL_INDEX(0x38)
@@ -202,6 +207,11 @@
 #define DRA7_VPE_CLKCTRL_INDEX(offset)	((offset) - DRA7_VPE_CLKCTRL_OFFSET)
 #define DRA7_VPE_VPE_CLKCTRL	DRA7_VPE_CLKCTRL_INDEX(0x64)
 
+/* vip clocks */
+#define DRA7_CAM_VIP1_CLKCTRL	DRA7_CLKCTRL_INDEX(0x20)
+#define DRA7_CAM_VIP2_CLKCTRL	DRA7_CLKCTRL_INDEX(0x28)
+#define DRA7_CAM_VIP3_CLKCTRL	DRA7_CLKCTRL_INDEX(0x30)
+
 /* coreaon clocks */
 #define DRA7_COREAON_SMARTREFLEX_MPU_CLKCTRL	DRA7_CLKCTRL_INDEX(0x28)
 #define DRA7_COREAON_SMARTREFLEX_CORE_CLKCTRL	DRA7_CLKCTRL_INDEX(0x38)
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 02/10] ARM: dts: dra7: add cam clkctrl node
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 01/10] clk: ti: dra7: add cam clkctrl data Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 03/10] ARM: OMAP: DRA7xx: Make CAM clock domain SWSUP only Benoit Parrot
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Add clkctrl nodes for CAM domain.

Note that because of the current dts node name dependency for mapping to
clock domain, we must still use "cam-clkctrl@" naming instead of generic
"clock@" naming for the node. And because of this, it's probably best to
apply the dts node addition together along with the other clock changes.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
---
 arch/arm/boot/dts/dra7xx-clocks.dtsi | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/arch/arm/boot/dts/dra7xx-clocks.dtsi b/arch/arm/boot/dts/dra7xx-clocks.dtsi
index d1c2406ec71c..199f8d483f75 100644
--- a/arch/arm/boot/dts/dra7xx-clocks.dtsi
+++ b/arch/arm/boot/dts/dra7xx-clocks.dtsi
@@ -1734,6 +1734,20 @@
 		};
 	};
 
+	cam_cm: cam-cm@1000 {
+		compatible = "ti,omap4-cm";
+		reg = <0x1000 0x100>;
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0 0x1000 0x100>;
+
+		cam_clkctrl: cam-clkctrl@20 {
+			compatible = "ti,clkctrl";
+			reg = <0x20 0x2c>;
+			#clock-cells = <2>;
+		};
+	};
+
 	dss_cm: dss-cm@1100 {
 		compatible = "ti,omap4-cm";
 		reg = <0x1100 0x100>;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 03/10] ARM: OMAP: DRA7xx: Make CAM clock domain SWSUP only
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 01/10] clk: ti: dra7: add cam clkctrl data Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 02/10] ARM: dts: dra7: add cam clkctrl node Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 04/10] ARM: dts: dra7-l4: Add ti-sysc node for CAM Benoit Parrot
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Both CAL and VIP rely on this clock domain. But CAL DPHY require
LVDSRX_96M_GFCLK to be active. When this domain is set to HWSUP the
LVDSRX_96M_GFCLK is on;y active when VIP1 clock is also active.  If only
CAL on DRA72x (which uses the VIP2 clkctrl) probes the CAM domain is
enabled but the LVDSRX_96M_GFCLK is left gated. Since LVDSRX_96M_GFCLK
is sourcing the input clock to the DPHY then actual frame capture cannot
start as the phy are inactive.

So we either have to also enabled VIP1 even if we don't intend on using
it or we need to set the CAM domain to use SWSUP only.

This patch implements the latter.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
---
 arch/arm/mach-omap2/clockdomains7xx_data.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-omap2/clockdomains7xx_data.c b/arch/arm/mach-omap2/clockdomains7xx_data.c
index 3068802824b7..27835c4d1aa9 100644
--- a/arch/arm/mach-omap2/clockdomains7xx_data.c
+++ b/arch/arm/mach-omap2/clockdomains7xx_data.c
@@ -606,7 +606,7 @@ static struct clockdomain cam_7xx_clkdm = {
 	.dep_bit	  = DRA7XX_CAM_STATDEP_SHIFT,
 	.wkdep_srcs	  = cam_wkup_sleep_deps,
 	.sleepdep_srcs	  = cam_wkup_sleep_deps,
-	.flags		  = CLKDM_CAN_HWSUP_SWSUP,
+	.flags		  = CLKDM_CAN_SWSUP,
 };
 
 static struct clockdomain l4per_7xx_clkdm = {
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 04/10] ARM: dts: dra7-l4: Add ti-sysc node for CAM
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
                   ` (2 preceding siblings ...)
  2019-12-11 14:05 ` [Patch v4 03/10] ARM: OMAP: DRA7xx: Make CAM clock domain SWSUP only Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 05/10] ARM: dts: DRA72: Add CAL dtsi node Benoit Parrot
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Add CAM nodes as a child of l4 interconnect in order for it to probe
using ti-sysc.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
---
 arch/arm/boot/dts/dra7-l4.dtsi | 43 +++++++++++++++++++++++++++++-----
 1 file changed, 37 insertions(+), 6 deletions(-)

diff --git a/arch/arm/boot/dts/dra7-l4.dtsi b/arch/arm/boot/dts/dra7-l4.dtsi
index 8fe428ac12d8..7f76411d2876 100644
--- a/arch/arm/boot/dts/dra7-l4.dtsi
+++ b/arch/arm/boot/dts/dra7-l4.dtsi
@@ -4166,27 +4166,58 @@
 		};
 
 		target-module@170000 {			/* 0x48970000, ap 21 0a.0 */
-			compatible = "ti,sysc";
-			status = "disabled";
+			compatible = "ti,sysc-omap4", "ti,sysc";
+			reg = <0x170010 0x4>;
+			reg-names = "sysc";
+			ti,sysc-midle = <SYSC_IDLE_FORCE>,
+					<SYSC_IDLE_NO>,
+					<SYSC_IDLE_SMART>;
+			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
+					<SYSC_IDLE_NO>,
+					<SYSC_IDLE_SMART>;
+			clocks = <&cam_clkctrl DRA7_CAM_VIP1_CLKCTRL 0>;
+			clock-names = "fck";
 			#address-cells = <1>;
 			#size-cells = <1>;
 			ranges = <0x0 0x170000 0x10000>;
+			status = "disabled";
 		};
 
 		target-module@190000 {			/* 0x48990000, ap 23 2e.0 */
-			compatible = "ti,sysc";
-			status = "disabled";
+			compatible = "ti,sysc-omap4", "ti,sysc";
+			reg = <0x190010 0x4>;
+			reg-names = "sysc";
+			ti,sysc-midle = <SYSC_IDLE_FORCE>,
+					<SYSC_IDLE_NO>,
+					<SYSC_IDLE_SMART>;
+			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
+					<SYSC_IDLE_NO>,
+					<SYSC_IDLE_SMART>;
+			clocks = <&cam_clkctrl DRA7_CAM_VIP2_CLKCTRL 0>;
+			clock-names = "fck";
 			#address-cells = <1>;
 			#size-cells = <1>;
 			ranges = <0x0 0x190000 0x10000>;
+			status = "disabled";
 		};
 
 		target-module@1b0000 {			/* 0x489b0000, ap 25 34.0 */
-			compatible = "ti,sysc";
-			status = "disabled";
+			compatible = "ti,sysc-omap4", "ti,sysc";
+			reg = <0x1b0000 0x4>,
+			      <0x1b0010 0x4>;
+			reg-names = "rev", "sysc";
+			ti,sysc-midle = <SYSC_IDLE_FORCE>,
+					<SYSC_IDLE_NO>,
+					<SYSC_IDLE_SMART>;
+			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
+					<SYSC_IDLE_NO>,
+					<SYSC_IDLE_SMART>;
+			clocks = <&cam_clkctrl DRA7_CAM_VIP3_CLKCTRL 0>;
+			clock-names = "fck";
 			#address-cells = <1>;
 			#size-cells = <1>;
 			ranges = <0x0 0x1b0000 0x10000>;
+			status = "disabled";
 		};
 
 		target-module@1d0010 {			/* 0x489d0000, ap 27 30.0 */
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 05/10] ARM: dts: DRA72: Add CAL dtsi node
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
                   ` (3 preceding siblings ...)
  2019-12-11 14:05 ` [Patch v4 04/10] ARM: dts: dra7-l4: Add ti-sysc node for CAM Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 06/10] arm: dts: dra72-evm-common: Add entries for the CSI2 cameras Benoit Parrot
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

This patch adds the required dtsi node to support the Camera
Adaptation Layer (CAL) for the DRA72 family of devices.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
---
 arch/arm/boot/dts/dra72x.dtsi | 42 +++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/arch/arm/boot/dts/dra72x.dtsi b/arch/arm/boot/dts/dra72x.dtsi
index f5762709c853..82b57a35abc0 100644
--- a/arch/arm/boot/dts/dra72x.dtsi
+++ b/arch/arm/boot/dts/dra72x.dtsi
@@ -17,6 +17,48 @@
 	};
 };
 
+&l4_per2 {
+	target-module@5b000 {			/* 0x4845b000, ap 59 46.0 */
+		compatible = "ti,sysc-omap4", "ti,sysc";
+		reg = <0x5b000 0x4>,
+		      <0x5b010 0x4>;
+		reg-names = "rev", "sysc";
+		ti,sysc-midle = <SYSC_IDLE_FORCE>,
+				<SYSC_IDLE_NO>;
+		ti,sysc-sidle = <SYSC_IDLE_FORCE>,
+				<SYSC_IDLE_NO>;
+		clocks = <&cam_clkctrl DRA7_CAM_VIP2_CLKCTRL 0>;
+		clock-names = "fck";
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0x0 0x5b000 0x1000>;
+
+		cal: cal@0 {
+			compatible = "ti,dra72-cal";
+			reg = <0x0000 0x400>,
+			      <0x0800 0x40>,
+			      <0x0900 0x40>;
+			reg-names = "cal_top",
+				    "cal_rx_core0",
+				    "cal_rx_core1";
+			interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>;
+			ti,camerrx-control = <&scm_conf 0xE94>;
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				csi2_0: port@0 {
+					reg = <0>;
+				};
+				csi2_1: port@1 {
+					reg = <1>;
+				};
+			};
+		};
+	};
+};
+
 &dss {
 	reg = <0x58000000 0x80>,
 	      <0x58004054 0x4>,
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 06/10] arm: dts: dra72-evm-common: Add entries for the CSI2 cameras
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
                   ` (4 preceding siblings ...)
  2019-12-11 14:05 ` [Patch v4 05/10] ARM: dts: DRA72: Add CAL dtsi node Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 07/10] arm: dtsi: dra76x: Add CAL dtsi node Benoit Parrot
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Add device nodes for CSI2 camera board OV5640.
Add the CAL port nodes with the necessary linkage to the ov5640 nodes.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
---
 arch/arm/boot/dts/dra72-evm-common.dtsi | 31 +++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/arch/arm/boot/dts/dra72-evm-common.dtsi b/arch/arm/boot/dts/dra72-evm-common.dtsi
index 8641a3d7d8ad..7a9b7584b092 100644
--- a/arch/arm/boot/dts/dra72-evm-common.dtsi
+++ b/arch/arm/boot/dts/dra72-evm-common.dtsi
@@ -187,6 +187,12 @@
 		gpio = <&gpio5 8 GPIO_ACTIVE_HIGH>;
 		enable-active-high;
 	};
+
+	clk_ov5640_fixed: clock {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <24000000>;
+	};
 };
 
 &dra7_pmx_core {
@@ -269,6 +275,23 @@
 			line-name = "vin6_sel_s0";
 		};
 	};
+
+	ov5640@3c {
+		compatible = "ovti,ov5640";
+		reg = <0x3c>;
+
+		clocks = <&clk_ov5640_fixed>;
+		clock-names = "xclk";
+
+		port {
+			csi2_cam0: endpoint {
+				remote-endpoint = <&csi2_phy0>;
+				clock-lanes = <0>;
+				data-lanes = <1 2>;
+			};
+		};
+	};
+
 };
 
 &uart1 {
@@ -580,3 +603,11 @@
 &pcie1_rc {
 	status = "okay";
 };
+
+&csi2_0 {
+	csi2_phy0: endpoint {
+		remote-endpoint = <&csi2_cam0>;
+		clock-lanes = <0>;
+		data-lanes = <1 2>;
+	};
+};
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 07/10] arm: dtsi: dra76x: Add CAL dtsi node
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
                   ` (5 preceding siblings ...)
  2019-12-11 14:05 ` [Patch v4 06/10] arm: dts: dra72-evm-common: Add entries for the CSI2 cameras Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 08/10] arm: dts: dra76-evm: Add CAL and OV5640 nodes Benoit Parrot
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Add the required dtsi node to support the Camera
Adaptation Layer (CAL) for the DRA76 family of devices.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
---
 arch/arm/boot/dts/dra76x.dtsi | 42 +++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/arch/arm/boot/dts/dra76x.dtsi b/arch/arm/boot/dts/dra76x.dtsi
index cdcba3f561c4..2f7539afef2b 100644
--- a/arch/arm/boot/dts/dra76x.dtsi
+++ b/arch/arm/boot/dts/dra76x.dtsi
@@ -41,6 +41,48 @@
 
 };
 
+&l4_per3 {
+	target-module@1b0000 {			/* 0x489b0000, ap 25 34.0 */
+		compatible = "ti,sysc-omap4", "ti,sysc";
+		reg = <0x1b0000 0x4>,
+		      <0x1b0010 0x4>;
+		reg-names = "rev", "sysc";
+		ti,sysc-midle = <SYSC_IDLE_FORCE>,
+				<SYSC_IDLE_NO>;
+		ti,sysc-sidle = <SYSC_IDLE_FORCE>,
+				<SYSC_IDLE_NO>;
+		clocks = <&cam_clkctrl DRA7_CAM_VIP3_CLKCTRL 0>;
+		clock-names = "fck";
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0x0 0x1b0000 0x10000>;
+
+		cal: cal@0 {
+			compatible = "ti,dra76-cal";
+			reg = <0x0000 0x400>,
+			      <0x0800 0x40>,
+			      <0x0900 0x40>;
+			reg-names = "cal_top",
+				    "cal_rx_core0",
+				    "cal_rx_core1";
+			interrupts = <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>;
+			ti,camerrx-control = <&scm_conf 0x6dc>;
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				csi2_0: port@0 {
+					reg = <0>;
+				};
+				csi2_1: port@1 {
+					reg = <1>;
+				};
+			};
+		};
+	};
+};
+
 /* MCAN interrupts are hard-wired to irqs 67, 68 */
 &crossbar_mpu {
 	ti,irqs-skip = <10 67 68 133 139 140>;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 08/10] arm: dts: dra76-evm: Add CAL and OV5640 nodes
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
                   ` (6 preceding siblings ...)
  2019-12-11 14:05 ` [Patch v4 07/10] arm: dtsi: dra76x: Add CAL dtsi node Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2019-12-11 14:05 ` [Patch v4 09/10] arm64: dts: k3-am65-main Add CAL node Benoit Parrot
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Add device nodes for CSI2 camera board OV5640.
Add the CAL port nodes with the necessary linkage to the ov5640 nodes.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
---
 arch/arm/boot/dts/dra76-evm.dts | 35 +++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/arch/arm/boot/dts/dra76-evm.dts b/arch/arm/boot/dts/dra76-evm.dts
index 1fb6f13fb5e2..a17d4875bb2e 100644
--- a/arch/arm/boot/dts/dra76-evm.dts
+++ b/arch/arm/boot/dts/dra76-evm.dts
@@ -116,6 +116,12 @@
 		regulator-min-microvolt = <1800000>;
 		regulator-max-microvolt = <1800000>;
 	};
+
+	clk_ov5640_fixed: clock {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <24000000>;
+	};
 };
 
 &i2c1 {
@@ -317,6 +323,27 @@
 	};
 };
 
+&i2c5 {
+	status = "okay";
+	clock-frequency = <400000>;
+
+	ov5640@3c {
+		compatible = "ovti,ov5640";
+		reg = <0x3c>;
+
+		clocks = <&clk_ov5640_fixed>;
+		clock-names = "xclk";
+
+		port {
+			csi2_cam0: endpoint {
+				remote-endpoint = <&csi2_phy0>;
+				clock-lanes = <0>;
+				data-lanes = <1 2>;
+			};
+		};
+	};
+};
+
 &cpu0 {
 	vdd-supply = <&buck10_reg>;
 };
@@ -447,3 +474,11 @@
 		max-bitrate = <5000000>;
 	};
 };
+
+&csi2_0 {
+	csi2_phy0: endpoint {
+		remote-endpoint = <&csi2_cam0>;
+		clock-lanes = <0>;
+		data-lanes = <1 2>;
+	};
+};
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 09/10] arm64: dts: k3-am65-main Add CAL node
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
                   ` (7 preceding siblings ...)
  2019-12-11 14:05 ` [Patch v4 08/10] arm: dts: dra76-evm: Add CAL and OV5640 nodes Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2020-01-24 11:32   ` Tero Kristo
  2019-12-11 14:05 ` [Patch v4 10/10] arm64: dts: k3-am654-base-board: Add CSI2 OV5640 camera Benoit Parrot
  2020-01-23 17:17 ` [Patch v4 00/10] ARM: dts: dra7: add cal nodes Tony Lindgren
  10 siblings, 1 reply; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Add CAL dtsi node for AM654 device. Including proper power-domains and
clock properties.

Signed-off-by: Benoit Parrot <bparrot@ti.com>
---
 arch/arm64/boot/dts/ti/k3-am65-main.dtsi | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am65-main.dtsi b/arch/arm64/boot/dts/ti/k3-am65-main.dtsi
index efb24579922c..551adcefcc83 100644
--- a/arch/arm64/boot/dts/ti/k3-am65-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am65-main.dtsi
@@ -624,4 +624,26 @@
 		dma-coherent;
 		interrupts = <GIC_SPI 355 IRQ_TYPE_EDGE_RISING>;
 	};
+
+	cal: cal@6f03000 {
+		compatible = "ti,am654-cal";
+		reg = <0x0 0x06f03000 0x0 0x400>,
+		      <0x0 0x06f03800 0x0 0x40>;
+		reg-names = "cal_top",
+			    "cal_rx_core0";
+		interrupts = <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
+		ti,camerrx-control = <&scm_conf 0x40c0>;
+		clock-names = "fck";
+		clocks = <&k3_clks 2 0>;
+		power-domains = <&k3_pds 2 TI_SCI_PD_EXCLUSIVE>;
+
+		ports {
+			#address-cells = <1>;
+			#size-cells = <0>;
+
+			csi2_0: port@0 {
+				reg = <0>;
+			};
+		};
+	};
 };
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Patch v4 10/10] arm64: dts: k3-am654-base-board: Add CSI2 OV5640 camera
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
                   ` (8 preceding siblings ...)
  2019-12-11 14:05 ` [Patch v4 09/10] arm64: dts: k3-am65-main Add CAL node Benoit Parrot
@ 2019-12-11 14:05 ` Benoit Parrot
  2020-01-23 17:17 ` [Patch v4 00/10] ARM: dts: dra7: add cal nodes Tony Lindgren
  10 siblings, 0 replies; 18+ messages in thread
From: Benoit Parrot @ 2019-12-11 14:05 UTC (permalink / raw)
  To: Tony Lindgren, Tero Kristo, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Add support for the OV5640 CSI camera:
- add the OV5640 nodes
- add the CAL node linkage
- enable CAL node

Signed-off-by: Benoit Parrot <bparrot@ti.com>
---
 .../arm64/boot/dts/ti/k3-am654-base-board.dts | 32 +++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am654-base-board.dts b/arch/arm64/boot/dts/ti/k3-am654-base-board.dts
index 8a85b482ad31..f918c5804589 100644
--- a/arch/arm64/boot/dts/ti/k3-am654-base-board.dts
+++ b/arch/arm64/boot/dts/ti/k3-am654-base-board.dts
@@ -53,6 +53,12 @@
 			gpios = <&wkup_gpio0 27 GPIO_ACTIVE_LOW>;
 		};
 	};
+
+	clk_ov5640_fixed: clock {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <24000000>;
+	};
 };
 
 &wkup_pmx0 {
@@ -184,6 +190,23 @@
 	pinctrl-names = "default";
 	pinctrl-0 = <&main_i2c1_pins_default>;
 	clock-frequency = <400000>;
+
+	ov5640@3c {
+		compatible = "ovti,ov5640";
+		reg = <0x3c>;
+
+		clocks = <&clk_ov5640_fixed>;
+		clock-names = "xclk";
+
+		port {
+			csi2_cam0: endpoint {
+				remote-endpoint = <&csi2_phy0>;
+				clock-lanes = <0>;
+				data-lanes = <1 2>;
+			};
+		};
+	};
+
 };
 
 &main_i2c2 {
@@ -339,3 +362,12 @@
 &mailbox0_cluster11 {
 	status = "disabled";
 };
+
+&csi2_0 {
+	csi2_phy0: endpoint {
+		remote-endpoint = <&csi2_cam0>;
+		clock-lanes = <0>;
+		data-lanes = <1 2>;
+	};
+};
+
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [Patch v4 01/10] clk: ti: dra7: add cam clkctrl data
  2019-12-11 14:05 ` [Patch v4 01/10] clk: ti: dra7: add cam clkctrl data Benoit Parrot
@ 2019-12-30 19:58   ` Stephen Boyd
  2020-01-21  7:32     ` Tero Kristo
  0 siblings, 1 reply; 18+ messages in thread
From: Stephen Boyd @ 2019-12-30 19:58 UTC (permalink / raw)
  To: Benoit Parrot, Tero Kristo, Tony Lindgren, linux-clk, linux-omap
  Cc: Rob Herring, devicetree, linux-kernel, Benoit Parrot

Quoting Benoit Parrot (2019-12-11 06:05:49)
> Add clkctrl data for CAM domain.
> 
> Signed-off-by: Benoit Parrot <bparrot@ti.com>
> Acked-by: Tony Lindgren <tony@atomide.com>
> Acked-by: Rob Herring <robh@kernel.org>
> ---

Acked-by: Stephen Boyd <sboyd@kernel.org>


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Patch v4 01/10] clk: ti: dra7: add cam clkctrl data
  2019-12-30 19:58   ` Stephen Boyd
@ 2020-01-21  7:32     ` Tero Kristo
  0 siblings, 0 replies; 18+ messages in thread
From: Tero Kristo @ 2020-01-21  7:32 UTC (permalink / raw)
  To: Stephen Boyd, Benoit Parrot, Tony Lindgren, linux-clk, linux-omap
  Cc: Rob Herring, devicetree, linux-kernel

On 30/12/2019 21:58, Stephen Boyd wrote:
> Quoting Benoit Parrot (2019-12-11 06:05:49)
>> Add clkctrl data for CAM domain.
>>
>> Signed-off-by: Benoit Parrot <bparrot@ti.com>
>> Acked-by: Tony Lindgren <tony@atomide.com>
>> Acked-by: Rob Herring <robh@kernel.org>
>> ---
> 
> Acked-by: Stephen Boyd <sboyd@kernel.org>
> 

Queued this patch towards 5.6, thanks.

-Tero
--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Patch v4 00/10] ARM: dts: dra7: add cal nodes
  2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
                   ` (9 preceding siblings ...)
  2019-12-11 14:05 ` [Patch v4 10/10] arm64: dts: k3-am654-base-board: Add CSI2 OV5640 camera Benoit Parrot
@ 2020-01-23 17:17 ` Tony Lindgren
  2020-01-23 17:26   ` Tony Lindgren
  10 siblings, 1 reply; 18+ messages in thread
From: Tony Lindgren @ 2020-01-23 17:17 UTC (permalink / raw)
  To: Benoit Parrot
  Cc: Tero Kristo, linux-omap, linux-clk, Rob Herring, devicetree,
	linux-kernel

* Benoit Parrot <bparrot@ti.com> [191211 06:03]:
> This patch series adds the needed clkctrl and ty-sysc nodes for CAL module.
> It also adds support for the module in related dtsi and dts for DRA72,
> DRA76 and AM654 SoC.

Applying these into omap-for-v5.6/ti-sysc-dt-cam on top of Tero's
for-5.6-ti-clk branch. It might be too later for v5.6, but we'll
see.

Regards,

Tony

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Patch v4 00/10] ARM: dts: dra7: add cal nodes
  2020-01-23 17:17 ` [Patch v4 00/10] ARM: dts: dra7: add cal nodes Tony Lindgren
@ 2020-01-23 17:26   ` Tony Lindgren
  2020-01-24  7:21     ` Tero Kristo
  0 siblings, 1 reply; 18+ messages in thread
From: Tony Lindgren @ 2020-01-23 17:26 UTC (permalink / raw)
  To: Benoit Parrot
  Cc: Tero Kristo, linux-omap, linux-clk, Rob Herring, devicetree,
	linux-kernel

* Tony Lindgren <tony@atomide.com> [200123 17:18]:
> * Benoit Parrot <bparrot@ti.com> [191211 06:03]:
> > This patch series adds the needed clkctrl and ty-sysc nodes for CAL module.
> > It also adds support for the module in related dtsi and dts for DRA72,
> > DRA76 and AM654 SoC.
> 
> Applying these into omap-for-v5.6/ti-sysc-dt-cam on top of Tero's
> for-5.6-ti-clk branch. It might be too later for v5.6, but we'll
> see.

Actually I'll leave out the k3-am65 dts changes as I don't see
acks for those. Tero can pick up those later.

Regards,

Tony

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Patch v4 00/10] ARM: dts: dra7: add cal nodes
  2020-01-23 17:26   ` Tony Lindgren
@ 2020-01-24  7:21     ` Tero Kristo
  2020-01-24  7:25       ` Tero Kristo
  0 siblings, 1 reply; 18+ messages in thread
From: Tero Kristo @ 2020-01-24  7:21 UTC (permalink / raw)
  To: Tony Lindgren, Benoit Parrot
  Cc: linux-omap, linux-clk, Rob Herring, devicetree, linux-kernel

On 23/01/2020 19:26, Tony Lindgren wrote:
> * Tony Lindgren <tony@atomide.com> [200123 17:18]:
>> * Benoit Parrot <bparrot@ti.com> [191211 06:03]:
>>> This patch series adds the needed clkctrl and ty-sysc nodes for CAL module.
>>> It also adds support for the module in related dtsi and dts for DRA72,
>>> DRA76 and AM654 SoC.
>>
>> Applying these into omap-for-v5.6/ti-sysc-dt-cam on top of Tero's
>> for-5.6-ti-clk branch. It might be too later for v5.6, but we'll
>> see.
> 
> Actually I'll leave out the k3-am65 dts changes as I don't see
> acks for those. Tero can pick up those later.
> 
> Regards,
> 
> Tony
> 

Right, I think I also missed the cal clkctrl patch in this series. This 
series is imho applying against too many different trees (three if I am 
not mistaken) and should be split up to avoid confusion / not to get 
lost in mailboxes.

-Tero
--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Patch v4 00/10] ARM: dts: dra7: add cal nodes
  2020-01-24  7:21     ` Tero Kristo
@ 2020-01-24  7:25       ` Tero Kristo
  0 siblings, 0 replies; 18+ messages in thread
From: Tero Kristo @ 2020-01-24  7:25 UTC (permalink / raw)
  To: Tony Lindgren, Benoit Parrot
  Cc: linux-omap, linux-clk, Rob Herring, devicetree, linux-kernel

On 24/01/2020 09:21, Tero Kristo wrote:
> On 23/01/2020 19:26, Tony Lindgren wrote:
>> * Tony Lindgren <tony@atomide.com> [200123 17:18]:
>>> * Benoit Parrot <bparrot@ti.com> [191211 06:03]:
>>>> This patch series adds the needed clkctrl and ty-sysc nodes for CAL 
>>>> module.
>>>> It also adds support for the module in related dtsi and dts for DRA72,
>>>> DRA76 and AM654 SoC.
>>>
>>> Applying these into omap-for-v5.6/ti-sysc-dt-cam on top of Tero's
>>> for-5.6-ti-clk branch. It might be too later for v5.6, but we'll
>>> see.
>>
>> Actually I'll leave out the k3-am65 dts changes as I don't see
>> acks for those. Tero can pick up those later.
>>
>> Regards,
>>
>> Tony
>>
> 
> Right, I think I also missed the cal clkctrl patch in this series. This 
> series is imho applying against too many different trees (three if I am 
> not mistaken) and should be split up to avoid confusion / not to get 
> lost in mailboxes.

Not cal clkctrl but the cal k3 patches. I just assumed all dts patches 
in this series were against omaps.

Anyways, I am planning to send k3 dts pull v2 today due to dma patches 
from Peter, so I think I can sneak these also in with that...

-Tero
--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Patch v4 09/10] arm64: dts: k3-am65-main Add CAL node
  2019-12-11 14:05 ` [Patch v4 09/10] arm64: dts: k3-am65-main Add CAL node Benoit Parrot
@ 2020-01-24 11:32   ` Tero Kristo
  0 siblings, 0 replies; 18+ messages in thread
From: Tero Kristo @ 2020-01-24 11:32 UTC (permalink / raw)
  To: Benoit Parrot, Tony Lindgren, linux-omap, linux-clk
  Cc: Rob Herring, devicetree, linux-kernel

On 11/12/2019 16:05, Benoit Parrot wrote:
> Add CAL dtsi node for AM654 device. Including proper power-domains and
> clock properties.
> 
> Signed-off-by: Benoit Parrot <bparrot@ti.com>

Queued this and patch #10 up for 5.6, thanks.

-Tero

> ---
>   arch/arm64/boot/dts/ti/k3-am65-main.dtsi | 22 ++++++++++++++++++++++
>   1 file changed, 22 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/ti/k3-am65-main.dtsi b/arch/arm64/boot/dts/ti/k3-am65-main.dtsi
> index efb24579922c..551adcefcc83 100644
> --- a/arch/arm64/boot/dts/ti/k3-am65-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am65-main.dtsi
> @@ -624,4 +624,26 @@
>   		dma-coherent;
>   		interrupts = <GIC_SPI 355 IRQ_TYPE_EDGE_RISING>;
>   	};
> +
> +	cal: cal@6f03000 {
> +		compatible = "ti,am654-cal";
> +		reg = <0x0 0x06f03000 0x0 0x400>,
> +		      <0x0 0x06f03800 0x0 0x40>;
> +		reg-names = "cal_top",
> +			    "cal_rx_core0";
> +		interrupts = <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
> +		ti,camerrx-control = <&scm_conf 0x40c0>;
> +		clock-names = "fck";
> +		clocks = <&k3_clks 2 0>;
> +		power-domains = <&k3_pds 2 TI_SCI_PD_EXCLUSIVE>;
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			csi2_0: port@0 {
> +				reg = <0>;
> +			};
> +		};
> +	};
>   };
> 

--
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2020-01-24 11:37 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-11 14:05 [Patch v4 00/10] ARM: dts: dra7: add cal nodes Benoit Parrot
2019-12-11 14:05 ` [Patch v4 01/10] clk: ti: dra7: add cam clkctrl data Benoit Parrot
2019-12-30 19:58   ` Stephen Boyd
2020-01-21  7:32     ` Tero Kristo
2019-12-11 14:05 ` [Patch v4 02/10] ARM: dts: dra7: add cam clkctrl node Benoit Parrot
2019-12-11 14:05 ` [Patch v4 03/10] ARM: OMAP: DRA7xx: Make CAM clock domain SWSUP only Benoit Parrot
2019-12-11 14:05 ` [Patch v4 04/10] ARM: dts: dra7-l4: Add ti-sysc node for CAM Benoit Parrot
2019-12-11 14:05 ` [Patch v4 05/10] ARM: dts: DRA72: Add CAL dtsi node Benoit Parrot
2019-12-11 14:05 ` [Patch v4 06/10] arm: dts: dra72-evm-common: Add entries for the CSI2 cameras Benoit Parrot
2019-12-11 14:05 ` [Patch v4 07/10] arm: dtsi: dra76x: Add CAL dtsi node Benoit Parrot
2019-12-11 14:05 ` [Patch v4 08/10] arm: dts: dra76-evm: Add CAL and OV5640 nodes Benoit Parrot
2019-12-11 14:05 ` [Patch v4 09/10] arm64: dts: k3-am65-main Add CAL node Benoit Parrot
2020-01-24 11:32   ` Tero Kristo
2019-12-11 14:05 ` [Patch v4 10/10] arm64: dts: k3-am654-base-board: Add CSI2 OV5640 camera Benoit Parrot
2020-01-23 17:17 ` [Patch v4 00/10] ARM: dts: dra7: add cal nodes Tony Lindgren
2020-01-23 17:26   ` Tony Lindgren
2020-01-24  7:21     ` Tero Kristo
2020-01-24  7:25       ` Tero Kristo

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).