]> git.ipfire.org Git - thirdparty/linux.git/blame - include/soc/mscc/ocelot.h
Merge tag 'io_uring-5.7-2020-05-22' of git://git.kernel.dk/linux-block
[thirdparty/linux.git] / include / soc / mscc / ocelot.h
CommitLineData
5e256365
VO
1/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
2/* Copyright (c) 2017 Microsemi Corporation
3 */
4
5#ifndef _SOC_MSCC_OCELOT_H
6#define _SOC_MSCC_OCELOT_H
7
8#include <linux/ptp_clock_kernel.h>
9#include <linux/net_tstamp.h>
10#include <linux/if_vlan.h>
11#include <linux/regmap.h>
12#include <net/dsa.h>
13
1cf3299b
VO
14/* Port Group IDs (PGID) are masks of destination ports.
15 *
16 * For L2 forwarding, the switch performs 3 lookups in the PGID table for each
17 * frame, and forwards the frame to the ports that are present in the logical
18 * AND of all 3 PGIDs.
19 *
20 * These PGID lookups are:
21 * - In one of PGID[0-63]: for the destination masks. There are 2 paths by
22 * which the switch selects a destination PGID:
23 * - The {DMAC, VID} is present in the MAC table. In that case, the
24 * destination PGID is given by the DEST_IDX field of the MAC table entry
25 * that matched.
26 * - The {DMAC, VID} is not present in the MAC table (it is unknown). The
27 * frame is disseminated as being either unicast, multicast or broadcast,
28 * and according to that, the destination PGID is chosen as being the
29 * value contained by ANA_FLOODING_FLD_UNICAST,
30 * ANA_FLOODING_FLD_MULTICAST or ANA_FLOODING_FLD_BROADCAST.
31 * The destination PGID can be an unicast set: the first PGIDs, 0 to
32 * ocelot->num_phys_ports - 1, or a multicast set: the PGIDs from
33 * ocelot->num_phys_ports to 63. By convention, a unicast PGID corresponds to
34 * a physical port and has a single bit set in the destination ports mask:
35 * that corresponding to the port number itself. In contrast, a multicast
36 * PGID will have potentially more than one single bit set in the destination
37 * ports mask.
38 * - In one of PGID[64-79]: for the aggregation mask. The switch classifier
39 * dissects each frame and generates a 4-bit Link Aggregation Code which is
40 * used for this second PGID table lookup. The goal of link aggregation is to
41 * hash multiple flows within the same LAG on to different destination ports.
42 * The first lookup will result in a PGID with all the LAG members present in
43 * the destination ports mask, and the second lookup, by Link Aggregation
44 * Code, will ensure that each flow gets forwarded only to a single port out
45 * of that mask (there are no duplicates).
46 * - In one of PGID[80-90]: for the source mask. The third time, the PGID table
47 * is indexed with the ingress port (plus 80). These PGIDs answer the
48 * question "is port i allowed to forward traffic to port j?" If yes, then
49 * BIT(j) of PGID 80+i will be found set. The third PGID lookup can be used
50 * to enforce the L2 forwarding matrix imposed by e.g. a Linux bridge.
51 */
52
53/* Reserve some destination PGIDs at the end of the range:
54 * PGID_CPU: used for whitelisting certain MAC addresses, such as the addresses
55 * of the switch port net devices, towards the CPU port module.
56 * PGID_UC: the flooding destinations for unknown unicast traffic.
57 * PGID_MC: the flooding destinations for broadcast and non-IP multicast
58 * traffic.
59 * PGID_MCIPV4: the flooding destinations for IPv4 multicast traffic.
60 * PGID_MCIPV6: the flooding destinations for IPv6 multicast traffic.
61 */
62#define PGID_CPU 59
63#define PGID_UC 60
64#define PGID_MC 61
65#define PGID_MCIPV4 62
66#define PGID_MCIPV6 63
67
68/* Aggregation PGIDs, one per Link Aggregation Code */
69#define PGID_AGGR 64
70
71/* Source PGIDs, one per physical port */
72#define PGID_SRC 80
73
5e256365
VO
74#define IFH_INJ_BYPASS BIT(31)
75#define IFH_INJ_POP_CNT_DISABLE (3 << 28)
76
77#define IFH_TAG_TYPE_C 0
78#define IFH_TAG_TYPE_S 1
79
80#define IFH_REW_OP_NOOP 0x0
81#define IFH_REW_OP_DSCP 0x1
82#define IFH_REW_OP_ONE_STEP_PTP 0x2
83#define IFH_REW_OP_TWO_STEP_PTP 0x3
84#define IFH_REW_OP_ORIGIN_PTP 0x5
85
86#define OCELOT_TAG_LEN 16
87#define OCELOT_SHORT_PREFIX_LEN 4
88#define OCELOT_LONG_PREFIX_LEN 16
89
90#define OCELOT_SPEED_2500 0
91#define OCELOT_SPEED_1000 1
92#define OCELOT_SPEED_100 2
93#define OCELOT_SPEED_10 3
94
95#define TARGET_OFFSET 24
96#define REG_MASK GENMASK(TARGET_OFFSET - 1, 0)
97#define REG(reg, offset) [reg & REG_MASK] = offset
98
99#define REG_RESERVED_ADDR 0xffffffff
100#define REG_RESERVED(reg) REG(reg, REG_RESERVED_ADDR)
101
102enum ocelot_target {
103 ANA = 1,
104 QS,
105 QSYS,
106 REW,
107 SYS,
108 S2,
109 HSIO,
110 PTP,
111 GCB,
112 TARGET_MAX,
113};
114
115enum ocelot_reg {
116 ANA_ADVLEARN = ANA << TARGET_OFFSET,
117 ANA_VLANMASK,
118 ANA_PORT_B_DOMAIN,
119 ANA_ANAGEFIL,
120 ANA_ANEVENTS,
121 ANA_STORMLIMIT_BURST,
122 ANA_STORMLIMIT_CFG,
123 ANA_ISOLATED_PORTS,
124 ANA_COMMUNITY_PORTS,
125 ANA_AUTOAGE,
126 ANA_MACTOPTIONS,
127 ANA_LEARNDISC,
128 ANA_AGENCTRL,
129 ANA_MIRRORPORTS,
130 ANA_EMIRRORPORTS,
131 ANA_FLOODING,
132 ANA_FLOODING_IPMC,
133 ANA_SFLOW_CFG,
134 ANA_PORT_MODE,
135 ANA_CUT_THRU_CFG,
136 ANA_PGID_PGID,
137 ANA_TABLES_ANMOVED,
138 ANA_TABLES_MACHDATA,
139 ANA_TABLES_MACLDATA,
140 ANA_TABLES_STREAMDATA,
141 ANA_TABLES_MACACCESS,
142 ANA_TABLES_MACTINDX,
143 ANA_TABLES_VLANACCESS,
144 ANA_TABLES_VLANTIDX,
145 ANA_TABLES_ISDXACCESS,
146 ANA_TABLES_ISDXTIDX,
147 ANA_TABLES_ENTRYLIM,
148 ANA_TABLES_PTP_ID_HIGH,
149 ANA_TABLES_PTP_ID_LOW,
150 ANA_TABLES_STREAMACCESS,
151 ANA_TABLES_STREAMTIDX,
152 ANA_TABLES_SEQ_HISTORY,
153 ANA_TABLES_SEQ_MASK,
154 ANA_TABLES_SFID_MASK,
155 ANA_TABLES_SFIDACCESS,
156 ANA_TABLES_SFIDTIDX,
157 ANA_MSTI_STATE,
158 ANA_OAM_UPM_LM_CNT,
159 ANA_SG_ACCESS_CTRL,
160 ANA_SG_CONFIG_REG_1,
161 ANA_SG_CONFIG_REG_2,
162 ANA_SG_CONFIG_REG_3,
163 ANA_SG_CONFIG_REG_4,
164 ANA_SG_CONFIG_REG_5,
165 ANA_SG_GCL_GS_CONFIG,
166 ANA_SG_GCL_TI_CONFIG,
167 ANA_SG_STATUS_REG_1,
168 ANA_SG_STATUS_REG_2,
169 ANA_SG_STATUS_REG_3,
170 ANA_PORT_VLAN_CFG,
171 ANA_PORT_DROP_CFG,
172 ANA_PORT_QOS_CFG,
173 ANA_PORT_VCAP_CFG,
174 ANA_PORT_VCAP_S1_KEY_CFG,
175 ANA_PORT_VCAP_S2_CFG,
176 ANA_PORT_PCP_DEI_MAP,
177 ANA_PORT_CPU_FWD_CFG,
178 ANA_PORT_CPU_FWD_BPDU_CFG,
179 ANA_PORT_CPU_FWD_GARP_CFG,
180 ANA_PORT_CPU_FWD_CCM_CFG,
181 ANA_PORT_PORT_CFG,
182 ANA_PORT_POL_CFG,
183 ANA_PORT_PTP_CFG,
184 ANA_PORT_PTP_DLY1_CFG,
185 ANA_PORT_PTP_DLY2_CFG,
186 ANA_PORT_SFID_CFG,
187 ANA_PFC_PFC_CFG,
188 ANA_PFC_PFC_TIMER,
189 ANA_IPT_OAM_MEP_CFG,
190 ANA_IPT_IPT,
191 ANA_PPT_PPT,
192 ANA_FID_MAP_FID_MAP,
193 ANA_AGGR_CFG,
194 ANA_CPUQ_CFG,
195 ANA_CPUQ_CFG2,
196 ANA_CPUQ_8021_CFG,
197 ANA_DSCP_CFG,
198 ANA_DSCP_REWR_CFG,
199 ANA_VCAP_RNG_TYPE_CFG,
200 ANA_VCAP_RNG_VAL_CFG,
201 ANA_VRAP_CFG,
202 ANA_VRAP_HDR_DATA,
203 ANA_VRAP_HDR_MASK,
204 ANA_DISCARD_CFG,
205 ANA_FID_CFG,
206 ANA_POL_PIR_CFG,
207 ANA_POL_CIR_CFG,
208 ANA_POL_MODE_CFG,
209 ANA_POL_PIR_STATE,
210 ANA_POL_CIR_STATE,
211 ANA_POL_STATE,
212 ANA_POL_FLOWC,
213 ANA_POL_HYST,
214 ANA_POL_MISC_CFG,
215 QS_XTR_GRP_CFG = QS << TARGET_OFFSET,
216 QS_XTR_RD,
217 QS_XTR_FRM_PRUNING,
218 QS_XTR_FLUSH,
219 QS_XTR_DATA_PRESENT,
220 QS_XTR_CFG,
221 QS_INJ_GRP_CFG,
222 QS_INJ_WR,
223 QS_INJ_CTRL,
224 QS_INJ_STATUS,
225 QS_INJ_ERR,
226 QS_INH_DBG,
227 QSYS_PORT_MODE = QSYS << TARGET_OFFSET,
228 QSYS_SWITCH_PORT_MODE,
229 QSYS_STAT_CNT_CFG,
230 QSYS_EEE_CFG,
231 QSYS_EEE_THRES,
232 QSYS_IGR_NO_SHARING,
233 QSYS_EGR_NO_SHARING,
234 QSYS_SW_STATUS,
235 QSYS_EXT_CPU_CFG,
236 QSYS_PAD_CFG,
237 QSYS_CPU_GROUP_MAP,
238 QSYS_QMAP,
239 QSYS_ISDX_SGRP,
240 QSYS_TIMED_FRAME_ENTRY,
241 QSYS_TFRM_MISC,
242 QSYS_TFRM_PORT_DLY,
243 QSYS_TFRM_TIMER_CFG_1,
244 QSYS_TFRM_TIMER_CFG_2,
245 QSYS_TFRM_TIMER_CFG_3,
246 QSYS_TFRM_TIMER_CFG_4,
247 QSYS_TFRM_TIMER_CFG_5,
248 QSYS_TFRM_TIMER_CFG_6,
249 QSYS_TFRM_TIMER_CFG_7,
250 QSYS_TFRM_TIMER_CFG_8,
251 QSYS_RED_PROFILE,
252 QSYS_RES_QOS_MODE,
253 QSYS_RES_CFG,
254 QSYS_RES_STAT,
255 QSYS_EGR_DROP_MODE,
256 QSYS_EQ_CTRL,
257 QSYS_EVENTS_CORE,
258 QSYS_QMAXSDU_CFG_0,
259 QSYS_QMAXSDU_CFG_1,
260 QSYS_QMAXSDU_CFG_2,
261 QSYS_QMAXSDU_CFG_3,
262 QSYS_QMAXSDU_CFG_4,
263 QSYS_QMAXSDU_CFG_5,
264 QSYS_QMAXSDU_CFG_6,
265 QSYS_QMAXSDU_CFG_7,
266 QSYS_PREEMPTION_CFG,
267 QSYS_CIR_CFG,
268 QSYS_EIR_CFG,
269 QSYS_SE_CFG,
270 QSYS_SE_DWRR_CFG,
271 QSYS_SE_CONNECT,
272 QSYS_SE_DLB_SENSE,
273 QSYS_CIR_STATE,
274 QSYS_EIR_STATE,
275 QSYS_SE_STATE,
276 QSYS_HSCH_MISC_CFG,
277 QSYS_TAG_CONFIG,
278 QSYS_TAS_PARAM_CFG_CTRL,
279 QSYS_PORT_MAX_SDU,
280 QSYS_PARAM_CFG_REG_1,
281 QSYS_PARAM_CFG_REG_2,
282 QSYS_PARAM_CFG_REG_3,
283 QSYS_PARAM_CFG_REG_4,
284 QSYS_PARAM_CFG_REG_5,
285 QSYS_GCL_CFG_REG_1,
286 QSYS_GCL_CFG_REG_2,
287 QSYS_PARAM_STATUS_REG_1,
288 QSYS_PARAM_STATUS_REG_2,
289 QSYS_PARAM_STATUS_REG_3,
290 QSYS_PARAM_STATUS_REG_4,
291 QSYS_PARAM_STATUS_REG_5,
292 QSYS_PARAM_STATUS_REG_6,
293 QSYS_PARAM_STATUS_REG_7,
294 QSYS_PARAM_STATUS_REG_8,
295 QSYS_PARAM_STATUS_REG_9,
296 QSYS_GCL_STATUS_REG_1,
297 QSYS_GCL_STATUS_REG_2,
298 REW_PORT_VLAN_CFG = REW << TARGET_OFFSET,
299 REW_TAG_CFG,
300 REW_PORT_CFG,
301 REW_DSCP_CFG,
302 REW_PCP_DEI_QOS_MAP_CFG,
303 REW_PTP_CFG,
304 REW_PTP_DLY1_CFG,
305 REW_RED_TAG_CFG,
306 REW_DSCP_REMAP_DP1_CFG,
307 REW_DSCP_REMAP_CFG,
308 REW_STAT_CFG,
309 REW_REW_STICKY,
310 REW_PPT,
311 SYS_COUNT_RX_OCTETS = SYS << TARGET_OFFSET,
312 SYS_COUNT_RX_UNICAST,
313 SYS_COUNT_RX_MULTICAST,
314 SYS_COUNT_RX_BROADCAST,
315 SYS_COUNT_RX_SHORTS,
316 SYS_COUNT_RX_FRAGMENTS,
317 SYS_COUNT_RX_JABBERS,
318 SYS_COUNT_RX_CRC_ALIGN_ERRS,
319 SYS_COUNT_RX_SYM_ERRS,
320 SYS_COUNT_RX_64,
321 SYS_COUNT_RX_65_127,
322 SYS_COUNT_RX_128_255,
323 SYS_COUNT_RX_256_1023,
324 SYS_COUNT_RX_1024_1526,
325 SYS_COUNT_RX_1527_MAX,
326 SYS_COUNT_RX_PAUSE,
327 SYS_COUNT_RX_CONTROL,
328 SYS_COUNT_RX_LONGS,
329 SYS_COUNT_RX_CLASSIFIED_DROPS,
330 SYS_COUNT_TX_OCTETS,
331 SYS_COUNT_TX_UNICAST,
332 SYS_COUNT_TX_MULTICAST,
333 SYS_COUNT_TX_BROADCAST,
334 SYS_COUNT_TX_COLLISION,
335 SYS_COUNT_TX_DROPS,
336 SYS_COUNT_TX_PAUSE,
337 SYS_COUNT_TX_64,
338 SYS_COUNT_TX_65_127,
339 SYS_COUNT_TX_128_511,
340 SYS_COUNT_TX_512_1023,
341 SYS_COUNT_TX_1024_1526,
342 SYS_COUNT_TX_1527_MAX,
343 SYS_COUNT_TX_AGING,
344 SYS_RESET_CFG,
345 SYS_SR_ETYPE_CFG,
346 SYS_VLAN_ETYPE_CFG,
347 SYS_PORT_MODE,
348 SYS_FRONT_PORT_MODE,
349 SYS_FRM_AGING,
350 SYS_STAT_CFG,
351 SYS_SW_STATUS,
352 SYS_MISC_CFG,
353 SYS_REW_MAC_HIGH_CFG,
354 SYS_REW_MAC_LOW_CFG,
355 SYS_TIMESTAMP_OFFSET,
356 SYS_CMID,
357 SYS_PAUSE_CFG,
358 SYS_PAUSE_TOT_CFG,
359 SYS_ATOP,
360 SYS_ATOP_TOT_CFG,
361 SYS_MAC_FC_CFG,
362 SYS_MMGT,
363 SYS_MMGT_FAST,
364 SYS_EVENTS_DIF,
365 SYS_EVENTS_CORE,
366 SYS_CNT,
367 SYS_PTP_STATUS,
368 SYS_PTP_TXSTAMP,
369 SYS_PTP_NXT,
370 SYS_PTP_CFG,
371 SYS_RAM_INIT,
372 SYS_CM_ADDR,
373 SYS_CM_DATA_WR,
374 SYS_CM_DATA_RD,
375 SYS_CM_OP,
376 SYS_CM_DATA,
377 S2_CORE_UPDATE_CTRL = S2 << TARGET_OFFSET,
378 S2_CORE_MV_CFG,
379 S2_CACHE_ENTRY_DAT,
380 S2_CACHE_MASK_DAT,
381 S2_CACHE_ACTION_DAT,
382 S2_CACHE_CNT_DAT,
383 S2_CACHE_TG_DAT,
384 PTP_PIN_CFG = PTP << TARGET_OFFSET,
385 PTP_PIN_TOD_SEC_MSB,
386 PTP_PIN_TOD_SEC_LSB,
387 PTP_PIN_TOD_NSEC,
388 PTP_CFG_MISC,
389 PTP_CLK_CFG_ADJ_CFG,
390 PTP_CLK_CFG_ADJ_FREQ,
391 GCB_SOFT_RST = GCB << TARGET_OFFSET,
392};
393
394enum ocelot_regfield {
395 ANA_ADVLEARN_VLAN_CHK,
396 ANA_ADVLEARN_LEARN_MIRROR,
397 ANA_ANEVENTS_FLOOD_DISCARD,
398 ANA_ANEVENTS_MSTI_DROP,
399 ANA_ANEVENTS_ACLKILL,
400 ANA_ANEVENTS_ACLUSED,
401 ANA_ANEVENTS_AUTOAGE,
402 ANA_ANEVENTS_VS2TTL1,
403 ANA_ANEVENTS_STORM_DROP,
404 ANA_ANEVENTS_LEARN_DROP,
405 ANA_ANEVENTS_AGED_ENTRY,
406 ANA_ANEVENTS_CPU_LEARN_FAILED,
407 ANA_ANEVENTS_AUTO_LEARN_FAILED,
408 ANA_ANEVENTS_LEARN_REMOVE,
409 ANA_ANEVENTS_AUTO_LEARNED,
410 ANA_ANEVENTS_AUTO_MOVED,
411 ANA_ANEVENTS_DROPPED,
412 ANA_ANEVENTS_CLASSIFIED_DROP,
413 ANA_ANEVENTS_CLASSIFIED_COPY,
414 ANA_ANEVENTS_VLAN_DISCARD,
415 ANA_ANEVENTS_FWD_DISCARD,
416 ANA_ANEVENTS_MULTICAST_FLOOD,
417 ANA_ANEVENTS_UNICAST_FLOOD,
418 ANA_ANEVENTS_DEST_KNOWN,
419 ANA_ANEVENTS_BUCKET3_MATCH,
420 ANA_ANEVENTS_BUCKET2_MATCH,
421 ANA_ANEVENTS_BUCKET1_MATCH,
422 ANA_ANEVENTS_BUCKET0_MATCH,
423 ANA_ANEVENTS_CPU_OPERATION,
424 ANA_ANEVENTS_DMAC_LOOKUP,
425 ANA_ANEVENTS_SMAC_LOOKUP,
426 ANA_ANEVENTS_SEQ_GEN_ERR_0,
427 ANA_ANEVENTS_SEQ_GEN_ERR_1,
428 ANA_TABLES_MACACCESS_B_DOM,
429 ANA_TABLES_MACTINDX_BUCKET,
430 ANA_TABLES_MACTINDX_M_INDEX,
431 QSYS_TIMED_FRAME_ENTRY_TFRM_VLD,
432 QSYS_TIMED_FRAME_ENTRY_TFRM_FP,
433 QSYS_TIMED_FRAME_ENTRY_TFRM_PORTNO,
434 QSYS_TIMED_FRAME_ENTRY_TFRM_TM_SEL,
435 QSYS_TIMED_FRAME_ENTRY_TFRM_TM_T,
436 SYS_RESET_CFG_CORE_ENA,
437 SYS_RESET_CFG_MEM_ENA,
438 SYS_RESET_CFG_MEM_INIT,
439 GCB_SOFT_RST_SWC_RST,
440 REGFIELD_MAX
441};
442
443enum ocelot_clk_pins {
444 ALT_PPS_PIN = 1,
445 EXT_CLK_PIN,
446 ALT_LDST_PIN,
447 TOD_ACC_PIN
448};
449
450struct ocelot_stat_layout {
451 u32 offset;
452 char name[ETH_GSTRING_LEN];
453};
454
455enum ocelot_tag_prefix {
456 OCELOT_TAG_PREFIX_DISABLED = 0,
457 OCELOT_TAG_PREFIX_NONE,
458 OCELOT_TAG_PREFIX_SHORT,
459 OCELOT_TAG_PREFIX_LONG,
460};
461
462struct ocelot;
463
464struct ocelot_ops {
5e256365
VO
465 int (*reset)(struct ocelot *ocelot);
466};
467
a56d7a34
VO
468struct ocelot_acl_block {
469 struct list_head rules;
470 int count;
c9a7fe12 471 int pol_lpr;
a56d7a34
VO
472};
473
5e256365
VO
474struct ocelot_port {
475 struct ocelot *ocelot;
476
477 void __iomem *regs;
478
87b0f983
VO
479 bool vlan_aware;
480
5e256365
VO
481 /* Ingress default VLAN (pvid) */
482 u16 pvid;
483
484 /* Egress default VLAN (vid) */
485 u16 vid;
486
487 u8 ptp_cmd;
b049da13 488 struct sk_buff_head tx_skbs;
5e256365 489 u8 ts_id;
ee50d07c
VO
490
491 phy_interface_t phy_mode;
5e256365
VO
492};
493
494struct ocelot {
495 struct device *dev;
496
497 const struct ocelot_ops *ops;
498 struct regmap *targets[TARGET_MAX];
499 struct regmap_field *regfields[REGFIELD_MAX];
500 const u32 *const *map;
501 const struct ocelot_stat_layout *stats_layout;
502 unsigned int num_stats;
503
504 int shared_queue_sz;
21ce7f3e 505 int num_mact_rows;
5e256365
VO
506
507 struct net_device *hw_bridge_dev;
508 u16 bridge_mask;
509 u16 bridge_fwd_mask;
510
511 struct ocelot_port **ports;
512
513 u8 base_mac[ETH_ALEN];
514
515 /* Keep track of the vlan port masks */
516 u32 vlan_mask[VLAN_N_VID];
517
69df578c
VO
518 /* In tables like ANA:PORT and the ANA:PGID:PGID mask,
519 * the CPU is located after the physical ports (at the
520 * num_phys_ports index).
521 */
5e256365 522 u8 num_phys_ports;
5e256365 523
0b912fc9
VO
524 int npi;
525
526 enum ocelot_tag_prefix inj_prefix;
527 enum ocelot_tag_prefix xtr_prefix;
528
5e256365
VO
529 u32 *lags;
530
531 struct list_head multicast;
532
a56d7a34
VO
533 struct ocelot_acl_block acl_block;
534
e0632940
VO
535 const struct vcap_field *vcap_is2_keys;
536 const struct vcap_field *vcap_is2_actions;
8551cdeb 537 const struct vcap_props *vcap;
e0632940 538
5e256365
VO
539 /* Workqueue to check statistics for overflow with its lock */
540 struct mutex stats_lock;
541 u64 *stats;
542 struct delayed_work stats_work;
543 struct workqueue_struct *stats_queue;
544
545 u8 ptp:1;
546 struct ptp_clock *ptp_clock;
547 struct ptp_clock_info ptp_info;
548 struct hwtstamp_config hwtstamp_config;
549 /* Protects the PTP interface state */
550 struct mutex ptp_lock;
551 /* Protects the PTP clock */
552 spinlock_t ptp_clock_lock;
5e256365
VO
553};
554
fc411eaa
VO
555struct ocelot_policer {
556 u32 rate; /* kilobit per second */
557 u32 burst; /* bytes */
558};
559
5e256365
VO
560#define ocelot_read_ix(ocelot, reg, gi, ri) __ocelot_read_ix(ocelot, reg, reg##_GSZ * (gi) + reg##_RSZ * (ri))
561#define ocelot_read_gix(ocelot, reg, gi) __ocelot_read_ix(ocelot, reg, reg##_GSZ * (gi))
562#define ocelot_read_rix(ocelot, reg, ri) __ocelot_read_ix(ocelot, reg, reg##_RSZ * (ri))
563#define ocelot_read(ocelot, reg) __ocelot_read_ix(ocelot, reg, 0)
564
565#define ocelot_write_ix(ocelot, val, reg, gi, ri) __ocelot_write_ix(ocelot, val, reg, reg##_GSZ * (gi) + reg##_RSZ * (ri))
566#define ocelot_write_gix(ocelot, val, reg, gi) __ocelot_write_ix(ocelot, val, reg, reg##_GSZ * (gi))
567#define ocelot_write_rix(ocelot, val, reg, ri) __ocelot_write_ix(ocelot, val, reg, reg##_RSZ * (ri))
568#define ocelot_write(ocelot, val, reg) __ocelot_write_ix(ocelot, val, reg, 0)
569
570#define ocelot_rmw_ix(ocelot, val, m, reg, gi, ri) __ocelot_rmw_ix(ocelot, val, m, reg, reg##_GSZ * (gi) + reg##_RSZ * (ri))
571#define ocelot_rmw_gix(ocelot, val, m, reg, gi) __ocelot_rmw_ix(ocelot, val, m, reg, reg##_GSZ * (gi))
572#define ocelot_rmw_rix(ocelot, val, m, reg, ri) __ocelot_rmw_ix(ocelot, val, m, reg, reg##_RSZ * (ri))
573#define ocelot_rmw(ocelot, val, m, reg) __ocelot_rmw_ix(ocelot, val, m, reg, 0)
574
575/* I/O */
576u32 ocelot_port_readl(struct ocelot_port *port, u32 reg);
577void ocelot_port_writel(struct ocelot_port *port, u32 val, u32 reg);
578u32 __ocelot_read_ix(struct ocelot *ocelot, u32 reg, u32 offset);
579void __ocelot_write_ix(struct ocelot *ocelot, u32 val, u32 reg, u32 offset);
580void __ocelot_rmw_ix(struct ocelot *ocelot, u32 val, u32 mask, u32 reg,
581 u32 offset);
582
583/* Hardware initialization */
584int ocelot_regfields_init(struct ocelot *ocelot,
585 const struct reg_field *const regfields);
586struct regmap *ocelot_regmap_init(struct ocelot *ocelot, struct resource *res);
69df578c
VO
587void ocelot_configure_cpu(struct ocelot *ocelot, int npi,
588 enum ocelot_tag_prefix injection,
589 enum ocelot_tag_prefix extraction);
5e256365
VO
590int ocelot_init(struct ocelot *ocelot);
591void ocelot_deinit(struct ocelot *ocelot);
592void ocelot_init_port(struct ocelot *ocelot, int port);
593
594/* DSA callbacks */
595void ocelot_port_enable(struct ocelot *ocelot, int port,
596 struct phy_device *phy);
597void ocelot_port_disable(struct ocelot *ocelot, int port);
598void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data);
599void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data);
600int ocelot_get_sset_count(struct ocelot *ocelot, int port, int sset);
601int ocelot_get_ts_info(struct ocelot *ocelot, int port,
602 struct ethtool_ts_info *info);
603void ocelot_set_ageing_time(struct ocelot *ocelot, unsigned int msecs);
604void ocelot_adjust_link(struct ocelot *ocelot, int port,
605 struct phy_device *phydev);
606void ocelot_port_vlan_filtering(struct ocelot *ocelot, int port,
607 bool vlan_aware);
608void ocelot_bridge_stp_state_set(struct ocelot *ocelot, int port, u8 state);
609int ocelot_port_bridge_join(struct ocelot *ocelot, int port,
610 struct net_device *bridge);
611int ocelot_port_bridge_leave(struct ocelot *ocelot, int port,
612 struct net_device *bridge);
613int ocelot_fdb_dump(struct ocelot *ocelot, int port,
614 dsa_fdb_dump_cb_t *cb, void *data);
615int ocelot_fdb_add(struct ocelot *ocelot, int port,
87b0f983 616 const unsigned char *addr, u16 vid);
5e256365
VO
617int ocelot_fdb_del(struct ocelot *ocelot, int port,
618 const unsigned char *addr, u16 vid);
619int ocelot_vlan_add(struct ocelot *ocelot, int port, u16 vid, bool pvid,
620 bool untagged);
621int ocelot_vlan_del(struct ocelot *ocelot, int port, u16 vid);
f145922d
YL
622int ocelot_hwstamp_get(struct ocelot *ocelot, int port, struct ifreq *ifr);
623int ocelot_hwstamp_set(struct ocelot *ocelot, int port, struct ifreq *ifr);
5e256365 624int ocelot_ptp_gettime64(struct ptp_clock_info *ptp, struct timespec64 *ts);
400928bf
YL
625int ocelot_port_add_txtstamp_skb(struct ocelot_port *ocelot_port,
626 struct sk_buff *skb);
e23a7b3e 627void ocelot_get_txtstamp(struct ocelot *ocelot);
0b912fc9
VO
628void ocelot_port_set_maxlen(struct ocelot *ocelot, int port, size_t sdu);
629int ocelot_get_max_mtu(struct ocelot *ocelot, int port);
fc411eaa
VO
630int ocelot_port_policer_add(struct ocelot *ocelot, int port,
631 struct ocelot_policer *pol);
632int ocelot_port_policer_del(struct ocelot *ocelot, int port);
07d985ee
VO
633int ocelot_cls_flower_replace(struct ocelot *ocelot, int port,
634 struct flow_cls_offload *f, bool ingress);
635int ocelot_cls_flower_destroy(struct ocelot *ocelot, int port,
636 struct flow_cls_offload *f, bool ingress);
637int ocelot_cls_flower_stats(struct ocelot *ocelot, int port,
638 struct flow_cls_offload *f, bool ingress);
5e256365
VO
639
640#endif