1 /* SPDX-License-Identifier: GPL-2.0 */
7 #define ocelot_to_felix(o) container_of((o), struct felix, ocelot)
8 #define FELIX_MAC_QUIRKS OCELOT_QUIRK_PCS_PERFORMS_RATE_ADAPTATION
10 #define OCELOT_PORT_MODE_NONE 0
11 #define OCELOT_PORT_MODE_INTERNAL BIT(0)
12 #define OCELOT_PORT_MODE_SGMII BIT(1)
13 #define OCELOT_PORT_MODE_QSGMII BIT(2)
14 #define OCELOT_PORT_MODE_2500BASEX BIT(3)
15 #define OCELOT_PORT_MODE_USXGMII BIT(4)
16 #define OCELOT_PORT_MODE_1000BASEX BIT(5)
20 /* Platform-specific information */
22 /* Hardcoded resources provided by the hardware instantiation. */
23 const struct resource *resources;
25 /* Names of the mandatory resources that will be requested during
26 * probe. Must have TARGET_MAX elements, since it is indexed by target.
28 const char *const *resource_names;
29 const struct reg_field *regfields;
30 const u32 *const *map;
31 const struct ocelot_ops *ops;
32 const u32 *port_modes;
36 struct vcap_props *vcap;
41 const struct ptp_clock_info *ptp_caps;
44 /* Some Ocelot switches are integrated into the SoC without the
45 * extraction IRQ line connected to the ARM GIC. By enabling this
46 * workaround, the few packets that are delivered to the CPU port
47 * module (currently only PTP) are copied not only to the hardware CPU
48 * port module, but also to the 802.1Q Ethernet CPU port, and polling
49 * the extraction registers is triggered once the DSA tagger sees a PTP
50 * frame. The Ethernet frame is only used as a notification: it is
51 * dropped, and the original frame is extracted over MMIO and annotated
52 * with the RX timestamp.
54 bool quirk_no_xtr_irq;
56 int (*mdio_bus_alloc)(struct ocelot *ocelot);
57 void (*mdio_bus_free)(struct ocelot *ocelot);
58 int (*port_setup_tc)(struct dsa_switch *ds, int port,
59 enum tc_setup_type type, void *type_data);
60 void (*tas_guard_bands_update)(struct ocelot *ocelot, int port);
61 void (*port_sched_speed_set)(struct ocelot *ocelot, int port,
63 void (*phylink_mac_config)(struct ocelot *ocelot, int port,
65 const struct phylink_link_state *state);
66 int (*configure_serdes)(struct ocelot *ocelot, int port,
67 struct device_node *portnp);
70 /* Methods for initializing the hardware resources specific to a tagging
71 * protocol (like the NPI port, for "ocelot" or "seville", or the VCAP TCAMs,
72 * for "ocelot-8021q").
73 * It is important that the resources configured here do not have side effects
74 * for the other tagging protocols. If that is the case, their configuration
75 * needs to go to felix_tag_proto_setup_shared().
77 struct felix_tag_proto_ops {
78 int (*setup)(struct dsa_switch *ds);
79 void (*teardown)(struct dsa_switch *ds);
80 unsigned long (*get_host_fwd_mask)(struct dsa_switch *ds);
81 int (*change_master)(struct dsa_switch *ds, int port,
82 struct net_device *master,
83 struct netlink_ext_ack *extack);
86 extern const struct dsa_switch_ops felix_switch_ops;
88 /* DSA glue / front-end for struct ocelot */
90 struct dsa_switch *ds;
91 const struct felix_info *info;
93 struct mii_bus *imdio;
94 struct phylink_pcs **pcs;
95 resource_size_t switch_base;
96 enum dsa_tag_protocol tag_proto;
97 const struct felix_tag_proto_ops *tag_proto_ops;
98 struct kthread_worker *xmit_worker;
99 unsigned long host_flood_uc_mask;
100 unsigned long host_flood_mc_mask;
103 struct net_device *felix_port_to_netdev(struct ocelot *ocelot, int port);
104 int felix_netdev_to_port(struct net_device *dev);