1 /* SPDX-License-Identifier: (GPL-2.0 OR MIT) */ 2 /* 3 * Microsemi Ocelot Switch driver 4 * 5 * Copyright (c) 2017 Microsemi Corporation 6 */ 7 8 #ifndef _MSCC_OCELOT_H_ 9 #define _MSCC_OCELOT_H_ 10 11 #include <linux/bitops.h> 12 #include <linux/etherdevice.h> 13 #include <linux/if_vlan.h> 14 #include <linux/net_tstamp.h> 15 #include <linux/phylink.h> 16 #include <linux/platform_device.h> 17 #include <linux/regmap.h> 18 19 #include <soc/mscc/ocelot_qsys.h> 20 #include <soc/mscc/ocelot_sys.h> 21 #include <soc/mscc/ocelot_dev.h> 22 #include <soc/mscc/ocelot_ana.h> 23 #include <soc/mscc/ocelot_ptp.h> 24 #include <soc/mscc/ocelot.h> 25 #include "ocelot_rew.h" 26 #include "ocelot_qs.h" 27 28 #define OCELOT_VLAN_UNAWARE_PVID 0 29 #define OCELOT_BUFFER_CELL_SZ 60 30 31 #define OCELOT_STATS_CHECK_DELAY (2 * HZ) 32 33 #define OCELOT_PTP_QUEUE_SZ 128 34 35 struct ocelot_port_tc { 36 bool block_shared; 37 unsigned long offload_cnt; 38 39 unsigned long police_id; 40 }; 41 42 struct ocelot_port_private { 43 struct ocelot_port port; 44 struct net_device *dev; 45 struct phylink *phylink; 46 struct phylink_config phylink_config; 47 u8 chip_port; 48 struct ocelot_port_tc tc; 49 }; 50 51 struct ocelot_dump_ctx { 52 struct net_device *dev; 53 struct sk_buff *skb; 54 struct netlink_callback *cb; 55 int idx; 56 }; 57 58 /* A (PGID) port mask structure, encoding the 2^ocelot->num_phys_ports 59 * possibilities of egress port masks for L2 multicast traffic. 60 * For a switch with 9 user ports, there are 512 possible port masks, but the 61 * hardware only has 46 individual PGIDs that it can forward multicast traffic 62 * to. So we need a structure that maps the limited PGID indices to the port 63 * destinations requested by the user for L2 multicast. 64 */ 65 struct ocelot_pgid { 66 unsigned long ports; 67 int index; 68 refcount_t refcount; 69 struct list_head list; 70 }; 71 72 struct ocelot_multicast { 73 struct list_head list; 74 enum macaccess_entry_type entry_type; 75 unsigned char addr[ETH_ALEN]; 76 u16 vid; 77 u16 ports; 78 struct ocelot_pgid *pgid; 79 }; 80 81 int ocelot_port_fdb_do_dump(const unsigned char *addr, u16 vid, 82 bool is_static, void *data); 83 int ocelot_mact_learn(struct ocelot *ocelot, int port, 84 const unsigned char mac[ETH_ALEN], 85 unsigned int vid, enum macaccess_entry_type type); 86 int ocelot_mact_forget(struct ocelot *ocelot, 87 const unsigned char mac[ETH_ALEN], unsigned int vid); 88 struct net_device *ocelot_port_to_netdev(struct ocelot *ocelot, int port); 89 int ocelot_netdev_to_port(struct net_device *dev); 90 91 u32 ocelot_port_readl(struct ocelot_port *port, u32 reg); 92 void ocelot_port_writel(struct ocelot_port *port, u32 val, u32 reg); 93 94 int ocelot_probe_port(struct ocelot *ocelot, int port, struct regmap *target, 95 struct device_node *portnp); 96 void ocelot_release_port(struct ocelot_port *ocelot_port); 97 int ocelot_devlink_init(struct ocelot *ocelot); 98 void ocelot_devlink_teardown(struct ocelot *ocelot); 99 int ocelot_port_devlink_init(struct ocelot *ocelot, int port, 100 enum devlink_port_flavour flavour); 101 void ocelot_port_devlink_teardown(struct ocelot *ocelot, int port); 102 103 extern struct notifier_block ocelot_netdevice_nb; 104 extern struct notifier_block ocelot_switchdev_nb; 105 extern struct notifier_block ocelot_switchdev_blocking_nb; 106 extern const struct devlink_ops ocelot_devlink_ops; 107 108 #endif 109