1// SPDX-License-Identifier: GPL-2.0 OR MIT 2/* 3 * Copyright (c) 2022, Arm Limited. All rights reserved. 4 * Copyright (c) 2022, Linaro Limited. All rights reserved. 5 * 6 */ 7 8/dts-v1/; 9 10#include "corstone1000.dtsi" 11 12/ { 13 model = "ARM Corstone1000 FPGA MPS3 board"; 14 compatible = "arm,corstone1000-mps3"; 15 16 cpus: cpus { 17 #address-cells = <2>; 18 #size-cells = <0>; 19 20 cpu: cpu@0 { 21 device_type = "cpu"; 22 compatible = "arm,cortex-a35"; 23 reg = <0 0>; 24 enable-method = "psci"; 25 next-level-cache = <&L2_0>; 26 }; 27 }; 28 29 smsc: ethernet@4010000 { 30 compatible = "smsc,lan9220", "smsc,lan9115"; 31 reg = <0x40100000 0x10000>; 32 phy-mode = "mii"; 33 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>; 34 reg-io-width = <2>; 35 smsc,irq-push-pull; 36 }; 37 38 usb_host: usb@40200000 { 39 compatible = "nxp,usb-isp1763"; 40 reg = <0x40200000 0x100000>; 41 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>; 42 bus-width = <16>; 43 dr_mode = "host"; 44 }; 45}; 46