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 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_BLACKHOLE: used for not forwarding the frames 55 * PGID_CPU: used for whitelisting certain MAC addresses, such as the addresses 56 * of the switch port net devices, towards the CPU port module. 57 * PGID_UC: the flooding destinations for unknown unicast traffic. 58 * PGID_MC: the flooding destinations for non-IP multicast traffic. 59 * PGID_MCIPV4: the flooding destinations for IPv4 multicast traffic. 60 * PGID_MCIPV6: the flooding destinations for IPv6 multicast traffic. 61 * PGID_BC: the flooding destinations for broadcast traffic. 62 */ 63 #define PGID_BLACKHOLE 57 64 #define PGID_CPU 58 65 #define PGID_UC 59 66 #define PGID_MC 60 67 #define PGID_MCIPV4 61 68 #define PGID_MCIPV6 62 69 #define PGID_BC 63 70 71 #define for_each_unicast_dest_pgid(ocelot, pgid) \ 72 for ((pgid) = 0; \ 73 (pgid) < (ocelot)->num_phys_ports; \ 74 (pgid)++) 75 76 #define for_each_nonreserved_multicast_dest_pgid(ocelot, pgid) \ 77 for ((pgid) = (ocelot)->num_phys_ports + 1; \ 78 (pgid) < PGID_BLACKHOLE; \ 79 (pgid)++) 80 81 #define for_each_aggr_pgid(ocelot, pgid) \ 82 for ((pgid) = PGID_AGGR; \ 83 (pgid) < PGID_SRC; \ 84 (pgid)++) 85 86 /* Aggregation PGIDs, one per Link Aggregation Code */ 87 #define PGID_AGGR 64 88 89 /* Source PGIDs, one per physical port */ 90 #define PGID_SRC 80 91 92 #define OCELOT_NUM_TC 8 93 94 #define OCELOT_SPEED_2500 0 95 #define OCELOT_SPEED_1000 1 96 #define OCELOT_SPEED_100 2 97 #define OCELOT_SPEED_10 3 98 99 #define OCELOT_PTP_PINS_NUM 4 100 101 #define TARGET_OFFSET 24 102 #define REG_MASK GENMASK(TARGET_OFFSET - 1, 0) 103 #define REG(reg, offset) [reg & REG_MASK] = offset 104 105 #define REG_RESERVED_ADDR 0xffffffff 106 #define REG_RESERVED(reg) REG(reg, REG_RESERVED_ADDR) 107 108 #define OCELOT_STAT_FLAG_END BIT(0) 109 110 #define for_each_stat(ocelot, stat) \ 111 for ((stat) = ocelot->stats_layout; \ 112 !((stat)->flags & OCELOT_STAT_FLAG_END); \ 113 (stat)++) 114 115 enum ocelot_target { 116 ANA = 1, 117 QS, 118 QSYS, 119 REW, 120 SYS, 121 S0, 122 S1, 123 S2, 124 HSIO, 125 PTP, 126 FDMA, 127 GCB, 128 DEV_GMII, 129 TARGET_MAX, 130 }; 131 132 enum ocelot_reg { 133 ANA_ADVLEARN = ANA << TARGET_OFFSET, 134 ANA_VLANMASK, 135 ANA_PORT_B_DOMAIN, 136 ANA_ANAGEFIL, 137 ANA_ANEVENTS, 138 ANA_STORMLIMIT_BURST, 139 ANA_STORMLIMIT_CFG, 140 ANA_ISOLATED_PORTS, 141 ANA_COMMUNITY_PORTS, 142 ANA_AUTOAGE, 143 ANA_MACTOPTIONS, 144 ANA_LEARNDISC, 145 ANA_AGENCTRL, 146 ANA_MIRRORPORTS, 147 ANA_EMIRRORPORTS, 148 ANA_FLOODING, 149 ANA_FLOODING_IPMC, 150 ANA_SFLOW_CFG, 151 ANA_PORT_MODE, 152 ANA_CUT_THRU_CFG, 153 ANA_PGID_PGID, 154 ANA_TABLES_ANMOVED, 155 ANA_TABLES_MACHDATA, 156 ANA_TABLES_MACLDATA, 157 ANA_TABLES_STREAMDATA, 158 ANA_TABLES_MACACCESS, 159 ANA_TABLES_MACTINDX, 160 ANA_TABLES_VLANACCESS, 161 ANA_TABLES_VLANTIDX, 162 ANA_TABLES_ISDXACCESS, 163 ANA_TABLES_ISDXTIDX, 164 ANA_TABLES_ENTRYLIM, 165 ANA_TABLES_PTP_ID_HIGH, 166 ANA_TABLES_PTP_ID_LOW, 167 ANA_TABLES_STREAMACCESS, 168 ANA_TABLES_STREAMTIDX, 169 ANA_TABLES_SEQ_HISTORY, 170 ANA_TABLES_SEQ_MASK, 171 ANA_TABLES_SFID_MASK, 172 ANA_TABLES_SFIDACCESS, 173 ANA_TABLES_SFIDTIDX, 174 ANA_MSTI_STATE, 175 ANA_OAM_UPM_LM_CNT, 176 ANA_SG_ACCESS_CTRL, 177 ANA_SG_CONFIG_REG_1, 178 ANA_SG_CONFIG_REG_2, 179 ANA_SG_CONFIG_REG_3, 180 ANA_SG_CONFIG_REG_4, 181 ANA_SG_CONFIG_REG_5, 182 ANA_SG_GCL_GS_CONFIG, 183 ANA_SG_GCL_TI_CONFIG, 184 ANA_SG_STATUS_REG_1, 185 ANA_SG_STATUS_REG_2, 186 ANA_SG_STATUS_REG_3, 187 ANA_PORT_VLAN_CFG, 188 ANA_PORT_DROP_CFG, 189 ANA_PORT_QOS_CFG, 190 ANA_PORT_VCAP_CFG, 191 ANA_PORT_VCAP_S1_KEY_CFG, 192 ANA_PORT_VCAP_S2_CFG, 193 ANA_PORT_PCP_DEI_MAP, 194 ANA_PORT_CPU_FWD_CFG, 195 ANA_PORT_CPU_FWD_BPDU_CFG, 196 ANA_PORT_CPU_FWD_GARP_CFG, 197 ANA_PORT_CPU_FWD_CCM_CFG, 198 ANA_PORT_PORT_CFG, 199 ANA_PORT_POL_CFG, 200 ANA_PORT_PTP_CFG, 201 ANA_PORT_PTP_DLY1_CFG, 202 ANA_PORT_PTP_DLY2_CFG, 203 ANA_PORT_SFID_CFG, 204 ANA_PFC_PFC_CFG, 205 ANA_PFC_PFC_TIMER, 206 ANA_IPT_OAM_MEP_CFG, 207 ANA_IPT_IPT, 208 ANA_PPT_PPT, 209 ANA_FID_MAP_FID_MAP, 210 ANA_AGGR_CFG, 211 ANA_CPUQ_CFG, 212 ANA_CPUQ_CFG2, 213 ANA_CPUQ_8021_CFG, 214 ANA_DSCP_CFG, 215 ANA_DSCP_REWR_CFG, 216 ANA_VCAP_RNG_TYPE_CFG, 217 ANA_VCAP_RNG_VAL_CFG, 218 ANA_VRAP_CFG, 219 ANA_VRAP_HDR_DATA, 220 ANA_VRAP_HDR_MASK, 221 ANA_DISCARD_CFG, 222 ANA_FID_CFG, 223 ANA_POL_PIR_CFG, 224 ANA_POL_CIR_CFG, 225 ANA_POL_MODE_CFG, 226 ANA_POL_PIR_STATE, 227 ANA_POL_CIR_STATE, 228 ANA_POL_STATE, 229 ANA_POL_FLOWC, 230 ANA_POL_HYST, 231 ANA_POL_MISC_CFG, 232 QS_XTR_GRP_CFG = QS << TARGET_OFFSET, 233 QS_XTR_RD, 234 QS_XTR_FRM_PRUNING, 235 QS_XTR_FLUSH, 236 QS_XTR_DATA_PRESENT, 237 QS_XTR_CFG, 238 QS_INJ_GRP_CFG, 239 QS_INJ_WR, 240 QS_INJ_CTRL, 241 QS_INJ_STATUS, 242 QS_INJ_ERR, 243 QS_INH_DBG, 244 QSYS_PORT_MODE = QSYS << TARGET_OFFSET, 245 QSYS_SWITCH_PORT_MODE, 246 QSYS_STAT_CNT_CFG, 247 QSYS_EEE_CFG, 248 QSYS_EEE_THRES, 249 QSYS_IGR_NO_SHARING, 250 QSYS_EGR_NO_SHARING, 251 QSYS_SW_STATUS, 252 QSYS_EXT_CPU_CFG, 253 QSYS_PAD_CFG, 254 QSYS_CPU_GROUP_MAP, 255 QSYS_QMAP, 256 QSYS_ISDX_SGRP, 257 QSYS_TIMED_FRAME_ENTRY, 258 QSYS_TFRM_MISC, 259 QSYS_TFRM_PORT_DLY, 260 QSYS_TFRM_TIMER_CFG_1, 261 QSYS_TFRM_TIMER_CFG_2, 262 QSYS_TFRM_TIMER_CFG_3, 263 QSYS_TFRM_TIMER_CFG_4, 264 QSYS_TFRM_TIMER_CFG_5, 265 QSYS_TFRM_TIMER_CFG_6, 266 QSYS_TFRM_TIMER_CFG_7, 267 QSYS_TFRM_TIMER_CFG_8, 268 QSYS_RED_PROFILE, 269 QSYS_RES_QOS_MODE, 270 QSYS_RES_CFG, 271 QSYS_RES_STAT, 272 QSYS_EGR_DROP_MODE, 273 QSYS_EQ_CTRL, 274 QSYS_EVENTS_CORE, 275 QSYS_QMAXSDU_CFG_0, 276 QSYS_QMAXSDU_CFG_1, 277 QSYS_QMAXSDU_CFG_2, 278 QSYS_QMAXSDU_CFG_3, 279 QSYS_QMAXSDU_CFG_4, 280 QSYS_QMAXSDU_CFG_5, 281 QSYS_QMAXSDU_CFG_6, 282 QSYS_QMAXSDU_CFG_7, 283 QSYS_PREEMPTION_CFG, 284 QSYS_CIR_CFG, 285 QSYS_EIR_CFG, 286 QSYS_SE_CFG, 287 QSYS_SE_DWRR_CFG, 288 QSYS_SE_CONNECT, 289 QSYS_SE_DLB_SENSE, 290 QSYS_CIR_STATE, 291 QSYS_EIR_STATE, 292 QSYS_SE_STATE, 293 QSYS_HSCH_MISC_CFG, 294 QSYS_TAG_CONFIG, 295 QSYS_TAS_PARAM_CFG_CTRL, 296 QSYS_PORT_MAX_SDU, 297 QSYS_PARAM_CFG_REG_1, 298 QSYS_PARAM_CFG_REG_2, 299 QSYS_PARAM_CFG_REG_3, 300 QSYS_PARAM_CFG_REG_4, 301 QSYS_PARAM_CFG_REG_5, 302 QSYS_GCL_CFG_REG_1, 303 QSYS_GCL_CFG_REG_2, 304 QSYS_PARAM_STATUS_REG_1, 305 QSYS_PARAM_STATUS_REG_2, 306 QSYS_PARAM_STATUS_REG_3, 307 QSYS_PARAM_STATUS_REG_4, 308 QSYS_PARAM_STATUS_REG_5, 309 QSYS_PARAM_STATUS_REG_6, 310 QSYS_PARAM_STATUS_REG_7, 311 QSYS_PARAM_STATUS_REG_8, 312 QSYS_PARAM_STATUS_REG_9, 313 QSYS_GCL_STATUS_REG_1, 314 QSYS_GCL_STATUS_REG_2, 315 REW_PORT_VLAN_CFG = REW << TARGET_OFFSET, 316 REW_TAG_CFG, 317 REW_PORT_CFG, 318 REW_DSCP_CFG, 319 REW_PCP_DEI_QOS_MAP_CFG, 320 REW_PTP_CFG, 321 REW_PTP_DLY1_CFG, 322 REW_RED_TAG_CFG, 323 REW_DSCP_REMAP_DP1_CFG, 324 REW_DSCP_REMAP_CFG, 325 REW_STAT_CFG, 326 REW_REW_STICKY, 327 REW_PPT, 328 SYS_COUNT_RX_OCTETS = SYS << TARGET_OFFSET, 329 SYS_COUNT_RX_UNICAST, 330 SYS_COUNT_RX_MULTICAST, 331 SYS_COUNT_RX_BROADCAST, 332 SYS_COUNT_RX_SHORTS, 333 SYS_COUNT_RX_FRAGMENTS, 334 SYS_COUNT_RX_JABBERS, 335 SYS_COUNT_RX_CRC_ALIGN_ERRS, 336 SYS_COUNT_RX_SYM_ERRS, 337 SYS_COUNT_RX_64, 338 SYS_COUNT_RX_65_127, 339 SYS_COUNT_RX_128_255, 340 SYS_COUNT_RX_256_1023, 341 SYS_COUNT_RX_1024_1526, 342 SYS_COUNT_RX_1527_MAX, 343 SYS_COUNT_RX_PAUSE, 344 SYS_COUNT_RX_CONTROL, 345 SYS_COUNT_RX_LONGS, 346 SYS_COUNT_RX_CLASSIFIED_DROPS, 347 SYS_COUNT_TX_OCTETS, 348 SYS_COUNT_TX_UNICAST, 349 SYS_COUNT_TX_MULTICAST, 350 SYS_COUNT_TX_BROADCAST, 351 SYS_COUNT_TX_COLLISION, 352 SYS_COUNT_TX_DROPS, 353 SYS_COUNT_TX_PAUSE, 354 SYS_COUNT_TX_64, 355 SYS_COUNT_TX_65_127, 356 SYS_COUNT_TX_128_511, 357 SYS_COUNT_TX_512_1023, 358 SYS_COUNT_TX_1024_1526, 359 SYS_COUNT_TX_1527_MAX, 360 SYS_COUNT_TX_AGING, 361 SYS_RESET_CFG, 362 SYS_SR_ETYPE_CFG, 363 SYS_VLAN_ETYPE_CFG, 364 SYS_PORT_MODE, 365 SYS_FRONT_PORT_MODE, 366 SYS_FRM_AGING, 367 SYS_STAT_CFG, 368 SYS_SW_STATUS, 369 SYS_MISC_CFG, 370 SYS_REW_MAC_HIGH_CFG, 371 SYS_REW_MAC_LOW_CFG, 372 SYS_TIMESTAMP_OFFSET, 373 SYS_CMID, 374 SYS_PAUSE_CFG, 375 SYS_PAUSE_TOT_CFG, 376 SYS_ATOP, 377 SYS_ATOP_TOT_CFG, 378 SYS_MAC_FC_CFG, 379 SYS_MMGT, 380 SYS_MMGT_FAST, 381 SYS_EVENTS_DIF, 382 SYS_EVENTS_CORE, 383 SYS_CNT, 384 SYS_PTP_STATUS, 385 SYS_PTP_TXSTAMP, 386 SYS_PTP_NXT, 387 SYS_PTP_CFG, 388 SYS_RAM_INIT, 389 SYS_CM_ADDR, 390 SYS_CM_DATA_WR, 391 SYS_CM_DATA_RD, 392 SYS_CM_OP, 393 SYS_CM_DATA, 394 PTP_PIN_CFG = PTP << TARGET_OFFSET, 395 PTP_PIN_TOD_SEC_MSB, 396 PTP_PIN_TOD_SEC_LSB, 397 PTP_PIN_TOD_NSEC, 398 PTP_PIN_WF_HIGH_PERIOD, 399 PTP_PIN_WF_LOW_PERIOD, 400 PTP_CFG_MISC, 401 PTP_CLK_CFG_ADJ_CFG, 402 PTP_CLK_CFG_ADJ_FREQ, 403 GCB_SOFT_RST = GCB << TARGET_OFFSET, 404 GCB_MIIM_MII_STATUS, 405 GCB_MIIM_MII_CMD, 406 GCB_MIIM_MII_DATA, 407 DEV_CLOCK_CFG = DEV_GMII << TARGET_OFFSET, 408 DEV_PORT_MISC, 409 DEV_EVENTS, 410 DEV_EEE_CFG, 411 DEV_RX_PATH_DELAY, 412 DEV_TX_PATH_DELAY, 413 DEV_PTP_PREDICT_CFG, 414 DEV_MAC_ENA_CFG, 415 DEV_MAC_MODE_CFG, 416 DEV_MAC_MAXLEN_CFG, 417 DEV_MAC_TAGS_CFG, 418 DEV_MAC_ADV_CHK_CFG, 419 DEV_MAC_IFG_CFG, 420 DEV_MAC_HDX_CFG, 421 DEV_MAC_DBG_CFG, 422 DEV_MAC_FC_MAC_LOW_CFG, 423 DEV_MAC_FC_MAC_HIGH_CFG, 424 DEV_MAC_STICKY, 425 PCS1G_CFG, 426 PCS1G_MODE_CFG, 427 PCS1G_SD_CFG, 428 PCS1G_ANEG_CFG, 429 PCS1G_ANEG_NP_CFG, 430 PCS1G_LB_CFG, 431 PCS1G_DBG_CFG, 432 PCS1G_CDET_CFG, 433 PCS1G_ANEG_STATUS, 434 PCS1G_ANEG_NP_STATUS, 435 PCS1G_LINK_STATUS, 436 PCS1G_LINK_DOWN_CNT, 437 PCS1G_STICKY, 438 PCS1G_DEBUG_STATUS, 439 PCS1G_LPI_CFG, 440 PCS1G_LPI_WAKE_ERROR_CNT, 441 PCS1G_LPI_STATUS, 442 PCS1G_TSTPAT_MODE_CFG, 443 PCS1G_TSTPAT_STATUS, 444 DEV_PCS_FX100_CFG, 445 DEV_PCS_FX100_STATUS, 446 }; 447 448 enum ocelot_regfield { 449 ANA_ADVLEARN_VLAN_CHK, 450 ANA_ADVLEARN_LEARN_MIRROR, 451 ANA_ANEVENTS_FLOOD_DISCARD, 452 ANA_ANEVENTS_MSTI_DROP, 453 ANA_ANEVENTS_ACLKILL, 454 ANA_ANEVENTS_ACLUSED, 455 ANA_ANEVENTS_AUTOAGE, 456 ANA_ANEVENTS_VS2TTL1, 457 ANA_ANEVENTS_STORM_DROP, 458 ANA_ANEVENTS_LEARN_DROP, 459 ANA_ANEVENTS_AGED_ENTRY, 460 ANA_ANEVENTS_CPU_LEARN_FAILED, 461 ANA_ANEVENTS_AUTO_LEARN_FAILED, 462 ANA_ANEVENTS_LEARN_REMOVE, 463 ANA_ANEVENTS_AUTO_LEARNED, 464 ANA_ANEVENTS_AUTO_MOVED, 465 ANA_ANEVENTS_DROPPED, 466 ANA_ANEVENTS_CLASSIFIED_DROP, 467 ANA_ANEVENTS_CLASSIFIED_COPY, 468 ANA_ANEVENTS_VLAN_DISCARD, 469 ANA_ANEVENTS_FWD_DISCARD, 470 ANA_ANEVENTS_MULTICAST_FLOOD, 471 ANA_ANEVENTS_UNICAST_FLOOD, 472 ANA_ANEVENTS_DEST_KNOWN, 473 ANA_ANEVENTS_BUCKET3_MATCH, 474 ANA_ANEVENTS_BUCKET2_MATCH, 475 ANA_ANEVENTS_BUCKET1_MATCH, 476 ANA_ANEVENTS_BUCKET0_MATCH, 477 ANA_ANEVENTS_CPU_OPERATION, 478 ANA_ANEVENTS_DMAC_LOOKUP, 479 ANA_ANEVENTS_SMAC_LOOKUP, 480 ANA_ANEVENTS_SEQ_GEN_ERR_0, 481 ANA_ANEVENTS_SEQ_GEN_ERR_1, 482 ANA_TABLES_MACACCESS_B_DOM, 483 ANA_TABLES_MACTINDX_BUCKET, 484 ANA_TABLES_MACTINDX_M_INDEX, 485 QSYS_SWITCH_PORT_MODE_PORT_ENA, 486 QSYS_SWITCH_PORT_MODE_SCH_NEXT_CFG, 487 QSYS_SWITCH_PORT_MODE_YEL_RSRVD, 488 QSYS_SWITCH_PORT_MODE_INGRESS_DROP_MODE, 489 QSYS_SWITCH_PORT_MODE_TX_PFC_ENA, 490 QSYS_SWITCH_PORT_MODE_TX_PFC_MODE, 491 QSYS_TIMED_FRAME_ENTRY_TFRM_VLD, 492 QSYS_TIMED_FRAME_ENTRY_TFRM_FP, 493 QSYS_TIMED_FRAME_ENTRY_TFRM_PORTNO, 494 QSYS_TIMED_FRAME_ENTRY_TFRM_TM_SEL, 495 QSYS_TIMED_FRAME_ENTRY_TFRM_TM_T, 496 SYS_PORT_MODE_DATA_WO_TS, 497 SYS_PORT_MODE_INCL_INJ_HDR, 498 SYS_PORT_MODE_INCL_XTR_HDR, 499 SYS_PORT_MODE_INCL_HDR_ERR, 500 SYS_RESET_CFG_CORE_ENA, 501 SYS_RESET_CFG_MEM_ENA, 502 SYS_RESET_CFG_MEM_INIT, 503 GCB_SOFT_RST_SWC_RST, 504 GCB_MIIM_MII_STATUS_PENDING, 505 GCB_MIIM_MII_STATUS_BUSY, 506 SYS_PAUSE_CFG_PAUSE_START, 507 SYS_PAUSE_CFG_PAUSE_STOP, 508 SYS_PAUSE_CFG_PAUSE_ENA, 509 REGFIELD_MAX 510 }; 511 512 enum { 513 /* VCAP_CORE_CFG */ 514 VCAP_CORE_UPDATE_CTRL, 515 VCAP_CORE_MV_CFG, 516 /* VCAP_CORE_CACHE */ 517 VCAP_CACHE_ENTRY_DAT, 518 VCAP_CACHE_MASK_DAT, 519 VCAP_CACHE_ACTION_DAT, 520 VCAP_CACHE_CNT_DAT, 521 VCAP_CACHE_TG_DAT, 522 /* VCAP_CONST */ 523 VCAP_CONST_VCAP_VER, 524 VCAP_CONST_ENTRY_WIDTH, 525 VCAP_CONST_ENTRY_CNT, 526 VCAP_CONST_ENTRY_SWCNT, 527 VCAP_CONST_ENTRY_TG_WIDTH, 528 VCAP_CONST_ACTION_DEF_CNT, 529 VCAP_CONST_ACTION_WIDTH, 530 VCAP_CONST_CNT_WIDTH, 531 VCAP_CONST_CORE_CNT, 532 VCAP_CONST_IF_CNT, 533 }; 534 535 enum ocelot_ptp_pins { 536 PTP_PIN_0, 537 PTP_PIN_1, 538 PTP_PIN_2, 539 PTP_PIN_3, 540 TOD_ACC_PIN 541 }; 542 543 struct ocelot_stat_layout { 544 u32 offset; 545 u32 flags; 546 char name[ETH_GSTRING_LEN]; 547 }; 548 549 #define OCELOT_STAT_END { .flags = OCELOT_STAT_FLAG_END } 550 551 struct ocelot_stats_region { 552 struct list_head node; 553 u32 offset; 554 int count; 555 u32 *buf; 556 }; 557 558 enum ocelot_tag_prefix { 559 OCELOT_TAG_PREFIX_DISABLED = 0, 560 OCELOT_TAG_PREFIX_NONE, 561 OCELOT_TAG_PREFIX_SHORT, 562 OCELOT_TAG_PREFIX_LONG, 563 }; 564 565 struct ocelot; 566 567 struct ocelot_ops { 568 struct net_device *(*port_to_netdev)(struct ocelot *ocelot, int port); 569 int (*netdev_to_port)(struct net_device *dev); 570 int (*reset)(struct ocelot *ocelot); 571 u16 (*wm_enc)(u16 value); 572 u16 (*wm_dec)(u16 value); 573 void (*wm_stat)(u32 val, u32 *inuse, u32 *maxuse); 574 void (*psfp_init)(struct ocelot *ocelot); 575 int (*psfp_filter_add)(struct ocelot *ocelot, int port, 576 struct flow_cls_offload *f); 577 int (*psfp_filter_del)(struct ocelot *ocelot, struct flow_cls_offload *f); 578 int (*psfp_stats_get)(struct ocelot *ocelot, struct flow_cls_offload *f, 579 struct flow_stats *stats); 580 void (*cut_through_fwd)(struct ocelot *ocelot); 581 }; 582 583 struct ocelot_vcap_policer { 584 struct list_head pol_list; 585 u16 base; 586 u16 max; 587 u16 base2; 588 u16 max2; 589 }; 590 591 struct ocelot_vcap_block { 592 struct list_head rules; 593 int count; 594 }; 595 596 struct ocelot_bridge_vlan { 597 u16 vid; 598 unsigned long portmask; 599 unsigned long untagged; 600 struct list_head list; 601 }; 602 603 enum ocelot_port_tag_config { 604 /* all VLANs are egress-untagged */ 605 OCELOT_PORT_TAG_DISABLED = 0, 606 /* all VLANs except the native VLAN and VID 0 are egress-tagged */ 607 OCELOT_PORT_TAG_NATIVE = 1, 608 /* all VLANs except VID 0 are egress-tagged */ 609 OCELOT_PORT_TAG_TRUNK_NO_VID0 = 2, 610 /* all VLANs are egress-tagged */ 611 OCELOT_PORT_TAG_TRUNK = 3, 612 }; 613 614 struct ocelot_psfp_list { 615 struct list_head stream_list; 616 struct list_head sfi_list; 617 struct list_head sgi_list; 618 }; 619 620 enum ocelot_sb { 621 OCELOT_SB_BUF, 622 OCELOT_SB_REF, 623 OCELOT_SB_NUM, 624 }; 625 626 enum ocelot_sb_pool { 627 OCELOT_SB_POOL_ING, 628 OCELOT_SB_POOL_EGR, 629 OCELOT_SB_POOL_NUM, 630 }; 631 632 /* MAC table entry types. 633 * ENTRYTYPE_NORMAL is subject to aging. 634 * ENTRYTYPE_LOCKED is not subject to aging. 635 * ENTRYTYPE_MACv4 is not subject to aging. For IPv4 multicast. 636 * ENTRYTYPE_MACv6 is not subject to aging. For IPv6 multicast. 637 */ 638 enum macaccess_entry_type { 639 ENTRYTYPE_NORMAL = 0, 640 ENTRYTYPE_LOCKED, 641 ENTRYTYPE_MACv4, 642 ENTRYTYPE_MACv6, 643 }; 644 645 #define OCELOT_QUIRK_PCS_PERFORMS_RATE_ADAPTATION BIT(0) 646 #define OCELOT_QUIRK_QSGMII_PORTS_MUST_BE_UP BIT(1) 647 648 struct ocelot_lag_fdb { 649 unsigned char addr[ETH_ALEN]; 650 u16 vid; 651 struct net_device *bond; 652 struct list_head list; 653 }; 654 655 struct ocelot_mirror { 656 refcount_t refcount; 657 int to; 658 }; 659 660 struct ocelot_port { 661 struct ocelot *ocelot; 662 663 struct regmap *target; 664 665 bool vlan_aware; 666 /* VLAN that untagged frames are classified to, on ingress */ 667 const struct ocelot_bridge_vlan *pvid_vlan; 668 669 unsigned int ptp_skbs_in_flight; 670 u8 ptp_cmd; 671 struct sk_buff_head tx_skbs; 672 u8 ts_id; 673 674 phy_interface_t phy_mode; 675 676 u8 *xmit_template; 677 bool is_dsa_8021q_cpu; 678 bool learn_ena; 679 680 struct net_device *bond; 681 bool lag_tx_active; 682 683 u16 mrp_ring_id; 684 685 struct net_device *bridge; 686 int bridge_num; 687 u8 stp_state; 688 689 int speed; 690 }; 691 692 struct ocelot { 693 struct device *dev; 694 struct devlink *devlink; 695 struct devlink_port *devlink_ports; 696 697 const struct ocelot_ops *ops; 698 struct regmap *targets[TARGET_MAX]; 699 struct regmap_field *regfields[REGFIELD_MAX]; 700 const u32 *const *map; 701 const struct ocelot_stat_layout *stats_layout; 702 struct list_head stats_regions; 703 unsigned int num_stats; 704 705 u32 pool_size[OCELOT_SB_NUM][OCELOT_SB_POOL_NUM]; 706 int packet_buffer_size; 707 int num_frame_refs; 708 int num_mact_rows; 709 710 struct ocelot_port **ports; 711 712 u8 base_mac[ETH_ALEN]; 713 714 struct list_head vlans; 715 struct list_head traps; 716 struct list_head lag_fdbs; 717 718 /* Switches like VSC9959 have flooding per traffic class */ 719 int num_flooding_pgids; 720 721 /* In tables like ANA:PORT and the ANA:PGID:PGID mask, 722 * the CPU is located after the physical ports (at the 723 * num_phys_ports index). 724 */ 725 u8 num_phys_ports; 726 727 int npi; 728 729 enum ocelot_tag_prefix npi_inj_prefix; 730 enum ocelot_tag_prefix npi_xtr_prefix; 731 732 unsigned long bridges; 733 734 struct list_head multicast; 735 struct list_head pgids; 736 737 struct list_head dummy_rules; 738 struct ocelot_vcap_block block[3]; 739 struct ocelot_vcap_policer vcap_pol; 740 struct vcap_props *vcap; 741 struct ocelot_mirror *mirror; 742 743 struct ocelot_psfp_list psfp; 744 745 /* Workqueue to check statistics for overflow with its lock */ 746 struct mutex stats_lock; 747 u64 *stats; 748 struct delayed_work stats_work; 749 struct workqueue_struct *stats_queue; 750 751 /* Lock for serializing access to the MAC table */ 752 struct mutex mact_lock; 753 /* Lock for serializing forwarding domain changes */ 754 struct mutex fwd_domain_lock; 755 756 struct workqueue_struct *owq; 757 758 u8 ptp:1; 759 struct ptp_clock *ptp_clock; 760 struct ptp_clock_info ptp_info; 761 struct hwtstamp_config hwtstamp_config; 762 unsigned int ptp_skbs_in_flight; 763 /* Protects the 2-step TX timestamp ID logic */ 764 spinlock_t ts_id_lock; 765 /* Protects the PTP interface state */ 766 struct mutex ptp_lock; 767 /* Protects the PTP clock */ 768 spinlock_t ptp_clock_lock; 769 struct ptp_pin_desc ptp_pins[OCELOT_PTP_PINS_NUM]; 770 771 struct ocelot_fdma *fdma; 772 }; 773 774 struct ocelot_policer { 775 u32 rate; /* kilobit per second */ 776 u32 burst; /* bytes */ 777 }; 778 779 #define ocelot_bulk_read_rix(ocelot, reg, ri, buf, count) \ 780 __ocelot_bulk_read_ix(ocelot, reg, reg##_RSZ * (ri), buf, count) 781 782 #define ocelot_read_ix(ocelot, reg, gi, ri) \ 783 __ocelot_read_ix(ocelot, reg, reg##_GSZ * (gi) + reg##_RSZ * (ri)) 784 #define ocelot_read_gix(ocelot, reg, gi) \ 785 __ocelot_read_ix(ocelot, reg, reg##_GSZ * (gi)) 786 #define ocelot_read_rix(ocelot, reg, ri) \ 787 __ocelot_read_ix(ocelot, reg, reg##_RSZ * (ri)) 788 #define ocelot_read(ocelot, reg) \ 789 __ocelot_read_ix(ocelot, reg, 0) 790 791 #define ocelot_write_ix(ocelot, val, reg, gi, ri) \ 792 __ocelot_write_ix(ocelot, val, reg, reg##_GSZ * (gi) + reg##_RSZ * (ri)) 793 #define ocelot_write_gix(ocelot, val, reg, gi) \ 794 __ocelot_write_ix(ocelot, val, reg, reg##_GSZ * (gi)) 795 #define ocelot_write_rix(ocelot, val, reg, ri) \ 796 __ocelot_write_ix(ocelot, val, reg, reg##_RSZ * (ri)) 797 #define ocelot_write(ocelot, val, reg) __ocelot_write_ix(ocelot, val, reg, 0) 798 799 #define ocelot_rmw_ix(ocelot, val, m, reg, gi, ri) \ 800 __ocelot_rmw_ix(ocelot, val, m, reg, reg##_GSZ * (gi) + reg##_RSZ * (ri)) 801 #define ocelot_rmw_gix(ocelot, val, m, reg, gi) \ 802 __ocelot_rmw_ix(ocelot, val, m, reg, reg##_GSZ * (gi)) 803 #define ocelot_rmw_rix(ocelot, val, m, reg, ri) \ 804 __ocelot_rmw_ix(ocelot, val, m, reg, reg##_RSZ * (ri)) 805 #define ocelot_rmw(ocelot, val, m, reg) __ocelot_rmw_ix(ocelot, val, m, reg, 0) 806 807 #define ocelot_field_write(ocelot, reg, val) \ 808 regmap_field_write((ocelot)->regfields[(reg)], (val)) 809 #define ocelot_field_read(ocelot, reg, val) \ 810 regmap_field_read((ocelot)->regfields[(reg)], (val)) 811 #define ocelot_fields_write(ocelot, id, reg, val) \ 812 regmap_fields_write((ocelot)->regfields[(reg)], (id), (val)) 813 #define ocelot_fields_read(ocelot, id, reg, val) \ 814 regmap_fields_read((ocelot)->regfields[(reg)], (id), (val)) 815 816 #define ocelot_target_read_ix(ocelot, target, reg, gi, ri) \ 817 __ocelot_target_read_ix(ocelot, target, reg, reg##_GSZ * (gi) + reg##_RSZ * (ri)) 818 #define ocelot_target_read_gix(ocelot, target, reg, gi) \ 819 __ocelot_target_read_ix(ocelot, target, reg, reg##_GSZ * (gi)) 820 #define ocelot_target_read_rix(ocelot, target, reg, ri) \ 821 __ocelot_target_read_ix(ocelot, target, reg, reg##_RSZ * (ri)) 822 #define ocelot_target_read(ocelot, target, reg) \ 823 __ocelot_target_read_ix(ocelot, target, reg, 0) 824 825 #define ocelot_target_write_ix(ocelot, target, val, reg, gi, ri) \ 826 __ocelot_target_write_ix(ocelot, target, val, reg, reg##_GSZ * (gi) + reg##_RSZ * (ri)) 827 #define ocelot_target_write_gix(ocelot, target, val, reg, gi) \ 828 __ocelot_target_write_ix(ocelot, target, val, reg, reg##_GSZ * (gi)) 829 #define ocelot_target_write_rix(ocelot, target, val, reg, ri) \ 830 __ocelot_target_write_ix(ocelot, target, val, reg, reg##_RSZ * (ri)) 831 #define ocelot_target_write(ocelot, target, val, reg) \ 832 __ocelot_target_write_ix(ocelot, target, val, reg, 0) 833 834 /* I/O */ 835 u32 ocelot_port_readl(struct ocelot_port *port, u32 reg); 836 void ocelot_port_writel(struct ocelot_port *port, u32 val, u32 reg); 837 void ocelot_port_rmwl(struct ocelot_port *port, u32 val, u32 mask, u32 reg); 838 int __ocelot_bulk_read_ix(struct ocelot *ocelot, u32 reg, u32 offset, void *buf, 839 int count); 840 u32 __ocelot_read_ix(struct ocelot *ocelot, u32 reg, u32 offset); 841 void __ocelot_write_ix(struct ocelot *ocelot, u32 val, u32 reg, u32 offset); 842 void __ocelot_rmw_ix(struct ocelot *ocelot, u32 val, u32 mask, u32 reg, 843 u32 offset); 844 u32 __ocelot_target_read_ix(struct ocelot *ocelot, enum ocelot_target target, 845 u32 reg, u32 offset); 846 void __ocelot_target_write_ix(struct ocelot *ocelot, enum ocelot_target target, 847 u32 val, u32 reg, u32 offset); 848 849 /* Packet I/O */ 850 bool ocelot_can_inject(struct ocelot *ocelot, int grp); 851 void ocelot_port_inject_frame(struct ocelot *ocelot, int port, int grp, 852 u32 rew_op, struct sk_buff *skb); 853 void ocelot_ifh_port_set(void *ifh, int port, u32 rew_op, u32 vlan_tag); 854 int ocelot_xtr_poll_frame(struct ocelot *ocelot, int grp, struct sk_buff **skb); 855 void ocelot_drain_cpu_queue(struct ocelot *ocelot, int grp); 856 void ocelot_ptp_rx_timestamp(struct ocelot *ocelot, struct sk_buff *skb, 857 u64 timestamp); 858 859 /* Hardware initialization */ 860 int ocelot_regfields_init(struct ocelot *ocelot, 861 const struct reg_field *const regfields); 862 struct regmap *ocelot_regmap_init(struct ocelot *ocelot, struct resource *res); 863 int ocelot_init(struct ocelot *ocelot); 864 void ocelot_deinit(struct ocelot *ocelot); 865 void ocelot_init_port(struct ocelot *ocelot, int port); 866 void ocelot_deinit_port(struct ocelot *ocelot, int port); 867 868 void ocelot_port_set_dsa_8021q_cpu(struct ocelot *ocelot, int port); 869 void ocelot_port_unset_dsa_8021q_cpu(struct ocelot *ocelot, int port); 870 871 /* DSA callbacks */ 872 void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data); 873 void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data); 874 int ocelot_get_sset_count(struct ocelot *ocelot, int port, int sset); 875 int ocelot_get_ts_info(struct ocelot *ocelot, int port, 876 struct ethtool_ts_info *info); 877 void ocelot_set_ageing_time(struct ocelot *ocelot, unsigned int msecs); 878 int ocelot_port_vlan_filtering(struct ocelot *ocelot, int port, bool enabled, 879 struct netlink_ext_ack *extack); 880 void ocelot_bridge_stp_state_set(struct ocelot *ocelot, int port, u8 state); 881 u32 ocelot_get_dsa_8021q_cpu_mask(struct ocelot *ocelot); 882 u32 ocelot_get_bridge_fwd_mask(struct ocelot *ocelot, int src_port); 883 void ocelot_apply_bridge_fwd_mask(struct ocelot *ocelot, bool joining); 884 int ocelot_port_pre_bridge_flags(struct ocelot *ocelot, int port, 885 struct switchdev_brport_flags val); 886 void ocelot_port_bridge_flags(struct ocelot *ocelot, int port, 887 struct switchdev_brport_flags val); 888 int ocelot_port_get_default_prio(struct ocelot *ocelot, int port); 889 int ocelot_port_set_default_prio(struct ocelot *ocelot, int port, u8 prio); 890 int ocelot_port_get_dscp_prio(struct ocelot *ocelot, int port, u8 dscp); 891 int ocelot_port_add_dscp_prio(struct ocelot *ocelot, int port, u8 dscp, u8 prio); 892 int ocelot_port_del_dscp_prio(struct ocelot *ocelot, int port, u8 dscp, u8 prio); 893 int ocelot_port_bridge_join(struct ocelot *ocelot, int port, 894 struct net_device *bridge, int bridge_num, 895 struct netlink_ext_ack *extack); 896 void ocelot_port_bridge_leave(struct ocelot *ocelot, int port, 897 struct net_device *bridge); 898 int ocelot_mact_flush(struct ocelot *ocelot, int port); 899 int ocelot_fdb_dump(struct ocelot *ocelot, int port, 900 dsa_fdb_dump_cb_t *cb, void *data); 901 int ocelot_fdb_add(struct ocelot *ocelot, int port, const unsigned char *addr, 902 u16 vid, const struct net_device *bridge); 903 int ocelot_fdb_del(struct ocelot *ocelot, int port, const unsigned char *addr, 904 u16 vid, const struct net_device *bridge); 905 int ocelot_lag_fdb_add(struct ocelot *ocelot, struct net_device *bond, 906 const unsigned char *addr, u16 vid, 907 const struct net_device *bridge); 908 int ocelot_lag_fdb_del(struct ocelot *ocelot, struct net_device *bond, 909 const unsigned char *addr, u16 vid, 910 const struct net_device *bridge); 911 int ocelot_vlan_prepare(struct ocelot *ocelot, int port, u16 vid, bool pvid, 912 bool untagged, struct netlink_ext_ack *extack); 913 int ocelot_vlan_add(struct ocelot *ocelot, int port, u16 vid, bool pvid, 914 bool untagged); 915 int ocelot_vlan_del(struct ocelot *ocelot, int port, u16 vid); 916 int ocelot_hwstamp_get(struct ocelot *ocelot, int port, struct ifreq *ifr); 917 int ocelot_hwstamp_set(struct ocelot *ocelot, int port, struct ifreq *ifr); 918 int ocelot_port_txtstamp_request(struct ocelot *ocelot, int port, 919 struct sk_buff *skb, 920 struct sk_buff **clone); 921 void ocelot_get_txtstamp(struct ocelot *ocelot); 922 void ocelot_port_set_maxlen(struct ocelot *ocelot, int port, size_t sdu); 923 int ocelot_get_max_mtu(struct ocelot *ocelot, int port); 924 int ocelot_port_policer_add(struct ocelot *ocelot, int port, 925 struct ocelot_policer *pol); 926 int ocelot_port_policer_del(struct ocelot *ocelot, int port); 927 int ocelot_port_mirror_add(struct ocelot *ocelot, int from, int to, 928 bool ingress, struct netlink_ext_ack *extack); 929 void ocelot_port_mirror_del(struct ocelot *ocelot, int from, bool ingress); 930 int ocelot_cls_flower_replace(struct ocelot *ocelot, int port, 931 struct flow_cls_offload *f, bool ingress); 932 int ocelot_cls_flower_destroy(struct ocelot *ocelot, int port, 933 struct flow_cls_offload *f, bool ingress); 934 int ocelot_cls_flower_stats(struct ocelot *ocelot, int port, 935 struct flow_cls_offload *f, bool ingress); 936 int ocelot_port_mdb_add(struct ocelot *ocelot, int port, 937 const struct switchdev_obj_port_mdb *mdb, 938 const struct net_device *bridge); 939 int ocelot_port_mdb_del(struct ocelot *ocelot, int port, 940 const struct switchdev_obj_port_mdb *mdb, 941 const struct net_device *bridge); 942 int ocelot_port_lag_join(struct ocelot *ocelot, int port, 943 struct net_device *bond, 944 struct netdev_lag_upper_info *info); 945 void ocelot_port_lag_leave(struct ocelot *ocelot, int port, 946 struct net_device *bond); 947 void ocelot_port_lag_change(struct ocelot *ocelot, int port, bool lag_tx_active); 948 949 int ocelot_devlink_sb_register(struct ocelot *ocelot); 950 void ocelot_devlink_sb_unregister(struct ocelot *ocelot); 951 int ocelot_sb_pool_get(struct ocelot *ocelot, unsigned int sb_index, 952 u16 pool_index, 953 struct devlink_sb_pool_info *pool_info); 954 int ocelot_sb_pool_set(struct ocelot *ocelot, unsigned int sb_index, 955 u16 pool_index, u32 size, 956 enum devlink_sb_threshold_type threshold_type, 957 struct netlink_ext_ack *extack); 958 int ocelot_sb_port_pool_get(struct ocelot *ocelot, int port, 959 unsigned int sb_index, u16 pool_index, 960 u32 *p_threshold); 961 int ocelot_sb_port_pool_set(struct ocelot *ocelot, int port, 962 unsigned int sb_index, u16 pool_index, 963 u32 threshold, struct netlink_ext_ack *extack); 964 int ocelot_sb_tc_pool_bind_get(struct ocelot *ocelot, int port, 965 unsigned int sb_index, u16 tc_index, 966 enum devlink_sb_pool_type pool_type, 967 u16 *p_pool_index, u32 *p_threshold); 968 int ocelot_sb_tc_pool_bind_set(struct ocelot *ocelot, int port, 969 unsigned int sb_index, u16 tc_index, 970 enum devlink_sb_pool_type pool_type, 971 u16 pool_index, u32 threshold, 972 struct netlink_ext_ack *extack); 973 int ocelot_sb_occ_snapshot(struct ocelot *ocelot, unsigned int sb_index); 974 int ocelot_sb_occ_max_clear(struct ocelot *ocelot, unsigned int sb_index); 975 int ocelot_sb_occ_port_pool_get(struct ocelot *ocelot, int port, 976 unsigned int sb_index, u16 pool_index, 977 u32 *p_cur, u32 *p_max); 978 int ocelot_sb_occ_tc_port_bind_get(struct ocelot *ocelot, int port, 979 unsigned int sb_index, u16 tc_index, 980 enum devlink_sb_pool_type pool_type, 981 u32 *p_cur, u32 *p_max); 982 983 void ocelot_phylink_mac_link_down(struct ocelot *ocelot, int port, 984 unsigned int link_an_mode, 985 phy_interface_t interface, 986 unsigned long quirks); 987 void ocelot_phylink_mac_link_up(struct ocelot *ocelot, int port, 988 struct phy_device *phydev, 989 unsigned int link_an_mode, 990 phy_interface_t interface, 991 int speed, int duplex, 992 bool tx_pause, bool rx_pause, 993 unsigned long quirks); 994 995 int ocelot_mact_lookup(struct ocelot *ocelot, int *dst_idx, 996 const unsigned char mac[ETH_ALEN], 997 unsigned int vid, enum macaccess_entry_type *type); 998 int ocelot_mact_learn_streamdata(struct ocelot *ocelot, int dst_idx, 999 const unsigned char mac[ETH_ALEN], 1000 unsigned int vid, 1001 enum macaccess_entry_type type, 1002 int sfid, int ssid); 1003 1004 int ocelot_vcap_policer_add(struct ocelot *ocelot, u32 pol_ix, 1005 struct ocelot_policer *pol); 1006 int ocelot_vcap_policer_del(struct ocelot *ocelot, u32 pol_ix); 1007 1008 #if IS_ENABLED(CONFIG_BRIDGE_MRP) 1009 int ocelot_mrp_add(struct ocelot *ocelot, int port, 1010 const struct switchdev_obj_mrp *mrp); 1011 int ocelot_mrp_del(struct ocelot *ocelot, int port, 1012 const struct switchdev_obj_mrp *mrp); 1013 int ocelot_mrp_add_ring_role(struct ocelot *ocelot, int port, 1014 const struct switchdev_obj_ring_role_mrp *mrp); 1015 int ocelot_mrp_del_ring_role(struct ocelot *ocelot, int port, 1016 const struct switchdev_obj_ring_role_mrp *mrp); 1017 #else 1018 static inline int ocelot_mrp_add(struct ocelot *ocelot, int port, 1019 const struct switchdev_obj_mrp *mrp) 1020 { 1021 return -EOPNOTSUPP; 1022 } 1023 1024 static inline int ocelot_mrp_del(struct ocelot *ocelot, int port, 1025 const struct switchdev_obj_mrp *mrp) 1026 { 1027 return -EOPNOTSUPP; 1028 } 1029 1030 static inline int 1031 ocelot_mrp_add_ring_role(struct ocelot *ocelot, int port, 1032 const struct switchdev_obj_ring_role_mrp *mrp) 1033 { 1034 return -EOPNOTSUPP; 1035 } 1036 1037 static inline int 1038 ocelot_mrp_del_ring_role(struct ocelot *ocelot, int port, 1039 const struct switchdev_obj_ring_role_mrp *mrp) 1040 { 1041 return -EOPNOTSUPP; 1042 } 1043 #endif 1044 1045 #endif 1046