Lines Matching +full:bcm7445 +full:- +full:gpio
4 * Copyright (C) 2011-2013 Jonas Gorski <[email protected]>
22 #include <linux/gpio.h>
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()
759 struct b53_device *dev = ds->priv; in b53_vlan_port_needs_forced_tagged()
761 return dev->tag_protocol == DSA_TAG_PROTO_NONE && dsa_is_cpu_port(ds, port); in b53_vlan_port_needs_forced_tagged()
766 struct b53_device *dev = ds->priv; in b53_configure_vlan()
776 for (i = def_vid; i < dev->num_vlans; i++) in b53_configure_vlan()
782 b53_enable_vlan(dev, -1, dev->vlan_enabled, ds->vlan_filtering); in b53_configure_vlan()
791 v = &dev->vlans[def_vid]; in b53_configure_vlan()
792 v->members |= BIT(i); in b53_configure_vlan()
794 v->untag = v->members; in b53_configure_vlan()
799 /* Upon initial call we have not set-up any VLANs, but upon in b53_configure_vlan()
802 for (vid = def_vid; vid < dev->num_vlans; vid++) { in b53_configure_vlan()
803 v = &dev->vlans[vid]; in b53_configure_vlan()
805 if (!v->members) in b53_configure_vlan()
818 int gpio = dev->reset_gpio; in b53_switch_reset_gpio() local
820 if (gpio < 0) in b53_switch_reset_gpio()
823 /* Reset sequence: RESET low(50ms)->high(20ms) in b53_switch_reset_gpio()
825 gpio_set_value(gpio, 0); in b53_switch_reset_gpio()
828 gpio_set_value(gpio, 1); in b53_switch_reset_gpio()
831 dev->current_page = 0xff; in b53_switch_reset_gpio()
851 if (dev->chip_id == BCM58XX_DEVICE_ID || in b53_switch_reset()
852 dev->chip_id == BCM583XX_DEVICE_ID) { in b53_switch_reset()
863 } while (timeout-- > 0); in b53_switch_reset()
866 dev_err(dev->dev, in b53_switch_reset()
868 return -ETIMEDOUT; in b53_switch_reset()
882 dev_err(dev->dev, "Failed to enable switch!\n"); in b53_switch_reset()
883 return -EINVAL; in b53_switch_reset()
895 struct b53_device *priv = ds->priv; in b53_phy_read16()
899 if (priv->ops->phy_read16) in b53_phy_read16()
900 ret = priv->ops->phy_read16(priv, addr, reg, &value); in b53_phy_read16()
910 struct b53_device *priv = ds->priv; in b53_phy_write16()
912 if (priv->ops->phy_write16) in b53_phy_write16()
913 return priv->ops->phy_write16(priv, addr, reg, val); in b53_phy_write16()
921 memset(priv->vlans, 0, sizeof(*priv->vlans) * priv->num_vlans); in b53_reset_switch()
922 memset(priv->ports, 0, sizeof(*priv->ports) * priv->num_ports); in b53_reset_switch()
924 priv->serdes_lane = B53_INVALID_LANE; in b53_reset_switch()
934 b53_configure_vlan(priv->ds); in b53_apply_config()
980 /* These ports typically do not have built-in PHYs */ in b53_get_phy_device()
988 return mdiobus_get_phy(ds->user_mii_bus, port); in b53_get_phy_device()
994 struct b53_device *dev = ds->priv; in b53_get_strings()
1015 struct b53_device *dev = ds->priv; in b53_get_ethtool_stats()
1025 mutex_lock(&dev->stats_mutex); in b53_get_ethtool_stats()
1030 if (s->size == 8) { in b53_get_ethtool_stats()
1031 b53_read64(dev, B53_MIB_PAGE(port), s->offset, &val); in b53_get_ethtool_stats()
1035 b53_read32(dev, B53_MIB_PAGE(port), s->offset, in b53_get_ethtool_stats()
1042 mutex_unlock(&dev->stats_mutex); in b53_get_ethtool_stats()
1060 struct b53_device *dev = ds->priv; in b53_get_sset_count()
1088 for (i = 0; i < dev->num_vlans; i++) { in b53_devlink_vlan_table_get()
1089 vl = &dev->vlans[i]; in b53_devlink_vlan_table_get()
1090 if (vl->members) in b53_devlink_vlan_table_get()
1100 struct b53_device *dev = ds->priv; in b53_setup_devlink_resources()
1103 devlink_resource_size_params_init(&size_params, dev->num_vlans, in b53_setup_devlink_resources()
1104 dev->num_vlans, in b53_setup_devlink_resources()
1107 err = dsa_devlink_resource_register(ds, "VLAN", dev->num_vlans, in b53_setup_devlink_resources()
1127 struct b53_device *dev = ds->priv; in b53_setup()
1134 ds->untag_bridge_pvid = dev->tag_protocol == DSA_TAG_PROTO_NONE; in b53_setup()
1138 dev_err(ds->dev, "failed to reset switch\n"); in b53_setup()
1146 dev_err(ds->dev, "failed to apply configuration\n"); in b53_setup()
1153 for (port = 0; port < dev->num_ports; port++) { in b53_setup()
1173 if (port == dev->imp_port) { in b53_force_link()
1197 if (port == dev->imp_port) { in b53_force_port_config()
1226 dev_err(dev->dev, "unknown speed: %d\n", speed); in b53_force_port_config()
1241 struct b53_device *dev = ds->priv; in b53_adjust_63xx_rgmii()
1244 if (port == dev->imp_port) in b53_adjust_63xx_rgmii()
1269 if (port != dev->imp_port) { in b53_adjust_63xx_rgmii()
1278 dev_dbg(ds->dev, "Configured port %d for %s\n", port, in b53_adjust_63xx_rgmii()
1285 struct b53_device *dev = ds->priv; in b53_adjust_531x5_rgmii()
1288 if (port == dev->imp_port) in b53_adjust_531x5_rgmii()
1321 dev_info(ds->dev, "Configured port %d for %s\n", port, in b53_adjust_531x5_rgmii()
1327 struct b53_device *dev = ds->priv; in b53_adjust_5325_mii()
1341 dev_err(ds->dev, in b53_adjust_5325_mii()
1350 struct b53_device *dev = ds->priv; in b53_port_event()
1363 struct b53_device *dev = ds->priv; in b53_phylink_get_caps()
1366 __set_bit(PHY_INTERFACE_MODE_GMII, config->supported_interfaces); in b53_phylink_get_caps()
1379 __set_bit(PHY_INTERFACE_MODE_MII, config->supported_interfaces); in b53_phylink_get_caps()
1380 __set_bit(PHY_INTERFACE_MODE_REVMII, config->supported_interfaces); in b53_phylink_get_caps()
1382 config->mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE | in b53_phylink_get_caps()
1392 config->mac_capabilities |= MAC_1000; in b53_phylink_get_caps()
1395 if (dev->ops->phylink_get_caps) in b53_phylink_get_caps()
1396 dev->ops->phylink_get_caps(dev, port, config); in b53_phylink_get_caps()
1403 struct b53_device *dev = dp->ds->priv; in b53_phylink_mac_select_pcs()
1405 if (!dev->ops->phylink_mac_select_pcs) in b53_phylink_mac_select_pcs()
1408 return dev->ops->phylink_mac_select_pcs(dev, dp->index, interface); in b53_phylink_mac_select_pcs()
1416 phy_interface_t interface = state->interface; in b53_phylink_mac_config()
1417 struct dsa_switch *ds = dp->ds; in b53_phylink_mac_config()
1418 struct b53_device *dev = ds->priv; in b53_phylink_mac_config()
1419 int port = dp->index; in b53_phylink_mac_config()
1439 struct b53_device *dev = dp->ds->priv; in b53_phylink_mac_link_down()
1440 int port = dp->index; in b53_phylink_mac_link_down()
1451 dev->ops->serdes_link_set) in b53_phylink_mac_link_down()
1452 dev->ops->serdes_link_set(dev, port, mode, interface, false); in b53_phylink_mac_link_down()
1463 struct dsa_switch *ds = dp->ds; in b53_phylink_mac_link_up()
1464 struct b53_device *dev = ds->priv; in b53_phylink_mac_link_up()
1465 struct ethtool_keee *p = &dev->ports[dp->index].eee; in b53_phylink_mac_link_up()
1466 int port = dp->index; in b53_phylink_mac_link_up()
1469 /* Re-negotiate EEE if it was enabled already */ in b53_phylink_mac_link_up()
1470 p->eee_enabled = b53_eee_init(ds, port, phydev); in b53_phylink_mac_link_up()
1486 dev->ops->serdes_link_set) in b53_phylink_mac_link_up()
1487 dev->ops->serdes_link_set(dev, port, mode, interface, true); in b53_phylink_mac_link_up()
1493 struct b53_device *dev = ds->priv; in b53_vlan_filtering()
1495 b53_enable_vlan(dev, port, dev->vlan_enabled, vlan_filtering); in b53_vlan_filtering()
1504 struct b53_device *dev = ds->priv; in b53_vlan_prepare()
1506 if ((is5325(dev) || is5365(dev)) && vlan->vid == 0) in b53_vlan_prepare()
1507 return -EOPNOTSUPP; in b53_vlan_prepare()
1513 if (dev->chip_id == BCM7278_DEVICE_ID && port == 7 && in b53_vlan_prepare()
1514 !(vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED)) in b53_vlan_prepare()
1515 return -EINVAL; in b53_vlan_prepare()
1517 if (vlan->vid >= dev->num_vlans) in b53_vlan_prepare()
1518 return -ERANGE; in b53_vlan_prepare()
1520 b53_enable_vlan(dev, port, true, ds->vlan_filtering); in b53_vlan_prepare()
1529 struct b53_device *dev = ds->priv; in b53_vlan_add()
1530 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED; in b53_vlan_add()
1531 bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID; in b53_vlan_add()
1539 vl = &dev->vlans[vlan->vid]; in b53_vlan_add()
1541 b53_get_vlan_entry(dev, vlan->vid, vl); in b53_vlan_add()
1543 if (vlan->vid == 0 && vlan->vid == b53_default_pvid(dev)) in b53_vlan_add()
1546 vl->members |= BIT(port); in b53_vlan_add()
1548 vl->untag |= BIT(port); in b53_vlan_add()
1550 vl->untag &= ~BIT(port); in b53_vlan_add()
1552 b53_set_vlan_entry(dev, vlan->vid, vl); in b53_vlan_add()
1553 b53_fast_age_vlan(dev, vlan->vid); in b53_vlan_add()
1557 vlan->vid); in b53_vlan_add()
1558 b53_fast_age_vlan(dev, vlan->vid); in b53_vlan_add()
1568 struct b53_device *dev = ds->priv; in b53_vlan_del()
1569 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED; in b53_vlan_del()
1575 vl = &dev->vlans[vlan->vid]; in b53_vlan_del()
1577 b53_get_vlan_entry(dev, vlan->vid, vl); in b53_vlan_del()
1579 vl->members &= ~BIT(port); in b53_vlan_del()
1581 if (pvid == vlan->vid) in b53_vlan_del()
1585 vl->untag &= ~(BIT(port)); in b53_vlan_del()
1587 b53_set_vlan_entry(dev, vlan->vid, vl); in b53_vlan_del()
1588 b53_fast_age_vlan(dev, vlan->vid); in b53_vlan_del()
1597 /* Address Resolution Logic routines. Caller must hold &dev->arl_mutex. */
1609 } while (timeout--); in b53_arl_op_wait()
1611 dev_warn(dev->dev, "timeout waiting for ARL to finish: 0x%02x\n", reg); in b53_arl_op_wait()
1613 return -ETIMEDOUT; in b53_arl_op_wait()
1621 return -EINVAL; in b53_arl_rw_op()
1629 if (dev->vlan_enabled) in b53_arl_rw_op()
1649 bitmap_zero(free_bins, dev->num_arl_bins); in b53_arl_read()
1652 for (i = 0; i < dev->num_arl_bins; i++) { in b53_arl_read()
1668 if (dev->vlan_enabled && in b53_arl_read()
1675 *idx = find_first_bit(free_bins, dev->num_arl_bins); in b53_arl_read()
1676 return *idx >= dev->num_arl_bins ? -ENOSPC : -ENOENT; in b53_arl_read()
1688 /* Convert the array into a 64-bit MAC */ in b53_arl_op()
1707 case -ETIMEDOUT: in b53_arl_op()
1709 case -ENOSPC: in b53_arl_op()
1710 dev_dbg(dev->dev, "{%pM,%.4d} no space left in ARL\n", in b53_arl_op()
1713 case -ENOENT: in b53_arl_op()
1715 dev_dbg(dev->dev, "{%pM,%.4d} not found, using idx: %d\n", in b53_arl_op()
1720 dev_dbg(dev->dev, "{%pM,%.4d} found, using idx: %d\n", in b53_arl_op()
1758 struct b53_device *priv = ds->priv; in b53_fdb_add()
1765 return -EOPNOTSUPP; in b53_fdb_add()
1767 mutex_lock(&priv->arl_mutex); in b53_fdb_add()
1769 mutex_unlock(&priv->arl_mutex); in b53_fdb_add()
1779 struct b53_device *priv = ds->priv; in b53_fdb_del()
1782 mutex_lock(&priv->arl_mutex); in b53_fdb_del()
1784 mutex_unlock(&priv->arl_mutex); in b53_fdb_del()
1804 } while (timeout--); in b53_arl_search_wait()
1806 return -ETIMEDOUT; in b53_arl_search_wait()
1825 if (!ent->is_valid) in b53_fdb_copy()
1828 if (port != ent->port) in b53_fdb_copy()
1831 return cb(ent->mac, ent->vid, ent->is_static, data); in b53_fdb_copy()
1837 struct b53_device *priv = ds->priv; in b53_fdb_dump()
1843 mutex_lock(&priv->arl_mutex); in b53_fdb_dump()
1859 if (priv->num_arl_bins > 2) { in b53_fdb_dump()
1871 mutex_unlock(&priv->arl_mutex); in b53_fdb_dump()
1881 struct b53_device *priv = ds->priv; in b53_mdb_add()
1888 return -EOPNOTSUPP; in b53_mdb_add()
1890 mutex_lock(&priv->arl_mutex); in b53_mdb_add()
1891 ret = b53_arl_op(priv, 0, port, mdb->addr, mdb->vid, true); in b53_mdb_add()
1892 mutex_unlock(&priv->arl_mutex); in b53_mdb_add()
1902 struct b53_device *priv = ds->priv; in b53_mdb_del()
1905 mutex_lock(&priv->arl_mutex); in b53_mdb_del()
1906 ret = b53_arl_op(priv, 0, port, mdb->addr, mdb->vid, false); in b53_mdb_del()
1907 mutex_unlock(&priv->arl_mutex); in b53_mdb_del()
1909 dev_err(ds->dev, "failed to delete MDB entry\n"); in b53_mdb_del()
1918 struct b53_device *dev = ds->priv; in b53_br_join()
1919 s8 cpu_port = dsa_to_port(ds, port)->cpu_dp->index; in b53_br_join()
1926 if (dev->chip_id == BCM7278_DEVICE_ID && port == 7) in b53_br_join()
1927 return -EINVAL; in b53_br_join()
1952 dev->ports[i].vlan_ctl_mask = reg; in b53_br_join()
1961 dev->ports[port].vlan_ctl_mask = pvlan; in b53_br_join()
1969 struct b53_device *dev = ds->priv; in b53_br_leave()
1970 struct b53_vlan *vl = &dev->vlans[0]; in b53_br_leave()
1971 s8 cpu_port = dsa_to_port(ds, port)->cpu_dp->index; in b53_br_leave()
1985 dev->ports[port].vlan_ctl_mask = reg; in b53_br_leave()
1993 dev->ports[port].vlan_ctl_mask = pvlan; in b53_br_leave()
2006 vl->members |= BIT(port) | BIT(cpu_port); in b53_br_leave()
2007 vl->untag |= BIT(port) | BIT(cpu_port); in b53_br_leave()
2015 struct b53_device *dev = ds->priv; in b53_br_set_stp_state()
2036 dev_err(ds->dev, "invalid STP state: %d\n", state); in b53_br_set_stp_state()
2049 struct b53_device *dev = ds->priv; in b53_br_fast_age()
2052 dev_err(ds->dev, "fast ageing failed\n"); in b53_br_fast_age()
2061 return -EINVAL; in b53_br_flags_pre()
2072 b53_port_set_ucast_flood(ds->priv, port, in b53_br_flags()
2075 b53_port_set_mcast_flood(ds->priv, port, in b53_br_flags()
2078 b53_port_set_learning(ds->priv, port, in b53_br_flags()
2106 dev_warn(ds->dev, "Port %d is not Broadcom tag capable\n", in b53_can_enable_brcm_tags()
2114 dev_warn(ds->dev, in b53_can_enable_brcm_tags()
2129 struct b53_device *dev = ds->priv; in b53_get_tag_protocol()
2132 dev->tag_protocol = DSA_TAG_PROTO_NONE; in b53_get_tag_protocol()
2138 dev->tag_protocol = DSA_TAG_PROTO_BRCM_LEGACY; in b53_get_tag_protocol()
2145 if (dev->chip_id == BCM58XX_DEVICE_ID && port == B53_CPU_PORT) { in b53_get_tag_protocol()
2146 dev->tag_protocol = DSA_TAG_PROTO_BRCM_PREPEND; in b53_get_tag_protocol()
2150 dev->tag_protocol = DSA_TAG_PROTO_BRCM; in b53_get_tag_protocol()
2152 return dev->tag_protocol; in b53_get_tag_protocol()
2160 struct b53_device *dev = ds->priv; in b53_mirror_add()
2174 reg |= mirror->to_local_port; in b53_mirror_add()
2185 struct b53_device *dev = ds->priv; in b53_mirror_del()
2189 if (mirror->ingress) in b53_mirror_del()
2204 if (mirror->ingress) in b53_mirror_del()
2215 reg &= ~mirror->to_local_port; in b53_mirror_del()
2239 struct b53_device *dev = ds->priv; in b53_support_eee()
2247 struct b53_device *dev = ds->priv; in b53_set_mac_eee()
2248 struct ethtool_keee *p = &dev->ports[port].eee; in b53_set_mac_eee()
2250 p->eee_enabled = e->eee_enabled; in b53_set_mac_eee()
2251 b53_eee_enable_set(ds, port, e->eee_enabled); in b53_set_mac_eee()
2259 struct b53_device *dev = ds->priv; in b53_change_mtu()
2277 struct b53_device *dev = ds->priv; in b53_get_max_mtu()
2594 .dev_name = "BCM7445",
2642 if (chip->chip_id == dev->chip_id) { in b53_switch_init()
2643 if (!dev->enabled_ports) in b53_switch_init()
2644 dev->enabled_ports = chip->enabled_ports; in b53_switch_init()
2645 dev->name = chip->dev_name; in b53_switch_init()
2646 dev->duplex_reg = chip->duplex_reg; in b53_switch_init()
2647 dev->vta_regs[0] = chip->vta_regs[0]; in b53_switch_init()
2648 dev->vta_regs[1] = chip->vta_regs[1]; in b53_switch_init()
2649 dev->vta_regs[2] = chip->vta_regs[2]; in b53_switch_init()
2650 dev->jumbo_pm_reg = chip->jumbo_pm_reg; in b53_switch_init()
2651 dev->imp_port = chip->imp_port; in b53_switch_init()
2652 dev->num_vlans = chip->vlans; in b53_switch_init()
2653 dev->num_arl_bins = chip->arl_bins; in b53_switch_init()
2654 dev->num_arl_buckets = chip->arl_buckets; in b53_switch_init()
2671 /* BCM5325F - do not use port 4 */ in b53_switch_init()
2672 dev->enabled_ports &= ~BIT(4); in b53_switch_init()
2678 return -EINVAL; in b53_switch_init()
2685 dev->num_ports = fls(dev->enabled_ports); in b53_switch_init()
2687 dev->ds->num_ports = min_t(unsigned int, dev->num_ports, DSA_MAX_PORTS); in b53_switch_init()
2689 /* Include non standard CPU port built-in PHYs to be probed */ in b53_switch_init()
2691 for (i = 0; i < dev->num_ports; i++) { in b53_switch_init()
2692 if (!(dev->ds->phys_mii_mask & BIT(i)) && in b53_switch_init()
2693 !b53_possible_cpu_port(dev->ds, i)) in b53_switch_init()
2694 dev->ds->phys_mii_mask |= BIT(i); in b53_switch_init()
2698 dev->ports = devm_kcalloc(dev->dev, in b53_switch_init()
2699 dev->num_ports, sizeof(struct b53_port), in b53_switch_init()
2701 if (!dev->ports) in b53_switch_init()
2702 return -ENOMEM; in b53_switch_init()
2704 dev->vlans = devm_kcalloc(dev->dev, in b53_switch_init()
2705 dev->num_vlans, sizeof(struct b53_vlan), in b53_switch_init()
2707 if (!dev->vlans) in b53_switch_init()
2708 return -ENOMEM; in b53_switch_init()
2710 dev->reset_gpio = b53_switch_get_reset_gpio(dev); in b53_switch_init()
2711 if (dev->reset_gpio >= 0) { in b53_switch_init()
2712 ret = devm_gpio_request_one(dev->dev, dev->reset_gpio, in b53_switch_init()
2732 ds->dev = base; in b53_switch_alloc()
2738 ds->priv = dev; in b53_switch_alloc()
2739 dev->dev = base; in b53_switch_alloc()
2741 dev->ds = ds; in b53_switch_alloc()
2742 dev->priv = priv; in b53_switch_alloc()
2743 dev->ops = ops; in b53_switch_alloc()
2744 ds->ops = &b53_switch_ops; in b53_switch_alloc()
2745 ds->phylink_mac_ops = &b53_phylink_mac_ops; in b53_switch_alloc()
2746 dev->vlan_enabled = true; in b53_switch_alloc()
2752 ds->vlan_filtering_is_global = true; in b53_switch_alloc()
2754 mutex_init(&dev->reg_mutex); in b53_switch_alloc()
2755 mutex_init(&dev->stats_mutex); in b53_switch_alloc()
2756 mutex_init(&dev->arl_mutex); in b53_switch_alloc()
2786 dev->chip_id = BCM5325_DEVICE_ID; in b53_switch_detect()
2788 dev->chip_id = BCM5365_DEVICE_ID; in b53_switch_detect()
2794 dev->chip_id = id8; in b53_switch_detect()
2811 dev->chip_id = id32; in b53_switch_detect()
2814 dev_err(dev->dev, in b53_switch_detect()
2817 return -ENODEV; in b53_switch_detect()
2821 if (dev->chip_id == BCM5325_DEVICE_ID) in b53_switch_detect()
2823 &dev->core_rev); in b53_switch_detect()
2826 &dev->core_rev); in b53_switch_detect()
2834 if (dev->pdata) { in b53_switch_register()
2835 dev->chip_id = dev->pdata->chip_id; in b53_switch_register()
2836 dev->enabled_ports = dev->pdata->enabled_ports; in b53_switch_register()
2839 if (!dev->chip_id && b53_switch_detect(dev)) in b53_switch_register()
2840 return -EINVAL; in b53_switch_register()
2846 dev_info(dev->dev, "found switch: %s, rev %i\n", in b53_switch_register()
2847 dev->name, dev->core_rev); in b53_switch_register()
2849 return dsa_register_switch(dev->ds); in b53_switch_register()