diff options
Diffstat (limited to 'drivers/net/dsa/dsa_loop_bdinfo.c')
-rw-r--r-- | drivers/net/dsa/dsa_loop_bdinfo.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/drivers/net/dsa/dsa_loop_bdinfo.c b/drivers/net/dsa/dsa_loop_bdinfo.c new file mode 100644 index 000000000000..fb8d5dc71013 --- /dev/null +++ b/drivers/net/dsa/dsa_loop_bdinfo.c | |||
@@ -0,0 +1,34 @@ | |||
1 | #include <linux/kernel.h> | ||
2 | #include <linux/init.h> | ||
3 | #include <linux/phy.h> | ||
4 | #include <net/dsa.h> | ||
5 | |||
6 | #include "dsa_loop.h" | ||
7 | |||
8 | static struct dsa_loop_pdata dsa_loop_pdata = { | ||
9 | .cd = { | ||
10 | .port_names[0] = "lan1", | ||
11 | .port_names[1] = "lan2", | ||
12 | .port_names[2] = "lan3", | ||
13 | .port_names[3] = "lan4", | ||
14 | .port_names[DSA_LOOP_CPU_PORT] = "cpu", | ||
15 | }, | ||
16 | .name = "DSA mockup driver", | ||
17 | .enabled_ports = 0x1f, | ||
18 | .netdev = "eth0", | ||
19 | }; | ||
20 | |||
21 | static const struct mdio_board_info bdinfo = { | ||
22 | .bus_id = "fixed-0", | ||
23 | .modalias = "dsa-loop", | ||
24 | .mdio_addr = 31, | ||
25 | .platform_data = &dsa_loop_pdata, | ||
26 | }; | ||
27 | |||
28 | static int __init dsa_loop_bdinfo_init(void) | ||
29 | { | ||
30 | return mdiobus_register_board_info(&bdinfo, 1); | ||
31 | } | ||
32 | arch_initcall(dsa_loop_bdinfo_init) | ||
33 | |||
34 | MODULE_LICENSE("GPL"); | ||