net: dsa: Pass the dsa device to the switch drivers
[cascardo/linux.git] / drivers / net / dsa / mv88e6171.c
1 /* net/dsa/mv88e6171.c - Marvell 88e6171 switch chip support
2  * Copyright (c) 2008-2009 Marvell Semiconductor
3  * Copyright (c) 2014 Claudio Leite <leitec@staticky.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  */
10
11 #include <linux/delay.h>
12 #include <linux/jiffies.h>
13 #include <linux/list.h>
14 #include <linux/module.h>
15 #include <linux/netdevice.h>
16 #include <linux/phy.h>
17 #include <net/dsa.h>
18 #include "mv88e6xxx.h"
19
20 static const struct mv88e6xxx_switch_id mv88e6171_table[] = {
21         { PORT_SWITCH_ID_6171, "Marvell 88E6171" },
22         { PORT_SWITCH_ID_6175, "Marvell 88E6175" },
23         { PORT_SWITCH_ID_6350, "Marvell 88E6350" },
24         { PORT_SWITCH_ID_6351, "Marvell 88E6351" },
25 };
26
27 static char *mv88e6171_probe(struct device *dsa_dev, struct device *host_dev,
28                              int sw_addr)
29 {
30         return mv88e6xxx_lookup_name(host_dev, sw_addr, mv88e6171_table,
31                                      ARRAY_SIZE(mv88e6171_table));
32 }
33
34 static int mv88e6171_setup_global(struct dsa_switch *ds)
35 {
36         u32 upstream_port = dsa_upstream_port(ds);
37         int ret;
38         u32 reg;
39
40         ret = mv88e6xxx_setup_global(ds);
41         if (ret)
42                 return ret;
43
44         /* Discard packets with excessive collisions, mask all
45          * interrupt sources, enable PPU.
46          */
47         REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL,
48                   GLOBAL_CONTROL_PPU_ENABLE | GLOBAL_CONTROL_DISCARD_EXCESS);
49
50         /* Configure the upstream port, and configure the upstream
51          * port as the port to which ingress and egress monitor frames
52          * are to be sent.
53          */
54         reg = upstream_port << GLOBAL_MONITOR_CONTROL_INGRESS_SHIFT |
55                 upstream_port << GLOBAL_MONITOR_CONTROL_EGRESS_SHIFT |
56                 upstream_port << GLOBAL_MONITOR_CONTROL_ARP_SHIFT |
57                 upstream_port << GLOBAL_MONITOR_CONTROL_MIRROR_SHIFT;
58         REG_WRITE(REG_GLOBAL, GLOBAL_MONITOR_CONTROL, reg);
59
60         /* Disable remote management for now, and set the switch's
61          * DSA device number.
62          */
63         REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL_2, ds->index & 0x1f);
64
65         return 0;
66 }
67
68 static int mv88e6171_setup(struct dsa_switch *ds)
69 {
70         struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
71         int ret;
72
73         ret = mv88e6xxx_setup_common(ds);
74         if (ret < 0)
75                 return ret;
76
77         ps->num_ports = 7;
78
79         ret = mv88e6xxx_switch_reset(ds, true);
80         if (ret < 0)
81                 return ret;
82
83         ret = mv88e6171_setup_global(ds);
84         if (ret < 0)
85                 return ret;
86
87         return mv88e6xxx_setup_ports(ds);
88 }
89
90 struct dsa_switch_driver mv88e6171_switch_driver = {
91         .tag_protocol           = DSA_TAG_PROTO_EDSA,
92         .priv_size              = sizeof(struct mv88e6xxx_priv_state),
93         .probe                  = mv88e6171_probe,
94         .setup                  = mv88e6171_setup,
95         .set_addr               = mv88e6xxx_set_addr_indirect,
96         .phy_read               = mv88e6xxx_phy_read_indirect,
97         .phy_write              = mv88e6xxx_phy_write_indirect,
98         .get_strings            = mv88e6xxx_get_strings,
99         .get_ethtool_stats      = mv88e6xxx_get_ethtool_stats,
100         .get_sset_count         = mv88e6xxx_get_sset_count,
101         .adjust_link            = mv88e6xxx_adjust_link,
102 #ifdef CONFIG_NET_DSA_HWMON
103         .get_temp               = mv88e6xxx_get_temp,
104 #endif
105         .get_regs_len           = mv88e6xxx_get_regs_len,
106         .get_regs               = mv88e6xxx_get_regs,
107         .port_bridge_join       = mv88e6xxx_port_bridge_join,
108         .port_bridge_leave      = mv88e6xxx_port_bridge_leave,
109         .port_stp_state_set     = mv88e6xxx_port_stp_state_set,
110         .port_vlan_filtering    = mv88e6xxx_port_vlan_filtering,
111         .port_vlan_prepare      = mv88e6xxx_port_vlan_prepare,
112         .port_vlan_add          = mv88e6xxx_port_vlan_add,
113         .port_vlan_del          = mv88e6xxx_port_vlan_del,
114         .port_vlan_dump         = mv88e6xxx_port_vlan_dump,
115         .port_fdb_prepare       = mv88e6xxx_port_fdb_prepare,
116         .port_fdb_add           = mv88e6xxx_port_fdb_add,
117         .port_fdb_del           = mv88e6xxx_port_fdb_del,
118         .port_fdb_dump          = mv88e6xxx_port_fdb_dump,
119 };
120
121 MODULE_ALIAS("platform:mv88e6171");
122 MODULE_ALIAS("platform:mv88e6175");
123 MODULE_ALIAS("platform:mv88e6350");
124 MODULE_ALIAS("platform:mv88e6351");