All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-ti][dunfell][PATCH 1/4] conf: machine: j7200-evm: Add uarts overlay for J7200
@ 2023-02-23  6:17 Bhavya Kapoor
  2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 2/4] conf: machine: j7-evm: Add uarts overlay for J721E Bhavya Kapoor
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bhavya Kapoor @ 2023-02-23  6:17 UTC (permalink / raw)
  To: meta-ti; +Cc: b-kapoor, reatmon

Add device tree overlay for extending support for mcu_uart0 as well as
wkup_uart0 for boards with J7200 SoC. This overlay will mainly be used
for the purpose of testing uart instances.

Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
---
 conf/machine/j7200-evm.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/j7200-evm.conf b/conf/machine/j7200-evm.conf
index 3fa9447b..1e9db37b 100644
--- a/conf/machine/j7200-evm.conf
+++ b/conf/machine/j7200-evm.conf
@@ -10,6 +10,7 @@ SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
 KERNEL_DEVICETREE = " \
     ti/k3-j7200-common-proc-board.dtb \
     ti/k3-j7200-mcspi-loopback.dtbo \
+    ti/k3-j7200-common-proc-board-uarts.dtbo \
 "
 
 UBOOT_MACHINE = "j7200_evm_a72_config"
-- 
2.34.1



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

* [meta-ti][dunfell][PATCH 2/4] conf: machine: j7-evm: Add uarts overlay for J721E
  2023-02-23  6:17 [meta-ti][dunfell][PATCH 1/4] conf: machine: j7200-evm: Add uarts overlay for J7200 Bhavya Kapoor
@ 2023-02-23  6:17 ` Bhavya Kapoor
  2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 3/4] conf: machine: j721s2-evm: Add uarts overlay for J721S2 Bhavya Kapoor
  2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 4/4] conf: machine: j784s4-evm: Add uarts overlay for J784S4 Bhavya Kapoor
  2 siblings, 0 replies; 4+ messages in thread
From: Bhavya Kapoor @ 2023-02-23  6:17 UTC (permalink / raw)
  To: meta-ti; +Cc: b-kapoor, reatmon

Add device tree overlay for extending support for mcu_uart0 as well as
wkup_uart0 for boards with J721E SoC. This overlay will mainly be used
for the purpose of testing uart instances.

Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
---
 conf/machine/j7-evm.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/j7-evm.conf b/conf/machine/j7-evm.conf
index 7fb78019..e18ff509 100644
--- a/conf/machine/j7-evm.conf
+++ b/conf/machine/j7-evm.conf
@@ -38,6 +38,7 @@ KERNEL_DEVICETREE = " \
     ti/k3-j721e-fpdlink-sk-fusion.dtbo \
     ti/k3-j721e-sk-csi2-ov5640.dtbo \
     ti/k3-j721e-sk-rpi-cam-imx219.dtbo \
+    ti/k3-j721e-common-proc-board-uarts.dtbo \
 "
 
 UBOOT_MACHINE = "j721e_evm_a72_config"
-- 
2.34.1



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

* [meta-ti][dunfell][PATCH 3/4] conf: machine: j721s2-evm: Add uarts overlay for J721S2
  2023-02-23  6:17 [meta-ti][dunfell][PATCH 1/4] conf: machine: j7200-evm: Add uarts overlay for J7200 Bhavya Kapoor
  2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 2/4] conf: machine: j7-evm: Add uarts overlay for J721E Bhavya Kapoor
@ 2023-02-23  6:17 ` Bhavya Kapoor
  2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 4/4] conf: machine: j784s4-evm: Add uarts overlay for J784S4 Bhavya Kapoor
  2 siblings, 0 replies; 4+ messages in thread
From: Bhavya Kapoor @ 2023-02-23  6:17 UTC (permalink / raw)
  To: meta-ti; +Cc: b-kapoor, reatmon

Add device tree overlay for extending support for mcu_uart0 as well as
wkup_uart0 for boards with J721S2 SoC. This overlay will mainly be used
for the purpose of testing uart instances.

Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
---
 conf/machine/j721s2-evm.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/j721s2-evm.conf b/conf/machine/j721s2-evm.conf
index ba260b89..952b0792 100644
--- a/conf/machine/j721s2-evm.conf
+++ b/conf/machine/j721s2-evm.conf
@@ -39,6 +39,7 @@ KERNEL_DEVICETREE = " \
     ti/k3-j721s2-cpb-csi2-ov5640.dtbo \
     ti/k3-j721s2-fpdlink-cpb-fusion.dtbo \
     ti/k3-j721s2-gesi-exp-board.dtbo \
+    ti/k3-j721s2-common-proc-board-uarts.dtbo \
 "
 
 UBOOT_MACHINE = "j721s2_evm_a72_defconfig"
-- 
2.34.1



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

* [meta-ti][dunfell][PATCH 4/4] conf: machine: j784s4-evm: Add uarts overlay for J784S4
  2023-02-23  6:17 [meta-ti][dunfell][PATCH 1/4] conf: machine: j7200-evm: Add uarts overlay for J7200 Bhavya Kapoor
  2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 2/4] conf: machine: j7-evm: Add uarts overlay for J721E Bhavya Kapoor
  2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 3/4] conf: machine: j721s2-evm: Add uarts overlay for J721S2 Bhavya Kapoor
@ 2023-02-23  6:17 ` Bhavya Kapoor
  2 siblings, 0 replies; 4+ messages in thread
From: Bhavya Kapoor @ 2023-02-23  6:17 UTC (permalink / raw)
  To: meta-ti; +Cc: b-kapoor, reatmon

Add device tree overlay for extending support for mcu_uart0 as well as
wkup_uart0 for boards with J784S4 SoC. This overlay will mainly be used
for the purpose of testing uart instances.

Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
---
 conf/machine/j784s4-evm.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/j784s4-evm.conf b/conf/machine/j784s4-evm.conf
index 77805d49..47d05429 100644
--- a/conf/machine/j784s4-evm.conf
+++ b/conf/machine/j784s4-evm.conf
@@ -38,6 +38,7 @@ KERNEL_DEVICETREE = " \
     ti/k3-j784s4-evm.dtb \
     ti/k3-j784s4-evm-csi2-ov5640.dtbo \
     ti/k3-j784s4-fpdlink-fusion.dtbo \
+    ti/k3-j784s4-evm-uarts.dtbo \
 "
 
 UBOOT_MACHINE = "j784s4_evm_a72_defconfig"
-- 
2.34.1



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

end of thread, other threads:[~2023-02-23  6:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-23  6:17 [meta-ti][dunfell][PATCH 1/4] conf: machine: j7200-evm: Add uarts overlay for J7200 Bhavya Kapoor
2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 2/4] conf: machine: j7-evm: Add uarts overlay for J721E Bhavya Kapoor
2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 3/4] conf: machine: j721s2-evm: Add uarts overlay for J721S2 Bhavya Kapoor
2023-02-23  6:17 ` [meta-ti][dunfell][PATCH 4/4] conf: machine: j784s4-evm: Add uarts overlay for J784S4 Bhavya Kapoor

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.