Lines Matching +full:speed +full:- +full:bins

4  * Copyright (C) 2011-2013 Jonas Gorski <jogo@openwrt.org>
228 #define B53_MAX_MTU_25 (1536 - ETH_HLEN - VLAN_HLEN - ETH_FCS_LEN)
229 #define B53_MAX_MTU (9720 - ETH_HLEN - VLAN_HLEN - ETH_FCS_LEN)
235 b53_write8(dev, B53_ARLIO_PAGE, dev->vta_regs[0], VTA_START_CMD | op); in b53_do_vlan_op()
240 b53_read8(dev, B53_ARLIO_PAGE, dev->vta_regs[0], &vta); in b53_do_vlan_op()
247 return -EIO; in b53_do_vlan_op()
256 if (vlan->members) { in b53_set_vlan_entry()
257 entry = ((vlan->untag & VA_UNTAG_MASK_25) << in b53_set_vlan_entry()
258 VA_UNTAG_S_25) | vlan->members; in b53_set_vlan_entry()
259 if (dev->core_rev >= 3) in b53_set_vlan_entry()
271 if (vlan->members) in b53_set_vlan_entry()
272 entry = ((vlan->untag & VA_UNTAG_MASK_65) << in b53_set_vlan_entry()
273 VA_UNTAG_S_65) | vlan->members | VA_VALID_65; in b53_set_vlan_entry()
279 b53_write16(dev, B53_ARLIO_PAGE, dev->vta_regs[1], vid); in b53_set_vlan_entry()
280 b53_write32(dev, B53_ARLIO_PAGE, dev->vta_regs[2], in b53_set_vlan_entry()
281 (vlan->untag << VTE_UNTAG_S) | vlan->members); in b53_set_vlan_entry()
286 dev_dbg(dev->ds->dev, "VID: %d, members: 0x%04x, untag: 0x%04x\n", in b53_set_vlan_entry()
287 vid, vlan->members, vlan->untag); in b53_set_vlan_entry()
300 if (dev->core_rev >= 3) in b53_get_vlan_entry()
301 vlan->valid = !!(entry & VA_VALID_25_R4); in b53_get_vlan_entry()
303 vlan->valid = !!(entry & VA_VALID_25); in b53_get_vlan_entry()
304 vlan->members = entry & VA_MEMBER_MASK; in b53_get_vlan_entry()
305 vlan->untag = (entry >> VA_UNTAG_S_25) & VA_UNTAG_MASK_25; in b53_get_vlan_entry()
314 vlan->valid = !!(entry & VA_VALID_65); in b53_get_vlan_entry()
315 vlan->members = entry & VA_MEMBER_MASK; in b53_get_vlan_entry()
316 vlan->untag = (entry >> VA_UNTAG_S_65) & VA_UNTAG_MASK_65; in b53_get_vlan_entry()
320 b53_write16(dev, B53_ARLIO_PAGE, dev->vta_regs[1], vid); in b53_get_vlan_entry()
322 b53_read32(dev, B53_ARLIO_PAGE, dev->vta_regs[2], &entry); in b53_get_vlan_entry()
323 vlan->members = entry & VTE_MEMBERS; in b53_get_vlan_entry()
324 vlan->untag = (entry >> VTE_UNTAG_S) & VTE_MEMBERS; in b53_get_vlan_entry()
325 vlan->valid = true; in b53_get_vlan_entry()
437 dev->vlan_enabled = enable; in b53_enable_vlan()
439 dev_dbg(dev->dev, "Port %d VLAN enabled: %d, filtering: %d\n", in b53_enable_vlan()
449 return -EINVAL; in b53_set_jumbo()
452 port_mask = dev->enabled_ports; in b53_set_jumbo()
458 b53_write32(dev, B53_JUMBO_PAGE, dev->jumbo_pm_reg, port_mask); in b53_set_jumbo()
459 return b53_write16(dev, B53_JUMBO_PAGE, dev->jumbo_size_reg, max_size); in b53_set_jumbo()
481 return -ETIMEDOUT; in b53_flush_arl()
504 struct b53_device *dev = ds->priv; in b53_imp_vlan_setup()
509 * on a per-port basis such that we only have Port i and IMP in in b53_imp_vlan_setup()
568 struct b53_device *dev = ds->priv; in b53_eee_enable_set()
581 struct b53_device *dev = ds->priv; in b53_enable_port()
589 cpu_port = dsa_to_port(ds, port)->cpu_dp->index; in b53_enable_port()
595 if (dev->ops->irq_enable) in b53_enable_port()
596 ret = dev->ops->irq_enable(dev, port); in b53_enable_port()
610 pvlan |= dev->ports[port].vlan_ctl_mask; in b53_enable_port()
616 if (dev->ports[port].eee.eee_enabled) in b53_enable_port()
625 struct b53_device *dev = ds->priv; in b53_disable_port()
633 if (dev->ops->irq_disable) in b53_disable_port()
634 dev->ops->irq_disable(dev, port); in b53_disable_port()
640 struct b53_device *dev = ds->priv; in b53_brcm_hdr_setup()
641 bool tag_en = !(dev->tag_protocol == DSA_TAG_PROTO_NONE); in b53_brcm_hdr_setup()
700 * allow delivering frames to the per-port net_devices in b53_brcm_hdr_setup()
724 b53_brcm_hdr_setup(dev->ds, port); in b53_enable_cpu_port()
750 struct b53_device *dev = ds->priv; in b53_vlan_port_needs_forced_tagged()
752 return dev->tag_protocol == DSA_TAG_PROTO_NONE && dsa_is_cpu_port(ds, port); in b53_vlan_port_needs_forced_tagged()
757 struct b53_device *dev = ds->priv; in b53_configure_vlan()
767 for (i = def_vid; i < dev->num_vlans; i++) in b53_configure_vlan()
773 b53_enable_vlan(dev, -1, dev->vlan_enabled, ds->vlan_filtering); in b53_configure_vlan()
782 v = &dev->vlans[def_vid]; in b53_configure_vlan()
783 v->members |= BIT(i); in b53_configure_vlan()
785 v->untag = v->members; in b53_configure_vlan()
790 /* Upon initial call we have not set-up any VLANs, but upon in b53_configure_vlan()
793 for (vid = def_vid; vid < dev->num_vlans; vid++) { in b53_configure_vlan()
794 v = &dev->vlans[vid]; in b53_configure_vlan()
796 if (!v->members) in b53_configure_vlan()
809 int gpio = dev->reset_gpio; in b53_switch_reset_gpio()
814 /* Reset sequence: RESET low(50ms)->high(20ms) in b53_switch_reset_gpio()
822 dev->current_page = 0xff; in b53_switch_reset_gpio()
842 if (dev->chip_id == BCM58XX_DEVICE_ID || in b53_switch_reset()
843 dev->chip_id == BCM583XX_DEVICE_ID) { in b53_switch_reset()
854 } while (timeout-- > 0); in b53_switch_reset()
857 dev_err(dev->dev, in b53_switch_reset()
859 return -ETIMEDOUT; in b53_switch_reset()
873 dev_err(dev->dev, "Failed to enable switch!\n"); in b53_switch_reset()
874 return -EINVAL; in b53_switch_reset()
885 struct b53_device *priv = ds->priv; in b53_phy_read16()
889 if (priv->ops->phy_read16) in b53_phy_read16()
890 ret = priv->ops->phy_read16(priv, addr, reg, &value); in b53_phy_read16()
900 struct b53_device *priv = ds->priv; in b53_phy_write16()
902 if (priv->ops->phy_write16) in b53_phy_write16()
903 return priv->ops->phy_write16(priv, addr, reg, val); in b53_phy_write16()
911 memset(priv->vlans, 0, sizeof(*priv->vlans) * priv->num_vlans); in b53_reset_switch()
912 memset(priv->ports, 0, sizeof(*priv->ports) * priv->num_ports); in b53_reset_switch()
914 priv->serdes_lane = B53_INVALID_LANE; in b53_reset_switch()
924 b53_configure_vlan(priv->ds); in b53_apply_config()
970 /* These ports typically do not have built-in PHYs */ in b53_get_phy_device()
978 return mdiobus_get_phy(ds->user_mii_bus, port); in b53_get_phy_device()
984 struct b53_device *dev = ds->priv; in b53_get_strings()
1006 struct b53_device *dev = ds->priv; in b53_get_ethtool_stats()
1016 mutex_lock(&dev->stats_mutex); in b53_get_ethtool_stats()
1021 if (s->size == 8) { in b53_get_ethtool_stats()
1022 b53_read64(dev, B53_MIB_PAGE(port), s->offset, &val); in b53_get_ethtool_stats()
1026 b53_read32(dev, B53_MIB_PAGE(port), s->offset, in b53_get_ethtool_stats()
1033 mutex_unlock(&dev->stats_mutex); in b53_get_ethtool_stats()
1051 struct b53_device *dev = ds->priv; in b53_get_sset_count()
1079 for (i = 0; i < dev->num_vlans; i++) { in b53_devlink_vlan_table_get()
1080 vl = &dev->vlans[i]; in b53_devlink_vlan_table_get()
1081 if (vl->members) in b53_devlink_vlan_table_get()
1091 struct b53_device *dev = ds->priv; in b53_setup_devlink_resources()
1094 devlink_resource_size_params_init(&size_params, dev->num_vlans, in b53_setup_devlink_resources()
1095 dev->num_vlans, in b53_setup_devlink_resources()
1098 err = dsa_devlink_resource_register(ds, "VLAN", dev->num_vlans, in b53_setup_devlink_resources()
1118 struct b53_device *dev = ds->priv; in b53_setup()
1125 ds->untag_bridge_pvid = dev->tag_protocol == DSA_TAG_PROTO_NONE; in b53_setup()
1129 dev_err(ds->dev, "failed to reset switch\n"); in b53_setup()
1137 dev_err(ds->dev, "failed to apply configuration\n"); in b53_setup()
1144 for (port = 0; port < dev->num_ports; port++) { in b53_setup()
1164 if (port == dev->imp_port) { in b53_force_link()
1182 int speed, int duplex, in b53_force_port_config() argument
1188 if (port == dev->imp_port) { in b53_force_port_config()
1203 switch (speed) { in b53_force_port_config()
1217 dev_err(dev->dev, "unknown speed: %d\n", speed); in b53_force_port_config()
1232 struct b53_device *dev = ds->priv; in b53_adjust_63xx_rgmii()
1235 if (port == dev->imp_port) in b53_adjust_63xx_rgmii()
1260 if (port != dev->imp_port) { in b53_adjust_63xx_rgmii()
1269 dev_dbg(ds->dev, "Configured port %d for %s\n", port, in b53_adjust_63xx_rgmii()
1276 struct b53_device *dev = ds->priv; in b53_adjust_531x5_rgmii()
1279 if (port == dev->imp_port) in b53_adjust_531x5_rgmii()
1312 dev_info(ds->dev, "Configured port %d for %s\n", port, in b53_adjust_531x5_rgmii()
1318 struct b53_device *dev = ds->priv; in b53_adjust_5325_mii()
1332 dev_err(ds->dev, in b53_adjust_5325_mii()
1341 struct b53_device *dev = ds->priv; in b53_port_event()
1354 struct b53_device *dev = ds->priv; in b53_phylink_get_caps()
1357 __set_bit(PHY_INTERFACE_MODE_GMII, config->supported_interfaces); in b53_phylink_get_caps()
1370 __set_bit(PHY_INTERFACE_MODE_MII, config->supported_interfaces); in b53_phylink_get_caps()
1371 __set_bit(PHY_INTERFACE_MODE_REVMII, config->supported_interfaces); in b53_phylink_get_caps()
1373 config->mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE | in b53_phylink_get_caps()
1383 config->mac_capabilities |= MAC_1000; in b53_phylink_get_caps()
1386 if (dev->ops->phylink_get_caps) in b53_phylink_get_caps()
1387 dev->ops->phylink_get_caps(dev, port, config); in b53_phylink_get_caps()
1394 struct b53_device *dev = dp->ds->priv; in b53_phylink_mac_select_pcs()
1396 if (!dev->ops->phylink_mac_select_pcs) in b53_phylink_mac_select_pcs()
1399 return dev->ops->phylink_mac_select_pcs(dev, dp->index, interface); in b53_phylink_mac_select_pcs()
1407 phy_interface_t interface = state->interface; in b53_phylink_mac_config()
1408 struct dsa_switch *ds = dp->ds; in b53_phylink_mac_config()
1409 struct b53_device *dev = ds->priv; in b53_phylink_mac_config()
1410 int port = dp->index; in b53_phylink_mac_config()
1430 struct b53_device *dev = dp->ds->priv; in b53_phylink_mac_link_down()
1431 int port = dp->index; in b53_phylink_mac_link_down()
1442 dev->ops->serdes_link_set) in b53_phylink_mac_link_down()
1443 dev->ops->serdes_link_set(dev, port, mode, interface, false); in b53_phylink_mac_link_down()
1450 int speed, int duplex, in b53_phylink_mac_link_up() argument
1454 struct dsa_switch *ds = dp->ds; in b53_phylink_mac_link_up()
1455 struct b53_device *dev = ds->priv; in b53_phylink_mac_link_up()
1456 struct ethtool_keee *p = &dev->ports[dp->index].eee; in b53_phylink_mac_link_up()
1457 int port = dp->index; in b53_phylink_mac_link_up()
1460 /* Re-negotiate EEE if it was enabled already */ in b53_phylink_mac_link_up()
1461 p->eee_enabled = b53_eee_init(ds, port, phydev); in b53_phylink_mac_link_up()
1470 b53_force_port_config(dev, port, speed, duplex, in b53_phylink_mac_link_up()
1477 dev->ops->serdes_link_set) in b53_phylink_mac_link_up()
1478 dev->ops->serdes_link_set(dev, port, mode, interface, true); in b53_phylink_mac_link_up()
1484 struct b53_device *dev = ds->priv; in b53_vlan_filtering()
1486 b53_enable_vlan(dev, port, dev->vlan_enabled, vlan_filtering); in b53_vlan_filtering()
1495 struct b53_device *dev = ds->priv; in b53_vlan_prepare()
1497 if ((is5325(dev) || is5365(dev)) && vlan->vid == 0) in b53_vlan_prepare()
1498 return -EOPNOTSUPP; in b53_vlan_prepare()
1504 if (dev->chip_id == BCM7278_DEVICE_ID && port == 7 && in b53_vlan_prepare()
1505 !(vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED)) in b53_vlan_prepare()
1506 return -EINVAL; in b53_vlan_prepare()
1508 if (vlan->vid >= dev->num_vlans) in b53_vlan_prepare()
1509 return -ERANGE; in b53_vlan_prepare()
1511 b53_enable_vlan(dev, port, true, ds->vlan_filtering); in b53_vlan_prepare()
1520 struct b53_device *dev = ds->priv; in b53_vlan_add()
1521 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED; in b53_vlan_add()
1522 bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID; in b53_vlan_add()
1530 vl = &dev->vlans[vlan->vid]; in b53_vlan_add()
1532 b53_get_vlan_entry(dev, vlan->vid, vl); in b53_vlan_add()
1534 if (vlan->vid == 0 && vlan->vid == b53_default_pvid(dev)) in b53_vlan_add()
1537 vl->members |= BIT(port); in b53_vlan_add()
1539 vl->untag |= BIT(port); in b53_vlan_add()
1541 vl->untag &= ~BIT(port); in b53_vlan_add()
1543 b53_set_vlan_entry(dev, vlan->vid, vl); in b53_vlan_add()
1544 b53_fast_age_vlan(dev, vlan->vid); in b53_vlan_add()
1548 vlan->vid); in b53_vlan_add()
1549 b53_fast_age_vlan(dev, vlan->vid); in b53_vlan_add()
1559 struct b53_device *dev = ds->priv; in b53_vlan_del()
1560 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED; in b53_vlan_del()
1566 vl = &dev->vlans[vlan->vid]; in b53_vlan_del()
1568 b53_get_vlan_entry(dev, vlan->vid, vl); in b53_vlan_del()
1570 vl->members &= ~BIT(port); in b53_vlan_del()
1572 if (pvid == vlan->vid) in b53_vlan_del()
1576 vl->untag &= ~(BIT(port)); in b53_vlan_del()
1578 b53_set_vlan_entry(dev, vlan->vid, vl); in b53_vlan_del()
1579 b53_fast_age_vlan(dev, vlan->vid); in b53_vlan_del()
1588 /* Address Resolution Logic routines. Caller must hold &dev->arl_mutex. */
1600 } while (timeout--); in b53_arl_op_wait()
1602 dev_warn(dev->dev, "timeout waiting for ARL to finish: 0x%02x\n", reg); in b53_arl_op_wait()
1604 return -ETIMEDOUT; in b53_arl_op_wait()
1612 return -EINVAL; in b53_arl_rw_op()
1620 if (dev->vlan_enabled) in b53_arl_rw_op()
1640 bitmap_zero(free_bins, dev->num_arl_bins); in b53_arl_read()
1642 /* Read the bins */ in b53_arl_read()
1643 for (i = 0; i < dev->num_arl_bins; i++) { in b53_arl_read()
1659 if (dev->vlan_enabled && in b53_arl_read()
1666 *idx = find_first_bit(free_bins, dev->num_arl_bins); in b53_arl_read()
1667 return *idx >= dev->num_arl_bins ? -ENOSPC : -ENOENT; in b53_arl_read()
1679 /* Convert the array into a 64-bit MAC */ in b53_arl_op()
1698 case -ETIMEDOUT: in b53_arl_op()
1700 case -ENOSPC: in b53_arl_op()
1701 dev_dbg(dev->dev, "{%pM,%.4d} no space left in ARL\n", in b53_arl_op()
1704 case -ENOENT: in b53_arl_op()
1706 dev_dbg(dev->dev, "{%pM,%.4d} not found, using idx: %d\n", in b53_arl_op()
1711 dev_dbg(dev->dev, "{%pM,%.4d} found, using idx: %d\n", in b53_arl_op()
1749 struct b53_device *priv = ds->priv; in b53_fdb_add()
1756 return -EOPNOTSUPP; in b53_fdb_add()
1758 mutex_lock(&priv->arl_mutex); in b53_fdb_add()
1760 mutex_unlock(&priv->arl_mutex); in b53_fdb_add()
1770 struct b53_device *priv = ds->priv; in b53_fdb_del()
1773 mutex_lock(&priv->arl_mutex); in b53_fdb_del()
1775 mutex_unlock(&priv->arl_mutex); in b53_fdb_del()
1795 } while (timeout--); in b53_arl_search_wait()
1797 return -ETIMEDOUT; in b53_arl_search_wait()
1816 if (!ent->is_valid) in b53_fdb_copy()
1819 if (port != ent->port) in b53_fdb_copy()
1822 return cb(ent->mac, ent->vid, ent->is_static, data); in b53_fdb_copy()
1828 struct b53_device *priv = ds->priv; in b53_fdb_dump()
1834 mutex_lock(&priv->arl_mutex); in b53_fdb_dump()
1850 if (priv->num_arl_bins > 2) { in b53_fdb_dump()
1862 mutex_unlock(&priv->arl_mutex); in b53_fdb_dump()
1872 struct b53_device *priv = ds->priv; in b53_mdb_add()
1879 return -EOPNOTSUPP; in b53_mdb_add()
1881 mutex_lock(&priv->arl_mutex); in b53_mdb_add()
1882 ret = b53_arl_op(priv, 0, port, mdb->addr, mdb->vid, true); in b53_mdb_add()
1883 mutex_unlock(&priv->arl_mutex); in b53_mdb_add()
1893 struct b53_device *priv = ds->priv; in b53_mdb_del()
1896 mutex_lock(&priv->arl_mutex); in b53_mdb_del()
1897 ret = b53_arl_op(priv, 0, port, mdb->addr, mdb->vid, false); in b53_mdb_del()
1898 mutex_unlock(&priv->arl_mutex); in b53_mdb_del()
1900 dev_err(ds->dev, "failed to delete MDB entry\n"); in b53_mdb_del()
1909 struct b53_device *dev = ds->priv; in b53_br_join()
1910 s8 cpu_port = dsa_to_port(ds, port)->cpu_dp->index; in b53_br_join()
1917 if (dev->chip_id == BCM7278_DEVICE_ID && port == 7) in b53_br_join()
1918 return -EINVAL; in b53_br_join()
1943 dev->ports[i].vlan_ctl_mask = reg; in b53_br_join()
1952 dev->ports[port].vlan_ctl_mask = pvlan; in b53_br_join()
1960 struct b53_device *dev = ds->priv; in b53_br_leave()
1961 struct b53_vlan *vl = &dev->vlans[0]; in b53_br_leave()
1962 s8 cpu_port = dsa_to_port(ds, port)->cpu_dp->index; in b53_br_leave()
1976 dev->ports[port].vlan_ctl_mask = reg; in b53_br_leave()
1984 dev->ports[port].vlan_ctl_mask = pvlan; in b53_br_leave()
1997 vl->members |= BIT(port) | BIT(cpu_port); in b53_br_leave()
1998 vl->untag |= BIT(port) | BIT(cpu_port); in b53_br_leave()
2006 struct b53_device *dev = ds->priv; in b53_br_set_stp_state()
2027 dev_err(ds->dev, "invalid STP state: %d\n", state); in b53_br_set_stp_state()
2040 struct b53_device *dev = ds->priv; in b53_br_fast_age()
2043 dev_err(ds->dev, "fast ageing failed\n"); in b53_br_fast_age()
2052 return -EINVAL; in b53_br_flags_pre()
2063 b53_port_set_ucast_flood(ds->priv, port, in b53_br_flags()
2066 b53_port_set_mcast_flood(ds->priv, port, in b53_br_flags()
2069 b53_port_set_learning(ds->priv, port, in b53_br_flags()
2097 dev_warn(ds->dev, "Port %d is not Broadcom tag capable\n", in b53_can_enable_brcm_tags()
2105 dev_warn(ds->dev, in b53_can_enable_brcm_tags()
2120 struct b53_device *dev = ds->priv; in b53_get_tag_protocol()
2123 dev->tag_protocol = DSA_TAG_PROTO_NONE; in b53_get_tag_protocol()
2129 dev->tag_protocol = DSA_TAG_PROTO_BRCM_LEGACY; in b53_get_tag_protocol()
2136 if (dev->chip_id == BCM58XX_DEVICE_ID && port == B53_CPU_PORT) { in b53_get_tag_protocol()
2137 dev->tag_protocol = DSA_TAG_PROTO_BRCM_PREPEND; in b53_get_tag_protocol()
2141 dev->tag_protocol = DSA_TAG_PROTO_BRCM; in b53_get_tag_protocol()
2143 return dev->tag_protocol; in b53_get_tag_protocol()
2151 struct b53_device *dev = ds->priv; in b53_mirror_add()
2165 reg |= mirror->to_local_port; in b53_mirror_add()
2176 struct b53_device *dev = ds->priv; in b53_mirror_del()
2180 if (mirror->ingress) in b53_mirror_del()
2195 if (mirror->ingress) in b53_mirror_del()
2206 reg &= ~mirror->to_local_port; in b53_mirror_del()
2230 struct b53_device *dev = ds->priv; in b53_get_mac_eee()
2233 return -EOPNOTSUPP; in b53_get_mac_eee()
2241 struct b53_device *dev = ds->priv; in b53_set_mac_eee()
2242 struct ethtool_keee *p = &dev->ports[port].eee; in b53_set_mac_eee()
2245 return -EOPNOTSUPP; in b53_set_mac_eee()
2247 p->eee_enabled = e->eee_enabled; in b53_set_mac_eee()
2248 b53_eee_enable_set(ds, port, e->eee_enabled); in b53_set_mac_eee()
2256 struct b53_device *dev = ds->priv; in b53_change_mtu()
2274 struct b53_device *dev = ds->priv; in b53_get_max_mtu()
2639 if (chip->chip_id == dev->chip_id) { in b53_switch_init()
2640 if (!dev->enabled_ports) in b53_switch_init()
2641 dev->enabled_ports = chip->enabled_ports; in b53_switch_init()
2642 dev->name = chip->dev_name; in b53_switch_init()
2643 dev->duplex_reg = chip->duplex_reg; in b53_switch_init()
2644 dev->vta_regs[0] = chip->vta_regs[0]; in b53_switch_init()
2645 dev->vta_regs[1] = chip->vta_regs[1]; in b53_switch_init()
2646 dev->vta_regs[2] = chip->vta_regs[2]; in b53_switch_init()
2647 dev->jumbo_pm_reg = chip->jumbo_pm_reg; in b53_switch_init()
2648 dev->imp_port = chip->imp_port; in b53_switch_init()
2649 dev->num_vlans = chip->vlans; in b53_switch_init()
2650 dev->num_arl_bins = chip->arl_bins; in b53_switch_init()
2651 dev->num_arl_buckets = chip->arl_buckets; in b53_switch_init()
2668 /* BCM5325F - do not use port 4 */ in b53_switch_init()
2669 dev->enabled_ports &= ~BIT(4); in b53_switch_init()
2675 return -EINVAL; in b53_switch_init()
2682 dev->num_ports = fls(dev->enabled_ports); in b53_switch_init()
2684 dev->ds->num_ports = min_t(unsigned int, dev->num_ports, DSA_MAX_PORTS); in b53_switch_init()
2686 /* Include non standard CPU port built-in PHYs to be probed */ in b53_switch_init()
2688 for (i = 0; i < dev->num_ports; i++) { in b53_switch_init()
2689 if (!(dev->ds->phys_mii_mask & BIT(i)) && in b53_switch_init()
2690 !b53_possible_cpu_port(dev->ds, i)) in b53_switch_init()
2691 dev->ds->phys_mii_mask |= BIT(i); in b53_switch_init()
2695 dev->ports = devm_kcalloc(dev->dev, in b53_switch_init()
2696 dev->num_ports, sizeof(struct b53_port), in b53_switch_init()
2698 if (!dev->ports) in b53_switch_init()
2699 return -ENOMEM; in b53_switch_init()
2701 dev->vlans = devm_kcalloc(dev->dev, in b53_switch_init()
2702 dev->num_vlans, sizeof(struct b53_vlan), in b53_switch_init()
2704 if (!dev->vlans) in b53_switch_init()
2705 return -ENOMEM; in b53_switch_init()
2707 dev->reset_gpio = b53_switch_get_reset_gpio(dev); in b53_switch_init()
2708 if (dev->reset_gpio >= 0) { in b53_switch_init()
2709 ret = devm_gpio_request_one(dev->dev, dev->reset_gpio, in b53_switch_init()
2729 ds->dev = base; in b53_switch_alloc()
2735 ds->priv = dev; in b53_switch_alloc()
2736 dev->dev = base; in b53_switch_alloc()
2738 dev->ds = ds; in b53_switch_alloc()
2739 dev->priv = priv; in b53_switch_alloc()
2740 dev->ops = ops; in b53_switch_alloc()
2741 ds->ops = &b53_switch_ops; in b53_switch_alloc()
2742 ds->phylink_mac_ops = &b53_phylink_mac_ops; in b53_switch_alloc()
2743 dev->vlan_enabled = true; in b53_switch_alloc()
2749 ds->vlan_filtering_is_global = true; in b53_switch_alloc()
2751 mutex_init(&dev->reg_mutex); in b53_switch_alloc()
2752 mutex_init(&dev->stats_mutex); in b53_switch_alloc()
2753 mutex_init(&dev->arl_mutex); in b53_switch_alloc()
2783 dev->chip_id = BCM5325_DEVICE_ID; in b53_switch_detect()
2785 dev->chip_id = BCM5365_DEVICE_ID; in b53_switch_detect()
2791 dev->chip_id = id8; in b53_switch_detect()
2808 dev->chip_id = id32; in b53_switch_detect()
2811 dev_err(dev->dev, in b53_switch_detect()
2814 return -ENODEV; in b53_switch_detect()
2818 if (dev->chip_id == BCM5325_DEVICE_ID) in b53_switch_detect()
2820 &dev->core_rev); in b53_switch_detect()
2823 &dev->core_rev); in b53_switch_detect()
2831 if (dev->pdata) { in b53_switch_register()
2832 dev->chip_id = dev->pdata->chip_id; in b53_switch_register()
2833 dev->enabled_ports = dev->pdata->enabled_ports; in b53_switch_register()
2836 if (!dev->chip_id && b53_switch_detect(dev)) in b53_switch_register()
2837 return -EINVAL; in b53_switch_register()
2843 dev_info(dev->dev, "found switch: %s, rev %i\n", in b53_switch_register()
2844 dev->name, dev->core_rev); in b53_switch_register()
2846 return dsa_register_switch(dev->ds); in b53_switch_register()