Blame view

include/vsc9953.h 15 KB
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
1
  /*
a857d5f83   Codrin Ciubotariu   drivers/net/vsc99...
2
   * Copyright 2013, 2015 Freescale Semiconductor, Inc.
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
3
   *
a857d5f83   Codrin Ciubotariu   drivers/net/vsc99...
4
   * SPDX-License-Identifier:      GPL-2.0+
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
5
   *
a857d5f83   Codrin Ciubotariu   drivers/net/vsc99...
6
   * Driver for the Vitesse VSC9953 L2 Switch
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
7
8
9
10
11
12
13
14
   */
  
  #ifndef _VSC9953_H_
  #define _VSC9953_H_
  
  #include <config.h>
  #include <miiphy.h>
  #include <asm/types.h>
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
15
16
17
18
  
  #define VSC9953_OFFSET			(CONFIG_SYS_CCSRBAR_DEFAULT + 0x800000)
  
  #define VSC9953_SYS_OFFSET		0x010000
9de059871   Codrin Ciubotariu   drivers/net/vsc99...
19
  #define VSC9953_REW_OFFSET		0x030000
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
20
21
22
23
24
25
26
27
28
29
  #define VSC9953_DEV_GMII_OFFSET		0x100000
  #define VSC9953_QSYS_OFFSET		0x200000
  #define VSC9953_ANA_OFFSET		0x280000
  #define VSC9953_DEVCPU_GCB		0x070000
  #define VSC9953_ES0			0x040000
  #define VSC9953_IS1			0x050000
  #define VSC9953_IS2			0x060000
  
  #define T1040_SWITCH_GMII_DEV_OFFSET	0x010000
  #define VSC9953_PHY_REGS_OFFST		0x0000AC
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
30
  /* Macros for vsc9953_chip_regs.soft_rst register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
31
  #define VSC9953_SOFT_SWC_RST_ENA	0x00000001
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
32
33
  
  /* Macros for vsc9953_sys_sys.reset_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
34
35
36
  #define VSC9953_CORE_ENABLE		0x80
  #define VSC9953_MEM_ENABLE		0x40
  #define VSC9953_MEM_INIT		0x20
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
37

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
38
  /* Macros for vsc9953_dev_gmii_mac_cfg_status.mac_ena_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
39
  #define VSC9953_MAC_ENA_CFG		0x00000011
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
40
41
  
  /* Macros for vsc9953_dev_gmii_mac_cfg_status.mac_mode_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
42
  #define VSC9953_MAC_MODE_CFG		0x00000011
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
43
44
  
  /* Macros for vsc9953_dev_gmii_mac_cfg_status.mac_ifg_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
45
  #define VSC9953_MAC_IFG_CFG		0x00000515
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
46
47
  
  /* Macros for vsc9953_dev_gmii_mac_cfg_status.mac_hdx_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
48
  #define VSC9953_MAC_HDX_CFG		0x00001043
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
49
50
51
52
53
  
  /* Macros for vsc9953_dev_gmii_mac_cfg_status.mac_maxlen_cfg register */
  #define VSC9953_MAC_MAX_LEN		0x000005ee
  
  /* Macros for vsc9953_dev_gmii_port_mode.clock_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
54
55
  #define VSC9953_CLOCK_CFG		0x00000001
  #define VSC9953_CLOCK_CFG_1000M		0x00000001
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
56
57
58
59
60
  
  /* Macros for vsc9953_sys_sys.front_port_mode register */
  #define VSC9953_FRONT_PORT_MODE	0x00000000
  
  /* Macros for vsc9953_ana_pfc.pfc_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
61
62
  #define VSC9953_PFC_FC			0x00000001
  #define VSC9953_PFC_FC_QSGMII		0x00000000
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
63
64
  
  /* Macros for vsc9953_sys_pause_cfg.mac_fc_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
65
66
  #define VSC9953_MAC_FC_CFG		0x04700000
  #define VSC9953_MAC_FC_CFG_QSGMII	0x00700000
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
67
68
  
  /* Macros for vsc9953_sys_pause_cfg.pause_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
69
  #define VSC9953_PAUSE_CFG		0x001ffffe
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
70
71
  
  /* Macros for vsc9953_sys_pause_cfgtot_tail_drop_lvl register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
72
  #define VSC9953_TOT_TAIL_DROP_LVL	0x000003ff
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
73

86719f0cd   Codrin Ciubotariu   drivers/net/vsc99...
74
75
76
77
  /* Macros for vsc9953_sys_sys.stat_cfg register */
  #define VSC9953_STAT_CLEAR_RX		0x00000400
  #define VSC9953_STAT_CLEAR_TX		0x00000800
  #define VSC9953_STAT_CLEAR_DR		0x00001000
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
78
  /* Macros for vsc9953_vcap_core_cfg.vcap_mv_cfg register */
