2018-03-27 08:36:39 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-10-30 14:39:18 +00:00
|
|
|
/*
|
|
|
|
* dts file for Xilinx ZynqMP
|
|
|
|
*
|
2020-02-18 07:38:06 +00:00
|
|
|
* (C) Copyright 2014 - 2020, Xilinx, Inc.
|
2015-10-30 14:39:18 +00:00
|
|
|
*
|
|
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
|
|
*
|
2018-03-27 08:36:39 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
2015-10-30 14:39:18 +00:00
|
|
|
*/
|
2016-12-16 12:12:48 +00:00
|
|
|
|
2019-10-14 13:56:31 +00:00
|
|
|
#include <dt-bindings/power/xlnx-zynqmp-power.h>
|
2019-10-14 13:55:53 +00:00
|
|
|
#include <dt-bindings/reset/xlnx-zynqmp-resets.h>
|
|
|
|
|
2015-10-30 14:39:18 +00:00
|
|
|
/ {
|
|
|
|
compatible = "xlnx,zynqmp";
|
|
|
|
#address-cells = <2>;
|
2016-04-07 13:07:38 +00:00
|
|
|
#size-cells = <2>;
|
2015-10-30 14:39:18 +00:00
|
|
|
|
|
|
|
cpus {
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
|
2017-02-06 09:09:53 +00:00
|
|
|
cpu0: cpu@0 {
|
2019-01-14 17:45:33 +00:00
|
|
|
compatible = "arm,cortex-a53";
|
2015-10-30 14:39:18 +00:00
|
|
|
device_type = "cpu";
|
|
|
|
enable-method = "psci";
|
2017-02-13 10:28:55 +00:00
|
|
|
operating-points-v2 = <&cpu_opp_table>;
|
2015-10-30 14:39:18 +00:00
|
|
|
reg = <0x0>;
|
2016-10-21 10:44:56 +00:00
|
|
|
cpu-idle-states = <&CPU_SLEEP_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2017-02-06 09:09:53 +00:00
|
|
|
cpu1: cpu@1 {
|
2019-01-14 17:45:33 +00:00
|
|
|
compatible = "arm,cortex-a53";
|
2015-10-30 14:39:18 +00:00
|
|
|
device_type = "cpu";
|
|
|
|
enable-method = "psci";
|
|
|
|
reg = <0x1>;
|
2017-02-13 10:28:55 +00:00
|
|
|
operating-points-v2 = <&cpu_opp_table>;
|
2016-10-21 10:44:56 +00:00
|
|
|
cpu-idle-states = <&CPU_SLEEP_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2017-02-06 09:09:53 +00:00
|
|
|
cpu2: cpu@2 {
|
2019-01-14 17:45:33 +00:00
|
|
|
compatible = "arm,cortex-a53";
|
2015-10-30 14:39:18 +00:00
|
|
|
device_type = "cpu";
|
|
|
|
enable-method = "psci";
|
|
|
|
reg = <0x2>;
|
2017-02-13 10:28:55 +00:00
|
|
|
operating-points-v2 = <&cpu_opp_table>;
|
2016-10-21 10:44:56 +00:00
|
|
|
cpu-idle-states = <&CPU_SLEEP_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2017-02-06 09:09:53 +00:00
|
|
|
cpu3: cpu@3 {
|
2019-01-14 17:45:33 +00:00
|
|
|
compatible = "arm,cortex-a53";
|
2015-10-30 14:39:18 +00:00
|
|
|
device_type = "cpu";
|
|
|
|
enable-method = "psci";
|
|
|
|
reg = <0x3>;
|
2017-02-13 10:28:55 +00:00
|
|
|
operating-points-v2 = <&cpu_opp_table>;
|
2016-10-21 10:44:56 +00:00
|
|
|
cpu-idle-states = <&CPU_SLEEP_0>;
|
|
|
|
};
|
|
|
|
|
|
|
|
idle-states {
|
2018-08-23 08:53:29 +00:00
|
|
|
entry-method = "psci";
|
2016-10-21 10:44:56 +00:00
|
|
|
|
|
|
|
CPU_SLEEP_0: cpu-sleep-0 {
|
|
|
|
compatible = "arm,idle-state";
|
|
|
|
arm,psci-suspend-param = <0x40000000>;
|
|
|
|
local-timer-stop;
|
|
|
|
entry-latency-us = <300>;
|
|
|
|
exit-latency-us = <600>;
|
2017-06-14 22:03:52 +00:00
|
|
|
min-residency-us = <10000>;
|
2016-10-21 10:44:56 +00:00
|
|
|
};
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-11-08 09:06:53 +00:00
|
|
|
cpu_opp_table: cpu-opp-table {
|
2017-02-13 10:28:55 +00:00
|
|
|
compatible = "operating-points-v2";
|
|
|
|
opp-shared;
|
|
|
|
opp00 {
|
|
|
|
opp-hz = /bits/ 64 <1199999988>;
|
|
|
|
opp-microvolt = <1000000>;
|
|
|
|
clock-latency-ns = <500000>;
|
|
|
|
};
|
|
|
|
opp01 {
|
|
|
|
opp-hz = /bits/ 64 <599999994>;
|
|
|
|
opp-microvolt = <1000000>;
|
|
|
|
clock-latency-ns = <500000>;
|
|
|
|
};
|
|
|
|
opp02 {
|
|
|
|
opp-hz = /bits/ 64 <399999996>;
|
|
|
|
opp-microvolt = <1000000>;
|
|
|
|
clock-latency-ns = <500000>;
|
|
|
|
};
|
|
|
|
opp03 {
|
|
|
|
opp-hz = /bits/ 64 <299999997>;
|
|
|
|
opp-microvolt = <1000000>;
|
|
|
|
clock-latency-ns = <500000>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-09-27 10:36:58 +00:00
|
|
|
zynqmp_ipi {
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
compatible = "xlnx,zynqmp-ipi-mailbox";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 35 4>;
|
|
|
|
xlnx,ipi-id = <0>;
|
|
|
|
#address-cells = <2>;
|
|
|
|
#size-cells = <2>;
|
|
|
|
ranges;
|
|
|
|
|
|
|
|
ipi_mailbox_pmu1: mailbox@ff990400 {
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
reg = <0x0 0xff9905c0 0x0 0x20>,
|
|
|
|
<0x0 0xff9905e0 0x0 0x20>,
|
|
|
|
<0x0 0xff990e80 0x0 0x20>,
|
|
|
|
<0x0 0xff990ea0 0x0 0x20>;
|
2019-10-14 13:52:17 +00:00
|
|
|
reg-names = "local_request_region", "local_response_region",
|
2019-09-27 10:36:58 +00:00
|
|
|
"remote_request_region", "remote_response_region";
|
|
|
|
#mbox-cells = <1>;
|
|
|
|
xlnx,ipi-id = <4>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-09 06:46:39 +00:00
|
|
|
dcc: dcc {
|
|
|
|
compatible = "arm,dcc";
|
|
|
|
status = "disabled";
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
};
|
|
|
|
|
2015-10-30 14:39:18 +00:00
|
|
|
pmu {
|
|
|
|
compatible = "arm,armv8-pmuv3";
|
2016-04-07 13:28:33 +00:00
|
|
|
interrupt-parent = <&gic>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupts = <0 143 4>,
|
|
|
|
<0 144 4>,
|
|
|
|
<0 145 4>,
|
|
|
|
<0 146 4>;
|
|
|
|
};
|
|
|
|
|
|
|
|
psci {
|
|
|
|
compatible = "arm,psci-0.2";
|
|
|
|
method = "smc";
|
|
|
|
};
|
|
|
|
|
2019-09-27 10:36:58 +00:00
|
|
|
firmware {
|
2019-10-14 13:42:03 +00:00
|
|
|
zynqmp_firmware: zynqmp-firmware {
|
2019-09-27 10:36:58 +00:00
|
|
|
compatible = "xlnx,zynqmp-firmware";
|
|
|
|
method = "smc";
|
|
|
|
#power-domain-cells = <0x1>;
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
|
2019-10-18 16:07:32 +00:00
|
|
|
zynqmp_pcap: pcap {
|
|
|
|
compatible = "xlnx,zynqmp-pcap-fpga";
|
|
|
|
clock-names = "ref_clk";
|
|
|
|
};
|
|
|
|
|
2019-09-27 10:36:58 +00:00
|
|
|
zynqmp_power: zynqmp-power {
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
compatible = "xlnx,zynqmp-power";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 35 4>;
|
|
|
|
mboxes = <&ipi_mailbox_pmu1 0>, <&ipi_mailbox_pmu1 1>;
|
|
|
|
mbox-names = "tx", "rx";
|
|
|
|
};
|
2019-10-14 13:55:53 +00:00
|
|
|
|
|
|
|
zynqmp_reset: reset-controller {
|
|
|
|
compatible = "xlnx,zynqmp-reset";
|
|
|
|
#reset-cells = <1>;
|
|
|
|
};
|
2020-02-18 12:04:06 +00:00
|
|
|
|
|
|
|
pinctrl0: pinctrl {
|
|
|
|
compatible = "xlnx,zynqmp-pinctrl";
|
|
|
|
status = "disabled";
|
|
|
|
};
|
2019-09-27 10:36:58 +00:00
|
|
|
};
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
timer {
|
|
|
|
compatible = "arm,armv8-timer";
|
|
|
|
interrupt-parent = <&gic>;
|
2017-02-09 13:45:12 +00:00
|
|
|
interrupts = <1 13 0xf08>,
|
|
|
|
<1 14 0xf08>,
|
|
|
|
<1 11 0xf08>,
|
|
|
|
<1 10 0xf08>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2016-06-20 10:18:30 +00:00
|
|
|
edac {
|
|
|
|
compatible = "arm,cortex-a53-edac";
|
|
|
|
};
|
|
|
|
|
2017-05-22 06:35:17 +00:00
|
|
|
fpga_full: fpga-full {
|
|
|
|
compatible = "fpga-region";
|
2019-10-18 16:07:32 +00:00
|
|
|
fpga-mgr = <&zynqmp_pcap>;
|
2017-05-22 06:35:17 +00:00
|
|
|
#address-cells = <2>;
|
|
|
|
#size-cells = <2>;
|
2019-10-18 16:07:32 +00:00
|
|
|
ranges;
|
2017-05-22 06:35:17 +00:00
|
|
|
};
|
|
|
|
|
2017-01-17 11:27:24 +00:00
|
|
|
nvmem_firmware {
|
|
|
|
compatible = "xlnx,zynqmp-nvmem-fw";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
soc_revision: soc_revision@0 {
|
|
|
|
reg = <0x0 0x4>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-11-08 09:06:53 +00:00
|
|
|
amba_apu: amba-apu@0 {
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "simple-bus";
|
|
|
|
#address-cells = <2>;
|
|
|
|
#size-cells = <1>;
|
2016-04-07 13:07:38 +00:00
|
|
|
ranges = <0 0 0 0 0xffffffff>;
|
2015-10-30 14:39:18 +00:00
|
|
|
|
|
|
|
gic: interrupt-controller@f9010000 {
|
2020-02-18 09:01:26 +00:00
|
|
|
compatible = "arm,gic-400";
|
2015-10-30 14:39:18 +00:00
|
|
|
#interrupt-cells = <3>;
|
|
|
|
reg = <0x0 0xf9010000 0x10000>,
|
2016-05-12 11:44:01 +00:00
|
|
|
<0x0 0xf9020000 0x20000>,
|
2015-10-30 14:39:18 +00:00
|
|
|
<0x0 0xf9040000 0x20000>,
|
2016-05-12 11:44:01 +00:00
|
|
|
<0x0 0xf9060000 0x20000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-controller;
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <1 9 0xf04>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-02-11 06:19:06 +00:00
|
|
|
amba: amba {
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "simple-bus";
|
2016-02-22 08:57:27 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
2015-10-30 14:39:18 +00:00
|
|
|
#address-cells = <2>;
|
2016-02-11 06:19:06 +00:00
|
|
|
#size-cells = <2>;
|
|
|
|
ranges;
|
2015-10-30 14:39:18 +00:00
|
|
|
|
|
|
|
can0: can@ff060000 {
|
|
|
|
compatible = "xlnx,zynq-can-1.0";
|
|
|
|
status = "disabled";
|
|
|
|
clock-names = "can_clk", "pclk";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff060000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupts = <0 23 4>;
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
tx-fifo-depth = <0x40>;
|
|
|
|
rx-fifo-depth = <0x40>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_CAN_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
can1: can@ff070000 {
|
|
|
|
compatible = "xlnx,zynq-can-1.0";
|
|
|
|
status = "disabled";
|
|
|
|
clock-names = "can_clk", "pclk";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff070000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupts = <0 24 4>;
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
tx-fifo-depth = <0x40>;
|
|
|
|
rx-fifo-depth = <0x40>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_CAN_1>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2015-11-26 10:21:25 +00:00
|
|
|
cci: cci@fd6e0000 {
|
|
|
|
compatible = "arm,cci-400";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd6e0000 0x0 0x9000>;
|
2015-11-26 10:21:25 +00:00
|
|
|
ranges = <0x0 0x0 0xfd6e0000 0x10000>;
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
pmu@9000 {
|
|
|
|
compatible = "arm,cci-400-pmu,r1";
|
|
|
|
reg = <0x9000 0x5000>;
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 123 4>,
|
|
|
|
<0 123 4>,
|
|
|
|
<0 123 4>,
|
|
|
|
<0 123 4>,
|
|
|
|
<0 123 4>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-10-30 14:39:18 +00:00
|
|
|
/* GDMA */
|
|
|
|
fpd_dma_chan1: dma@fd500000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd500000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 124 4>;
|
2016-03-24 17:15:12 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <128>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x14e8>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GDMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fpd_dma_chan2: dma@fd510000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd510000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 125 4>;
|
2016-03-24 17:15:12 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <128>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x14e9>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GDMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fpd_dma_chan3: dma@fd520000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd520000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 126 4>;
|
2016-03-24 17:15:12 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <128>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x14ea>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GDMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fpd_dma_chan4: dma@fd530000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd530000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 127 4>;
|
2016-03-24 17:15:12 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <128>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x14eb>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GDMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fpd_dma_chan5: dma@fd540000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd540000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 128 4>;
|
2016-03-24 17:15:12 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <128>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x14ec>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GDMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fpd_dma_chan6: dma@fd550000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd550000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 129 4>;
|
2016-03-24 17:15:12 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <128>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x14ed>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GDMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fpd_dma_chan7: dma@fd560000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd560000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 130 4>;
|
2016-03-24 17:15:12 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <128>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x14ee>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GDMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fpd_dma_chan8: dma@fd570000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd570000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 131 4>;
|
2016-03-24 17:15:12 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <128>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x14ef>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GDMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gpu: gpu@fd4b0000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "arm,mali-400", "arm,mali-utgard";
|
2017-08-22 01:54:29 +00:00
|
|
|
reg = <0x0 0xfd4b0000 0x0 0x10000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 132 4>, <0 132 4>, <0 132 4>, <0 132 4>, <0 132 4>, <0 132 4>;
|
|
|
|
interrupt-names = "IRQGP", "IRQGPMMU", "IRQPP0", "IRQPPMMU0", "IRQPP1", "IRQPPMMU1";
|
2017-02-17 12:14:45 +00:00
|
|
|
clock-names = "gpu", "gpu_pp0", "gpu_pp1";
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GPU>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2016-09-09 07:06:01 +00:00
|
|
|
/* LPDDMA default allows only secured access. inorder to enable
|
|
|
|
* These dma channels, Users should ensure that these dma
|
|
|
|
* Channels are allowed for non secure access.
|
|
|
|
*/
|
2015-10-30 14:39:18 +00:00
|
|
|
lpd_dma_chan1: dma@ffa80000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffa80000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 77 4>;
|
2018-01-17 15:32:33 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <64>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x868>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ADMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
lpd_dma_chan2: dma@ffa90000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffa90000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 78 4>;
|
2018-01-17 15:32:33 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <64>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x869>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ADMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
lpd_dma_chan3: dma@ffaa0000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffaa0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 79 4>;
|
2018-01-17 15:32:33 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <64>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x86a>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ADMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
lpd_dma_chan4: dma@ffab0000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffab0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 80 4>;
|
2018-01-17 15:32:33 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <64>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x86b>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ADMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
lpd_dma_chan5: dma@ffac0000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffac0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 81 4>;
|
2018-01-17 15:32:33 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <64>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x86c>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ADMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
lpd_dma_chan6: dma@ffad0000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffad0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 82 4>;
|
2018-01-17 15:32:33 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <64>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x86d>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ADMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
lpd_dma_chan7: dma@ffae0000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffae0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 83 4>;
|
2018-01-17 15:32:33 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <64>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x86e>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ADMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
lpd_dma_chan8: dma@ffaf0000 {
|
|
|
|
status = "disabled";
|
|
|
|
compatible = "xlnx,zynqmp-dma-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffaf0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 84 4>;
|
2018-01-17 15:32:33 +00:00
|
|
|
clock-names = "clk_main", "clk_apb";
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx,bus-width = <64>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x86f>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ADMA>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2016-03-11 07:40:26 +00:00
|
|
|
mc: memory-controller@fd070000 {
|
|
|
|
compatible = "xlnx,zynqmp-ddrc-2.40a";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd070000 0x0 0x30000>;
|
2016-03-11 07:40:26 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 112 4>;
|
|
|
|
};
|
|
|
|
|
2015-10-30 14:39:18 +00:00
|
|
|
nand0: nand@ff100000 {
|
|
|
|
compatible = "arasan,nfc-v3p10";
|
|
|
|
status = "disabled";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff100000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "clk_sys", "clk_flash";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 14 4>;
|
2017-01-23 10:50:37 +00:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x872>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_NAND>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gem0: ethernet@ff0b0000 {
|
2018-03-27 10:53:37 +00:00
|
|
|
compatible = "cdns,zynqmp-gem", "cdns,gem";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 57 4>, <0 57 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff0b0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "pclk", "hclk", "tx_clk";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2015-11-26 13:12:20 +00:00
|
|
|
#stream-id-cells = <1>;
|
2016-04-06 08:43:23 +00:00
|
|
|
iommus = <&smmu 0x874>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ETH_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gem1: ethernet@ff0c0000 {
|
2018-03-27 10:53:37 +00:00
|
|
|
compatible = "cdns,zynqmp-gem", "cdns,gem";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 59 4>, <0 59 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff0c0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "pclk", "hclk", "tx_clk";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2015-11-26 13:12:20 +00:00
|
|
|
#stream-id-cells = <1>;
|
2016-04-06 08:43:23 +00:00
|
|
|
iommus = <&smmu 0x875>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ETH_1>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gem2: ethernet@ff0d0000 {
|
2018-03-27 10:53:37 +00:00
|
|
|
compatible = "cdns,zynqmp-gem", "cdns,gem";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 61 4>, <0 61 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff0d0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "pclk", "hclk", "tx_clk";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2015-11-26 13:12:20 +00:00
|
|
|
#stream-id-cells = <1>;
|
2016-04-06 08:43:23 +00:00
|
|
|
iommus = <&smmu 0x876>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ETH_2>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gem3: ethernet@ff0e0000 {
|
2018-03-27 10:53:37 +00:00
|
|
|
compatible = "cdns,zynqmp-gem", "cdns,gem";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 63 4>, <0 63 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff0e0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "pclk", "hclk", "tx_clk";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2015-11-26 13:12:20 +00:00
|
|
|
#stream-id-cells = <1>;
|
2016-04-06 08:43:23 +00:00
|
|
|
iommus = <&smmu 0x877>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_ETH_3>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gpio: gpio@ff0a0000 {
|
|
|
|
compatible = "xlnx,zynqmp-gpio-1.0";
|
|
|
|
status = "disabled";
|
|
|
|
#gpio-cells = <0x2>;
|
2020-01-09 12:10:59 +00:00
|
|
|
gpio-controller;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 16 4>;
|
2016-10-20 08:26:13 +00:00
|
|
|
interrupt-controller;
|
|
|
|
#interrupt-cells = <2>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff0a0000 0x0 0x1000>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_GPIO>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
i2c0: i2c@ff020000 {
|
2016-12-22 17:36:11 +00:00
|
|
|
compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 17 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff020000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_I2C_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
i2c1: i2c@ff030000 {
|
2016-12-22 17:36:11 +00:00
|
|
|
compatible = "cdns,i2c-r1p14", "cdns,i2c-r1p10";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 18 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff030000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_I2C_1>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2016-05-18 06:53:13 +00:00
|
|
|
ocm: memory-controller@ff960000 {
|
|
|
|
compatible = "xlnx,zynqmp-ocmc-1.0";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff960000 0x0 0x1000>;
|
2016-05-18 06:53:13 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 10 4>;
|
|
|
|
};
|
|
|
|
|
2015-10-30 14:39:18 +00:00
|
|
|
pcie: pcie@fd0e0000 {
|
|
|
|
compatible = "xlnx,nwl-pcie-2.11";
|
|
|
|
status = "disabled";
|
|
|
|
#address-cells = <3>;
|
|
|
|
#size-cells = <2>;
|
|
|
|
#interrupt-cells = <1>;
|
2016-07-19 15:19:29 +00:00
|
|
|
msi-controller;
|
2015-10-30 14:39:18 +00:00
|
|
|
device_type = "pci";
|
|
|
|
interrupt-parent = <&gic>;
|
2016-01-20 11:59:23 +00:00
|
|
|
interrupts = <0 118 4>,
|
2016-07-19 15:19:29 +00:00
|
|
|
<0 117 4>,
|
2016-01-20 11:59:23 +00:00
|
|
|
<0 116 4>,
|
|
|
|
<0 115 4>, /* MSI_1 [63...32] */
|
|
|
|
<0 114 4>; /* MSI_0 [31...0] */
|
2018-01-17 15:32:33 +00:00
|
|
|
interrupt-names = "misc", "dummy", "intx",
|
|
|
|
"msi1", "msi0";
|
2016-07-19 15:19:29 +00:00
|
|
|
msi-parent = <&pcie>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd0e0000 0x0 0x1000>,
|
|
|
|
<0x0 0xfd480000 0x0 0x1000>,
|
2016-08-02 15:04:13 +00:00
|
|
|
<0x80 0x00000000 0x0 0x1000000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
reg-names = "breg", "pcireg", "cfg";
|
2016-08-02 15:04:13 +00:00
|
|
|
ranges = <0x02000000 0x00000000 0xe0000000 0x00000000 0xe0000000 0x00000000 0x10000000 /* non-prefetchable memory */
|
|
|
|
0x43000000 0x00000006 0x00000000 0x00000006 0x00000000 0x00000002 0x00000000>;/* prefetchable memory */
|
2017-03-22 02:03:13 +00:00
|
|
|
bus-range = <0x00 0xff>;
|
2016-02-15 15:48:58 +00:00
|
|
|
interrupt-map-mask = <0x0 0x0 0x0 0x7>;
|
|
|
|
interrupt-map = <0x0 0x0 0x0 0x1 &pcie_intc 0x1>,
|
|
|
|
<0x0 0x0 0x0 0x2 &pcie_intc 0x2>,
|
|
|
|
<0x0 0x0 0x0 0x3 &pcie_intc 0x3>,
|
|
|
|
<0x0 0x0 0x0 0x4 &pcie_intc 0x4>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_PCIE>;
|
2016-02-15 15:48:58 +00:00
|
|
|
pcie_intc: legacy-interrupt-controller {
|
|
|
|
interrupt-controller;
|
|
|
|
#address-cells = <0>;
|
|
|
|
#interrupt-cells = <1>;
|
|
|
|
};
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
qspi: spi@ff0f0000 {
|
2017-01-16 11:07:33 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "xlnx,zynqmp-qspi-1.0";
|
|
|
|
status = "disabled";
|
|
|
|
clock-names = "ref_clk", "pclk";
|
|
|
|
interrupts = <0 15 4>;
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
num-cs = <1>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff0f0000 0x0 0x1000>,
|
|
|
|
<0x0 0xc0000000 0x0 0x8000000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x873>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_QSPI>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
rtc: rtc@ffa60000 {
|
|
|
|
compatible = "xlnx,zynqmp-rtc";
|
|
|
|
status = "disabled";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xffa60000 0x0 0x100>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 26 4>, <0 27 4>;
|
|
|
|
interrupt-names = "alarm", "sec";
|
2017-01-27 12:50:14 +00:00
|
|
|
calibration = <0x8000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2016-05-17 11:19:01 +00:00
|
|
|
serdes: zynqmp_phy@fd400000 {
|
|
|
|
compatible = "xlnx,zynqmp-psgtr";
|
|
|
|
status = "disabled";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd400000 0x0 0x40000>,
|
|
|
|
<0x0 0xfd3d0000 0x0 0x1000>,
|
|
|
|
<0x0 0xff5e0000 0x0 0x1000>;
|
2017-02-08 11:39:10 +00:00
|
|
|
reg-names = "serdes", "siou", "lpd";
|
2017-01-17 13:36:54 +00:00
|
|
|
nvmem-cells = <&soc_revision>;
|
|
|
|
nvmem-cell-names = "soc_revision";
|
2019-10-14 13:55:53 +00:00
|
|
|
resets = <&zynqmp_reset ZYNQMP_RESET_SATA>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_USB0_CORERESET>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_USB1_CORERESET>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_USB0_HIBERRESET>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_USB1_HIBERRESET>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_USB0_APB>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_USB1_APB>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_DP>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_GEM0>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_GEM1>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_GEM2>,
|
|
|
|
<&zynqmp_reset ZYNQMP_RESET_GEM3>;
|
2017-02-06 16:10:34 +00:00
|
|
|
reset-names = "sata_rst", "usb0_crst", "usb1_crst",
|
|
|
|
"usb0_hibrst", "usb1_hibrst", "usb0_apbrst",
|
|
|
|
"usb1_apbrst", "dp_rst", "gem0_rst",
|
|
|
|
"gem1_rst", "gem2_rst", "gem3_rst";
|
2016-05-17 11:19:01 +00:00
|
|
|
lane0: lane0 {
|
|
|
|
#phy-cells = <4>;
|
|
|
|
};
|
|
|
|
lane1: lane1 {
|
|
|
|
#phy-cells = <4>;
|
|
|
|
};
|
|
|
|
lane2: lane2 {
|
|
|
|
#phy-cells = <4>;
|
|
|
|
};
|
|
|
|
lane3: lane3 {
|
|
|
|
#phy-cells = <4>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-10-30 14:39:18 +00:00
|
|
|
sata: ahci@fd0c0000 {
|
|
|
|
compatible = "ceva,ahci-1v84";
|
|
|
|
status = "disabled";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd0c0000 0x0 0x2000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 133 4>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_SATA>;
|
arm64: zynqmp: Add SMMU support for SATA IP
AXI master interface in CEVA AHCI controller requires two unique
Write/Read ID tags per port. This is because, ahci controller uses
different AXI ID[3:0] bits for identifying non-data transfers(like
reading descriptors, updating PRD tables, etc) and data transfers
(like sending/receiving FIS).To make SMMU work with SATA we need to
add correct SMMU stream id for SATA. SMMU stream id for SATA is
determined based on the AXI ID[1:0] as shown below
SATA SMMU ID = <TBU number>, 0011, 00, 00, AXI ID[1:0]
Note: SATA in ZynqMp uses TBU1 so TBU number = 0x1, so
SMMU ID = 001, 0011, 00, 00, AXI ID[1:0]
Since we have four different AXI ID[3:0] (2 for port0 & 2 for port1
as said above) we get four different SMMU stream id's combinations
for SATA. These AXI ID can be configured using PAXIC register.
In this patch we assumed the below AXI ID values
Read ID/ Write ID for Non-Data Port0 transfers = 0
Read ID/ Write ID for Data Port0 transfers = 1
Read ID/ Write ID for Non-Data Port1 transfers = 2
Read ID/ Write ID for Data Port1 transfers = 3
Based on the above values,SMMU stream ID's for SATA will be 0x4c0 &
0x4c1 for PORT0, 0x4c2 & 0x4c3 for PORT1. These values needed to be
added to iommus dts property. This patch does the same.
Signed-off-by: Anurag Kumar Vulisha <anuragku@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2017-07-04 14:33:42 +00:00
|
|
|
#stream-id-cells = <4>;
|
|
|
|
iommus = <&smmu 0x4c0>, <&smmu 0x4c1>,
|
|
|
|
<&smmu 0x4c2>, <&smmu 0x4c3>;
|
|
|
|
/* dma-coherent; */
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2019-01-03 10:14:24 +00:00
|
|
|
sdhci0: mmc@ff160000 {
|
2016-02-22 08:57:27 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
2016-08-16 09:11:35 +00:00
|
|
|
compatible = "xlnx,zynqmp-8.9a", "arasan,sdhci-8.9a";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 48 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff160000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "clk_xin", "clk_ahb";
|
2016-08-16 09:11:35 +00:00
|
|
|
xlnx,device_id = <0>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x870>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_SD_0>;
|
2017-07-19 15:46:33 +00:00
|
|
|
nvmem-cells = <&soc_revision>;
|
|
|
|
nvmem-cell-names = "soc_revision";
|
2020-02-18 06:32:57 +00:00
|
|
|
#clock-cells = <1>;
|
|
|
|
clock-output-names = "clk_out_sd0", "clk_in_sd0";
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2019-01-03 10:14:24 +00:00
|
|
|
sdhci1: mmc@ff170000 {
|
2016-02-22 08:57:27 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
2016-08-16 09:11:35 +00:00
|
|
|
compatible = "xlnx,zynqmp-8.9a", "arasan,sdhci-8.9a";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 49 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff170000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "clk_xin", "clk_ahb";
|
2016-08-16 09:11:35 +00:00
|
|
|
xlnx,device_id = <1>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x871>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_SD_1>;
|
2017-07-19 15:46:33 +00:00
|
|
|
nvmem-cells = <&soc_revision>;
|
|
|
|
nvmem-cell-names = "soc_revision";
|
2020-02-18 06:32:57 +00:00
|
|
|
#clock-cells = <1>;
|
|
|
|
clock-output-names = "clk_out_sd1", "clk_in_sd1";
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
smmu: smmu@fd800000 {
|
|
|
|
compatible = "arm,mmu-500";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd800000 0x0 0x20000>;
|
2016-04-06 08:43:23 +00:00
|
|
|
#iommu-cells = <1>;
|
2017-03-09 14:30:13 +00:00
|
|
|
status = "disabled";
|
2015-10-30 14:39:18 +00:00
|
|
|
#global-interrupts = <1>;
|
|
|
|
interrupt-parent = <&gic>;
|
2015-11-26 13:12:19 +00:00
|
|
|
interrupts = <0 155 4>,
|
|
|
|
<0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
|
|
|
|
<0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
|
|
|
|
<0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>,
|
|
|
|
<0 155 4>, <0 155 4>, <0 155 4>, <0 155 4>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
spi0: spi@ff040000 {
|
|
|
|
compatible = "cdns,spi-r1p6";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 19 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff040000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "ref_clk", "pclk";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_SPI_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
spi1: spi@ff050000 {
|
|
|
|
compatible = "cdns,spi-r1p6";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 20 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff050000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "ref_clk", "pclk";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_SPI_1>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ttc0: timer@ff110000 {
|
|
|
|
compatible = "cdns,ttc";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 36 4>, <0 37 4>, <0 38 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff110000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
timer-width = <32>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_TTC_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ttc1: timer@ff120000 {
|
|
|
|
compatible = "cdns,ttc";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 39 4>, <0 40 4>, <0 41 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff120000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
timer-width = <32>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_TTC_1>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ttc2: timer@ff130000 {
|
|
|
|
compatible = "cdns,ttc";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 42 4>, <0 43 4>, <0 44 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff130000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
timer-width = <32>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_TTC_2>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ttc3: timer@ff140000 {
|
|
|
|
compatible = "cdns,ttc";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 45 4>, <0 46 4>, <0 47 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff140000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
timer-width = <32>;
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_TTC_3>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uart0: serial@ff000000 {
|
2016-02-22 08:57:27 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
2015-11-27 12:22:58 +00:00
|
|
|
compatible = "cdns,uart-r1p12", "xlnx,xuartps";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 21 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff000000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "uart_clk", "pclk";
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_UART_0>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uart1: serial@ff010000 {
|
2016-02-22 08:57:27 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
2015-11-27 12:22:58 +00:00
|
|
|
compatible = "cdns,uart-r1p12", "xlnx,xuartps";
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 22 4>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xff010000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
clock-names = "uart_clk", "pclk";
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_UART_1>;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2017-03-27 12:17:00 +00:00
|
|
|
usb0: usb0@ff9d0000 {
|
2016-04-07 13:06:07 +00:00
|
|
|
#address-cells = <2>;
|
2016-02-11 06:19:06 +00:00
|
|
|
#size-cells = <2>;
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
2016-04-07 13:06:07 +00:00
|
|
|
compatible = "xlnx,zynqmp-dwc3";
|
2017-03-27 12:17:00 +00:00
|
|
|
reg = <0x0 0xff9d0000 0x0 0x100>;
|
2016-04-07 13:06:07 +00:00
|
|
|
clock-names = "bus_clk", "ref_clk";
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_USB_0>;
|
2016-04-07 13:06:07 +00:00
|
|
|
ranges;
|
2017-03-02 09:10:51 +00:00
|
|
|
nvmem-cells = <&soc_revision>;
|
|
|
|
nvmem-cell-names = "soc_revision";
|
2016-04-07 13:06:07 +00:00
|
|
|
|
|
|
|
dwc3_0: dwc3@fe200000 {
|
|
|
|
compatible = "snps,dwc3";
|
|
|
|
status = "disabled";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfe200000 0x0 0x40000>;
|
2016-04-07 13:06:07 +00:00
|
|
|
interrupt-parent = <&gic>;
|
2017-01-18 12:04:48 +00:00
|
|
|
interrupts = <0 65 4>, <0 69 4>;
|
2017-06-20 10:55:16 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x860>;
|
2017-03-10 13:48:17 +00:00
|
|
|
snps,quirk-frame-length-adjustment = <0x20>;
|
2016-04-07 13:06:07 +00:00
|
|
|
snps,refclk_fladj;
|
2017-03-27 12:17:00 +00:00
|
|
|
/* dma-coherent; */
|
2016-04-07 13:06:07 +00:00
|
|
|
};
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2017-03-27 12:17:00 +00:00
|
|
|
usb1: usb1@ff9e0000 {
|
2016-04-07 13:06:07 +00:00
|
|
|
#address-cells = <2>;
|
2016-02-11 06:19:06 +00:00
|
|
|
#size-cells = <2>;
|
2015-10-30 14:39:18 +00:00
|
|
|
status = "disabled";
|
2016-04-07 13:06:07 +00:00
|
|
|
compatible = "xlnx,zynqmp-dwc3";
|
2017-03-27 12:17:00 +00:00
|
|
|
reg = <0x0 0xff9e0000 0x0 0x100>;
|
2016-04-07 13:06:07 +00:00
|
|
|
clock-names = "bus_clk", "ref_clk";
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_USB_1>;
|
2016-04-07 13:06:07 +00:00
|
|
|
ranges;
|
2017-03-02 09:10:51 +00:00
|
|
|
nvmem-cells = <&soc_revision>;
|
|
|
|
nvmem-cell-names = "soc_revision";
|
2016-04-07 13:06:07 +00:00
|
|
|
|
|
|
|
dwc3_1: dwc3@fe300000 {
|
|
|
|
compatible = "snps,dwc3";
|
|
|
|
status = "disabled";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfe300000 0x0 0x40000>;
|
2016-04-07 13:06:07 +00:00
|
|
|
interrupt-parent = <&gic>;
|
2017-01-18 12:04:48 +00:00
|
|
|
interrupts = <0 70 4>, <0 74 4>;
|
2017-06-20 10:55:16 +00:00
|
|
|
#stream-id-cells = <1>;
|
|
|
|
iommus = <&smmu 0x861>;
|
2017-03-10 13:48:17 +00:00
|
|
|
snps,quirk-frame-length-adjustment = <0x20>;
|
2016-04-07 13:06:07 +00:00
|
|
|
snps,refclk_fladj;
|
2017-03-27 12:17:00 +00:00
|
|
|
/* dma-coherent; */
|
2016-04-07 13:06:07 +00:00
|
|
|
};
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
watchdog0: watchdog@fd4d0000 {
|
|
|
|
compatible = "cdns,wdt-r1p2";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
2015-11-04 07:04:17 +00:00
|
|
|
interrupts = <0 113 1>;
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd4d0000 0x0 0x1000>;
|
2018-10-09 15:22:50 +00:00
|
|
|
timeout-sec = <60>;
|
|
|
|
reset-on-timeout;
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
|
2018-07-18 07:25:43 +00:00
|
|
|
lpd_watchdog: watchdog@ff150000 {
|
|
|
|
compatible = "cdns,wdt-r1p2";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 52 1>;
|
|
|
|
reg = <0x0 0xff150000 0x0 0x1000>;
|
|
|
|
timeout-sec = <10>;
|
|
|
|
};
|
|
|
|
|
2017-11-02 11:04:43 +00:00
|
|
|
xilinx_ams: ams@ffa50000 {
|
|
|
|
compatible = "xlnx,zynqmp-ams";
|
|
|
|
status = "disabled";
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 56 4>;
|
|
|
|
interrupt-names = "ams-irq";
|
|
|
|
reg = <0x0 0xffa50000 0x0 0x800>;
|
|
|
|
reg-names = "ams-base";
|
|
|
|
#address-cells = <2>;
|
|
|
|
#size-cells = <2>;
|
|
|
|
#io-channel-cells = <1>;
|
|
|
|
ranges;
|
|
|
|
|
|
|
|
ams_ps: ams_ps@ffa50800 {
|
|
|
|
compatible = "xlnx,zynqmp-ams-ps";
|
|
|
|
status = "disabled";
|
|
|
|
reg = <0x0 0xffa50800 0x0 0x400>;
|
|
|
|
};
|
|
|
|
|
|
|
|
ams_pl: ams_pl@ffa50c00 {
|
|
|
|
compatible = "xlnx,zynqmp-ams-pl";
|
|
|
|
status = "disabled";
|
|
|
|
reg = <0x0 0xffa50c00 0x0 0x400>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-10-30 14:39:18 +00:00
|
|
|
xlnx_dpdma: dma@fd4c0000 {
|
|
|
|
compatible = "xlnx,dpdma";
|
|
|
|
status = "disabled";
|
2016-02-11 06:19:06 +00:00
|
|
|
reg = <0x0 0xfd4c0000 0x0 0x1000>;
|
2015-10-30 14:39:18 +00:00
|
|
|
interrupts = <0 122 4>;
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
clock-names = "axi_clk";
|
2019-10-14 13:56:31 +00:00
|
|
|
power-domains = <&zynqmp_firmware PD_DP>;
|
2015-10-30 14:39:18 +00:00
|
|
|
dma-channels = <6>;
|
|
|
|
#dma-cells = <1>;
|
ARM64: zynqmp: Remove DTC 1.4.2 warnings
DTC 1.4.2 reports these warnings:
Warning (unit_address_vs_reg): Node /amba_apu has a reg or ranges
property, but no unit name
Warning (unit_address_vs_reg): Node /amba has a reg or ranges property,
but no unit name
Warning (unit_address_vs_reg): Node /amba/usb@fe200000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node /amba/usb@fe300000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video2channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-graphicschannel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node /memory has a reg or ranges
property, but no unit name
This patch is fixing them.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2016-11-11 12:21:04 +00:00
|
|
|
dma-video0channel {
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "xlnx,video0";
|
|
|
|
};
|
ARM64: zynqmp: Remove DTC 1.4.2 warnings
DTC 1.4.2 reports these warnings:
Warning (unit_address_vs_reg): Node /amba_apu has a reg or ranges
property, but no unit name
Warning (unit_address_vs_reg): Node /amba has a reg or ranges property,
but no unit name
Warning (unit_address_vs_reg): Node /amba/usb@fe200000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node /amba/usb@fe300000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video2channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-graphicschannel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node /memory has a reg or ranges
property, but no unit name
This patch is fixing them.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2016-11-11 12:21:04 +00:00
|
|
|
dma-video1channel {
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "xlnx,video1";
|
|
|
|
};
|
ARM64: zynqmp: Remove DTC 1.4.2 warnings
DTC 1.4.2 reports these warnings:
Warning (unit_address_vs_reg): Node /amba_apu has a reg or ranges
property, but no unit name
Warning (unit_address_vs_reg): Node /amba has a reg or ranges property,
but no unit name
Warning (unit_address_vs_reg): Node /amba/usb@fe200000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node /amba/usb@fe300000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video2channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-graphicschannel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node /memory has a reg or ranges
property, but no unit name
This patch is fixing them.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2016-11-11 12:21:04 +00:00
|
|
|
dma-video2channel {
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "xlnx,video2";
|
|
|
|
};
|
ARM64: zynqmp: Remove DTC 1.4.2 warnings
DTC 1.4.2 reports these warnings:
Warning (unit_address_vs_reg): Node /amba_apu has a reg or ranges
property, but no unit name
Warning (unit_address_vs_reg): Node /amba has a reg or ranges property,
but no unit name
Warning (unit_address_vs_reg): Node /amba/usb@fe200000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node /amba/usb@fe300000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video2channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-graphicschannel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node /memory has a reg or ranges
property, but no unit name
This patch is fixing them.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2016-11-11 12:21:04 +00:00
|
|
|
dma-graphicschannel {
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "xlnx,graphics";
|
|
|
|
};
|
ARM64: zynqmp: Remove DTC 1.4.2 warnings
DTC 1.4.2 reports these warnings:
Warning (unit_address_vs_reg): Node /amba_apu has a reg or ranges
property, but no unit name
Warning (unit_address_vs_reg): Node /amba has a reg or ranges property,
but no unit name
Warning (unit_address_vs_reg): Node /amba/usb@fe200000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node /amba/usb@fe300000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video2channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-graphicschannel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node /memory has a reg or ranges
property, but no unit name
This patch is fixing them.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2016-11-11 12:21:04 +00:00
|
|
|
dma-audio0channel {
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "xlnx,audio0";
|
|
|
|
};
|
ARM64: zynqmp: Remove DTC 1.4.2 warnings
DTC 1.4.2 reports these warnings:
Warning (unit_address_vs_reg): Node /amba_apu has a reg or ranges
property, but no unit name
Warning (unit_address_vs_reg): Node /amba has a reg or ranges property,
but no unit name
Warning (unit_address_vs_reg): Node /amba/usb@fe200000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node /amba/usb@fe300000 has a unit name,
but no reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-video2channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-graphicschannel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio0channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node
/amba/dma@fd4c0000/dma-audio1channel@fd4c0000 has a unit name, but no
reg property
Warning (unit_address_vs_reg): Node /memory has a reg or ranges
property, but no unit name
This patch is fixing them.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
2016-11-11 12:21:04 +00:00
|
|
|
dma-audio1channel {
|
2015-10-30 14:39:18 +00:00
|
|
|
compatible = "xlnx,audio1";
|
|
|
|
};
|
|
|
|
};
|
2020-02-18 08:24:08 +00:00
|
|
|
|
|
|
|
zynqmp_dpsub: zynqmp-display@fd4a0000 {
|
|
|
|
compatible = "xlnx,zynqmp-dpsub-1.7";
|
|
|
|
status = "disabled";
|
|
|
|
reg = <0x0 0xfd4a0000 0x0 0x1000>,
|
|
|
|
<0x0 0xfd4aa000 0x0 0x1000>,
|
|
|
|
<0x0 0xfd4ab000 0x0 0x1000>,
|
|
|
|
<0x0 0xfd4ac000 0x0 0x1000>;
|
|
|
|
reg-names = "dp", "blend", "av_buf", "aud";
|
|
|
|
interrupts = <0 119 4>;
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
|
|
|
|
clock-names = "dp_apb_clk", "dp_aud_clk",
|
|
|
|
"dp_vtc_pixel_clk_in";
|
|
|
|
|
|
|
|
power-domains = <&zynqmp_firmware PD_DP>;
|
|
|
|
|
|
|
|
vid-layer {
|
|
|
|
dma-names = "vid0", "vid1", "vid2";
|
|
|
|
dmas = <&xlnx_dpdma 0>,
|
|
|
|
<&xlnx_dpdma 1>,
|
|
|
|
<&xlnx_dpdma 2>;
|
|
|
|
};
|
|
|
|
|
|
|
|
gfx-layer {
|
|
|
|
dma-names = "gfx0";
|
|
|
|
dmas = <&xlnx_dpdma 3>;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* dummy node to indicate there's no child i2c device */
|
|
|
|
i2c-bus {
|
|
|
|
};
|
|
|
|
|
|
|
|
zynqmp_dp_snd_codec0: zynqmp_dp_snd_codec0 {
|
|
|
|
compatible = "xlnx,dp-snd-codec";
|
|
|
|
clock-names = "aud_clk";
|
|
|
|
};
|
|
|
|
|
|
|
|
zynqmp_dp_snd_pcm0: zynqmp_dp_snd_pcm0 {
|
|
|
|
compatible = "xlnx,dp-snd-pcm";
|
|
|
|
dmas = <&xlnx_dpdma 4>;
|
|
|
|
dma-names = "tx";
|
|
|
|
};
|
|
|
|
|
|
|
|
zynqmp_dp_snd_pcm1: zynqmp_dp_snd_pcm1 {
|
|
|
|
compatible = "xlnx,dp-snd-pcm";
|
|
|
|
dmas = <&xlnx_dpdma 5>;
|
|
|
|
dma-names = "tx";
|
|
|
|
};
|
|
|
|
|
|
|
|
zynqmp_dp_snd_card0: zynqmp_dp_snd_card {
|
|
|
|
compatible = "xlnx,dp-snd-card";
|
|
|
|
xlnx,dp-snd-pcm = <&zynqmp_dp_snd_pcm0>,
|
|
|
|
<&zynqmp_dp_snd_pcm1>;
|
|
|
|
xlnx,dp-snd-codec = <&zynqmp_dp_snd_codec0>;
|
|
|
|
};
|
|
|
|
};
|
2015-10-30 14:39:18 +00:00
|
|
|
};
|
|
|
|
};
|