hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// SPDX-License-Identifier: ISC
/*
 * Device Tree file for Intel XScale Network Processors
 * in the IXP 4xx series.
 */
#include <dt-bindings/interrupt-controller/irq.h>
#include <dt-bindings/gpio/gpio.h>
 
/ {
   soc {
       #address-cells = <1>;
       #size-cells = <1>;
       ranges;
       compatible = "simple-bus";
       interrupt-parent = <&intcon>;
 
       qmgr: queue-manager@60000000 {
           compatible = "intel,ixp4xx-ahb-queue-manager";
           reg = <0x60000000 0x4000>;
           interrupts = <3 IRQ_TYPE_LEVEL_HIGH>, <4 IRQ_TYPE_LEVEL_HIGH>;
       };
 
       uart0: serial@c8000000 {
           compatible = "intel,xscale-uart";
           reg = <0xc8000000 0x1000>;
           /*
            * The reg-offset and reg-shift is a side effect
            * of running the platform in big endian mode.
            */
           reg-offset = <3>;
           reg-shift = <2>;
           interrupts = <15 IRQ_TYPE_LEVEL_HIGH>;
           clock-frequency = <14745600>;
           no-loopback-test;
       };
 
       gpio0: gpio@c8004000 {
           compatible = "intel,ixp4xx-gpio";
           reg = <0xc8004000 0x1000>;
           gpio-controller;
           #gpio-cells = <2>;
           interrupt-controller;
           #interrupt-cells = <2>;
       };
 
       intcon: interrupt-controller@c8003000 {
           /*
            * Note: no compatible string. The subvariant of the
            * chip needs to define what version it is. The
            * location of the interrupt controller is fixed in
            * memory across all variants.
            */
           reg = <0xc8003000 0x100>;
           interrupt-controller;
           #interrupt-cells = <2>;
       };
 
       timer@c8005000 {
           compatible = "intel,ixp4xx-timer";
           reg = <0xc8005000 0x100>;
           interrupts = <5 IRQ_TYPE_LEVEL_HIGH>;
       };
 
       npe@c8006000 {
           compatible = "intel,ixp4xx-network-processing-engine";
           reg = <0xc8006000 0x1000>, <0xc8007000 0x1000>, <0xc8008000 0x1000>;
       };
   };
};