net: dsa: mv88e6xxx: factorize switch setup
[cascardo/linux.git] / drivers / net / dsa / mv88e6123.c
1 /*
2  * net/dsa/mv88e6123_61_65.c - Marvell 88e6123/6161/6165 switch chip support
3  * Copyright (c) 2008-2009 Marvell Semiconductor
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_info mv88e6123_table[] = {
21         {
22                 .prod_num = PORT_SWITCH_ID_PROD_NUM_6123,
23                 .family = MV88E6XXX_FAMILY_6165,
24                 .name = "Marvell 88E6123",
25                 .num_databases = 4096,
26                 .num_ports = 3,
27                 .flags = MV88E6XXX_FLAGS_FAMILY_6165,
28         }, {
29                 .prod_num = PORT_SWITCH_ID_PROD_NUM_6161,
30                 .family = MV88E6XXX_FAMILY_6165,
31                 .name = "Marvell 88E6161",
32                 .num_databases = 4096,
33                 .num_ports = 6,
34                 .flags = MV88E6XXX_FLAGS_FAMILY_6165,
35         }, {
36                 .prod_num = PORT_SWITCH_ID_PROD_NUM_6165,
37                 .family = MV88E6XXX_FAMILY_6165,
38                 .name = "Marvell 88E6165",
39                 .num_databases = 4096,
40                 .num_ports = 6,
41                 .flags = MV88E6XXX_FLAGS_FAMILY_6165,
42         }
43 };
44
45 static const char *mv88e6123_drv_probe(struct device *dsa_dev,
46                                        struct device *host_dev, int sw_addr,
47                                        void **priv)
48 {
49         return mv88e6xxx_drv_probe(dsa_dev, host_dev, sw_addr, priv,
50                                    mv88e6123_table,
51                                    ARRAY_SIZE(mv88e6123_table));
52 }
53
54 struct dsa_switch_driver mv88e6123_switch_driver = {
55         .tag_protocol           = DSA_TAG_PROTO_EDSA,
56         .probe                  = mv88e6123_drv_probe,
57         .setup                  = mv88e6xxx_setup,
58         .set_addr               = mv88e6xxx_set_addr,
59         .phy_read               = mv88e6xxx_phy_read,
60         .phy_write              = mv88e6xxx_phy_write,
61         .set_eee                = mv88e6xxx_set_eee,
62         .get_eee                = mv88e6xxx_get_eee,
63         .get_strings            = mv88e6xxx_get_strings,
64         .get_ethtool_stats      = mv88e6xxx_get_ethtool_stats,
65         .get_sset_count         = mv88e6xxx_get_sset_count,
66         .adjust_link            = mv88e6xxx_adjust_link,
67 #ifdef CONFIG_NET_DSA_HWMON
68         .get_temp               = mv88e6xxx_get_temp,
69         .get_temp_limit         = mv88e6xxx_get_temp_limit,
70         .set_temp_limit         = mv88e6xxx_set_temp_limit,
71         .get_temp_alarm         = mv88e6xxx_get_temp_alarm,
72 #endif
73         .get_eeprom             = mv88e6xxx_get_eeprom,
74         .set_eeprom             = mv88e6xxx_set_eeprom,
75         .get_regs_len           = mv88e6xxx_get_regs_len,
76         .get_regs               = mv88e6xxx_get_regs,
77         .port_bridge_join       = mv88e6xxx_port_bridge_join,
78         .port_bridge_leave      = mv88e6xxx_port_bridge_leave,
79         .port_stp_state_set     = mv88e6xxx_port_stp_state_set,
80         .port_vlan_filtering    = mv88e6xxx_port_vlan_filtering,
81         .port_vlan_prepare      = mv88e6xxx_port_vlan_prepare,
82         .port_vlan_add          = mv88e6xxx_port_vlan_add,
83         .port_vlan_del          = mv88e6xxx_port_vlan_del,
84         .port_vlan_dump         = mv88e6xxx_port_vlan_dump,
85         .port_fdb_prepare       = mv88e6xxx_port_fdb_prepare,
86         .port_fdb_add           = mv88e6xxx_port_fdb_add,
87         .port_fdb_del           = mv88e6xxx_port_fdb_del,
88         .port_fdb_dump          = mv88e6xxx_port_fdb_dump,
89 };
90
91 MODULE_ALIAS("platform:mv88e6123");
92 MODULE_ALIAS("platform:mv88e6161");
93 MODULE_ALIAS("platform:mv88e6165");