1// SPDX-License-Identifier: ISC 2/* 3 * Device Tree file for Intel XScale Network Processors 4 * in the IXP 42x series. This series has 32 interrupts. 5 */ 6#include "intel-ixp4xx.dtsi" 7 8/ { 9 soc { 10 interrupt-controller@c8003000 { 11 compatible = "intel,ixp42x-interrupt"; 12 }; 13 14 /* 15 * This is the USB Device Mode (UDC) controller, which is used 16 * to present the IXP4xx as a device on a USB bus. 17 */ 18 usb@c800b000 { 19 compatible = "intel,ixp4xx-udc"; 20 reg = <0xc800b000 0x1000>; 21 interrupts = <12 IRQ_TYPE_LEVEL_HIGH>; 22 status = "disabled"; 23 }; 24 }; 25}; 26