c4390486a   Codrin Ciubotariu   drivers/net/vsc99...
79
80
  #define VSC9953_VCAP_MV_CFG		0x0000ffff
  #define VSC9953_VCAP_UPDATE_CTRL	0x01000004
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
81

22449858f   Codrin Ciubotariu   drivers/net/vsc99...
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  /* Macros for register vsc9953_ana_ana_tables.mac_access register */
  #define VSC9953_MAC_CMD_IDLE		0x00000000
  #define VSC9953_MAC_CMD_LEARN		0x00000001
  #define VSC9953_MAC_CMD_FORGET		0x00000002
  #define VSC9953_MAC_CMD_AGE		0x00000003
  #define VSC9953_MAC_CMD_NEXT		0x00000004
  #define VSC9953_MAC_CMD_READ		0x00000006
  #define VSC9953_MAC_CMD_WRITE		0x00000007
  #define VSC9953_MAC_CMD_MASK		0x00000007
  #define VSC9953_MAC_CMD_VALID		0x00000800
  #define VSC9953_MAC_ENTRYTYPE_NORMAL	0x00000000
  #define VSC9953_MAC_ENTRYTYPE_LOCKED	0x00000200
  #define VSC9953_MAC_ENTRYTYPE_IPV4MCAST	0x00000400
  #define VSC9953_MAC_ENTRYTYPE_IPV6MCAST	0x00000600
  #define VSC9953_MAC_ENTRYTYPE_MASK	0x00000600
  #define VSC9953_MAC_DESTIDX_MASK	0x000001f8
  #define VSC9953_MAC_VID_MASK		0x1fff0000
  #define VSC9953_MAC_MACH_MASK		0x0000ffff
9de059871   Codrin Ciubotariu   drivers/net/vsc99...
100
101
102
  /* Macros for vsc9953_ana_port.vlan_cfg register */
  #define VSC9953_VLAN_CFG_AWARE_ENA	0x00100000
  #define VSC9953_VLAN_CFG_POP_CNT_MASK	0x000c0000
a2477924c   Codrin Ciubotariu   drivers/net/vsc99...
103
104
  #define VSC9953_VLAN_CFG_POP_CNT_NONE	0x00000000
  #define VSC9953_VLAN_CFG_POP_CNT_ONE	0x00040000
9de059871   Codrin Ciubotariu   drivers/net/vsc99...
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
  #define VSC9953_VLAN_CFG_VID_MASK	0x00000fff
  
  /* Macros for vsc9953_rew_port.port_vlan_cfg register */
  #define VSC9953_PORT_VLAN_CFG_VID_MASK	0x00000fff
  
  /* Macros for vsc9953_ana_ana_tables.vlan_tidx register */
  #define VSC9953_ANA_TBL_VID_MASK	0x00000fff
  
  /* Macros for vsc9953_ana_ana_tables.vlan_access register */
  #define VSC9953_VLAN_PORT_MASK		0x00001ffc
  #define VSC9953_VLAN_CMD_MASK		0x00000003
  #define VSC9953_VLAN_CMD_IDLE		0x00000000
  #define VSC9953_VLAN_CMD_READ		0x00000001
  #define VSC9953_VLAN_CMD_WRITE		0x00000002
  #define VSC9953_VLAN_CMD_INIT		0x00000003
68c929da6   Codrin Ciubotariu   drivers/net/vsc99...
120
121
122
123
124
  /* Macros for vsc9953_ana_port.port_cfg register */
  #define VSC9953_PORT_CFG_LEARN_ENA	0x00000080
  #define VSC9953_PORT_CFG_LEARN_AUTO	0x00000100
  #define VSC9953_PORT_CFG_LEARN_CPU	0x00000200
  #define VSC9953_PORT_CFG_LEARN_DROP	0x00000400
aae0e6890   Codrin Ciubotariu   drivers: net: vsc...
125
  #define VSC9953_PORT_CFG_PORTID_MASK	0x0000003c
