aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/usb
diff options
context:
space:
mode:
authorhayeswang <hayeswang@realtek.com>2013-07-07 22:41:21 -0400
committerDavid S. Miller <davem@davemloft.net>2013-07-11 20:11:01 -0400
commitc073f666ff5c38477849c5109f2c430df1a60e82 (patch)
tree698043ce5e73174a3f9dd1b8eb18623d1933c94a /drivers/net/usb
parentd77e41e12744e53ca7f98f920350998b5f00c93a (diff)
net/usb: add relative mii functions for r815x
Base on cdc_ether, add the mii functions for RTL8152 and RTL8153. The RTL8152 and RTL8153 support ECM mode which use the driver of cdc_ether. Add the mii functions. Then, the basic PHY access is possible. Signed-off-by: Hayes Wang <hayeswang@realtek.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb')
-rw-r--r--drivers/net/usb/Makefile2
-rw-r--r--drivers/net/usb/cdc_ether.c9
-rw-r--r--drivers/net/usb/r815x.c231
3 files changed, 239 insertions, 3 deletions
diff --git a/drivers/net/usb/Makefile b/drivers/net/usb/Makefile
index 9ab5c9d4b45a..e8171784529d 100644
--- a/drivers/net/usb/Makefile
+++ b/drivers/net/usb/Makefile
@@ -11,7 +11,7 @@ obj-$(CONFIG_USB_HSO) += hso.o
11obj-$(CONFIG_USB_NET_AX8817X) += asix.o 11obj-$(CONFIG_USB_NET_AX8817X) += asix.o
12asix-y := asix_devices.o asix_common.o ax88172a.o 12asix-y := asix_devices.o asix_common.o ax88172a.o
13obj-$(CONFIG_USB_NET_AX88179_178A) += ax88179_178a.o 13obj-$(CONFIG_USB_NET_AX88179_178A) += ax88179_178a.o
14obj-$(CONFIG_USB_NET_CDCETHER) += cdc_ether.o 14obj-$(CONFIG_USB_NET_CDCETHER) += cdc_ether.o r815x.o
15obj-$(CONFIG_USB_NET_CDC_EEM) += cdc_eem.o 15obj-$(CONFIG_USB_NET_CDC_EEM) += cdc_eem.o
16obj-$(CONFIG_USB_NET_DM9601) += dm9601.o 16obj-$(CONFIG_USB_NET_DM9601) += dm9601.o
17obj-$(CONFIG_USB_NET_SMSC75XX) += smsc75xx.o 17obj-$(CONFIG_USB_NET_SMSC75XX) += smsc75xx.o
diff --git a/drivers/net/usb/cdc_ether.c b/drivers/net/usb/cdc_ether.c
index 4393f1483126..03ad4dc293aa 100644
--- a/drivers/net/usb/cdc_ether.c
+++ b/drivers/net/usb/cdc_ether.c
@@ -646,13 +646,18 @@ static const struct usb_device_id products [] = {
646}, 646},
647 647
648/* Realtek RTL8152 Based USB 2.0 Ethernet Adapters */ 648/* Realtek RTL8152 Based USB 2.0 Ethernet Adapters */
649#if defined(CONFIG_USB_RTL8152) || defined(CONFIG_USB_RTL8152_MODULE)
650{ 649{
651 USB_DEVICE_AND_INTERFACE_INFO(REALTEK_VENDOR_ID, 0x8152, USB_CLASS_COMM, 650 USB_DEVICE_AND_INTERFACE_INFO(REALTEK_VENDOR_ID, 0x8152, USB_CLASS_COMM,
652 USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE), 651 USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
653 .driver_info = 0, 652 .driver_info = 0,
654}, 653},
655#endif 654
655/* Realtek RTL8153 Based USB 3.0 Ethernet Adapters */
656{
657 USB_DEVICE_AND_INTERFACE_INFO(REALTEK_VENDOR_ID, 0x8153, USB_CLASS_COMM,
658 USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
659 .driver_info = 0,
660},
656 661
657/* 662/*
658 * WHITELIST!!! 663 * WHITELIST!!!
diff --git a/drivers/net/usb/r815x.c b/drivers/net/usb/r815x.c
new file mode 100644
index 000000000000..65167377ff09
--- /dev/null
+++ b/drivers/net/usb/r815x.c
@@ -0,0 +1,231 @@
1#include <linux/module.h>
2#include <linux/netdevice.h>
3#include <linux/mii.h>
4#include <linux/usb.h>
5#include <linux/usb/cdc.h>
6#include <linux/usb/usbnet.h>
7
8#define RTL815x_REQT_READ 0xc0
9#define RTL815x_REQT_WRITE 0x40
10#define RTL815x_REQ_GET_REGS 0x05
11#define RTL815x_REQ_SET_REGS 0x05
12
13#define MCU_TYPE_PLA 0x0100
14#define OCP_BASE 0xe86c
15#define BASE_MII 0xa400
16
17#define BYTE_EN_DWORD 0xff
18#define BYTE_EN_WORD 0x33
19#define BYTE_EN_BYTE 0x11
20
21#define R815x_PHY_ID 32
22#define REALTEK_VENDOR_ID 0x0bda
23
24
25static int pla_read_word(struct usb_device *udev, u16 index)
26{
27 int data, ret;
28 u8 shift = index & 2;
29
30 index &= ~3;
31
32 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
33 RTL815x_REQ_GET_REGS, RTL815x_REQT_READ,
34 index, MCU_TYPE_PLA, &data, sizeof(data), 500);
35 if (ret < 0)
36 return ret;
37
38 data = __le32_to_cpu(data);
39 data >>= (shift * 8);
40 data &= 0xffff;
41
42 return data;
43}
44
45static int pla_write_word(struct usb_device *udev, u16 index, u32 data)
46{
47 u32 tmp, mask = 0xffff;
48 u16 byen = BYTE_EN_WORD;
49 u8 shift = index & 2;
50 int ret;
51
52 data &= mask;
53
54 if (shift) {
55 byen <<= shift;
56 mask <<= (shift * 8);
57 data <<= (shift * 8);
58 index &= ~3;
59 }
60
61 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
62 RTL815x_REQ_GET_REGS, RTL815x_REQT_READ,
63 index, MCU_TYPE_PLA, &tmp, sizeof(tmp), 500);
64 if (ret < 0)
65 return ret;
66
67 tmp = __le32_to_cpu(tmp) & ~mask;
68 tmp |= data;
69 tmp = __cpu_to_le32(tmp);
70
71 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
72 RTL815x_REQ_SET_REGS, RTL815x_REQT_WRITE,
73 index, MCU_TYPE_PLA | byen, &tmp,
74 sizeof(tmp), 500);
75
76 return ret;
77}
78
79static int ocp_reg_read(struct usbnet *dev, u16 addr)
80{
81 u16 ocp_base, ocp_index;
82 int ret;
83
84 ocp_base = addr & 0xf000;
85 ret = pla_write_word(dev->udev, OCP_BASE, ocp_base);
86 if (ret < 0)
87 goto out;
88
89 ocp_index = (addr & 0x0fff) | 0xb000;
90 ret = pla_read_word(dev->udev, ocp_index);
91
92out:
93 return ret;
94}
95
96static int ocp_reg_write(struct usbnet *dev, u16 addr, u16 data)
97{
98 u16 ocp_base, ocp_index;
99 int ret;
100
101 ocp_base = addr & 0xf000;
102 ret = pla_write_word(dev->udev, OCP_BASE, ocp_base);
103 if (ret < 0)
104 goto out1;
105
106 ocp_index = (addr & 0x0fff) | 0xb000;
107 ret = pla_write_word(dev->udev, ocp_index, data);
108
109out1:
110 return ret;
111}
112
113static int r815x_mdio_read(struct net_device *netdev, int phy_id, int reg)
114{
115 struct usbnet *dev = netdev_priv(netdev);
116
117 if (phy_id != R815x_PHY_ID)
118 return -EINVAL;
119
120 return ocp_reg_read(dev, BASE_MII + reg * 2);
121}
122
123static
124void r815x_mdio_write(struct net_device *netdev, int phy_id, int reg, int val)
125{
126 struct usbnet *dev = netdev_priv(netdev);
127
128 if (phy_id != R815x_PHY_ID)
129 return;
130
131 ocp_reg_write(dev, BASE_MII + reg * 2, val);
132}
133
134static int r8153_bind(struct usbnet *dev, struct usb_interface *intf)
135{
136 int status;
137
138 status = usbnet_cdc_bind(dev, intf);
139 if (status < 0)
140 return status;
141
142 dev->mii.dev = dev->net;
143 dev->mii.mdio_read = r815x_mdio_read;
144 dev->mii.mdio_write = r815x_mdio_write;
145 dev->mii.phy_id_mask = 0x3f;
146 dev->mii.reg_num_mask = 0x1f;
147 dev->mii.phy_id = R815x_PHY_ID;
148 dev->mii.supports_gmii = 1;
149
150 return 0;
151}
152
153static int r8152_bind(struct usbnet *dev, struct usb_interface *intf)
154{
155 int status;
156
157 status = usbnet_cdc_bind(dev, intf);
158 if (status < 0)
159 return status;
160
161 dev->mii.dev = dev->net;
162 dev->mii.mdio_read = r815x_mdio_read;
163 dev->mii.mdio_write = r815x_mdio_write;
164 dev->mii.phy_id_mask = 0x3f;
165 dev->mii.reg_num_mask = 0x1f;
166 dev->mii.phy_id = R815x_PHY_ID;
167 dev->mii.supports_gmii = 0;
168
169 return 0;
170}
171
172static const struct driver_info r8152_info = {
173 .description = "RTL8152 ECM Device",
174 .flags = FLAG_ETHER | FLAG_POINTTOPOINT,
175 .bind = r8152_bind,
176 .unbind = usbnet_cdc_unbind,
177 .status = usbnet_cdc_status,
178 .manage_power = usbnet_manage_power,
179};
180
181static const struct driver_info r8153_info = {
182 .description = "RTL8153 ECM Device",
183 .flags = FLAG_ETHER | FLAG_POINTTOPOINT,
184 .bind = r8153_bind,
185 .unbind = usbnet_cdc_unbind,
186 .status = usbnet_cdc_status,
187 .manage_power = usbnet_manage_power,
188};
189
190static const struct usb_device_id products[] = {
191{
192 USB_DEVICE_AND_INTERFACE_INFO(REALTEK_VENDOR_ID, 0x8152, USB_CLASS_COMM,
193 USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
194#if defined(CONFIG_USB_RTL8152) || defined(CONFIG_USB_RTL8152_MODULE)
195 .driver_info = 0,
196#else
197 .driver_info = (unsigned long) &r8152_info,
198#endif
199},
200
201{
202 USB_DEVICE_AND_INTERFACE_INFO(REALTEK_VENDOR_ID, 0x8153, USB_CLASS_COMM,
203 USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
204#if defined(CONFIG_USB_RTL8153) || defined(CONFIG_USB_RTL8153_MODULE)
205 .driver_info = 0,
206#else
207 .driver_info = (unsigned long) &r8153_info,
208#endif
209},
210
211 { }, /* END */
212};
213MODULE_DEVICE_TABLE(usb, products);
214
215static struct usb_driver r815x_driver = {
216 .name = "r815x",
217 .id_table = products,
218 .probe = usbnet_probe,
219 .disconnect = usbnet_disconnect,
220 .suspend = usbnet_suspend,
221 .resume = usbnet_resume,
222 .reset_resume = usbnet_resume,
223 .supports_autosuspend = 1,
224 .disable_hub_initiated_lpm = 1,
225};
226
227module_usb_driver(r815x_driver);
228
229MODULE_AUTHOR("Hayes Wang");
230MODULE_DESCRIPTION("Realtek USB ECM device");
231MODULE_LICENSE("GPL");