2 * net/dsa/mv88e6352.c - Marvell 88e6352 switch chip support
4 * Copyright (c) 2014 Guenter Roeck
6 * Derived from mv88e6123_61_65.c
7 * Copyright (c) 2008-2009 Marvell Semiconductor
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
15 #include <linux/delay.h>
16 #include <linux/jiffies.h>
17 #include <linux/list.h>
18 #include <linux/module.h>
19 #include <linux/netdevice.h>
20 #include <linux/platform_device.h>
21 #include <linux/phy.h>
23 #include "mv88e6xxx.h"
25 static const struct mv88e6xxx_switch_id mv88e6352_table
[] = {
26 { PORT_SWITCH_ID_6172
, "Marvell 88E6172" },
27 { PORT_SWITCH_ID_6176
, "Marvell 88E6176" },
28 { PORT_SWITCH_ID_6240
, "Marvell 88E6240" },
29 { PORT_SWITCH_ID_6320
, "Marvell 88E6320" },
30 { PORT_SWITCH_ID_6320_A1
, "Marvell 88E6320 (A1)" },
31 { PORT_SWITCH_ID_6320_A2
, "Marvell 88e6320 (A2)" },
32 { PORT_SWITCH_ID_6321
, "Marvell 88E6321" },
33 { PORT_SWITCH_ID_6321_A1
, "Marvell 88E6321 (A1)" },
34 { PORT_SWITCH_ID_6321_A2
, "Marvell 88e6321 (A2)" },
35 { PORT_SWITCH_ID_6352
, "Marvell 88E6352" },
36 { PORT_SWITCH_ID_6352_A0
, "Marvell 88E6352 (A0)" },
37 { PORT_SWITCH_ID_6352_A1
, "Marvell 88E6352 (A1)" },
40 static char *mv88e6352_probe(struct device
*host_dev
, int sw_addr
)
42 return mv88e6xxx_lookup_name(host_dev
, sw_addr
, mv88e6352_table
,
43 ARRAY_SIZE(mv88e6352_table
));
46 static int mv88e6352_setup_global(struct dsa_switch
*ds
)
48 u32 upstream_port
= dsa_upstream_port(ds
);
52 ret
= mv88e6xxx_setup_global(ds
);
56 /* Discard packets with excessive collisions,
57 * mask all interrupt sources, enable PPU (bit 14, undocumented).
59 REG_WRITE(REG_GLOBAL
, GLOBAL_CONTROL
,
60 GLOBAL_CONTROL_PPU_ENABLE
| GLOBAL_CONTROL_DISCARD_EXCESS
);
62 /* Configure the upstream port, and configure the upstream
63 * port as the port to which ingress and egress monitor frames
66 reg
= upstream_port
<< GLOBAL_MONITOR_CONTROL_INGRESS_SHIFT
|
67 upstream_port
<< GLOBAL_MONITOR_CONTROL_EGRESS_SHIFT
|
68 upstream_port
<< GLOBAL_MONITOR_CONTROL_ARP_SHIFT
;
69 REG_WRITE(REG_GLOBAL
, GLOBAL_MONITOR_CONTROL
, reg
);
71 /* Disable remote management for now, and set the switch's
74 REG_WRITE(REG_GLOBAL
, 0x1c, ds
->index
& 0x1f);
79 static int mv88e6352_setup(struct dsa_switch
*ds
)
81 struct mv88e6xxx_priv_state
*ps
= ds_to_priv(ds
);
84 ret
= mv88e6xxx_setup_common(ds
);
90 mutex_init(&ps
->eeprom_mutex
);
92 ret
= mv88e6xxx_switch_reset(ds
, true);
96 ret
= mv88e6352_setup_global(ds
);
100 return mv88e6xxx_setup_ports(ds
);
103 static int mv88e6352_read_eeprom_word(struct dsa_switch
*ds
, int addr
)
105 struct mv88e6xxx_priv_state
*ps
= ds_to_priv(ds
);
108 mutex_lock(&ps
->eeprom_mutex
);
110 ret
= mv88e6xxx_reg_write(ds
, REG_GLOBAL2
, GLOBAL2_EEPROM_OP
,
111 GLOBAL2_EEPROM_OP_READ
|
112 (addr
& GLOBAL2_EEPROM_OP_ADDR_MASK
));
116 ret
= mv88e6xxx_eeprom_busy_wait(ds
);
120 ret
= mv88e6xxx_reg_read(ds
, REG_GLOBAL2
, GLOBAL2_EEPROM_DATA
);
122 mutex_unlock(&ps
->eeprom_mutex
);
126 static int mv88e6352_get_eeprom(struct dsa_switch
*ds
,
127 struct ethtool_eeprom
*eeprom
, u8
*data
)
133 offset
= eeprom
->offset
;
137 eeprom
->magic
= 0xc3ec4951;
139 ret
= mv88e6xxx_eeprom_load_wait(ds
);
146 word
= mv88e6352_read_eeprom_word(ds
, offset
>> 1);
150 *data
++ = (word
>> 8) & 0xff;
160 word
= mv88e6352_read_eeprom_word(ds
, offset
>> 1);
164 *data
++ = word
& 0xff;
165 *data
++ = (word
>> 8) & 0xff;
175 word
= mv88e6352_read_eeprom_word(ds
, offset
>> 1);
179 *data
++ = word
& 0xff;
189 static int mv88e6352_eeprom_is_readonly(struct dsa_switch
*ds
)
193 ret
= mv88e6xxx_reg_read(ds
, REG_GLOBAL2
, GLOBAL2_EEPROM_OP
);
197 if (!(ret
& GLOBAL2_EEPROM_OP_WRITE_EN
))
203 static int mv88e6352_write_eeprom_word(struct dsa_switch
*ds
, int addr
,
206 struct mv88e6xxx_priv_state
*ps
= ds_to_priv(ds
);
209 mutex_lock(&ps
->eeprom_mutex
);
211 ret
= mv88e6xxx_reg_write(ds
, REG_GLOBAL2
, GLOBAL2_EEPROM_DATA
, data
);
215 ret
= mv88e6xxx_reg_write(ds
, REG_GLOBAL2
, GLOBAL2_EEPROM_OP
,
216 GLOBAL2_EEPROM_OP_WRITE
|
217 (addr
& GLOBAL2_EEPROM_OP_ADDR_MASK
));
221 ret
= mv88e6xxx_eeprom_busy_wait(ds
);
223 mutex_unlock(&ps
->eeprom_mutex
);
227 static int mv88e6352_set_eeprom(struct dsa_switch
*ds
,
228 struct ethtool_eeprom
*eeprom
, u8
*data
)
234 if (eeprom
->magic
!= 0xc3ec4951)
237 ret
= mv88e6352_eeprom_is_readonly(ds
);
241 offset
= eeprom
->offset
;
245 ret
= mv88e6xxx_eeprom_load_wait(ds
);
252 word
= mv88e6352_read_eeprom_word(ds
, offset
>> 1);
256 word
= (*data
++ << 8) | (word
& 0xff);
258 ret
= mv88e6352_write_eeprom_word(ds
, offset
>> 1, word
);
271 word
|= *data
++ << 8;
273 ret
= mv88e6352_write_eeprom_word(ds
, offset
>> 1, word
);
285 word
= mv88e6352_read_eeprom_word(ds
, offset
>> 1);
289 word
= (word
& 0xff00) | *data
++;
291 ret
= mv88e6352_write_eeprom_word(ds
, offset
>> 1, word
);
303 struct dsa_switch_driver mv88e6352_switch_driver
= {
304 .tag_protocol
= DSA_TAG_PROTO_EDSA
,
305 .priv_size
= sizeof(struct mv88e6xxx_priv_state
),
306 .probe
= mv88e6352_probe
,
307 .setup
= mv88e6352_setup
,
308 .set_addr
= mv88e6xxx_set_addr_indirect
,
309 .phy_read
= mv88e6xxx_phy_read_indirect
,
310 .phy_write
= mv88e6xxx_phy_write_indirect
,
311 .get_strings
= mv88e6xxx_get_strings
,
312 .get_ethtool_stats
= mv88e6xxx_get_ethtool_stats
,
313 .get_sset_count
= mv88e6xxx_get_sset_count
,
314 .adjust_link
= mv88e6xxx_adjust_link
,
315 .set_eee
= mv88e6xxx_set_eee
,
316 .get_eee
= mv88e6xxx_get_eee
,
317 #ifdef CONFIG_NET_DSA_HWMON
318 .get_temp
= mv88e6xxx_get_temp
,
319 .get_temp_limit
= mv88e6xxx_get_temp_limit
,
320 .set_temp_limit
= mv88e6xxx_set_temp_limit
,
321 .get_temp_alarm
= mv88e6xxx_get_temp_alarm
,
323 .get_eeprom
= mv88e6352_get_eeprom
,
324 .set_eeprom
= mv88e6352_set_eeprom
,
325 .get_regs_len
= mv88e6xxx_get_regs_len
,
326 .get_regs
= mv88e6xxx_get_regs
,
327 .port_bridge_join
= mv88e6xxx_port_bridge_join
,
328 .port_bridge_leave
= mv88e6xxx_port_bridge_leave
,
329 .port_stp_update
= mv88e6xxx_port_stp_update
,
330 .port_vlan_filtering
= mv88e6xxx_port_vlan_filtering
,
331 .port_vlan_prepare
= mv88e6xxx_port_vlan_prepare
,
332 .port_vlan_add
= mv88e6xxx_port_vlan_add
,
333 .port_vlan_del
= mv88e6xxx_port_vlan_del
,
334 .port_vlan_dump
= mv88e6xxx_port_vlan_dump
,
335 .port_fdb_prepare
= mv88e6xxx_port_fdb_prepare
,
336 .port_fdb_add
= mv88e6xxx_port_fdb_add
,
337 .port_fdb_del
= mv88e6xxx_port_fdb_del
,
338 .port_fdb_dump
= mv88e6xxx_port_fdb_dump
,
341 MODULE_ALIAS("platform:mv88e6172");
342 MODULE_ALIAS("platform:mv88e6176");
343 MODULE_ALIAS("platform:mv88e6320");
344 MODULE_ALIAS("platform:mv88e6321");
345 MODULE_ALIAS("platform:mv88e6352");