1 // SPDX-License-Identifier: GPL-2.0
3 * Microchip KSZ9477 switch driver main logic
5 * Copyright (C) 2017-2019 Microchip Technology Inc.
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/iopoll.h>
11 #include <linux/platform_data/microchip-ksz.h>
12 #include <linux/phy.h>
13 #include <linux/if_bridge.h>
15 #include <net/switchdev.h>
17 #include "ksz9477_reg.h"
18 #include "ksz_common.h"
20 /* Used with variable features to indicate capabilities. */
21 #define GBIT_SUPPORT BIT(0)
22 #define NEW_XMII BIT(1)
23 #define IS_9893 BIT(2)
27 char string[ETH_GSTRING_LEN];
28 } ksz9477_mib_names[TOTAL_SWITCH_COUNTER_NUM] = {
30 { 0x01, "rx_undersize" },
31 { 0x02, "rx_fragments" },
32 { 0x03, "rx_oversize" },
33 { 0x04, "rx_jabbers" },
34 { 0x05, "rx_symbol_err" },
35 { 0x06, "rx_crc_err" },
36 { 0x07, "rx_align_err" },
37 { 0x08, "rx_mac_ctrl" },
42 { 0x0D, "rx_64_or_less" },
43 { 0x0E, "rx_65_127" },
44 { 0x0F, "rx_128_255" },
45 { 0x10, "rx_256_511" },
46 { 0x11, "rx_512_1023" },
47 { 0x12, "rx_1024_1522" },
48 { 0x13, "rx_1523_2000" },
51 { 0x16, "tx_late_col" },
56 { 0x1B, "tx_deferred" },
57 { 0x1C, "tx_total_col" },
58 { 0x1D, "tx_exc_col" },
59 { 0x1E, "tx_single_col" },
60 { 0x1F, "tx_mult_col" },
63 { 0x82, "rx_discards" },
64 { 0x83, "tx_discards" },
67 static void ksz_cfg(struct ksz_device *dev, u32 addr, u8 bits, bool set)
69 regmap_update_bits(dev->regmap[0], addr, bits, set ? bits : 0);
72 static void ksz_port_cfg(struct ksz_device *dev, int port, int offset, u8 bits,
75 regmap_update_bits(dev->regmap[0], PORT_CTRL_ADDR(port, offset),
76 bits, set ? bits : 0);
79 static void ksz9477_cfg32(struct ksz_device *dev, u32 addr, u32 bits, bool set)
81 regmap_update_bits(dev->regmap[2], addr, bits, set ? bits : 0);
84 static void ksz9477_port_cfg32(struct ksz_device *dev, int port, int offset,
87 regmap_update_bits(dev->regmap[2], PORT_CTRL_ADDR(port, offset),
88 bits, set ? bits : 0);
91 static int ksz9477_wait_vlan_ctrl_ready(struct ksz_device *dev)
95 return regmap_read_poll_timeout(dev->regmap[0], REG_SW_VLAN_CTRL,
96 val, !(val & VLAN_START), 10, 1000);
99 static int ksz9477_get_vlan_table(struct ksz_device *dev, u16 vid,
104 mutex_lock(&dev->vlan_mutex);
106 ksz_write16(dev, REG_SW_VLAN_ENTRY_INDEX__2, vid & VLAN_INDEX_M);
107 ksz_write8(dev, REG_SW_VLAN_CTRL, VLAN_READ | VLAN_START);
109 /* wait to be cleared */
110 ret = ksz9477_wait_vlan_ctrl_ready(dev);
112 dev_dbg(dev->dev, "Failed to read vlan table\n");
116 ksz_read32(dev, REG_SW_VLAN_ENTRY__4, &vlan_table[0]);
117 ksz_read32(dev, REG_SW_VLAN_ENTRY_UNTAG__4, &vlan_table[1]);
118 ksz_read32(dev, REG_SW_VLAN_ENTRY_PORTS__4, &vlan_table[2]);
120 ksz_write8(dev, REG_SW_VLAN_CTRL, 0);
123 mutex_unlock(&dev->vlan_mutex);
128 static int ksz9477_set_vlan_table(struct ksz_device *dev, u16 vid,
133 mutex_lock(&dev->vlan_mutex);
135 ksz_write32(dev, REG_SW_VLAN_ENTRY__4, vlan_table[0]);
136 ksz_write32(dev, REG_SW_VLAN_ENTRY_UNTAG__4, vlan_table[1]);
137 ksz_write32(dev, REG_SW_VLAN_ENTRY_PORTS__4, vlan_table[2]);
139 ksz_write16(dev, REG_SW_VLAN_ENTRY_INDEX__2, vid & VLAN_INDEX_M);
140 ksz_write8(dev, REG_SW_VLAN_CTRL, VLAN_START | VLAN_WRITE);
142 /* wait to be cleared */
143 ret = ksz9477_wait_vlan_ctrl_ready(dev);
145 dev_dbg(dev->dev, "Failed to write vlan table\n");
149 ksz_write8(dev, REG_SW_VLAN_CTRL, 0);
151 /* update vlan cache table */
152 dev->vlan_cache[vid].table[0] = vlan_table[0];
153 dev->vlan_cache[vid].table[1] = vlan_table[1];
154 dev->vlan_cache[vid].table[2] = vlan_table[2];
157 mutex_unlock(&dev->vlan_mutex);
162 static void ksz9477_read_table(struct ksz_device *dev, u32 *table)
164 ksz_read32(dev, REG_SW_ALU_VAL_A, &table[0]);
165 ksz_read32(dev, REG_SW_ALU_VAL_B, &table[1]);
166 ksz_read32(dev, REG_SW_ALU_VAL_C, &table[2]);
167 ksz_read32(dev, REG_SW_ALU_VAL_D, &table[3]);
170 static void ksz9477_write_table(struct ksz_device *dev, u32 *table)
172 ksz_write32(dev, REG_SW_ALU_VAL_A, table[0]);
173 ksz_write32(dev, REG_SW_ALU_VAL_B, table[1]);
174 ksz_write32(dev, REG_SW_ALU_VAL_C, table[2]);
175 ksz_write32(dev, REG_SW_ALU_VAL_D, table[3]);
178 static int ksz9477_wait_alu_ready(struct ksz_device *dev)
182 return regmap_read_poll_timeout(dev->regmap[2], REG_SW_ALU_CTRL__4,
183 val, !(val & ALU_START), 10, 1000);
186 static int ksz9477_wait_alu_sta_ready(struct ksz_device *dev)
190 return regmap_read_poll_timeout(dev->regmap[2],
191 REG_SW_ALU_STAT_CTRL__4,
192 val, !(val & ALU_STAT_START),
196 static int ksz9477_reset_switch(struct ksz_device *dev)
202 ksz_cfg(dev, REG_SW_OPERATION, SW_RESET, true);
204 /* turn off SPI DO Edge select */
205 regmap_update_bits(dev->regmap[0], REG_SW_GLOBAL_SERIAL_CTRL_0,
206 SPI_AUTO_EDGE_DETECTION, 0);
208 /* default configuration */
209 ksz_read8(dev, REG_SW_LUE_CTRL_1, &data8);
210 data8 = SW_AGING_ENABLE | SW_LINK_AUTO_AGING |
211 SW_SRC_ADDR_FILTER | SW_FLUSH_STP_TABLE | SW_FLUSH_MSTP_TABLE;
212 ksz_write8(dev, REG_SW_LUE_CTRL_1, data8);
214 /* disable interrupts */
215 ksz_write32(dev, REG_SW_INT_MASK__4, SWITCH_INT_MASK);
216 ksz_write32(dev, REG_SW_PORT_INT_MASK__4, 0x7F);
217 ksz_read32(dev, REG_SW_PORT_INT_STATUS__4, &data32);
219 /* set broadcast storm protection 10% rate */
220 regmap_update_bits(dev->regmap[1], REG_SW_MAC_CTRL_2,
221 BROADCAST_STORM_RATE,
222 (BROADCAST_STORM_VALUE *
223 BROADCAST_STORM_PROT_RATE) / 100);
225 if (dev->synclko_125)
226 ksz_write8(dev, REG_SW_GLOBAL_OUTPUT_CTRL__1,
227 SW_ENABLE_REFCLKO | SW_REFCLKO_IS_125MHZ);
232 static void ksz9477_r_mib_cnt(struct ksz_device *dev, int port, u16 addr,
235 struct ksz_port *p = &dev->ports[port];
240 /* retain the flush/freeze bit */
241 data = p->freeze ? MIB_COUNTER_FLUSH_FREEZE : 0;
242 data |= MIB_COUNTER_READ;
243 data |= (addr << MIB_COUNTER_INDEX_S);
244 ksz_pwrite32(dev, port, REG_PORT_MIB_CTRL_STAT__4, data);
246 ret = regmap_read_poll_timeout(dev->regmap[2],
247 PORT_CTRL_ADDR(port, REG_PORT_MIB_CTRL_STAT__4),
248 val, !(val & MIB_COUNTER_READ), 10, 1000);
249 /* failed to read MIB. get out of loop */
251 dev_dbg(dev->dev, "Failed to get MIB\n");
255 /* count resets upon read */
256 ksz_pread32(dev, port, REG_PORT_MIB_DATA, &data);
260 static void ksz9477_r_mib_pkt(struct ksz_device *dev, int port, u16 addr,
261 u64 *dropped, u64 *cnt)
263 addr = ksz9477_mib_names[addr].index;
264 ksz9477_r_mib_cnt(dev, port, addr, cnt);
267 static void ksz9477_freeze_mib(struct ksz_device *dev, int port, bool freeze)
269 u32 val = freeze ? MIB_COUNTER_FLUSH_FREEZE : 0;
270 struct ksz_port *p = &dev->ports[port];
272 /* enable/disable the port for flush/freeze function */
273 mutex_lock(&p->mib.cnt_mutex);
274 ksz_pwrite32(dev, port, REG_PORT_MIB_CTRL_STAT__4, val);
276 /* used by MIB counter reading code to know freeze is enabled */
278 mutex_unlock(&p->mib.cnt_mutex);
281 static void ksz9477_port_init_cnt(struct ksz_device *dev, int port)
283 struct ksz_port_mib *mib = &dev->ports[port].mib;
285 /* flush all enabled port MIB counters */
286 mutex_lock(&mib->cnt_mutex);
287 ksz_pwrite32(dev, port, REG_PORT_MIB_CTRL_STAT__4,
288 MIB_COUNTER_FLUSH_FREEZE);
289 ksz_write8(dev, REG_SW_MAC_CTRL_6, SW_MIB_COUNTER_FLUSH);
290 ksz_pwrite32(dev, port, REG_PORT_MIB_CTRL_STAT__4, 0);
291 mutex_unlock(&mib->cnt_mutex);
294 memset(mib->counters, 0, dev->mib_cnt * sizeof(u64));
297 static enum dsa_tag_protocol ksz9477_get_tag_protocol(struct dsa_switch *ds,
299 enum dsa_tag_protocol mp)
301 enum dsa_tag_protocol proto = DSA_TAG_PROTO_KSZ9477;
302 struct ksz_device *dev = ds->priv;
304 if (dev->features & IS_9893)
305 proto = DSA_TAG_PROTO_KSZ9893;
309 static int ksz9477_phy_read16(struct dsa_switch *ds, int addr, int reg)
311 struct ksz_device *dev = ds->priv;
314 /* No real PHY after this. Simulate the PHY.
315 * A fixed PHY can be setup in the device tree, but this function is
316 * still called for that port during initialization.
317 * For RGMII PHY there is no way to access it so the fixed PHY should
318 * be used. For SGMII PHY the supporting code will be added later.
320 if (addr >= dev->phy_port_cnt) {
321 struct ksz_port *p = &dev->ports[addr];
346 if (p->phydev.speed == SPEED_1000)
353 ksz_pread16(dev, addr, 0x100 + (reg << 1), &val);
359 static int ksz9477_phy_write16(struct dsa_switch *ds, int addr, int reg,
362 struct ksz_device *dev = ds->priv;
364 /* No real PHY after this. */
365 if (addr >= dev->phy_port_cnt)
368 /* No gigabit support. Do not write to this register. */
369 if (!(dev->features & GBIT_SUPPORT) && reg == MII_CTRL1000)
371 ksz_pwrite16(dev, addr, 0x100 + (reg << 1), val);
376 static void ksz9477_get_strings(struct dsa_switch *ds, int port,
377 u32 stringset, uint8_t *buf)
381 if (stringset != ETH_SS_STATS)
384 for (i = 0; i < TOTAL_SWITCH_COUNTER_NUM; i++) {
385 memcpy(buf + i * ETH_GSTRING_LEN, ksz9477_mib_names[i].string,
390 static void ksz9477_cfg_port_member(struct ksz_device *dev, int port,
393 ksz_pwrite32(dev, port, REG_PORT_VLAN_MEMBERSHIP__4, member);
396 static void ksz9477_port_stp_state_set(struct dsa_switch *ds, int port,
399 struct ksz_device *dev = ds->priv;
400 struct ksz_port *p = &dev->ports[port];
403 ksz_pread8(dev, port, P_STP_CTRL, &data);
404 data &= ~(PORT_TX_ENABLE | PORT_RX_ENABLE | PORT_LEARN_DISABLE);
407 case BR_STATE_DISABLED:
408 data |= PORT_LEARN_DISABLE;
410 case BR_STATE_LISTENING:
411 data |= (PORT_RX_ENABLE | PORT_LEARN_DISABLE);
413 case BR_STATE_LEARNING:
414 data |= PORT_RX_ENABLE;
416 case BR_STATE_FORWARDING:
417 data |= (PORT_TX_ENABLE | PORT_RX_ENABLE);
419 case BR_STATE_BLOCKING:
420 data |= PORT_LEARN_DISABLE;
423 dev_err(ds->dev, "invalid STP state: %d\n", state);
427 ksz_pwrite8(dev, port, P_STP_CTRL, data);
428 p->stp_state = state;
430 ksz_update_port_member(dev, port);
433 static void ksz9477_flush_dyn_mac_table(struct ksz_device *dev, int port)
437 regmap_update_bits(dev->regmap[0], REG_SW_LUE_CTRL_2,
438 SW_FLUSH_OPTION_M << SW_FLUSH_OPTION_S,
439 SW_FLUSH_OPTION_DYN_MAC << SW_FLUSH_OPTION_S);
441 if (port < dev->port_cnt) {
442 /* flush individual port */
443 ksz_pread8(dev, port, P_STP_CTRL, &data);
444 if (!(data & PORT_LEARN_DISABLE))
445 ksz_pwrite8(dev, port, P_STP_CTRL,
446 data | PORT_LEARN_DISABLE);
447 ksz_cfg(dev, S_FLUSH_TABLE_CTRL, SW_FLUSH_DYN_MAC_TABLE, true);
448 ksz_pwrite8(dev, port, P_STP_CTRL, data);
451 ksz_cfg(dev, S_FLUSH_TABLE_CTRL, SW_FLUSH_STP_TABLE, true);
455 static int ksz9477_port_vlan_filtering(struct dsa_switch *ds, int port,
457 struct netlink_ext_ack *extack)
459 struct ksz_device *dev = ds->priv;
462 ksz_port_cfg(dev, port, REG_PORT_LUE_CTRL,
463 PORT_VLAN_LOOKUP_VID_0, true);
464 ksz_cfg(dev, REG_SW_LUE_CTRL_0, SW_VLAN_ENABLE, true);
466 ksz_cfg(dev, REG_SW_LUE_CTRL_0, SW_VLAN_ENABLE, false);
467 ksz_port_cfg(dev, port, REG_PORT_LUE_CTRL,
468 PORT_VLAN_LOOKUP_VID_0, false);
474 static int ksz9477_port_vlan_add(struct dsa_switch *ds, int port,
475 const struct switchdev_obj_port_vlan *vlan,
476 struct netlink_ext_ack *extack)
478 struct ksz_device *dev = ds->priv;
480 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
483 err = ksz9477_get_vlan_table(dev, vlan->vid, vlan_table);
485 NL_SET_ERR_MSG_MOD(extack, "Failed to get vlan table");
489 vlan_table[0] = VLAN_VALID | (vlan->vid & VLAN_FID_M);
491 vlan_table[1] |= BIT(port);
493 vlan_table[1] &= ~BIT(port);
494 vlan_table[1] &= ~(BIT(dev->cpu_port));
496 vlan_table[2] |= BIT(port) | BIT(dev->cpu_port);
498 err = ksz9477_set_vlan_table(dev, vlan->vid, vlan_table);
500 NL_SET_ERR_MSG_MOD(extack, "Failed to set vlan table");
505 if (vlan->flags & BRIDGE_VLAN_INFO_PVID)
506 ksz_pwrite16(dev, port, REG_PORT_DEFAULT_VID, vlan->vid);
511 static int ksz9477_port_vlan_del(struct dsa_switch *ds, int port,
512 const struct switchdev_obj_port_vlan *vlan)
514 struct ksz_device *dev = ds->priv;
515 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
519 ksz_pread16(dev, port, REG_PORT_DEFAULT_VID, &pvid);
522 if (ksz9477_get_vlan_table(dev, vlan->vid, vlan_table)) {
523 dev_dbg(dev->dev, "Failed to get vlan table\n");
527 vlan_table[2] &= ~BIT(port);
529 if (pvid == vlan->vid)
533 vlan_table[1] &= ~BIT(port);
535 if (ksz9477_set_vlan_table(dev, vlan->vid, vlan_table)) {
536 dev_dbg(dev->dev, "Failed to set vlan table\n");
540 ksz_pwrite16(dev, port, REG_PORT_DEFAULT_VID, pvid);
545 static int ksz9477_port_fdb_add(struct dsa_switch *ds, int port,
546 const unsigned char *addr, u16 vid)
548 struct ksz_device *dev = ds->priv;
553 mutex_lock(&dev->alu_mutex);
555 /* find any entry with mac & vid */
556 data = vid << ALU_FID_INDEX_S;
557 data |= ((addr[0] << 8) | addr[1]);
558 ksz_write32(dev, REG_SW_ALU_INDEX_0, data);
560 data = ((addr[2] << 24) | (addr[3] << 16));
561 data |= ((addr[4] << 8) | addr[5]);
562 ksz_write32(dev, REG_SW_ALU_INDEX_1, data);
564 /* start read operation */
565 ksz_write32(dev, REG_SW_ALU_CTRL__4, ALU_READ | ALU_START);
567 /* wait to be finished */
568 ret = ksz9477_wait_alu_ready(dev);
570 dev_dbg(dev->dev, "Failed to read ALU\n");
575 ksz9477_read_table(dev, alu_table);
577 /* update ALU entry */
578 alu_table[0] = ALU_V_STATIC_VALID;
579 alu_table[1] |= BIT(port);
581 alu_table[1] |= ALU_V_USE_FID;
582 alu_table[2] = (vid << ALU_V_FID_S);
583 alu_table[2] |= ((addr[0] << 8) | addr[1]);
584 alu_table[3] = ((addr[2] << 24) | (addr[3] << 16));
585 alu_table[3] |= ((addr[4] << 8) | addr[5]);
587 ksz9477_write_table(dev, alu_table);
589 ksz_write32(dev, REG_SW_ALU_CTRL__4, ALU_WRITE | ALU_START);
591 /* wait to be finished */
592 ret = ksz9477_wait_alu_ready(dev);
594 dev_dbg(dev->dev, "Failed to write ALU\n");
597 mutex_unlock(&dev->alu_mutex);
602 static int ksz9477_port_fdb_del(struct dsa_switch *ds, int port,
603 const unsigned char *addr, u16 vid)
605 struct ksz_device *dev = ds->priv;
610 mutex_lock(&dev->alu_mutex);
612 /* read any entry with mac & vid */
613 data = vid << ALU_FID_INDEX_S;
614 data |= ((addr[0] << 8) | addr[1]);
615 ksz_write32(dev, REG_SW_ALU_INDEX_0, data);
617 data = ((addr[2] << 24) | (addr[3] << 16));
618 data |= ((addr[4] << 8) | addr[5]);
619 ksz_write32(dev, REG_SW_ALU_INDEX_1, data);
621 /* start read operation */
622 ksz_write32(dev, REG_SW_ALU_CTRL__4, ALU_READ | ALU_START);
624 /* wait to be finished */
625 ret = ksz9477_wait_alu_ready(dev);
627 dev_dbg(dev->dev, "Failed to read ALU\n");
631 ksz_read32(dev, REG_SW_ALU_VAL_A, &alu_table[0]);
632 if (alu_table[0] & ALU_V_STATIC_VALID) {
633 ksz_read32(dev, REG_SW_ALU_VAL_B, &alu_table[1]);
634 ksz_read32(dev, REG_SW_ALU_VAL_C, &alu_table[2]);
635 ksz_read32(dev, REG_SW_ALU_VAL_D, &alu_table[3]);
637 /* clear forwarding port */
638 alu_table[2] &= ~BIT(port);
640 /* if there is no port to forward, clear table */
641 if ((alu_table[2] & ALU_V_PORT_MAP) == 0) {
654 ksz9477_write_table(dev, alu_table);
656 ksz_write32(dev, REG_SW_ALU_CTRL__4, ALU_WRITE | ALU_START);
658 /* wait to be finished */
659 ret = ksz9477_wait_alu_ready(dev);
661 dev_dbg(dev->dev, "Failed to write ALU\n");
664 mutex_unlock(&dev->alu_mutex);
669 static void ksz9477_convert_alu(struct alu_struct *alu, u32 *alu_table)
671 alu->is_static = !!(alu_table[0] & ALU_V_STATIC_VALID);
672 alu->is_src_filter = !!(alu_table[0] & ALU_V_SRC_FILTER);
673 alu->is_dst_filter = !!(alu_table[0] & ALU_V_DST_FILTER);
674 alu->prio_age = (alu_table[0] >> ALU_V_PRIO_AGE_CNT_S) &
675 ALU_V_PRIO_AGE_CNT_M;
676 alu->mstp = alu_table[0] & ALU_V_MSTP_M;
678 alu->is_override = !!(alu_table[1] & ALU_V_OVERRIDE);
679 alu->is_use_fid = !!(alu_table[1] & ALU_V_USE_FID);
680 alu->port_forward = alu_table[1] & ALU_V_PORT_MAP;
682 alu->fid = (alu_table[2] >> ALU_V_FID_S) & ALU_V_FID_M;
684 alu->mac[0] = (alu_table[2] >> 8) & 0xFF;
685 alu->mac[1] = alu_table[2] & 0xFF;
686 alu->mac[2] = (alu_table[3] >> 24) & 0xFF;
687 alu->mac[3] = (alu_table[3] >> 16) & 0xFF;
688 alu->mac[4] = (alu_table[3] >> 8) & 0xFF;
689 alu->mac[5] = alu_table[3] & 0xFF;
692 static int ksz9477_port_fdb_dump(struct dsa_switch *ds, int port,
693 dsa_fdb_dump_cb_t *cb, void *data)
695 struct ksz_device *dev = ds->priv;
699 struct alu_struct alu;
702 mutex_lock(&dev->alu_mutex);
704 /* start ALU search */
705 ksz_write32(dev, REG_SW_ALU_CTRL__4, ALU_START | ALU_SEARCH);
710 ksz_read32(dev, REG_SW_ALU_CTRL__4, &ksz_data);
711 if ((ksz_data & ALU_VALID) || !(ksz_data & ALU_START))
714 } while (timeout-- > 0);
717 dev_dbg(dev->dev, "Failed to search ALU\n");
723 ksz9477_read_table(dev, alu_table);
725 ksz9477_convert_alu(&alu, alu_table);
727 if (alu.port_forward & BIT(port)) {
728 ret = cb(alu.mac, alu.fid, alu.is_static, data);
732 } while (ksz_data & ALU_START);
736 /* stop ALU search */
737 ksz_write32(dev, REG_SW_ALU_CTRL__4, 0);
739 mutex_unlock(&dev->alu_mutex);
744 static int ksz9477_port_mdb_add(struct dsa_switch *ds, int port,
745 const struct switchdev_obj_port_mdb *mdb)
747 struct ksz_device *dev = ds->priv;
754 mac_hi = ((mdb->addr[0] << 8) | mdb->addr[1]);
755 mac_lo = ((mdb->addr[2] << 24) | (mdb->addr[3] << 16));
756 mac_lo |= ((mdb->addr[4] << 8) | mdb->addr[5]);
758 mutex_lock(&dev->alu_mutex);
760 for (index = 0; index < dev->num_statics; index++) {
761 /* find empty slot first */
762 data = (index << ALU_STAT_INDEX_S) |
763 ALU_STAT_READ | ALU_STAT_START;
764 ksz_write32(dev, REG_SW_ALU_STAT_CTRL__4, data);
766 /* wait to be finished */
767 err = ksz9477_wait_alu_sta_ready(dev);
769 dev_dbg(dev->dev, "Failed to read ALU STATIC\n");
773 /* read ALU static table */
774 ksz9477_read_table(dev, static_table);
776 if (static_table[0] & ALU_V_STATIC_VALID) {
777 /* check this has same vid & mac address */
778 if (((static_table[2] >> ALU_V_FID_S) == mdb->vid) &&
779 ((static_table[2] & ALU_V_MAC_ADDR_HI) == mac_hi) &&
780 static_table[3] == mac_lo) {
781 /* found matching one */
785 /* found empty one */
790 /* no available entry */
791 if (index == dev->num_statics) {
797 static_table[0] = ALU_V_STATIC_VALID;
798 static_table[1] |= BIT(port);
800 static_table[1] |= ALU_V_USE_FID;
801 static_table[2] = (mdb->vid << ALU_V_FID_S);
802 static_table[2] |= mac_hi;
803 static_table[3] = mac_lo;
805 ksz9477_write_table(dev, static_table);
807 data = (index << ALU_STAT_INDEX_S) | ALU_STAT_START;
808 ksz_write32(dev, REG_SW_ALU_STAT_CTRL__4, data);
810 /* wait to be finished */
811 if (ksz9477_wait_alu_sta_ready(dev))
812 dev_dbg(dev->dev, "Failed to read ALU STATIC\n");
815 mutex_unlock(&dev->alu_mutex);
819 static int ksz9477_port_mdb_del(struct dsa_switch *ds, int port,
820 const struct switchdev_obj_port_mdb *mdb)
822 struct ksz_device *dev = ds->priv;
829 mac_hi = ((mdb->addr[0] << 8) | mdb->addr[1]);
830 mac_lo = ((mdb->addr[2] << 24) | (mdb->addr[3] << 16));
831 mac_lo |= ((mdb->addr[4] << 8) | mdb->addr[5]);
833 mutex_lock(&dev->alu_mutex);
835 for (index = 0; index < dev->num_statics; index++) {
836 /* find empty slot first */
837 data = (index << ALU_STAT_INDEX_S) |
838 ALU_STAT_READ | ALU_STAT_START;
839 ksz_write32(dev, REG_SW_ALU_STAT_CTRL__4, data);
841 /* wait to be finished */
842 ret = ksz9477_wait_alu_sta_ready(dev);
844 dev_dbg(dev->dev, "Failed to read ALU STATIC\n");
848 /* read ALU static table */
849 ksz9477_read_table(dev, static_table);
851 if (static_table[0] & ALU_V_STATIC_VALID) {
852 /* check this has same vid & mac address */
854 if (((static_table[2] >> ALU_V_FID_S) == mdb->vid) &&
855 ((static_table[2] & ALU_V_MAC_ADDR_HI) == mac_hi) &&
856 static_table[3] == mac_lo) {
857 /* found matching one */
863 /* no available entry */
864 if (index == dev->num_statics)
868 static_table[1] &= ~BIT(port);
870 if ((static_table[1] & ALU_V_PORT_MAP) == 0) {
878 ksz9477_write_table(dev, static_table);
880 data = (index << ALU_STAT_INDEX_S) | ALU_STAT_START;
881 ksz_write32(dev, REG_SW_ALU_STAT_CTRL__4, data);
883 /* wait to be finished */
884 ret = ksz9477_wait_alu_sta_ready(dev);
886 dev_dbg(dev->dev, "Failed to read ALU STATIC\n");
889 mutex_unlock(&dev->alu_mutex);
894 static int ksz9477_port_mirror_add(struct dsa_switch *ds, int port,
895 struct dsa_mall_mirror_tc_entry *mirror,
898 struct ksz_device *dev = ds->priv;
901 ksz_port_cfg(dev, port, P_MIRROR_CTRL, PORT_MIRROR_RX, true);
903 ksz_port_cfg(dev, port, P_MIRROR_CTRL, PORT_MIRROR_TX, true);
905 ksz_port_cfg(dev, port, P_MIRROR_CTRL, PORT_MIRROR_SNIFFER, false);
907 /* configure mirror port */
908 ksz_port_cfg(dev, mirror->to_local_port, P_MIRROR_CTRL,
909 PORT_MIRROR_SNIFFER, true);
911 ksz_cfg(dev, S_MIRROR_CTRL, SW_MIRROR_RX_TX, false);
916 static void ksz9477_port_mirror_del(struct dsa_switch *ds, int port,
917 struct dsa_mall_mirror_tc_entry *mirror)
919 struct ksz_device *dev = ds->priv;
923 ksz_port_cfg(dev, port, P_MIRROR_CTRL, PORT_MIRROR_RX, false);
925 ksz_port_cfg(dev, port, P_MIRROR_CTRL, PORT_MIRROR_TX, false);
927 ksz_pread8(dev, port, P_MIRROR_CTRL, &data);
929 if (!(data & (PORT_MIRROR_RX | PORT_MIRROR_TX)))
930 ksz_port_cfg(dev, mirror->to_local_port, P_MIRROR_CTRL,
931 PORT_MIRROR_SNIFFER, false);
934 static bool ksz9477_get_gbit(struct ksz_device *dev, u8 data)
938 if (dev->features & NEW_XMII)
939 gbit = !(data & PORT_MII_NOT_1GBIT);
941 gbit = !!(data & PORT_MII_1000MBIT_S1);
945 static void ksz9477_set_gbit(struct ksz_device *dev, bool gbit, u8 *data)
947 if (dev->features & NEW_XMII) {
949 *data &= ~PORT_MII_NOT_1GBIT;
951 *data |= PORT_MII_NOT_1GBIT;
954 *data |= PORT_MII_1000MBIT_S1;
956 *data &= ~PORT_MII_1000MBIT_S1;
960 static int ksz9477_get_xmii(struct ksz_device *dev, u8 data)
964 if (dev->features & NEW_XMII) {
965 switch (data & PORT_MII_SEL_M) {
979 switch (data & PORT_MII_SEL_M) {
980 case PORT_MII_SEL_S1:
983 case PORT_RMII_SEL_S1:
986 case PORT_GMII_SEL_S1:
996 static void ksz9477_set_xmii(struct ksz_device *dev, int mode, u8 *data)
1000 if (dev->features & NEW_XMII) {
1003 xmii = PORT_MII_SEL;
1006 xmii = PORT_RMII_SEL;
1009 xmii = PORT_GMII_SEL;
1012 xmii = PORT_RGMII_SEL;
1018 xmii = PORT_MII_SEL_S1;
1021 xmii = PORT_RMII_SEL_S1;
1024 xmii = PORT_GMII_SEL_S1;
1027 xmii = PORT_RGMII_SEL_S1;
1031 *data &= ~PORT_MII_SEL_M;
1035 static phy_interface_t ksz9477_get_interface(struct ksz_device *dev, int port)
1037 phy_interface_t interface;
1042 if (port < dev->phy_port_cnt)
1043 return PHY_INTERFACE_MODE_NA;
1044 ksz_pread8(dev, port, REG_PORT_XMII_CTRL_1, &data8);
1045 gbit = ksz9477_get_gbit(dev, data8);
1046 mode = ksz9477_get_xmii(dev, data8);
1049 interface = PHY_INTERFACE_MODE_GMII;
1054 interface = PHY_INTERFACE_MODE_MII;
1057 interface = PHY_INTERFACE_MODE_RMII;
1060 interface = PHY_INTERFACE_MODE_RGMII;
1061 if (data8 & PORT_RGMII_ID_EG_ENABLE)
1062 interface = PHY_INTERFACE_MODE_RGMII_TXID;
1063 if (data8 & PORT_RGMII_ID_IG_ENABLE) {
1064 interface = PHY_INTERFACE_MODE_RGMII_RXID;
1065 if (data8 & PORT_RGMII_ID_EG_ENABLE)
1066 interface = PHY_INTERFACE_MODE_RGMII_ID;
1073 static void ksz9477_port_mmd_write(struct ksz_device *dev, int port,
1074 u8 dev_addr, u16 reg_addr, u16 val)
1076 ksz_pwrite16(dev, port, REG_PORT_PHY_MMD_SETUP,
1077 MMD_SETUP(PORT_MMD_OP_INDEX, dev_addr));
1078 ksz_pwrite16(dev, port, REG_PORT_PHY_MMD_INDEX_DATA, reg_addr);
1079 ksz_pwrite16(dev, port, REG_PORT_PHY_MMD_SETUP,
1080 MMD_SETUP(PORT_MMD_OP_DATA_NO_INCR, dev_addr));
1081 ksz_pwrite16(dev, port, REG_PORT_PHY_MMD_INDEX_DATA, val);
1084 static void ksz9477_phy_errata_setup(struct ksz_device *dev, int port)
1086 /* Apply PHY settings to address errata listed in
1087 * KSZ9477, KSZ9897, KSZ9896, KSZ9567, KSZ8565
1088 * Silicon Errata and Data Sheet Clarification documents:
1090 * Register settings are needed to improve PHY receive performance
1092 ksz9477_port_mmd_write(dev, port, 0x01, 0x6f, 0xdd0b);
1093 ksz9477_port_mmd_write(dev, port, 0x01, 0x8f, 0x6032);
1094 ksz9477_port_mmd_write(dev, port, 0x01, 0x9d, 0x248c);
1095 ksz9477_port_mmd_write(dev, port, 0x01, 0x75, 0x0060);
1096 ksz9477_port_mmd_write(dev, port, 0x01, 0xd3, 0x7777);
1097 ksz9477_port_mmd_write(dev, port, 0x1c, 0x06, 0x3008);
1098 ksz9477_port_mmd_write(dev, port, 0x1c, 0x08, 0x2001);
1100 /* Transmit waveform amplitude can be improved
1101 * (1000BASE-T, 100BASE-TX, 10BASE-Te)
1103 ksz9477_port_mmd_write(dev, port, 0x1c, 0x04, 0x00d0);
1105 /* Energy Efficient Ethernet (EEE) feature select must
1106 * be manually disabled (except on KSZ8565 which is 100Mbit)
1108 if (dev->features & GBIT_SUPPORT)
1109 ksz9477_port_mmd_write(dev, port, 0x07, 0x3c, 0x0000);
1111 /* Register settings are required to meet data sheet
1112 * supply current specifications
1114 ksz9477_port_mmd_write(dev, port, 0x1c, 0x13, 0x6eff);
1115 ksz9477_port_mmd_write(dev, port, 0x1c, 0x14, 0xe6ff);
1116 ksz9477_port_mmd_write(dev, port, 0x1c, 0x15, 0x6eff);
1117 ksz9477_port_mmd_write(dev, port, 0x1c, 0x16, 0xe6ff);
1118 ksz9477_port_mmd_write(dev, port, 0x1c, 0x17, 0x00ff);
1119 ksz9477_port_mmd_write(dev, port, 0x1c, 0x18, 0x43ff);
1120 ksz9477_port_mmd_write(dev, port, 0x1c, 0x19, 0xc3ff);
1121 ksz9477_port_mmd_write(dev, port, 0x1c, 0x1a, 0x6fff);
1122 ksz9477_port_mmd_write(dev, port, 0x1c, 0x1b, 0x07ff);
1123 ksz9477_port_mmd_write(dev, port, 0x1c, 0x1c, 0x0fff);
1124 ksz9477_port_mmd_write(dev, port, 0x1c, 0x1d, 0xe7ff);
1125 ksz9477_port_mmd_write(dev, port, 0x1c, 0x1e, 0xefff);
1126 ksz9477_port_mmd_write(dev, port, 0x1c, 0x20, 0xeeee);
1129 static void ksz9477_port_setup(struct ksz_device *dev, int port, bool cpu_port)
1131 struct ksz_port *p = &dev->ports[port];
1132 struct dsa_switch *ds = dev->ds;
1136 /* enable tag tail for host port */
1138 ksz_port_cfg(dev, port, REG_PORT_CTRL_0, PORT_TAIL_TAG_ENABLE,
1141 ksz_port_cfg(dev, port, REG_PORT_CTRL_0, PORT_MAC_LOOPBACK, false);
1143 /* set back pressure */
1144 ksz_port_cfg(dev, port, REG_PORT_MAC_CTRL_1, PORT_BACK_PRESSURE, true);
1146 /* enable broadcast storm limit */
1147 ksz_port_cfg(dev, port, P_BCAST_STORM_CTRL, PORT_BROADCAST_STORM, true);
1149 /* disable DiffServ priority */
1150 ksz_port_cfg(dev, port, P_PRIO_CTRL, PORT_DIFFSERV_PRIO_ENABLE, false);
1152 /* replace priority */
1153 ksz_port_cfg(dev, port, REG_PORT_MRI_MAC_CTRL, PORT_USER_PRIO_CEILING,
1155 ksz9477_port_cfg32(dev, port, REG_PORT_MTI_QUEUE_CTRL_0__4,
1156 MTI_PVID_REPLACE, false);
1158 /* enable 802.1p priority */
1159 ksz_port_cfg(dev, port, P_PRIO_CTRL, PORT_802_1P_PRIO_ENABLE, true);
1161 if (port < dev->phy_port_cnt) {
1162 /* do not force flow control */
1163 ksz_port_cfg(dev, port, REG_PORT_CTRL_0,
1164 PORT_FORCE_TX_FLOW_CTRL | PORT_FORCE_RX_FLOW_CTRL,
1167 if (dev->phy_errata_9477)
1168 ksz9477_phy_errata_setup(dev, port);
1170 /* force flow control */
1171 ksz_port_cfg(dev, port, REG_PORT_CTRL_0,
1172 PORT_FORCE_TX_FLOW_CTRL | PORT_FORCE_RX_FLOW_CTRL,
1175 /* configure MAC to 1G & RGMII mode */
1176 ksz_pread8(dev, port, REG_PORT_XMII_CTRL_1, &data8);
1177 switch (p->interface) {
1178 case PHY_INTERFACE_MODE_MII:
1179 ksz9477_set_xmii(dev, 0, &data8);
1180 ksz9477_set_gbit(dev, false, &data8);
1181 p->phydev.speed = SPEED_100;
1183 case PHY_INTERFACE_MODE_RMII:
1184 ksz9477_set_xmii(dev, 1, &data8);
1185 ksz9477_set_gbit(dev, false, &data8);
1186 p->phydev.speed = SPEED_100;
1188 case PHY_INTERFACE_MODE_GMII:
1189 ksz9477_set_xmii(dev, 2, &data8);
1190 ksz9477_set_gbit(dev, true, &data8);
1191 p->phydev.speed = SPEED_1000;
1194 ksz9477_set_xmii(dev, 3, &data8);
1195 ksz9477_set_gbit(dev, true, &data8);
1196 data8 &= ~PORT_RGMII_ID_IG_ENABLE;
1197 data8 &= ~PORT_RGMII_ID_EG_ENABLE;
1198 if (p->interface == PHY_INTERFACE_MODE_RGMII_ID ||
1199 p->interface == PHY_INTERFACE_MODE_RGMII_RXID)
1200 data8 |= PORT_RGMII_ID_IG_ENABLE;
1201 if (p->interface == PHY_INTERFACE_MODE_RGMII_ID ||
1202 p->interface == PHY_INTERFACE_MODE_RGMII_TXID)
1203 data8 |= PORT_RGMII_ID_EG_ENABLE;
1204 /* On KSZ9893, disable RGMII in-band status support */
1205 if (dev->features & IS_9893)
1206 data8 &= ~PORT_MII_MAC_MODE;
1207 p->phydev.speed = SPEED_1000;
1210 ksz_pwrite8(dev, port, REG_PORT_XMII_CTRL_1, data8);
1211 p->phydev.duplex = 1;
1215 member = dsa_user_ports(ds);
1217 member = BIT(dsa_upstream_port(ds, port));
1219 ksz9477_cfg_port_member(dev, port, member);
1221 /* clear pending interrupts */
1222 if (port < dev->phy_port_cnt)
1223 ksz_pread16(dev, port, REG_PORT_PHY_INT_ENABLE, &data16);
1226 static void ksz9477_config_cpu_port(struct dsa_switch *ds)
1228 struct ksz_device *dev = ds->priv;
1232 for (i = 0; i < dev->port_cnt; i++) {
1233 if (dsa_is_cpu_port(ds, i) && (dev->cpu_ports & (1 << i))) {
1234 phy_interface_t interface;
1235 const char *prev_msg;
1236 const char *prev_mode;
1241 /* Read from XMII register to determine host port
1242 * interface. If set specifically in device tree
1243 * note the difference to help debugging.
1245 interface = ksz9477_get_interface(dev, i);
1246 if (!p->interface) {
1247 if (dev->compat_interface) {
1249 "Using legacy switch \"phy-mode\" property, because it is missing on port %d node. "
1250 "Please update your device tree.\n",
1252 p->interface = dev->compat_interface;
1254 p->interface = interface;
1257 if (interface && interface != p->interface) {
1258 prev_msg = " instead of ";
1259 prev_mode = phy_modes(interface);
1265 "Port%d: using phy mode %s%s%s\n",
1267 phy_modes(p->interface),
1271 /* enable cpu port */
1272 ksz9477_port_setup(dev, i, true);
1277 for (i = 0; i < dev->port_cnt; i++) {
1278 if (i == dev->cpu_port)
1282 ksz9477_port_stp_state_set(ds, i, BR_STATE_DISABLED);
1284 if (i < dev->phy_port_cnt)
1286 if (dev->chip_id == 0x00947700 && i == 6) {
1289 /* SGMII PHY detection code is not implemented yet. */
1295 static int ksz9477_setup(struct dsa_switch *ds)
1297 struct ksz_device *dev = ds->priv;
1300 dev->vlan_cache = devm_kcalloc(dev->dev, sizeof(struct vlan_table),
1301 dev->num_vlans, GFP_KERNEL);
1302 if (!dev->vlan_cache)
1305 ret = ksz9477_reset_switch(dev);
1307 dev_err(ds->dev, "failed to reset switch\n");
1311 /* Required for port partitioning. */
1312 ksz9477_cfg32(dev, REG_SW_QM_CTRL__4, UNICAST_VLAN_BOUNDARY,
1315 /* Do not work correctly with tail tagging. */
1316 ksz_cfg(dev, REG_SW_MAC_CTRL_0, SW_CHECK_LENGTH, false);
1318 /* accept packet up to 2000bytes */
1319 ksz_cfg(dev, REG_SW_MAC_CTRL_1, SW_LEGAL_PACKET_DISABLE, true);
1321 ksz9477_config_cpu_port(ds);
1323 ksz_cfg(dev, REG_SW_MAC_CTRL_1, MULTICAST_STORM_DISABLE, true);
1325 /* queue based egress rate limit */
1326 ksz_cfg(dev, REG_SW_MAC_CTRL_5, SW_OUT_RATE_LIMIT_QUEUE_BASED, true);
1328 /* enable global MIB counter freeze function */
1329 ksz_cfg(dev, REG_SW_MAC_CTRL_6, SW_MIB_COUNTER_FREEZE, true);
1332 ksz_cfg(dev, REG_SW_OPERATION, SW_START, true);
1334 ksz_init_mib_timer(dev);
1336 ds->configure_vlan_while_not_filtering = false;
1341 static const struct dsa_switch_ops ksz9477_switch_ops = {
1342 .get_tag_protocol = ksz9477_get_tag_protocol,
1343 .setup = ksz9477_setup,
1344 .phy_read = ksz9477_phy_read16,
1345 .phy_write = ksz9477_phy_write16,
1346 .phylink_mac_link_down = ksz_mac_link_down,
1347 .port_enable = ksz_enable_port,
1348 .get_strings = ksz9477_get_strings,
1349 .get_ethtool_stats = ksz_get_ethtool_stats,
1350 .get_sset_count = ksz_sset_count,
1351 .port_bridge_join = ksz_port_bridge_join,
1352 .port_bridge_leave = ksz_port_bridge_leave,
1353 .port_stp_state_set = ksz9477_port_stp_state_set,
1354 .port_fast_age = ksz_port_fast_age,
1355 .port_vlan_filtering = ksz9477_port_vlan_filtering,
1356 .port_vlan_add = ksz9477_port_vlan_add,
1357 .port_vlan_del = ksz9477_port_vlan_del,
1358 .port_fdb_dump = ksz9477_port_fdb_dump,
1359 .port_fdb_add = ksz9477_port_fdb_add,
1360 .port_fdb_del = ksz9477_port_fdb_del,
1361 .port_mdb_add = ksz9477_port_mdb_add,
1362 .port_mdb_del = ksz9477_port_mdb_del,
1363 .port_mirror_add = ksz9477_port_mirror_add,
1364 .port_mirror_del = ksz9477_port_mirror_del,
1367 static u32 ksz9477_get_port_addr(int port, int offset)
1369 return PORT_CTRL_ADDR(port, offset);
1372 static int ksz9477_switch_detect(struct ksz_device *dev)
1380 /* turn off SPI DO Edge select */
1381 ret = ksz_read8(dev, REG_SW_GLOBAL_SERIAL_CTRL_0, &data8);
1385 data8 &= ~SPI_AUTO_EDGE_DETECTION;
1386 ret = ksz_write8(dev, REG_SW_GLOBAL_SERIAL_CTRL_0, data8);
1391 ret = ksz_read32(dev, REG_CHIP_ID0__1, &id32);
1394 ret = ksz_read8(dev, REG_GLOBAL_OPTIONS, &data8);
1398 /* Number of ports can be reduced depending on chip. */
1399 dev->phy_port_cnt = 5;
1401 /* Default capability is gigabit capable. */
1402 dev->features = GBIT_SUPPORT;
1404 dev_dbg(dev->dev, "Switch detect: ID=%08x%02x\n", id32, data8);
1405 id_hi = (u8)(id32 >> 16);
1406 id_lo = (u8)(id32 >> 8);
1407 if ((id_lo & 0xf) == 3) {
1408 /* Chip is from KSZ9893 design. */
1409 dev_info(dev->dev, "Found KSZ9893\n");
1410 dev->features |= IS_9893;
1412 /* Chip does not support gigabit. */
1413 if (data8 & SW_QW_ABLE)
1414 dev->features &= ~GBIT_SUPPORT;
1415 dev->phy_port_cnt = 2;
1417 dev_info(dev->dev, "Found KSZ9477 or compatible\n");
1418 /* Chip uses new XMII register definitions. */
1419 dev->features |= NEW_XMII;
1421 /* Chip does not support gigabit. */
1422 if (!(data8 & SW_GIGABIT_ABLE))
1423 dev->features &= ~GBIT_SUPPORT;
1426 /* Change chip id to known ones so it can be matched against them. */
1427 id32 = (id_hi << 16) | (id_lo << 8);
1429 dev->chip_id = id32;
1434 struct ksz_chip_data {
1436 const char *dev_name;
1442 bool phy_errata_9477;
1445 static const struct ksz_chip_data ksz9477_switch_chips[] = {
1447 .chip_id = 0x00947700,
1448 .dev_name = "KSZ9477",
1452 .cpu_ports = 0x7F, /* can be configured as cpu port */
1453 .port_cnt = 7, /* total physical port count */
1454 .phy_errata_9477 = true,
1457 .chip_id = 0x00989700,
1458 .dev_name = "KSZ9897",
1462 .cpu_ports = 0x7F, /* can be configured as cpu port */
1463 .port_cnt = 7, /* total physical port count */
1464 .phy_errata_9477 = true,
1467 .chip_id = 0x00989300,
1468 .dev_name = "KSZ9893",
1472 .cpu_ports = 0x07, /* can be configured as cpu port */
1473 .port_cnt = 3, /* total port count */
1476 .chip_id = 0x00956700,
1477 .dev_name = "KSZ9567",
1481 .cpu_ports = 0x7F, /* can be configured as cpu port */
1482 .port_cnt = 7, /* total physical port count */
1483 .phy_errata_9477 = true,
1487 static int ksz9477_switch_init(struct ksz_device *dev)
1491 dev->ds->ops = &ksz9477_switch_ops;
1493 for (i = 0; i < ARRAY_SIZE(ksz9477_switch_chips); i++) {
1494 const struct ksz_chip_data *chip = &ksz9477_switch_chips[i];
1496 if (dev->chip_id == chip->chip_id) {
1497 dev->name = chip->dev_name;
1498 dev->num_vlans = chip->num_vlans;
1499 dev->num_alus = chip->num_alus;
1500 dev->num_statics = chip->num_statics;
1501 dev->port_cnt = chip->port_cnt;
1502 dev->cpu_ports = chip->cpu_ports;
1503 dev->phy_errata_9477 = chip->phy_errata_9477;
1509 /* no switch found */
1513 dev->port_mask = (1 << dev->port_cnt) - 1;
1515 dev->reg_mib_cnt = SWITCH_COUNTER_NUM;
1516 dev->mib_cnt = TOTAL_SWITCH_COUNTER_NUM;
1518 dev->ports = devm_kzalloc(dev->dev,
1519 dev->port_cnt * sizeof(struct ksz_port),
1523 for (i = 0; i < dev->port_cnt; i++) {
1524 mutex_init(&dev->ports[i].mib.cnt_mutex);
1525 dev->ports[i].mib.counters =
1526 devm_kzalloc(dev->dev,
1528 (TOTAL_SWITCH_COUNTER_NUM + 1),
1530 if (!dev->ports[i].mib.counters)
1534 /* set the real number of ports */
1535 dev->ds->num_ports = dev->port_cnt;
1540 static void ksz9477_switch_exit(struct ksz_device *dev)
1542 ksz9477_reset_switch(dev);
1545 static const struct ksz_dev_ops ksz9477_dev_ops = {
1546 .get_port_addr = ksz9477_get_port_addr,
1547 .cfg_port_member = ksz9477_cfg_port_member,
1548 .flush_dyn_mac_table = ksz9477_flush_dyn_mac_table,
1549 .port_setup = ksz9477_port_setup,
1550 .r_mib_cnt = ksz9477_r_mib_cnt,
1551 .r_mib_pkt = ksz9477_r_mib_pkt,
1552 .freeze_mib = ksz9477_freeze_mib,
1553 .port_init_cnt = ksz9477_port_init_cnt,
1554 .shutdown = ksz9477_reset_switch,
1555 .detect = ksz9477_switch_detect,
1556 .init = ksz9477_switch_init,
1557 .exit = ksz9477_switch_exit,
1560 int ksz9477_switch_register(struct ksz_device *dev)
1563 struct phy_device *phydev;
1565 ret = ksz_switch_register(dev, &ksz9477_dev_ops);
1569 for (i = 0; i < dev->phy_port_cnt; ++i) {
1570 if (!dsa_is_user_port(dev->ds, i))
1573 phydev = dsa_to_port(dev->ds, i)->slave->phydev;
1575 /* The MAC actually cannot run in 1000 half-duplex mode. */
1576 phy_remove_link_mode(phydev,
1577 ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
1579 /* PHY does not support gigabit. */
1580 if (!(dev->features & GBIT_SUPPORT))
1581 phy_remove_link_mode(phydev,
1582 ETHTOOL_LINK_MODE_1000baseT_Full_BIT);
1586 EXPORT_SYMBOL(ksz9477_switch_register);
1589 MODULE_DESCRIPTION("Microchip KSZ9477 Series Switch DSA Driver");
1590 MODULE_LICENSE("GPL");