Add device tree for T2080QDS board and enable CONFIG_OF_CONTROL so that device tree can be compiled. Update board README for device tree usage. Signed-off-by: Jagdish Gediya <jagdish.gediya@nxp.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: York Sun <york.sun@nxp.com>lime2-spi
parent
3a2f59e244
commit
432054b947
@ -0,0 +1,39 @@ |
|||||||
|
// SPDX-License-Identifier: GPL-2.0+ OR X11 |
||||||
|
/* |
||||||
|
* e6500 Power ISA Device Tree Source (include) |
||||||
|
* |
||||||
|
* Copyright 2013 Freescale Semiconductor Inc. |
||||||
|
* Copyright 2018 NXP |
||||||
|
*/ |
||||||
|
|
||||||
|
/ { |
||||||
|
cpus { |
||||||
|
power-isa-version = "2.06"; |
||||||
|
power-isa-b; // Base |
||||||
|
power-isa-e; // Embedded |
||||||
|
power-isa-atb; // Alternate Time Base |
||||||
|
power-isa-cs; // Cache Specification |
||||||
|
power-isa-ds; // Decorated Storage |
||||||
|
power-isa-e.ed; // Embedded.Enhanced Debug |
||||||
|
power-isa-e.pd; // Embedded.External PID |
||||||
|
power-isa-e.hv; // Embedded.Hypervisor |
||||||
|
power-isa-e.le; // Embedded.Little-Endian |
||||||
|
power-isa-e.pm; // Embedded.Performance Monitor |
||||||
|
power-isa-e.pc; // Embedded.Processor Control |
||||||
|
power-isa-ecl; // Embedded Cache Locking |
||||||
|
power-isa-exp; // External Proxy |
||||||
|
power-isa-fp; // Floating Point |
||||||
|
power-isa-fp.r; // Floating Point.Record |
||||||
|
power-isa-mmc; // Memory Coherence |
||||||
|
power-isa-scpm; // Store Conditional Page Mobility |
||||||
|
power-isa-wt; // Wait |
||||||
|
power-isa-64; // 64-bit |
||||||
|
power-isa-e.pt; // Embedded.Page Table |
||||||
|
power-isa-e.hv.lrat; // Embedded.Hypervisor.LRAT |
||||||
|
power-isa-e.em; // Embedded Multi-Threading |
||||||
|
power-isa-v; // Vector (AltiVec) |
||||||
|
fsl,eref-er; // Enhanced Reservations |
||||||
|
fsl,eref-deo; // Data Cache Extended Operations |
||||||
|
mmu-type = "power-embedded"; |
||||||
|
}; |
||||||
|
}; |
@ -0,0 +1,62 @@ |
|||||||
|
// SPDX-License-Identifier: GPL-2.0+ OR X11 |
||||||
|
/* |
||||||
|
* T2080/T2081 Silicon/SoC Device Tree Source (pre include) |
||||||
|
* |
||||||
|
* Copyright 2013 Freescale Semiconductor Inc. |
||||||
|
* Copyright 2018 NXP |
||||||
|
*/ |
||||||
|
|
||||||
|
/dts-v1/; |
||||||
|
|
||||||
|
/include/ "e6500_power_isa.dtsi" |
||||||
|
|
||||||
|
/ { |
||||||
|
#address-cells = <2>; |
||||||
|
#size-cells = <2>; |
||||||
|
interrupt-parent = <&mpic>; |
||||||
|
|
||||||
|
cpus { |
||||||
|
#address-cells = <1>; |
||||||
|
#size-cells = <0>; |
||||||
|
|
||||||
|
cpu0: PowerPC,e6500@0 { |
||||||
|
device_type = "cpu"; |
||||||
|
reg = <0 1>; |
||||||
|
fsl,portid-mapping = <0x80000000>; |
||||||
|
}; |
||||||
|
cpu1: PowerPC,e6500@2 { |
||||||
|
device_type = "cpu"; |
||||||
|
reg = <2 3>; |
||||||
|
fsl,portid-mapping = <0x80000000>; |
||||||
|
}; |
||||||
|
cpu2: PowerPC,e6500@4 { |
||||||
|
device_type = "cpu"; |
||||||
|
reg = <4 5>; |
||||||
|
fsl,portid-mapping = <0x80000000>; |
||||||
|
}; |
||||||
|
cpu3: PowerPC,e6500@6 { |
||||||
|
device_type = "cpu"; |
||||||
|
reg = <6 7>; |
||||||
|
fsl,portid-mapping = <0x80000000>; |
||||||
|
}; |
||||||
|
}; |
||||||
|
|
||||||
|
soc: soc@ffe000000 { |
||||||
|
ranges = <0x00000000 0xf 0xfe000000 0x1000000>; |
||||||
|
reg = <0xf 0xfe000000 0 0x00001000>; |
||||||
|
#address-cells = <1>; |
||||||
|
#size-cells = <1>; |
||||||
|
device_type = "soc"; |
||||||
|
compatible = "simple-bus"; |
||||||
|
|
||||||
|
mpic: pic@40000 { |
||||||
|
interrupt-controller; |
||||||
|
#address-cells = <0>; |
||||||
|
#interrupt-cells = <4>; |
||||||
|
reg = <0x40000 0x40000>; |
||||||
|
compatible = "fsl,mpic"; |
||||||
|
device_type = "open-pic"; |
||||||
|
clock-frequency = <0x0>; |
||||||
|
}; |
||||||
|
}; |
||||||
|
}; |
@ -0,0 +1,17 @@ |
|||||||
|
// SPDX-License-Identifier: GPL-2.0+ OR X11 |
||||||
|
/* |
||||||
|
* T2080QDS Device Tree Source |
||||||
|
* |
||||||
|
* Copyright 2013 - 2015 Freescale Semiconductor Inc. |
||||||
|
* Copyright 2018 NXP |
||||||
|
*/ |
||||||
|
|
||||||
|
/include/ "t2080.dtsi" |
||||||
|
|
||||||
|
/ { |
||||||
|
model = "fsl,T2080QDS"; |
||||||
|
compatible = "fsl,T2080QDS"; |
||||||
|
#address-cells = <2>; |
||||||
|
#size-cells = <2>; |
||||||
|
interrupt-parent = <&mpic>; |
||||||
|
}; |
Loading…
Reference in new issue