171 lines
3.2 KiB
Plaintext
171 lines
3.2 KiB
Plaintext
/*
|
|
* Copyright (c) 2018, Synopsys, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "skeleton.dtsi"
|
|
#include <zephyr/dt-bindings/i2c/i2c.h>
|
|
#include <zephyr/dt-bindings/gpio/gpio.h>
|
|
|
|
#define DT_APB_CLK_HZ 50000000
|
|
|
|
/ {
|
|
cpus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
cpu@0 {
|
|
device_type = "cpu";
|
|
compatible = "snps,arcem";
|
|
reg = <0>;
|
|
};
|
|
};
|
|
|
|
intc: arcv2-intc {
|
|
compatible = "snps,arcv2-intc";
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
};
|
|
|
|
timer0: timer0 {
|
|
compatible = "snps,arc-timer";
|
|
interrupts = <16 1>;
|
|
interrupt-parent = <&intc>;
|
|
};
|
|
|
|
timer1: timer1 {
|
|
compatible = "snps,arc-timer";
|
|
interrupts = <17 1>;
|
|
interrupt-parent = <&intc>;
|
|
};
|
|
|
|
sysclk: system-clock {
|
|
compatible = "fixed-clock";
|
|
clock-frequency = <DT_APB_CLK_HZ>;
|
|
#clock-cells = <0>;
|
|
};
|
|
|
|
soc {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "simple-bus";
|
|
ranges;
|
|
|
|
ddr0: memory@10000000 {
|
|
device_type = "memory";
|
|
reg = <0x10000000 0x8000000>;
|
|
};
|
|
|
|
|
|
i2c0: i2c@f0004000 {
|
|
compatible = "snps,designware-i2c";
|
|
clock-frequency = <I2C_BITRATE_STANDARD>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
reg = <0xf0004000 0x1000>;
|
|
interrupt-parent = <&intc>;
|
|
};
|
|
|
|
i2c1: i2c@f0005000 {
|
|
compatible = "snps,designware-i2c";
|
|
clock-frequency = <I2C_BITRATE_STANDARD>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
reg = <0xf0005000 0x1000>;
|
|
interrupt-parent = <&intc>;
|
|
};
|
|
|
|
uart0: uart@f0008000 {
|
|
compatible = "ns16550";
|
|
clock-frequency = <DT_APB_CLK_HZ>;
|
|
reg = <0xf0008000 0x1000>;
|
|
interrupt-parent = <&intc>;
|
|
reg-shift = <2>;
|
|
};
|
|
|
|
uart1: uart@f0009000 {
|
|
compatible = "ns16550";
|
|
clock-frequency = <DT_APB_CLK_HZ>;
|
|
reg = <0xf0009000 0x1000>;
|
|
interrupt-parent = <&intc>;
|
|
reg-shift = <2>;
|
|
};
|
|
|
|
uart2: uart@f000a000 {
|
|
compatible = "ns16550";
|
|
clock-frequency = <DT_APB_CLK_HZ>;
|
|
reg = <0xf000a000 0x1000>;
|
|
interrupt-parent = <&intc>;
|
|
reg-shift = <2>;
|
|
};
|
|
|
|
gpio0: gpio@f0002000 {
|
|
compatible = "snps,designware-gpio";
|
|
reg = <0xf0002000 0xc>;
|
|
ngpios = <32>;
|
|
interrupt-parent = <&intc>;
|
|
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
};
|
|
|
|
gpio1: gpio@f000200c {
|
|
compatible = "snps,designware-gpio";
|
|
reg = <0xf000200c 0xc>;
|
|
ngpios = <9>;
|
|
interrupt-parent = <&intc>;
|
|
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
};
|
|
|
|
gpio2: gpio@f0002018 {
|
|
compatible = "snps,designware-gpio";
|
|
reg = <0xF0002018 0xc>;
|
|
ngpios = <32>;
|
|
|
|
interrupt-parent = <&intc>;
|
|
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
};
|
|
|
|
gpio3: gpio@f0002024 {
|
|
compatible = "snps,designware-gpio";
|
|
reg = <0xF0002024 0xc>;
|
|
ngpios = <12>;
|
|
|
|
interrupt-parent = <&intc>;
|
|
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
};
|
|
|
|
spi0: spi@f0006000 {
|
|
compatible = "snps,designware-spi";
|
|
reg = <0xf0006000 0x1000>;
|
|
clocks = <&sysclk>;
|
|
interrupt-parent = <&intc>;
|
|
fifo-depth = <32>;
|
|
max-xfer-size = <16>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
};
|
|
|
|
spi1: spi@f0007000 {
|
|
compatible = "snps,designware-spi";
|
|
reg = <0xf0007000 0x1000>;
|
|
clocks = <&sysclk>;
|
|
interrupt-parent = <&intc>;
|
|
fifo-depth = <32>;
|
|
max-xfer-size = <16>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
};
|
|
|
|
};
|
|
};
|