68c929da6   Codrin Ciubotariu   drivers/net/vsc99...
126

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
127
  /* Macros for vsc9953_qsys_sys.switch_port_mode register */
fe91095b7   Codrin Ciubotariu   drivers/net/vsc99...
128
  #define VSC9953_PORT_ENA		0x00002000
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
129

21d214fcd   Codrin Ciubotariu   drivers/net/vsc99...
130
131
  /* Macros for vsc9953_ana_ana.agen_ctrl register */
  #define VSC9953_FID_MASK_ALL		0x00fff000
9de059871   Codrin Ciubotariu   drivers/net/vsc99...
132
133
  /* Macros for vsc9953_ana_ana.adv_learn register */
  #define VSC9953_VLAN_CHK		0x00000400
ba389e65e   Codrin Ciubotariu   drivers: net: vsc...
134
135
  /* Macros for vsc9953_ana_ana.auto_age register */
  #define VSC9953_AUTOAGE_PERIOD_MASK	0x001ffffe
9de059871   Codrin Ciubotariu   drivers/net/vsc99...
136
137
138
139
140
141
  /* Macros for vsc9953_rew_port.port_tag_cfg register */
  #define VSC9953_TAG_CFG_MASK		0x00000180
  #define VSC9953_TAG_CFG_NONE		0x00000000
  #define VSC9953_TAG_CFG_ALL_BUT_PVID_ZERO	0x00000080
  #define VSC9953_TAG_CFG_ALL_BUT_ZERO		0x00000100
  #define VSC9953_TAG_CFG_ALL		0x00000180
a2477924c   Codrin Ciubotariu   drivers/net/vsc99...
142
  #define VSC9953_TAG_VID_PVID		0x00000010
9de059871   Codrin Ciubotariu   drivers/net/vsc99...
143

22449858f   Codrin Ciubotariu   drivers/net/vsc99...
144
145
146
147
148
149
150
151
  /* Macros for vsc9953_ana_ana.anag_efil register */
  #define VSC9953_AGE_PORT_EN		0x00080000
  #define VSC9953_AGE_PORT_MASK		0x0007c000
  #define VSC9953_AGE_VID_EN		0x00002000
  #define VSC9953_AGE_VID_MASK		0x00001fff
  
  /* Macros for vsc9953_ana_ana_tables.mach_data register */
  #define VSC9953_MACHDATA_VID_MASK	0x1fff0000
aae0e6890   Codrin Ciubotariu   drivers: net: vsc...
152
153
154
155
156
157
158
159
160
161
162
163
  /* Macros for vsc9953_ana_common.aggr_cfg register */
  #define VSC9953_AC_RND_ENA		0x00000080
  #define VSC9953_AC_DMAC_ENA		0x00000040
  #define VSC9953_AC_SMAC_ENA		0x00000020
  #define VSC9953_AC_IP6_LBL_ENA		0x00000010
  #define VSC9953_AC_IP6_TCPUDP_ENA	0x00000008
  #define VSC9953_AC_IP4_SIPDIP_ENA	0x00000004
  #define VSC9953_AC_IP4_TCPUDP_ENA	0x00000002
  #define VSC9953_AC_MASK			0x000000fe
  
  /* Macros for vsc9953_ana_pgid.port_grp_id[] registers */
  #define VSC9953_PGID_PORT_MASK		0x000003ff
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
164
165
166
167
168
169
170
171
  #define VSC9953_MAX_PORTS		10
  #define VSC9953_PORT_CHECK(port)	\
  	(((port) < 0 || (port) >= VSC9953_MAX_PORTS) ? 0 : 1)
  #define VSC9953_INTERNAL_PORT_CHECK(port) ( \
  	( \
  		(port) < VSC9953_MAX_PORTS - 2 || (port) >= VSC9953_MAX_PORTS \
  	) ? 0 : 1 \
  )
9de059871   Codrin Ciubotariu   drivers/net/vsc99...
172
173
174
  #define VSC9953_MAX_VLAN		4096
  #define VSC9953_VLAN_CHECK(vid)	\
  	(((vid) < 0 || (vid) >= VSC9953_MAX_VLAN) ? 0 : 1)
