1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2018, Sensor-Technik Wiedemann GmbH
3 * Copyright (c) 2018-2019, Vladimir Oltean <olteanv@gmail.com>
8 #include <linux/ptp_clock_kernel.h>
9 #include <linux/timecounter.h>
10 #include <linux/dsa/sja1105.h>
11 #include <linux/dsa/8021q.h>
13 #include <linux/mutex.h>
14 #include "sja1105_static_config.h"
16 #define SJA1105ET_FDB_BIN_SIZE 4
17 /* The hardware value is in multiples of 10 ms.
18 * The passed parameter is in multiples of 1 ms.
20 #define SJA1105_AGEING_TIME_MS(ms) ((ms) / 10)
21 #define SJA1105_NUM_L2_POLICERS SJA1110_MAX_L2_POLICING_COUNT
26 } sja1105_spi_rw_mode_t
;
28 #include "sja1105_tas.h"
29 #include "sja1105_ptp.h"
31 enum sja1105_stats_area
{
36 __MAX_SJA1105_STATS_AREA
,
39 /* Keeps the different addresses between E/T and P/Q/R/S */
57 u64 ptpegr_ts
[SJA1105_MAX_NUM_PORTS
];
58 u64 pad_mii_tx
[SJA1105_MAX_NUM_PORTS
];
59 u64 pad_mii_rx
[SJA1105_MAX_NUM_PORTS
];
60 u64 pad_mii_id
[SJA1105_MAX_NUM_PORTS
];
61 u64 cgu_idiv
[SJA1105_MAX_NUM_PORTS
];
62 u64 mii_tx_clk
[SJA1105_MAX_NUM_PORTS
];
63 u64 mii_rx_clk
[SJA1105_MAX_NUM_PORTS
];
64 u64 mii_ext_tx_clk
[SJA1105_MAX_NUM_PORTS
];
65 u64 mii_ext_rx_clk
[SJA1105_MAX_NUM_PORTS
];
66 u64 rgmii_tx_clk
[SJA1105_MAX_NUM_PORTS
];
67 u64 rmii_ref_clk
[SJA1105_MAX_NUM_PORTS
];
68 u64 rmii_ext_tx_clk
[SJA1105_MAX_NUM_PORTS
];
69 u64 stats
[__MAX_SJA1105_STATS_AREA
][SJA1105_MAX_NUM_PORTS
];
72 u64 pcs_base
[SJA1105_MAX_NUM_PORTS
];
75 struct sja1105_mdio_private
{
76 struct sja1105_private
*priv
;
82 SJA1105_SPEED_100MBPS
,
83 SJA1105_SPEED_1000MBPS
,
84 SJA1105_SPEED_2500MBPS
,
88 enum sja1105_internal_phy_t
{
96 /* Needed for distinction between P and R, and between Q and S
97 * (since the parts with/without SGMII share the same
98 * switch core and device_id)
101 /* E/T and P/Q/R/S have partial timestamps of different sizes.
102 * They must be reconstructed on both families anyway to get the full
103 * 64-bit values back.
106 /* Also SPI commands are of different sizes to retrieve
107 * the egress timestamps.
113 bool multiple_cascade_ports
;
114 enum dsa_tag_protocol tag_proto
;
115 const struct sja1105_dynamic_table_ops
*dyn_ops
;
116 const struct sja1105_table_ops
*static_ops
;
117 const struct sja1105_regs
*regs
;
118 /* Both E/T and P/Q/R/S have quirks when it comes to popping the S-Tag
119 * from double-tagged frames. E/T will pop it only when it's equal to
120 * TPID from the General Parameters Table, while P/Q/R/S will only
121 * pop it when it's equal to TPID2.
124 bool can_limit_mcast_flood
;
125 int (*reset_cmd
)(struct dsa_switch
*ds
);
126 int (*setup_rgmii_delay
)(const void *ctx
, int port
);
127 /* Prototypes from include/net/dsa.h */
128 int (*fdb_add_cmd
)(struct dsa_switch
*ds
, int port
,
129 const unsigned char *addr
, u16 vid
);
130 int (*fdb_del_cmd
)(struct dsa_switch
*ds
, int port
,
131 const unsigned char *addr
, u16 vid
);
132 void (*ptp_cmd_packing
)(u8
*buf
, struct sja1105_ptp_cmd
*cmd
,
134 bool (*rxtstamp
)(struct dsa_switch
*ds
, int port
, struct sk_buff
*skb
);
135 void (*txtstamp
)(struct dsa_switch
*ds
, int port
, struct sk_buff
*skb
);
136 int (*clocking_setup
)(struct sja1105_private
*priv
);
137 int (*pcs_mdio_read
)(struct mii_bus
*bus
, int phy
, int reg
);
138 int (*pcs_mdio_write
)(struct mii_bus
*bus
, int phy
, int reg
, u16 val
);
139 int (*disable_microcontroller
)(struct sja1105_private
*priv
);
141 bool supports_mii
[SJA1105_MAX_NUM_PORTS
];
142 bool supports_rmii
[SJA1105_MAX_NUM_PORTS
];
143 bool supports_rgmii
[SJA1105_MAX_NUM_PORTS
];
144 bool supports_sgmii
[SJA1105_MAX_NUM_PORTS
];
145 bool supports_2500basex
[SJA1105_MAX_NUM_PORTS
];
146 enum sja1105_internal_phy_t internal_phy
[SJA1105_MAX_NUM_PORTS
];
147 const u64 port_speed
[SJA1105_SPEED_MAX
];
150 enum sja1105_key_type
{
153 SJA1105_KEY_VLAN_UNAWARE_VL
,
154 SJA1105_KEY_VLAN_AWARE_VL
,
158 enum sja1105_key_type type
;
166 /* SJA1105_KEY_VLAN_UNAWARE_VL */
167 /* SJA1105_KEY_VLAN_AWARE_VL */
176 enum sja1105_rule_type
{
177 SJA1105_RULE_BCAST_POLICER
,
178 SJA1105_RULE_TC_POLICER
,
182 enum sja1105_vl_type
{
183 SJA1105_VL_NONCRITICAL
,
184 SJA1105_VL_RATE_CONSTRAINED
,
185 SJA1105_VL_TIME_TRIGGERED
,
188 struct sja1105_rule
{
189 struct list_head list
;
190 unsigned long cookie
;
191 unsigned long port_mask
;
192 struct sja1105_key key
;
193 enum sja1105_rule_type type
;
197 /* SJA1105_RULE_BCAST_POLICER */
202 /* SJA1105_RULE_TC_POLICER */
207 /* SJA1105_RULE_VL */
209 enum sja1105_vl_type type
;
210 unsigned long destports
;
217 struct action_gate_entry
*entries
;
218 struct flow_stats stats
;
223 struct sja1105_flow_block
{
224 struct list_head rules
;
225 bool l2_policer_used
[SJA1105_NUM_L2_POLICERS
];
226 int num_virtual_links
;
229 struct sja1105_bridge_vlan
{
230 struct list_head list
;
237 enum sja1105_vlan_state
{
238 SJA1105_VLAN_UNAWARE
,
239 SJA1105_VLAN_BEST_EFFORT
,
240 SJA1105_VLAN_FILTERING_FULL
,
243 struct sja1105_private
{
244 struct sja1105_static_config static_config
;
245 bool rgmii_rx_delay
[SJA1105_MAX_NUM_PORTS
];
246 bool rgmii_tx_delay
[SJA1105_MAX_NUM_PORTS
];
247 phy_interface_t phy_mode
[SJA1105_MAX_NUM_PORTS
];
248 bool fixed_link
[SJA1105_MAX_NUM_PORTS
];
249 bool best_effort_vlan_filtering
;
250 unsigned long learn_ena
;
251 unsigned long ucast_egress_floods
;
252 unsigned long bcast_egress_floods
;
253 const struct sja1105_info
*info
;
255 struct gpio_desc
*reset_gpio
;
256 struct spi_device
*spidev
;
257 struct dsa_switch
*ds
;
258 struct list_head dsa_8021q_vlans
;
259 struct list_head bridge_vlans
;
260 struct sja1105_flow_block flow_block
;
261 struct sja1105_port ports
[SJA1105_MAX_NUM_PORTS
];
262 /* Serializes transmission of management frames so that
263 * the switch doesn't confuse them with one another.
265 struct mutex mgmt_lock
;
266 struct dsa_8021q_context
*dsa_8021q_ctx
;
267 enum sja1105_vlan_state vlan_state
;
268 struct devlink_region
**regions
;
269 struct sja1105_cbs_entry
*cbs
;
270 struct mii_bus
*mdio_base_t1
;
271 struct mii_bus
*mdio_base_tx
;
272 struct mii_bus
*mdio_pcs
;
273 struct dw_xpcs
*xpcs
[SJA1105_MAX_NUM_PORTS
];
274 struct sja1105_tagger_data tagger_data
;
275 struct sja1105_ptp_data ptp_data
;
276 struct sja1105_tas_data tas_data
;
279 #include "sja1105_dynamic_config.h"
281 struct sja1105_spi_message
{
287 /* From sja1105_main.c */
288 enum sja1105_reset_reason
{
289 SJA1105_VLAN_FILTERING
= 0,
290 SJA1105_RX_HWTSTAMPING
,
293 SJA1105_BEST_EFFORT_POLICING
,
294 SJA1105_VIRTUAL_LINKS
,
297 int sja1105_static_config_reload(struct sja1105_private
*priv
,
298 enum sja1105_reset_reason reason
);
299 int sja1105_vlan_filtering(struct dsa_switch
*ds
, int port
, bool enabled
,
300 struct netlink_ext_ack
*extack
);
301 void sja1105_frame_memory_partitioning(struct sja1105_private
*priv
);
303 /* From sja1105_mdio.c */
304 int sja1105_mdiobus_register(struct dsa_switch
*ds
);
305 void sja1105_mdiobus_unregister(struct dsa_switch
*ds
);
306 int sja1105_pcs_mdio_read(struct mii_bus
*bus
, int phy
, int reg
);
307 int sja1105_pcs_mdio_write(struct mii_bus
*bus
, int phy
, int reg
, u16 val
);
308 int sja1110_pcs_mdio_read(struct mii_bus
*bus
, int phy
, int reg
);
309 int sja1110_pcs_mdio_write(struct mii_bus
*bus
, int phy
, int reg
, u16 val
);
311 /* From sja1105_devlink.c */
312 int sja1105_devlink_setup(struct dsa_switch
*ds
);
313 void sja1105_devlink_teardown(struct dsa_switch
*ds
);
314 int sja1105_devlink_param_get(struct dsa_switch
*ds
, u32 id
,
315 struct devlink_param_gset_ctx
*ctx
);
316 int sja1105_devlink_param_set(struct dsa_switch
*ds
, u32 id
,
317 struct devlink_param_gset_ctx
*ctx
);
318 int sja1105_devlink_info_get(struct dsa_switch
*ds
,
319 struct devlink_info_req
*req
,
320 struct netlink_ext_ack
*extack
);
322 /* From sja1105_spi.c */
323 int sja1105_xfer_buf(const struct sja1105_private
*priv
,
324 sja1105_spi_rw_mode_t rw
, u64 reg_addr
,
325 u8
*buf
, size_t len
);
326 int sja1105_xfer_u32(const struct sja1105_private
*priv
,
327 sja1105_spi_rw_mode_t rw
, u64 reg_addr
, u32
*value
,
328 struct ptp_system_timestamp
*ptp_sts
);
329 int sja1105_xfer_u64(const struct sja1105_private
*priv
,
330 sja1105_spi_rw_mode_t rw
, u64 reg_addr
, u64
*value
,
331 struct ptp_system_timestamp
*ptp_sts
);
332 int static_config_buf_prepare_for_upload(struct sja1105_private
*priv
,
333 void *config_buf
, int buf_len
);
334 int sja1105_static_config_upload(struct sja1105_private
*priv
);
335 int sja1105_inhibit_tx(const struct sja1105_private
*priv
,
336 unsigned long port_bitmap
, bool tx_inhibited
);
338 extern const struct sja1105_info sja1105e_info
;
339 extern const struct sja1105_info sja1105t_info
;
340 extern const struct sja1105_info sja1105p_info
;
341 extern const struct sja1105_info sja1105q_info
;
342 extern const struct sja1105_info sja1105r_info
;
343 extern const struct sja1105_info sja1105s_info
;
344 extern const struct sja1105_info sja1110a_info
;
345 extern const struct sja1105_info sja1110b_info
;
346 extern const struct sja1105_info sja1110c_info
;
347 extern const struct sja1105_info sja1110d_info
;
349 /* From sja1105_clocking.c */
354 } sja1105_mii_role_t
;
361 } sja1105_phy_interface_t
;
363 int sja1105pqrs_setup_rgmii_delay(const void *ctx
, int port
);
364 int sja1110_setup_rgmii_delay(const void *ctx
, int port
);
365 int sja1105_clocking_setup_port(struct sja1105_private
*priv
, int port
);
366 int sja1105_clocking_setup(struct sja1105_private
*priv
);
367 int sja1110_disable_microcontroller(struct sja1105_private
*priv
);
369 /* From sja1105_ethtool.c */
370 void sja1105_get_ethtool_stats(struct dsa_switch
*ds
, int port
, u64
*data
);
371 void sja1105_get_strings(struct dsa_switch
*ds
, int port
,
372 u32 stringset
, u8
*data
);
373 int sja1105_get_sset_count(struct dsa_switch
*ds
, int port
, int sset
);
375 /* From sja1105_dynamic_config.c */
376 int sja1105_dynamic_config_read(struct sja1105_private
*priv
,
377 enum sja1105_blk_idx blk_idx
,
378 int index
, void *entry
);
379 int sja1105_dynamic_config_write(struct sja1105_private
*priv
,
380 enum sja1105_blk_idx blk_idx
,
381 int index
, void *entry
, bool keep
);
384 SJA1105_C_TAG
= 0, /* Inner VLAN header */
385 SJA1105_S_TAG
= 1, /* Outer VLAN header */
388 enum sja1110_vlan_type
{
389 SJA1110_VLAN_INVALID
= 0,
390 SJA1110_VLAN_C_TAG
= 1, /* Single inner VLAN tag */
391 SJA1110_VLAN_S_TAG
= 2, /* Single outer VLAN tag */
392 SJA1110_VLAN_D_TAG
= 3, /* Double tagged, use outer tag for lookup */
395 enum sja1110_shaper_type
{
396 SJA1110_LEAKY_BUCKET_SHAPER
= 0,
397 SJA1110_CBS_SHAPER
= 1,
400 u8
sja1105et_fdb_hash(struct sja1105_private
*priv
, const u8
*addr
, u16 vid
);
401 int sja1105et_fdb_add(struct dsa_switch
*ds
, int port
,
402 const unsigned char *addr
, u16 vid
);
403 int sja1105et_fdb_del(struct dsa_switch
*ds
, int port
,
404 const unsigned char *addr
, u16 vid
);
405 int sja1105pqrs_fdb_add(struct dsa_switch
*ds
, int port
,
406 const unsigned char *addr
, u16 vid
);
407 int sja1105pqrs_fdb_del(struct dsa_switch
*ds
, int port
,
408 const unsigned char *addr
, u16 vid
);
410 /* From sja1105_flower.c */
411 int sja1105_cls_flower_del(struct dsa_switch
*ds
, int port
,
412 struct flow_cls_offload
*cls
, bool ingress
);
413 int sja1105_cls_flower_add(struct dsa_switch
*ds
, int port
,
414 struct flow_cls_offload
*cls
, bool ingress
);
415 int sja1105_cls_flower_stats(struct dsa_switch
*ds
, int port
,
416 struct flow_cls_offload
*cls
, bool ingress
);
417 void sja1105_flower_setup(struct dsa_switch
*ds
);
418 void sja1105_flower_teardown(struct dsa_switch
*ds
);
419 struct sja1105_rule
*sja1105_rule_find(struct sja1105_private
*priv
,
420 unsigned long cookie
);