blob: 54c112881913d85f7b731eeb3915f8d5b53d10c9 [file] [log] [blame]
Andrew Davis856ec342023-04-11 13:25:02 -05001// SPDX-License-Identifier: GPL-2.0
Lokesh Vutla8c54a152015-09-19 15:00:21 +05302/*
3 * Device Tree Source for Keystone 2 Lamarr Netcp driver
4 *
Andrew Davis856ec342023-04-11 13:25:02 -05005 * Copyright (C) 2015-2017 Texas Instruments Incorporated - http://www.ti.com/
Lokesh Vutla8c54a152015-09-19 15:00:21 +05306 */
7
8qmss: qmss@2a40000 {
9 compatible = "ti,keystone-navigator-qmss";
10 dma-coherent;
11 #address-cells = <1>;
12 #size-cells = <1>;
13 clocks = <&chipclk13>;
14 ranges;
Andrew Davis33e399a2023-04-11 13:25:09 -050015 queue-range = <0 0x2000>;
16 linkram0 = <0x100000 0x4000>;
17 linkram1 = <0x70000000 0x10000>; /* 1MB OSR mem */
Lokesh Vutla8c54a152015-09-19 15:00:21 +053018
19 qmgrs {
20 #address-cells = <1>;
21 #size-cells = <1>;
22 ranges;
23 qmgr0 {
24 managed-queues = <0 0x2000>;
25 reg = <0x2a40000 0x20000>,
26 <0x2a06000 0x400>,
27 <0x2a02000 0x1000>,
28 <0x2a03000 0x1000>,
29 <0x23a80000 0x20000>,
30 <0x2a80000 0x20000>;
31 reg-names = "peek", "status", "config",
32 "region", "push", "pop";
33 };
34 };
35 queue-pools {
36 qpend {
37 qpend-0 {
38 qrange = <658 8>;
39 interrupts =<0 40 0xf04 0 41 0xf04 0 42 0xf04
40 0 43 0xf04 0 44 0xf04 0 45 0xf04
41 0 46 0xf04 0 47 0xf04>;
42 };
43 qpend-1 {
44 qrange = <528 16>;
45 interrupts = <0 48 0xf04 0 49 0xf04 0 50 0xf04
46 0 51 0xf04 0 52 0xf04 0 53 0xf04
47 0 54 0xf04 0 55 0xf04 0 56 0xf04
48 0 57 0xf04 0 58 0xf04 0 59 0xf04
49 0 60 0xf04 0 61 0xf04 0 62 0xf04
50 0 63 0xf04>;
51 qalloc-by-id;
52 };
53 qpend-2 {
54 qrange = <544 16>;
55 interrupts = <0 64 0xf04 0 65 0xf04 0 66 0xf04
56 0 59 0xf04 0 68 0xf04 0 69 0xf04
57 0 70 0xf04 0 71 0xf04 0 72 0xf04
58 0 73 0xf04 0 74 0xf04 0 75 0xf04
59 0 76 0xf04 0 77 0xf04 0 78 0xf04
60 0 79 0xf04>;
61 };
62 };
63 general-purpose {
64 gp-0 {
65 qrange = <4000 64>;
66 };
67 netcp-tx {
68 qrange = <896 128>;
69 qalloc-by-id;
70 };
71 };
72 };
Andrew Davis33e399a2023-04-11 13:25:09 -050073
Lokesh Vutla8c54a152015-09-19 15:00:21 +053074 descriptor-regions {
75 #address-cells = <1>;
76 #size-cells = <1>;
77 ranges;
78 region-12 {
79 id = <12>;
80 region-spec = <8192 128>; /* num_desc desc_size */
81 link-index = <0x4000>;
82 };
83 };
84}; /* qmss */
85
86knav_dmas: knav_dmas@0 {
87 compatible = "ti,keystone-navigator-dma";
88 clocks = <&papllclk>;
89 #address-cells = <1>;
90 #size-cells = <1>;
91 ranges;
92 ti,navigator-cloud-address = <0x23a80000 0x23a90000>;
93
94 dma_gbe: dma_gbe@0 {
95 reg = <0x26186000 0x100>,
96 <0x26187000 0x2a0>,
97 <0x26188000 0xb60>,
98 <0x26186100 0x80>,
99 <0x26189000 0x1000>;
100 reg-names = "global", "txchan", "rxchan",
101 "txsched", "rxflow";
102 };
103};
104
105netcp: netcp@26000000 {
106 reg = <0x2620110 0x8>;
107 reg-names = "efuse";
108 compatible = "ti,netcp-1.0";
109 #address-cells = <1>;
110 #size-cells = <1>;
111
112 /* NetCP address range */
113 ranges = <0 0x26000000 0x1000000>;
114
115 clocks = <&papllclk>, <&clkcpgmac>, <&chipclk12>;
116 dma-coherent;
117
118 ti,navigator-dmas = <&dma_gbe 0>,
119 <&dma_gbe 8>,
120 <&dma_gbe 0>;
121 ti,navigator-dma-names = "netrx0", "netrx1", "nettx";
122
123 netcp-devices {
124 #address-cells = <1>;
125 #size-cells = <1>;
126 ranges;
127 gbe@200000 { /* ETHSS */
128 label = "netcp-gbe";
129 compatible = "ti,netcp-gbe-5";
130 reg = <0x200000 0x900>, <0x220000 0x20000>;
131 /* enable-ale; */
132 tx-queue = <896>;
133 tx-channel = "nettx";
134
135 interfaces {
136 gbe0: interface-0 {
137 slave-port = <0>;
Andrew Davis33e399a2023-04-11 13:25:09 -0500138 link-interface = <1>;
139 phy-handle = <&ethphy0>;
Lokesh Vutla8c54a152015-09-19 15:00:21 +0530140 };
141 gbe1: interface-1 {
142 slave-port = <1>;
Andrew Davis33e399a2023-04-11 13:25:09 -0500143 link-interface = <1>;
144 phy-handle = <&ethphy1>;
Lokesh Vutla8c54a152015-09-19 15:00:21 +0530145 };
146 };
147
148 secondary-slave-ports {
149 port-2 {
150 slave-port = <2>;
Andrew Davis33e399a2023-04-11 13:25:09 -0500151 link-interface = <2>;
Lokesh Vutla8c54a152015-09-19 15:00:21 +0530152 };
153 port-3 {
154 slave-port = <3>;
Andrew Davis33e399a2023-04-11 13:25:09 -0500155 link-interface = <2>;
Lokesh Vutla8c54a152015-09-19 15:00:21 +0530156 };
157 };
158 };
159 };
160
161 netcp-interfaces {
162 interface-0 {
163 rx-channel = "netrx0";
164 rx-pool = <1024 12>;
165 tx-pool = <1024 12>;
166 rx-queue-depth = <128 128 0 0>;
167 rx-buffer-size = <1518 4096 0 0>;
168 rx-queue = <528>;
169 tx-completion-queue = <530>;
170 efuse-mac = <1>;
171 netcp-gbe = <&gbe0>;
172
173 };
174 interface-1 {
175 rx-channel = "netrx1";
176 rx-pool = <1024 12>;
177 tx-pool = <1024 12>;
178 rx-queue-depth = <128 128 0 0>;
179 rx-buffer-size = <1518 4096 0 0>;
180 rx-queue = <529>;
181 tx-completion-queue = <531>;
182 efuse-mac = <0>;
183 local-mac-address = [02 18 31 7e 3e 7f];
184 netcp-gbe = <&gbe1>;
185 };
186 };
187};