xref: /openbmc/linux/drivers/net/ethernet/ti/cpsw_ale.h (revision ca47130a)
1 /*
2  * Texas Instruments N-Port Ethernet Switch Address Lookup Engine APIs
3  *
4  * Copyright (C) 2012 Texas Instruments
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation version 2.
9  *
10  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11  * kind, whether express or implied; without even the implied warranty
12  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15 #ifndef __TI_CPSW_ALE_H__
16 #define __TI_CPSW_ALE_H__
17 
18 struct cpsw_ale_params {
19 	struct device		*dev;
20 	void __iomem		*ale_regs;
21 	unsigned long		ale_ageout;	/* in secs */
22 	unsigned long		ale_entries;
23 	unsigned long		ale_ports;
24 	/* NU Switch has specific handling as number of bits in ALE entries
25 	 * are different than other versions of ALE. Also there are specific
26 	 * registers for unknown vlan specific fields. So use nu_switch_ale
27 	 * to identify this hardware.
28 	 */
29 	bool			nu_switch_ale;
30 	/* mask bit used in NU Switch ALE is 3 bits instead of 8 bits. So
31 	 * pass it from caller.
32 	 */
33 	u32			major_ver_mask;
34 };
35 
36 struct cpsw_ale {
37 	struct cpsw_ale_params	params;
38 	struct timer_list	timer;
39 	unsigned long		ageout;
40 	int			allmulti;
41 	u32			version;
42 };
43 
44 enum cpsw_ale_control {
45 	/* global */
46 	ALE_ENABLE,
47 	ALE_CLEAR,
48 	ALE_AGEOUT,
49 	ALE_P0_UNI_FLOOD,
50 	ALE_VLAN_NOLEARN,
51 	ALE_NO_PORT_VLAN,
52 	ALE_OUI_DENY,
53 	ALE_BYPASS,
54 	ALE_RATE_LIMIT_TX,
55 	ALE_VLAN_AWARE,
56 	ALE_AUTH_ENABLE,
57 	ALE_RATE_LIMIT,
58 	/* port controls */
59 	ALE_PORT_STATE,
60 	ALE_PORT_DROP_UNTAGGED,
61 	ALE_PORT_DROP_UNKNOWN_VLAN,
62 	ALE_PORT_NOLEARN,
63 	ALE_PORT_NO_SA_UPDATE,
64 	ALE_PORT_UNKNOWN_VLAN_MEMBER,
65 	ALE_PORT_UNKNOWN_MCAST_FLOOD,
66 	ALE_PORT_UNKNOWN_REG_MCAST_FLOOD,
67 	ALE_PORT_UNTAGGED_EGRESS,
68 	ALE_PORT_BCAST_LIMIT,
69 	ALE_PORT_MCAST_LIMIT,
70 	ALE_NUM_CONTROLS,
71 };
72 
73 enum cpsw_ale_port_state {
74 	ALE_PORT_STATE_DISABLE	= 0x00,
75 	ALE_PORT_STATE_BLOCK	= 0x01,
76 	ALE_PORT_STATE_LEARN	= 0x02,
77 	ALE_PORT_STATE_FORWARD	= 0x03,
78 };
79 
80 /* ALE unicast entry flags - passed into cpsw_ale_add_ucast() */
81 #define ALE_SECURE			BIT(0)
82 #define ALE_BLOCKED			BIT(1)
83 #define ALE_SUPER			BIT(2)
84 #define ALE_VLAN			BIT(3)
85 
86 #define ALE_PORT_HOST			BIT(0)
87 #define ALE_PORT_1			BIT(1)
88 #define ALE_PORT_2			BIT(2)
89 
90 #define ALE_MCAST_FWD			0
91 #define ALE_MCAST_BLOCK_LEARN_FWD	1
92 #define ALE_MCAST_FWD_LEARN		2
93 #define ALE_MCAST_FWD_2			3
94 
95 #define ALE_ENTRY_BITS		68
96 #define ALE_ENTRY_WORDS	DIV_ROUND_UP(ALE_ENTRY_BITS, 32)
97 
98 struct cpsw_ale *cpsw_ale_create(struct cpsw_ale_params *params);
99 int cpsw_ale_destroy(struct cpsw_ale *ale);
100 
101 void cpsw_ale_start(struct cpsw_ale *ale);
102 void cpsw_ale_stop(struct cpsw_ale *ale);
103 
104 int cpsw_ale_flush_multicast(struct cpsw_ale *ale, int port_mask, int vid);
105 int cpsw_ale_add_ucast(struct cpsw_ale *ale, u8 *addr, int port,
106 		       int flags, u16 vid);
107 int cpsw_ale_del_ucast(struct cpsw_ale *ale, u8 *addr, int port,
108 		       int flags, u16 vid);
109 int cpsw_ale_add_mcast(struct cpsw_ale *ale, u8 *addr, int port_mask,
110 		       int flags, u16 vid, int mcast_state);
111 int cpsw_ale_del_mcast(struct cpsw_ale *ale, u8 *addr, int port_mask,
112 		       int flags, u16 vid);
113 int cpsw_ale_add_vlan(struct cpsw_ale *ale, u16 vid, int port, int untag,
114 			int reg_mcast, int unreg_mcast);
115 int cpsw_ale_del_vlan(struct cpsw_ale *ale, u16 vid, int port);
116 void cpsw_ale_set_allmulti(struct cpsw_ale *ale, int allmulti);
117 
118 int cpsw_ale_control_get(struct cpsw_ale *ale, int port, int control);
119 int cpsw_ale_control_set(struct cpsw_ale *ale, int port,
120 			 int control, int value);
121 void cpsw_ale_dump(struct cpsw_ale *ale, u32 *data);
122 
123 #endif
124