8d5322b8ff
Remove nxp,imx-mu-rev2 compatible. This IP block is the same as the nxp,imx-mu device, and should be handled by the same compatible Instead, use CONFIG_HAS_MCUX to determine which HAL APIs should be used to interact with the messaging unit IP. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
80 lines
1.5 KiB
Plaintext
80 lines
1.5 KiB
Plaintext
/*
|
|
* Copyright (c) 2021 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/dt-bindings/clock/imx_ccm.h>
|
|
#include <xtensa/xtensa.dtsi>
|
|
#include <mem.h>
|
|
|
|
/ {
|
|
cpus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
cpu0: cpu@0 {
|
|
device_type = "cpu";
|
|
compatible = "cdns,tensilica-xtensa-lx6";
|
|
reg = <0>;
|
|
};
|
|
};
|
|
|
|
sram0: memory@92400000 {
|
|
device_type = "memory";
|
|
compatible = "mmio-sram";
|
|
reg = <0x92400000 DT_SIZE_K(512)>;
|
|
};
|
|
|
|
sram1: memory@92c00000 {
|
|
device_type = "memory";
|
|
compatible = "mmio-sram";
|
|
reg = <0x92c00000 DT_SIZE_K(512)>;
|
|
};
|
|
|
|
soc {
|
|
interrupt-parent = <&irqsteer>;
|
|
|
|
irqsteer: interrupt-controller {
|
|
compatible = "nxp,irqsteer-intc";
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
};
|
|
|
|
ccm: ccm@30380000 {
|
|
compatible = "nxp,imx-ccm";
|
|
reg = <0x30380000 DT_SIZE_K(64)>;
|
|
#clock-cells = <3>;
|
|
};
|
|
|
|
iomuxc: iomuxc@30330000 {
|
|
compatible = "nxp,imx-iomuxc";
|
|
reg = <0x30330000 DT_SIZE_K(64)>;
|
|
status = "okay";
|
|
pinctrl: pinctrl {
|
|
status = "okay";
|
|
compatible = "nxp,imx8mp-pinctrl";
|
|
};
|
|
};
|
|
|
|
/*
|
|
* For now only UART4 is supported and
|
|
* tested with the serial driver
|
|
*/
|
|
uart4: uart@30a60000 {
|
|
compatible = "nxp,imx-iuart";
|
|
reg = <0x30a60000 0x10000>;
|
|
clocks = <&ccm IMX_CCM_UART4_CLK 0x6c 24>;
|
|
status = "disabled";
|
|
};
|
|
|
|
mailbox0: mailbox@30e70000 {
|
|
compatible = "nxp,imx-mu";
|
|
reg = <0x30e70000 0x10000>;
|
|
interrupts = <7 0>;
|
|
rdc = <0>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|