boards: ti: am64/am24x: Update AM64x Nodes in MAIN
Update all nodes located in the MAIN domain and add the main_ prefix. This is required because the am64x_main.dtsi now has this prefix. Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
This commit is contained in:
parent
cd96f37f82
commit
fecfe5e2d7
@ -55,7 +55,7 @@
|
||||
|
||||
ipc0: ipc {
|
||||
compatible = "zephyr,mbox-ipm";
|
||||
mboxes = <&mbox6 0>, <&mbox6 1>;
|
||||
mboxes = <&main_mbox6 0>, <&main_mbox6 1>;
|
||||
mbox-names = "tx", "rx";
|
||||
};
|
||||
};
|
||||
@ -73,7 +73,7 @@
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&mbox6 {
|
||||
&main_mbox6 {
|
||||
usr-id = <3>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
@ -6,22 +6,22 @@
|
||||
|
||||
#include <zephyr/dt-bindings/pinctrl/ti-k3-pinctrl.h>
|
||||
|
||||
&pinctrl {
|
||||
&main_pinctrl {
|
||||
status = "okay";
|
||||
|
||||
uart0_rx: uart0_rx_default {
|
||||
main_uart0_rx: uart0_rx_default {
|
||||
pinmux = <K3_PINMUX(0x230, PIN_INPUT, MUX_MODE_0)>;
|
||||
};
|
||||
|
||||
uart0_tx: uart0_tx_default {
|
||||
main_uart0_tx: uart0_tx_default {
|
||||
pinmux = <K3_PINMUX(0x234, PIN_OUTPUT, MUX_MODE_0)>;
|
||||
};
|
||||
|
||||
i2c0_scl: i2c0_scl_default {
|
||||
main_i2c0_scl: i2c0_scl_default {
|
||||
pinmux = <K3_PINMUX(0x260, PIN_INPUT_PULLUP, MUX_MODE_0)>;
|
||||
};
|
||||
|
||||
i2c0_sda: i2c0_sda_default {
|
||||
main_i2c0_sda: i2c0_sda_default {
|
||||
pinmux = <K3_PINMUX(0x264, PIN_INPUT_PULLUP, MUX_MODE_0)>;
|
||||
};
|
||||
|
||||
|
||||
@ -16,15 +16,15 @@
|
||||
chosen {
|
||||
zephyr,sram = &sram;
|
||||
zephyr,sram1 = &atcm;
|
||||
zephyr,console = &uart0;
|
||||
zephyr,shell-uart = &uart0;
|
||||
zephyr,console = &main_uart0;
|
||||
zephyr,shell-uart = &main_uart0;
|
||||
zephyr,ipc = &ipc0;
|
||||
zephyr,ipc-shm = &ipc_shm0;
|
||||
};
|
||||
|
||||
aliases {
|
||||
led0 = &ld26;
|
||||
adc0 = &adc0;
|
||||
adc0 = &main_adc0;
|
||||
};
|
||||
|
||||
leds: leds {
|
||||
@ -51,7 +51,7 @@
|
||||
|
||||
ipc0: ipc {
|
||||
compatible = "zephyr,mbox-ipm";
|
||||
mboxes = <&mbox6 0>, <&mbox6 1>;
|
||||
mboxes = <&main_mbox6 0>, <&main_mbox6 1>;
|
||||
mbox-names = "rx", "tx";
|
||||
};
|
||||
};
|
||||
@ -65,13 +65,13 @@
|
||||
};
|
||||
|
||||
/* system timer */
|
||||
&timer8 {
|
||||
&main_timer8 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&uart0 {
|
||||
&main_uart0 {
|
||||
status = "okay";
|
||||
pinctrl-0 = <&uart0_tx &uart0_rx>;
|
||||
pinctrl-0 = <&main_uart0_tx &main_uart0_rx>;
|
||||
pinctrl-names = "default";
|
||||
current-speed = <115200>;
|
||||
};
|
||||
@ -82,20 +82,21 @@
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
pinctrl-0 = <&i2c0_scl &i2c0_sda>;
|
||||
&main_i2c0 {
|
||||
pinctrl-0 = <&main_i2c0_scl &main_i2c0_sda>;
|
||||
pinctrl-names = "default";
|
||||
status = "okay";
|
||||
power-domains = <&i2c0_pd>;
|
||||
};
|
||||
|
||||
&mcspi0 {
|
||||
&main_mcspi0 {
|
||||
pinctrl-0 = <&spi0_clk &spi0_cs0 &spi0_d0 &spi0_d1>;
|
||||
pinctrl-names = "default";
|
||||
status = "okay";
|
||||
power-domains = <&mcspi0_pd>;
|
||||
};
|
||||
|
||||
&adc0 {
|
||||
&main_adc0 {
|
||||
ti,vrefp = <1800>;
|
||||
ti,fifo = <0>;
|
||||
status = "okay";
|
||||
@ -182,7 +183,7 @@
|
||||
};
|
||||
};
|
||||
|
||||
&mbox6 {
|
||||
&main_mbox6 {
|
||||
usr-id = <0>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
ipc0: ipc {
|
||||
compatible = "zephyr,mbox-ipm";
|
||||
mboxes = <&mbox6 0>, <&mbox6 1>;
|
||||
mboxes = <&main_mbox6 0>, <&main_mbox6 1>;
|
||||
mbox-names = "tx", "rx";
|
||||
};
|
||||
};
|
||||
@ -80,7 +80,7 @@
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&mbox6 {
|
||||
&main_mbox6 {
|
||||
usr-id = <3>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
@ -44,11 +44,11 @@
|
||||
|
||||
ipc0: ipc {
|
||||
compatible = "zephyr,mbox-ipm";
|
||||
mboxes = <&mbox2 0>, <&mbox2 1>;
|
||||
mboxes = <&main_mbox2 0>, <&main_mbox2 1>;
|
||||
mbox-names = "tx", "rx";
|
||||
};
|
||||
};
|
||||
|
||||
&timer8 {
|
||||
&main_timer8 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
@ -44,11 +44,11 @@
|
||||
|
||||
ipc0: ipc {
|
||||
compatible = "zephyr,mbox-ipm";
|
||||
mboxes = <&mbox2 2>, <&mbox2 3>;
|
||||
mboxes = <&main_mbox2 2>, <&main_mbox2 3>;
|
||||
mbox-names = "tx", "rx";
|
||||
};
|
||||
};
|
||||
|
||||
&timer9 {
|
||||
&main_timer9 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
@ -44,11 +44,11 @@
|
||||
|
||||
ipc0: ipc {
|
||||
compatible = "zephyr,mbox-ipm";
|
||||
mboxes = <&mbox4 0>, <&mbox4 1>;
|
||||
mboxes = <&main_mbox4 0>, <&main_mbox4 1>;
|
||||
mbox-names = "tx", "rx";
|
||||
};
|
||||
};
|
||||
|
||||
&timer10 {
|
||||
&main_timer10 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
@ -44,11 +44,11 @@
|
||||
|
||||
ipc0: ipc {
|
||||
compatible = "zephyr,mbox-ipm";
|
||||
mboxes = <&mbox4 2>, <&mbox4 3>;
|
||||
mboxes = <&main_mbox4 2>, <&main_mbox4 3>;
|
||||
mbox-names = "tx", "rx";
|
||||
};
|
||||
};
|
||||
|
||||
&timer11 {
|
||||
&main_timer11 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
|
||||
#include <freq.h>
|
||||
|
||||
&mcspi0 {
|
||||
&main_mcspi0 {
|
||||
slow@0 {
|
||||
compatible = "test-spi-loopback-slow";
|
||||
reg = <0>;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user