mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
41 lines
602 B
Text
41 lines
602 B
Text
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* dts file for Xilinx ZynqMP Mini Configuration
|
||
|
*
|
||
|
* (C) Copyright 2017, Xilinx, Inc.
|
||
|
*
|
||
|
* Michal Simek <michal.simek@xilinx.com>
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
/ {
|
||
|
model = "ZynqMP MINI";
|
||
|
compatible = "xlnx,zynqmp";
|
||
|
#address-cells = <2>;
|
||
|
#size-cells = <2>;
|
||
|
|
||
|
aliases {
|
||
|
serial0 = &dcc;
|
||
|
};
|
||
|
|
||
|
chosen {
|
||
|
stdout-path = "serial0:115200n8";
|
||
|
};
|
||
|
|
||
|
memory@0 {
|
||
|
device_type = "memory";
|
||
|
reg = <0x0 0xfffc0000 0x0 0x40000>, <0x0 0x0 0x0 0x80000000>;
|
||
|
};
|
||
|
|
||
|
dcc: dcc {
|
||
|
compatible = "arm,dcc";
|
||
|
status = "disabled";
|
||
|
u-boot,dm-pre-reloc;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&dcc {
|
||
|
status = "okay";
|
||
|
};
|