ba389e65e   Codrin Ciubotariu   drivers: net: vsc...
175
  #define VSC9953_DEFAULT_AGE_TIME	300
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
176
177
178
179
180
181
182
183
184
  
  #define DEFAULT_VSC9953_MDIO_NAME	"VSC9953_MDIO0"
  
  #define MIIMIND_OPR_PEND		0x00000004
  
  struct vsc9953_mdio_info {
  	struct vsc9953_mii_mng	*regs;
  	char	*name;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
185
  /* VSC9953 ANA structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
186

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
187
  struct vsc9953_ana_port {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
  	u32	vlan_cfg;
  	u32	drop_cfg;
  	u32	qos_cfg;
  	u32	vcap_cfg;
  	u32	vcap_s1_key_cfg[3];
  	u32	vcap_s2_cfg;
  	u32	qos_pcp_dei_map_cfg[16];
  	u32	cpu_fwd_cfg;
  	u32	cpu_fwd_bpdu_cfg;
  	u32	cpu_fwd_garp_cfg;
  	u32	cpu_fwd_ccm_cfg;
  	u32	port_cfg;
  	u32	pol_cfg;
  	u32	reserved[34];
  };
  
  struct vsc9953_ana_pol {
  	u32	pol_pir_cfg;
  	u32	pol_cir_cfg;
  	u32	pol_mode_cfg;
  	u32	pol_pir_state;
  	u32	pol_cir_state;
  	u32	reserved1[3];
  };
  
  struct vsc9953_ana_ana_tables {
  	u32	entry_lim[11];
  	u32	an_moved;
  	u32	mach_data;
  	u32	macl_data;
  	u32	mac_access;
  	u32	mact_indx;
  	u32	vlan_access;
  	u32	vlan_tidx;
  };
  
  struct vsc9953_ana_ana {
  	u32	adv_learn;
  	u32	vlan_mask;
440873dfc   Codrin Ciubotariu   drivers/net/vsc99...
227
  	u32	reserved;
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
  	u32	anag_efil;
  	u32	an_events;
  	u32	storm_limit_burst;
  	u32	storm_limit_cfg[4];
  	u32	isolated_prts;
  	u32	community_ports;
  	u32	auto_age;
  	u32	mac_options;
  	u32	learn_disc;
  	u32	agen_ctrl;
  	u32	mirror_ports;
  	u32	emirror_ports;
  	u32	flooding;
  	u32	flooding_ipmc;
  	u32	sflow_cfg[11];
  	u32	port_mode[12];
  };
aae0e6890   Codrin Ciubotariu   drivers: net: vsc...
245
246
247
  #define PGID_DST_START		0
  #define PGID_AGGR_START		64
  #define PGID_SRC_START		80
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
248
249
250
  struct vsc9953_ana_pgid {
  	u32	port_grp_id[91];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
251
  struct vsc9953_ana_pfc {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
252
253
254
255
256
257
258
259
260
  	u32	pfc_cfg;
  	u32	reserved1[15];
  };
  
  struct vsc9953_ana_pol_misc {
  	u32	pol_flowc[10];
  	u32	reserved1[17];
  	u32	pol_hyst;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
261
  struct vsc9953_ana_common {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
  	u32	aggr_cfg;
  	u32	cpuq_cfg;
  	u32	cpuq_8021_cfg;
  	u32	dscp_cfg;
  	u32	dscp_rewr_cfg;
  	u32	vcap_rng_type_cfg;
  	u32	vcap_rng_val_cfg;
  	u32	discard_cfg;
  	u32	fid_cfg;
  };
  
  struct vsc9953_analyzer {
  	struct vsc9953_ana_port	port[11];
  	u32	reserved1[9536];
  	struct vsc9953_ana_pol	pol[164];
  	struct vsc9953_ana_ana_tables	ana_tables;
  	u32	reserved2[14];
  	struct vsc9953_ana_ana	ana;
96979dc94   Codrin Ciubotariu   drivers: net: vsc...
280
  	u32	reserved3[21];
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
281
282
283
284
285
286
287
  	struct vsc9953_ana_pgid	port_id_tbl;
  	u32	reserved4[549];
  	struct vsc9953_ana_pfc	pfc[10];
  	struct vsc9953_ana_pol_misc	pol_misc;
  	u32	reserved5[196];
  	struct vsc9953_ana_common	common;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
288
  /* END VSC9953 ANA structure t*/
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
289

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
290
  /* VSC9953 DEV_GMII structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
291

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
292
  struct vsc9953_dev_gmii_port_mode {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
293
294
295
296
297
  	u32	clock_cfg;
  	u32	port_misc;
  	u32	reserved1;
  	u32	eee_cfg;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
298
  struct vsc9953_dev_gmii_mac_cfg_status {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
  	u32	mac_ena_cfg;
  	u32	mac_mode_cfg;
  	u32	mac_maxlen_cfg;
  	u32	mac_tags_cfg;
  	u32	mac_adv_chk_cfg;
  	u32	mac_ifg_cfg;
  	u32	mac_hdx_cfg;
  	u32	mac_fc_mac_low_cfg;
  	u32	mac_fc_mac_high_cfg;
  	u32	mac_sticky;
  };
  
  struct vsc9953_dev_gmii {
  	struct vsc9953_dev_gmii_port_mode	port_mode;
  	struct vsc9953_dev_gmii_mac_cfg_status	mac_cfg_status;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
315
  /* END VSC9953 DEV_GMII structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
316

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
317
  /* VSC9953 QSYS structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
318

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
319
  struct vsc9953_qsys_hsch {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
320
321
322
323
324
325
326
  	u32	cir_cfg;
  	u32	reserved1;
  	u32	se_cfg;
  	u32	se_dwrr_cfg[8];
  	u32	cir_state;
  	u32	reserved2[20];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
327
  struct vsc9953_qsys_sys {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
328
329
330
331
332
333
334
335
336
337
338
339
  	u32	port_mode[12];
  	u32	switch_port_mode[11];
  	u32	stat_cnt_cfg;
  	u32	eee_cfg[10];
  	u32	eee_thrs;
  	u32	igr_no_sharing;
  	u32	egr_no_sharing;
  	u32	sw_status[11];
  	u32	ext_cpu_cfg;
  	u32	cpu_group_map;
  	u32	reserved1[23];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
340
  struct vsc9953_qsys_qos_cfg {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
341
342
343
  	u32	red_profile[16];
  	u32	res_qos_mode;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
344
  struct vsc9953_qsys_drop_cfg {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
345
346
  	u32	egr_drop_mode;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
347
  struct vsc9953_qsys_mmgt {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
348
349
350
  	u32	eq_cntrl;
  	u32	reserved1;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
351
  struct vsc9953_qsys_hsch_misc {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
352
353
354
  	u32	hsch_misc_cfg;
  	u32	reserved1[546];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
355
  struct vsc9953_qsys_res_ctrl {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
356
357
358
359
  	u32	res_cfg;
  	u32	res_stat;
  
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
360
  struct vsc9953_qsys_reg {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
361
362
363
364
365
366
367
368
  	struct vsc9953_qsys_hsch	hsch[108];
  	struct vsc9953_qsys_sys	sys;
  	struct vsc9953_qsys_qos_cfg	qos_cfg;
  	struct vsc9953_qsys_drop_cfg	drop_cfg;
  	struct vsc9953_qsys_mmgt	mmgt;
  	struct vsc9953_qsys_hsch_misc	hsch_misc;
  	struct vsc9953_qsys_res_ctrl	res_ctrl[1024];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
369
  /* END VSC9953 QSYS structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
370

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
371
  /* VSC9953 SYS structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
372

86719f0cd   Codrin Ciubotariu   drivers/net/vsc99...
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
  struct vsc9953_rx_cntrs {
  	u32	c_rx_oct;
  	u32	c_rx_uc;
  	u32	c_rx_mc;
  	u32	c_rx_bc;
  	u32	c_rx_short;
  	u32	c_rx_frag;
  	u32	c_rx_jabber;
  	u32	c_rx_crc;
  	u32	c_rx_symbol_err;
  	u32	c_rx_sz_64;
  	u32	c_rx_sz_65_127;
  	u32	c_rx_sz_128_255;
  	u32	c_rx_sz_256_511;
  	u32	c_rx_sz_512_1023;
  	u32	c_rx_sz_1024_1526;
  	u32	c_rx_sz_jumbo;
  	u32	c_rx_pause;
  	u32	c_rx_control;
  	u32	c_rx_long;
  	u32	c_rx_cat_drop;
  	u32	c_rx_red_prio_0;
  	u32	c_rx_red_prio_1;
  	u32	c_rx_red_prio_2;
  	u32	c_rx_red_prio_3;
  	u32	c_rx_red_prio_4;
  	u32	c_rx_red_prio_5;
  	u32	c_rx_red_prio_6;
  	u32	c_rx_red_prio_7;
  	u32	c_rx_yellow_prio_0;
  	u32	c_rx_yellow_prio_1;
  	u32	c_rx_yellow_prio_2;
  	u32	c_rx_yellow_prio_3;
  	u32	c_rx_yellow_prio_4;
  	u32	c_rx_yellow_prio_5;
  	u32	c_rx_yellow_prio_6;
  	u32	c_rx_yellow_prio_7;
  	u32	c_rx_green_prio_0;
  	u32	c_rx_green_prio_1;
  	u32	c_rx_green_prio_2;
  	u32	c_rx_green_prio_3;
  	u32	c_rx_green_prio_4;
  	u32	c_rx_green_prio_5;
  	u32	c_rx_green_prio_6;
  	u32	c_rx_green_prio_7;
  	u32	reserved[20];
  };
  
  struct vsc9953_tx_cntrs {
  	u32	c_tx_oct;
  	u32	c_tx_uc;
  	u32	c_tx_mc;
  	u32	c_tx_bc;
  	u32	c_tx_col;
  	u32	c_tx_drop;
  	u32	c_tx_pause;
  	u32	c_tx_sz_64;
  	u32	c_tx_sz_65_127;
  	u32	c_tx_sz_128_255;
  	u32	c_tx_sz_256_511;
  	u32	c_tx_sz_512_1023;
  	u32	c_tx_sz_1024_1526;
  	u32	c_tx_sz_jumbo;
  	u32	c_tx_yellow_prio_0;
  	u32	c_tx_yellow_prio_1;
  	u32	c_tx_yellow_prio_2;
  	u32	c_tx_yellow_prio_3;
  	u32	c_tx_yellow_prio_4;
  	u32	c_tx_yellow_prio_5;
  	u32	c_tx_yellow_prio_6;
  	u32	c_tx_yellow_prio_7;
  	u32	c_tx_green_prio_0;
  	u32	c_tx_green_prio_1;
  	u32	c_tx_green_prio_2;
  	u32	c_tx_green_prio_3;
  	u32	c_tx_green_prio_4;
  	u32	c_tx_green_prio_5;
  	u32	c_tx_green_prio_6;
  	u32	c_tx_green_prio_7;
  	u32	c_tx_aged;
  	u32	reserved[33];
  };
  
  struct vsc9953_drop_cntrs {
  	u32	c_dr_local;
  	u32	c_dr_tail;
  	u32	c_dr_yellow_prio_0;
  	u32	c_dr_yellow_prio_1;
  	u32	c_dr_yellow_prio_2;
  	u32	c_dr_yellow_prio_3;
  	u32	c_dr_yellow_prio_4;
  	u32	c_dr_yellow_prio_5;
  	u32	c_dr_yellow_prio_6;
  	u32	c_dr_yellow_prio_7;
  	u32	c_dr_green_prio_0;
  	u32	c_dr_green_prio_1;
  	u32	c_dr_green_prio_2;
  	u32	c_dr_green_prio_3;
  	u32	c_dr_green_prio_4;
  	u32	c_dr_green_prio_5;
  	u32	c_dr_green_prio_6;
  	u32	c_dr_green_prio_7;
  	u32	reserved[46];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
477
  struct vsc9953_sys_stat {
86719f0cd   Codrin Ciubotariu   drivers/net/vsc99...
478
479
480
  	struct vsc9953_rx_cntrs	rx_cntrs;
  	struct vsc9953_tx_cntrs	tx_cntrs;
  	struct vsc9953_drop_cntrs	drop_cntrs;
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
481
482
  	u32	reserved1[6];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
483
  struct vsc9953_sys_sys {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
484
485
486
487
488
489
490
491
492
  	u32	reset_cfg;
  	u32	reserved1;
  	u32	vlan_etype_cfg;
  	u32	port_mode[12];
  	u32	front_port_mode[10];
  	u32	frame_aging;
  	u32	stat_cfg;
  	u32	reserved2[50];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
493
  struct vsc9953_sys_pause_cfg {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
494
495
496
497
498
499
  	u32	pause_cfg[11];
  	u32	pause_tot_cfg;
  	u32	tail_drop_level[11];
  	u32	tot_tail_drop_lvl;
  	u32	mac_fc_cfg[10];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
500
  struct vsc9953_sys_mmgt {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
501
502
  	u16	free_cnt;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
503
  struct vsc9953_system_reg {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
504
505
506
507
508
  	struct vsc9953_sys_stat	stat;
  	struct vsc9953_sys_sys	sys;
  	struct vsc9953_sys_pause_cfg	pause_cfg;
  	struct vsc9953_sys_mmgt	mmgt;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
509
  /* END VSC9953 SYS structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
510

9de059871   Codrin Ciubotariu   drivers/net/vsc99...
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
  /* VSC9953 REW structure */
  
  struct	vsc9953_rew_port {
  	u32	port_vlan_cfg;
  	u32	port_tag_cfg;
  	u32	port_port_cfg;
  	u32	port_dscp_cfg;
  	u32	port_pcp_dei_qos_map_cfg[16];
  	u32	reserved[12];
  };
  
  struct	vsc9953_rew_common {
  	u32	reserve[4];
  	u32	dscp_remap_dp1_cfg[64];
  	u32	dscp_remap_cfg[64];
  };
  
  struct	vsc9953_rew_reg {
  	struct vsc9953_rew_port	port[12];
  	struct vsc9953_rew_common	common;
  };
  
  /* END VSC9953 REW structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
534

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
535
  /* VSC9953 DEVCPU_GCB structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
536

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
537
  struct vsc9953_chip_regs {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
538
539
540
541
  	u32	chipd_id;
  	u32	gpr;
  	u32	soft_rst;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
542
  struct vsc9953_gpio {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
  	u32	gpio_out_set[10];
  	u32	gpio_out_clr[10];
  	u32	gpio_out[10];
  	u32	gpio_in[10];
  };
  
  struct vsc9953_mii_mng {
  	u32	miimstatus;
  	u32	reserved1;
  	u32	miimcmd;
  	u32	miimdata;
  	u32	miimcfg;
  	u32	miimscan_0;
  	u32	miimscan_1;
  	u32	miiscan_lst_rslts;
  	u32	miiscan_lst_rslts_valid;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
560
  struct vsc9953_mii_read_scan {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
561
562
  	u32	mii_scan_results_sticky[2];
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
563
  struct vsc9953_devcpu_gcb {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
564
565
566
567
568
  	struct vsc9953_chip_regs	chip_regs;
  	struct vsc9953_gpio		gpio;
  	struct vsc9953_mii_mng	mii_mng[2];
  	struct vsc9953_mii_read_scan	mii_read_scan;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
569
  /* END VSC9953 DEVCPU_GCB structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
570

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
571
  /* VSC9953 IS* structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
572

3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
573
  struct vsc9953_vcap_core_cfg {
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
574
575
576
  	u32	vcap_update_ctrl;
  	u32	vcap_mv_cfg;
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
577
578
  struct vsc9953_vcap {
  	struct vsc9953_vcap_core_cfg	vcap_core_cfg;
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
579
  };
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
580
  /* END VSC9953 IS* structure */
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
  
  #define VSC9953_PORT_INFO_INITIALIZER(idx) \
  {									\
  	.enabled	= 0,						\
  	.phyaddr	= 0,						\
  	.index		= idx,						\
  	.phy_regs	= NULL,						\
  	.enet_if	= PHY_INTERFACE_MODE_NONE,			\
  	.bus		= NULL,						\
  	.phydev		= NULL,						\
  }
  
  /* Structure to describe a VSC9953 port */
  struct vsc9953_port_info {
  	u8	enabled;
  	u8	phyaddr;
  	int	index;
  	void	*phy_regs;
  	phy_interface_t	enet_if;
  	struct mii_dev	*bus;
  	struct phy_device	*phydev;
  };
  
  /* Structure to describe a VSC9953 switch */
  struct vsc9953_info {
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
606
  	struct vsc9953_port_info	port[VSC9953_MAX_PORTS];
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
607
608
609
  };
  
  void vsc9953_init(bd_t *bis);
3cc8cfffb   Codrin Ciubotariu   drivers/net/vsc99...
610
611
612
613
614
  void vsc9953_port_info_set_mdio(int port_no, struct mii_dev *bus);
  void vsc9953_port_info_set_phy_address(int port_no, int address);
  void vsc9953_port_enable(int port_no);
  void vsc9953_port_disable(int port_no);
  void vsc9953_port_info_set_phy_int(int port_no, phy_interface_t phy_int);
6706b115a   Codrin Ciubotariu   net/vsc9953: Add ...
615
616
  
  #endif /* _VSC9953_H_ */