xref: /openbmc/linux/drivers/net/usb/r8152.c (revision 022dacdd)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *  Copyright (c) 2014 Realtek Semiconductor Corp. All rights reserved.
4  */
5 
6 #include <linux/signal.h>
7 #include <linux/slab.h>
8 #include <linux/module.h>
9 #include <linux/netdevice.h>
10 #include <linux/etherdevice.h>
11 #include <linux/mii.h>
12 #include <linux/ethtool.h>
13 #include <linux/usb.h>
14 #include <linux/crc32.h>
15 #include <linux/if_vlan.h>
16 #include <linux/uaccess.h>
17 #include <linux/list.h>
18 #include <linux/ip.h>
19 #include <linux/ipv6.h>
20 #include <net/ip6_checksum.h>
21 #include <uapi/linux/mdio.h>
22 #include <linux/mdio.h>
23 #include <linux/usb/cdc.h>
24 #include <linux/suspend.h>
25 #include <linux/atomic.h>
26 #include <linux/acpi.h>
27 #include <linux/firmware.h>
28 #include <crypto/hash.h>
29 
30 /* Information for net-next */
31 #define NETNEXT_VERSION		"11"
32 
33 /* Information for net */
34 #define NET_VERSION		"11"
35 
36 #define DRIVER_VERSION		"v1." NETNEXT_VERSION "." NET_VERSION
37 #define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>"
38 #define DRIVER_DESC "Realtek RTL8152/RTL8153 Based USB Ethernet Adapters"
39 #define MODULENAME "r8152"
40 
41 #define R8152_PHY_ID		32
42 
43 #define PLA_IDR			0xc000
44 #define PLA_RCR			0xc010
45 #define PLA_RMS			0xc016
46 #define PLA_RXFIFO_CTRL0	0xc0a0
47 #define PLA_RXFIFO_CTRL1	0xc0a4
48 #define PLA_RXFIFO_CTRL2	0xc0a8
49 #define PLA_DMY_REG0		0xc0b0
50 #define PLA_FMC			0xc0b4
51 #define PLA_CFG_WOL		0xc0b6
52 #define PLA_TEREDO_CFG		0xc0bc
53 #define PLA_TEREDO_WAKE_BASE	0xc0c4
54 #define PLA_MAR			0xcd00
55 #define PLA_BACKUP		0xd000
56 #define PLA_BDC_CR		0xd1a0
57 #define PLA_TEREDO_TIMER	0xd2cc
58 #define PLA_REALWOW_TIMER	0xd2e8
59 #define PLA_UPHY_TIMER		0xd388
60 #define PLA_SUSPEND_FLAG	0xd38a
61 #define PLA_INDICATE_FALG	0xd38c
62 #define PLA_MACDBG_PRE		0xd38c	/* RTL_VER_04 only */
63 #define PLA_MACDBG_POST		0xd38e	/* RTL_VER_04 only */
64 #define PLA_EXTRA_STATUS	0xd398
65 #define PLA_EFUSE_DATA		0xdd00
66 #define PLA_EFUSE_CMD		0xdd02
67 #define PLA_LEDSEL		0xdd90
68 #define PLA_LED_FEATURE		0xdd92
69 #define PLA_PHYAR		0xde00
70 #define PLA_BOOT_CTRL		0xe004
71 #define PLA_LWAKE_CTRL_REG	0xe007
72 #define PLA_GPHY_INTR_IMR	0xe022
73 #define PLA_EEE_CR		0xe040
74 #define PLA_EEEP_CR		0xe080
75 #define PLA_MAC_PWR_CTRL	0xe0c0
76 #define PLA_MAC_PWR_CTRL2	0xe0ca
77 #define PLA_MAC_PWR_CTRL3	0xe0cc
78 #define PLA_MAC_PWR_CTRL4	0xe0ce
79 #define PLA_WDT6_CTRL		0xe428
80 #define PLA_TCR0		0xe610
81 #define PLA_TCR1		0xe612
82 #define PLA_MTPS		0xe615
83 #define PLA_TXFIFO_CTRL		0xe618
84 #define PLA_RSTTALLY		0xe800
85 #define PLA_CR			0xe813
86 #define PLA_CRWECR		0xe81c
87 #define PLA_CONFIG12		0xe81e	/* CONFIG1, CONFIG2 */
88 #define PLA_CONFIG34		0xe820	/* CONFIG3, CONFIG4 */
89 #define PLA_CONFIG5		0xe822
90 #define PLA_PHY_PWR		0xe84c
91 #define PLA_OOB_CTRL		0xe84f
92 #define PLA_CPCR		0xe854
93 #define PLA_MISC_0		0xe858
94 #define PLA_MISC_1		0xe85a
95 #define PLA_OCP_GPHY_BASE	0xe86c
96 #define PLA_TALLYCNT		0xe890
97 #define PLA_SFF_STS_7		0xe8de
98 #define PLA_PHYSTATUS		0xe908
99 #define PLA_CONFIG6		0xe90a /* CONFIG6 */
100 #define PLA_BP_BA		0xfc26
101 #define PLA_BP_0		0xfc28
102 #define PLA_BP_1		0xfc2a
103 #define PLA_BP_2		0xfc2c
104 #define PLA_BP_3		0xfc2e
105 #define PLA_BP_4		0xfc30
106 #define PLA_BP_5		0xfc32
107 #define PLA_BP_6		0xfc34
108 #define PLA_BP_7		0xfc36
109 #define PLA_BP_EN		0xfc38
110 
111 #define USB_USB2PHY		0xb41e
112 #define USB_SSPHYLINK1		0xb426
113 #define USB_SSPHYLINK2		0xb428
114 #define USB_U2P3_CTRL		0xb460
115 #define USB_CSR_DUMMY1		0xb464
116 #define USB_CSR_DUMMY2		0xb466
117 #define USB_DEV_STAT		0xb808
118 #define USB_CONNECT_TIMER	0xcbf8
119 #define USB_MSC_TIMER		0xcbfc
120 #define USB_BURST_SIZE		0xcfc0
121 #define USB_FW_FIX_EN0		0xcfca
122 #define USB_FW_FIX_EN1		0xcfcc
123 #define USB_LPM_CONFIG		0xcfd8
124 #define USB_CSTMR		0xcfef	/* RTL8153A */
125 #define USB_FW_CTRL		0xd334	/* RTL8153B */
126 #define USB_FC_TIMER		0xd340
127 #define USB_USB_CTRL		0xd406
128 #define USB_PHY_CTRL		0xd408
129 #define USB_TX_AGG		0xd40a
130 #define USB_RX_BUF_TH		0xd40c
131 #define USB_USB_TIMER		0xd428
132 #define USB_RX_EARLY_TIMEOUT	0xd42c
133 #define USB_RX_EARLY_SIZE	0xd42e
134 #define USB_PM_CTRL_STATUS	0xd432	/* RTL8153A */
135 #define USB_RX_EXTRA_AGGR_TMR	0xd432	/* RTL8153B */
136 #define USB_TX_DMA		0xd434
137 #define USB_UPT_RXDMA_OWN	0xd437
138 #define USB_TOLERANCE		0xd490
139 #define USB_LPM_CTRL		0xd41a
140 #define USB_BMU_RESET		0xd4b0
141 #define USB_U1U2_TIMER		0xd4da
142 #define USB_FW_TASK		0xd4e8	/* RTL8153B */
143 #define USB_UPS_CTRL		0xd800
144 #define USB_POWER_CUT		0xd80a
145 #define USB_MISC_0		0xd81a
146 #define USB_MISC_1		0xd81f
147 #define USB_AFE_CTRL2		0xd824
148 #define USB_UPS_CFG		0xd842
149 #define USB_UPS_FLAGS		0xd848
150 #define USB_WDT1_CTRL		0xe404
151 #define USB_WDT11_CTRL		0xe43c
152 #define USB_BP_BA		PLA_BP_BA
153 #define USB_BP_0		PLA_BP_0
154 #define USB_BP_1		PLA_BP_1
155 #define USB_BP_2		PLA_BP_2
156 #define USB_BP_3		PLA_BP_3
157 #define USB_BP_4		PLA_BP_4
158 #define USB_BP_5		PLA_BP_5
159 #define USB_BP_6		PLA_BP_6
160 #define USB_BP_7		PLA_BP_7
161 #define USB_BP_EN		PLA_BP_EN	/* RTL8153A */
162 #define USB_BP_8		0xfc38		/* RTL8153B */
163 #define USB_BP_9		0xfc3a
164 #define USB_BP_10		0xfc3c
165 #define USB_BP_11		0xfc3e
166 #define USB_BP_12		0xfc40
167 #define USB_BP_13		0xfc42
168 #define USB_BP_14		0xfc44
169 #define USB_BP_15		0xfc46
170 #define USB_BP2_EN		0xfc48
171 
172 /* OCP Registers */
173 #define OCP_ALDPS_CONFIG	0x2010
174 #define OCP_EEE_CONFIG1		0x2080
175 #define OCP_EEE_CONFIG2		0x2092
176 #define OCP_EEE_CONFIG3		0x2094
177 #define OCP_BASE_MII		0xa400
178 #define OCP_EEE_AR		0xa41a
179 #define OCP_EEE_DATA		0xa41c
180 #define OCP_PHY_STATUS		0xa420
181 #define OCP_NCTL_CFG		0xa42c
182 #define OCP_POWER_CFG		0xa430
183 #define OCP_EEE_CFG		0xa432
184 #define OCP_SRAM_ADDR		0xa436
185 #define OCP_SRAM_DATA		0xa438
186 #define OCP_DOWN_SPEED		0xa442
187 #define OCP_EEE_ABLE		0xa5c4
188 #define OCP_EEE_ADV		0xa5d0
189 #define OCP_EEE_LPABLE		0xa5d2
190 #define OCP_PHY_STATE		0xa708		/* nway state for 8153 */
191 #define OCP_PHY_PATCH_STAT	0xb800
192 #define OCP_PHY_PATCH_CMD	0xb820
193 #define OCP_PHY_LOCK		0xb82e
194 #define OCP_ADC_IOFFSET		0xbcfc
195 #define OCP_ADC_CFG		0xbc06
196 #define OCP_SYSCLK_CFG		0xc416
197 
198 /* SRAM Register */
199 #define SRAM_GREEN_CFG		0x8011
200 #define SRAM_LPF_CFG		0x8012
201 #define SRAM_10M_AMP1		0x8080
202 #define SRAM_10M_AMP2		0x8082
203 #define SRAM_IMPEDANCE		0x8084
204 #define SRAM_PHY_LOCK		0xb82e
205 
206 /* PLA_RCR */
207 #define RCR_AAP			0x00000001
208 #define RCR_APM			0x00000002
209 #define RCR_AM			0x00000004
210 #define RCR_AB			0x00000008
211 #define RCR_ACPT_ALL		(RCR_AAP | RCR_APM | RCR_AM | RCR_AB)
212 
213 /* PLA_RXFIFO_CTRL0 */
214 #define RXFIFO_THR1_NORMAL	0x00080002
215 #define RXFIFO_THR1_OOB		0x01800003
216 
217 /* PLA_RXFIFO_CTRL1 */
218 #define RXFIFO_THR2_FULL	0x00000060
219 #define RXFIFO_THR2_HIGH	0x00000038
220 #define RXFIFO_THR2_OOB		0x0000004a
221 #define RXFIFO_THR2_NORMAL	0x00a0
222 
223 /* PLA_RXFIFO_CTRL2 */
224 #define RXFIFO_THR3_FULL	0x00000078
225 #define RXFIFO_THR3_HIGH	0x00000048
226 #define RXFIFO_THR3_OOB		0x0000005a
227 #define RXFIFO_THR3_NORMAL	0x0110
228 
229 /* PLA_TXFIFO_CTRL */
230 #define TXFIFO_THR_NORMAL	0x00400008
231 #define TXFIFO_THR_NORMAL2	0x01000008
232 
233 /* PLA_DMY_REG0 */
234 #define ECM_ALDPS		0x0002
235 
236 /* PLA_FMC */
237 #define FMC_FCR_MCU_EN		0x0001
238 
239 /* PLA_EEEP_CR */
240 #define EEEP_CR_EEEP_TX		0x0002
241 
242 /* PLA_WDT6_CTRL */
243 #define WDT6_SET_MODE		0x0010
244 
245 /* PLA_TCR0 */
246 #define TCR0_TX_EMPTY		0x0800
247 #define TCR0_AUTO_FIFO		0x0080
248 
249 /* PLA_TCR1 */
250 #define VERSION_MASK		0x7cf0
251 
252 /* PLA_MTPS */
253 #define MTPS_JUMBO		(12 * 1024 / 64)
254 #define MTPS_DEFAULT		(6 * 1024 / 64)
255 
256 /* PLA_RSTTALLY */
257 #define TALLY_RESET		0x0001
258 
259 /* PLA_CR */
260 #define CR_RST			0x10
261 #define CR_RE			0x08
262 #define CR_TE			0x04
263 
264 /* PLA_CRWECR */
265 #define CRWECR_NORAML		0x00
266 #define CRWECR_CONFIG		0xc0
267 
268 /* PLA_OOB_CTRL */
269 #define NOW_IS_OOB		0x80
270 #define TXFIFO_EMPTY		0x20
271 #define RXFIFO_EMPTY		0x10
272 #define LINK_LIST_READY		0x02
273 #define DIS_MCU_CLROOB		0x01
274 #define FIFO_EMPTY		(TXFIFO_EMPTY | RXFIFO_EMPTY)
275 
276 /* PLA_MISC_1 */
277 #define RXDY_GATED_EN		0x0008
278 
279 /* PLA_SFF_STS_7 */
280 #define RE_INIT_LL		0x8000
281 #define MCU_BORW_EN		0x4000
282 
283 /* PLA_CPCR */
284 #define CPCR_RX_VLAN		0x0040
285 
286 /* PLA_CFG_WOL */
287 #define MAGIC_EN		0x0001
288 
289 /* PLA_TEREDO_CFG */
290 #define TEREDO_SEL		0x8000
291 #define TEREDO_WAKE_MASK	0x7f00
292 #define TEREDO_RS_EVENT_MASK	0x00fe
293 #define OOB_TEREDO_EN		0x0001
294 
295 /* PLA_BDC_CR */
296 #define ALDPS_PROXY_MODE	0x0001
297 
298 /* PLA_EFUSE_CMD */
299 #define EFUSE_READ_CMD		BIT(15)
300 #define EFUSE_DATA_BIT16	BIT(7)
301 
302 /* PLA_CONFIG34 */
303 #define LINK_ON_WAKE_EN		0x0010
304 #define LINK_OFF_WAKE_EN	0x0008
305 
306 /* PLA_CONFIG6 */
307 #define LANWAKE_CLR_EN		BIT(0)
308 
309 /* PLA_CONFIG5 */
310 #define BWF_EN			0x0040
311 #define MWF_EN			0x0020
312 #define UWF_EN			0x0010
313 #define LAN_WAKE_EN		0x0002
314 
315 /* PLA_LED_FEATURE */
316 #define LED_MODE_MASK		0x0700
317 
318 /* PLA_PHY_PWR */
319 #define TX_10M_IDLE_EN		0x0080
320 #define PFM_PWM_SWITCH		0x0040
321 #define TEST_IO_OFF		BIT(4)
322 
323 /* PLA_MAC_PWR_CTRL */
324 #define D3_CLK_GATED_EN		0x00004000
325 #define MCU_CLK_RATIO		0x07010f07
326 #define MCU_CLK_RATIO_MASK	0x0f0f0f0f
327 #define ALDPS_SPDWN_RATIO	0x0f87
328 
329 /* PLA_MAC_PWR_CTRL2 */
330 #define EEE_SPDWN_RATIO		0x8007
331 #define MAC_CLK_SPDWN_EN	BIT(15)
332 
333 /* PLA_MAC_PWR_CTRL3 */
334 #define PLA_MCU_SPDWN_EN	BIT(14)
335 #define PKT_AVAIL_SPDWN_EN	0x0100
336 #define SUSPEND_SPDWN_EN	0x0004
337 #define U1U2_SPDWN_EN		0x0002
338 #define L1_SPDWN_EN		0x0001
339 
340 /* PLA_MAC_PWR_CTRL4 */
341 #define PWRSAVE_SPDWN_EN	0x1000
342 #define RXDV_SPDWN_EN		0x0800
343 #define TX10MIDLE_EN		0x0100
344 #define TP100_SPDWN_EN		0x0020
345 #define TP500_SPDWN_EN		0x0010
346 #define TP1000_SPDWN_EN		0x0008
347 #define EEE_SPDWN_EN		0x0001
348 
349 /* PLA_GPHY_INTR_IMR */
350 #define GPHY_STS_MSK		0x0001
351 #define SPEED_DOWN_MSK		0x0002
352 #define SPDWN_RXDV_MSK		0x0004
353 #define SPDWN_LINKCHG_MSK	0x0008
354 
355 /* PLA_PHYAR */
356 #define PHYAR_FLAG		0x80000000
357 
358 /* PLA_EEE_CR */
359 #define EEE_RX_EN		0x0001
360 #define EEE_TX_EN		0x0002
361 
362 /* PLA_BOOT_CTRL */
363 #define AUTOLOAD_DONE		0x0002
364 
365 /* PLA_LWAKE_CTRL_REG */
366 #define LANWAKE_PIN		BIT(7)
367 
368 /* PLA_SUSPEND_FLAG */
369 #define LINK_CHG_EVENT		BIT(0)
370 
371 /* PLA_INDICATE_FALG */
372 #define UPCOMING_RUNTIME_D3	BIT(0)
373 
374 /* PLA_MACDBG_PRE and PLA_MACDBG_POST */
375 #define DEBUG_OE		BIT(0)
376 #define DEBUG_LTSSM		0x0082
377 
378 /* PLA_EXTRA_STATUS */
379 #define CUR_LINK_OK		BIT(15)
380 #define U3P3_CHECK_EN		BIT(7)	/* RTL_VER_05 only */
381 #define LINK_CHANGE_FLAG	BIT(8)
382 #define POLL_LINK_CHG		BIT(0)
383 
384 /* USB_USB2PHY */
385 #define USB2PHY_SUSPEND		0x0001
386 #define USB2PHY_L1		0x0002
387 
388 /* USB_SSPHYLINK1 */
389 #define DELAY_PHY_PWR_CHG	BIT(1)
390 
391 /* USB_SSPHYLINK2 */
392 #define pwd_dn_scale_mask	0x3ffe
393 #define pwd_dn_scale(x)		((x) << 1)
394 
395 /* USB_CSR_DUMMY1 */
396 #define DYNAMIC_BURST		0x0001
397 
398 /* USB_CSR_DUMMY2 */
399 #define EP4_FULL_FC		0x0001
400 
401 /* USB_DEV_STAT */
402 #define STAT_SPEED_MASK		0x0006
403 #define STAT_SPEED_HIGH		0x0000
404 #define STAT_SPEED_FULL		0x0002
405 
406 /* USB_FW_FIX_EN0 */
407 #define FW_FIX_SUSPEND		BIT(14)
408 
409 /* USB_FW_FIX_EN1 */
410 #define FW_IP_RESET_EN		BIT(9)
411 
412 /* USB_LPM_CONFIG */
413 #define LPM_U1U2_EN		BIT(0)
414 
415 /* USB_TX_AGG */
416 #define TX_AGG_MAX_THRESHOLD	0x03
417 
418 /* USB_RX_BUF_TH */
419 #define RX_THR_SUPPER		0x0c350180
420 #define RX_THR_HIGH		0x7a120180
421 #define RX_THR_SLOW		0xffff0180
422 #define RX_THR_B		0x00010001
423 
424 /* USB_TX_DMA */
425 #define TEST_MODE_DISABLE	0x00000001
426 #define TX_SIZE_ADJUST1		0x00000100
427 
428 /* USB_BMU_RESET */
429 #define BMU_RESET_EP_IN		0x01
430 #define BMU_RESET_EP_OUT	0x02
431 
432 /* USB_UPT_RXDMA_OWN */
433 #define OWN_UPDATE		BIT(0)
434 #define OWN_CLEAR		BIT(1)
435 
436 /* USB_FW_TASK */
437 #define FC_PATCH_TASK		BIT(1)
438 
439 /* USB_UPS_CTRL */
440 #define POWER_CUT		0x0100
441 
442 /* USB_PM_CTRL_STATUS */
443 #define RESUME_INDICATE		0x0001
444 
445 /* USB_CSTMR */
446 #define FORCE_SUPER		BIT(0)
447 
448 /* USB_FW_CTRL */
449 #define FLOW_CTRL_PATCH_OPT	BIT(1)
450 
451 /* USB_FC_TIMER */
452 #define CTRL_TIMER_EN		BIT(15)
453 
454 /* USB_USB_CTRL */
455 #define RX_AGG_DISABLE		0x0010
456 #define RX_ZERO_EN		0x0080
457 
458 /* USB_U2P3_CTRL */
459 #define U2P3_ENABLE		0x0001
460 
461 /* USB_POWER_CUT */
462 #define PWR_EN			0x0001
463 #define PHASE2_EN		0x0008
464 #define UPS_EN			BIT(4)
465 #define USP_PREWAKE		BIT(5)
466 
467 /* USB_MISC_0 */
468 #define PCUT_STATUS		0x0001
469 
470 /* USB_RX_EARLY_TIMEOUT */
471 #define COALESCE_SUPER		 85000U
472 #define COALESCE_HIGH		250000U
473 #define COALESCE_SLOW		524280U
474 
475 /* USB_WDT1_CTRL */
476 #define WTD1_EN			BIT(0)
477 
478 /* USB_WDT11_CTRL */
479 #define TIMER11_EN		0x0001
480 
481 /* USB_LPM_CTRL */
482 /* bit 4 ~ 5: fifo empty boundary */
483 #define FIFO_EMPTY_1FB		0x30	/* 0x1fb * 64 = 32448 bytes */
484 /* bit 2 ~ 3: LMP timer */
485 #define LPM_TIMER_MASK		0x0c
486 #define LPM_TIMER_500MS		0x04	/* 500 ms */
487 #define LPM_TIMER_500US		0x0c	/* 500 us */
488 #define ROK_EXIT_LPM		0x02
489 
490 /* USB_AFE_CTRL2 */
491 #define SEN_VAL_MASK		0xf800
492 #define SEN_VAL_NORMAL		0xa000
493 #define SEL_RXIDLE		0x0100
494 
495 /* USB_UPS_CFG */
496 #define SAW_CNT_1MS_MASK	0x0fff
497 
498 /* USB_UPS_FLAGS */
499 #define UPS_FLAGS_R_TUNE		BIT(0)
500 #define UPS_FLAGS_EN_10M_CKDIV		BIT(1)
501 #define UPS_FLAGS_250M_CKDIV		BIT(2)
502 #define UPS_FLAGS_EN_ALDPS		BIT(3)
503 #define UPS_FLAGS_CTAP_SHORT_DIS	BIT(4)
504 #define ups_flags_speed(x)		((x) << 16)
505 #define UPS_FLAGS_EN_EEE		BIT(20)
506 #define UPS_FLAGS_EN_500M_EEE		BIT(21)
507 #define UPS_FLAGS_EN_EEE_CKDIV		BIT(22)
508 #define UPS_FLAGS_EEE_PLLOFF_100	BIT(23)
509 #define UPS_FLAGS_EEE_PLLOFF_GIGA	BIT(24)
510 #define UPS_FLAGS_EEE_CMOD_LV_EN	BIT(25)
511 #define UPS_FLAGS_EN_GREEN		BIT(26)
512 #define UPS_FLAGS_EN_FLOW_CTR		BIT(27)
513 
514 enum spd_duplex {
515 	NWAY_10M_HALF,
516 	NWAY_10M_FULL,
517 	NWAY_100M_HALF,
518 	NWAY_100M_FULL,
519 	NWAY_1000M_FULL,
520 	FORCE_10M_HALF,
521 	FORCE_10M_FULL,
522 	FORCE_100M_HALF,
523 	FORCE_100M_FULL,
524 };
525 
526 /* OCP_ALDPS_CONFIG */
527 #define ENPWRSAVE		0x8000
528 #define ENPDNPS			0x0200
529 #define LINKENA			0x0100
530 #define DIS_SDSAVE		0x0010
531 
532 /* OCP_PHY_STATUS */
533 #define PHY_STAT_MASK		0x0007
534 #define PHY_STAT_EXT_INIT	2
535 #define PHY_STAT_LAN_ON		3
536 #define PHY_STAT_PWRDN		5
537 
538 /* OCP_NCTL_CFG */
539 #define PGA_RETURN_EN		BIT(1)
540 
541 /* OCP_POWER_CFG */
542 #define EEE_CLKDIV_EN		0x8000
543 #define EN_ALDPS		0x0004
544 #define EN_10M_PLLOFF		0x0001
545 
546 /* OCP_EEE_CONFIG1 */
547 #define RG_TXLPI_MSK_HFDUP	0x8000
548 #define RG_MATCLR_EN		0x4000
549 #define EEE_10_CAP		0x2000
550 #define EEE_NWAY_EN		0x1000
551 #define TX_QUIET_EN		0x0200
552 #define RX_QUIET_EN		0x0100
553 #define sd_rise_time_mask	0x0070
554 #define sd_rise_time(x)		(min(x, 7) << 4)	/* bit 4 ~ 6 */
555 #define RG_RXLPI_MSK_HFDUP	0x0008
556 #define SDFALLTIME		0x0007	/* bit 0 ~ 2 */
557 
558 /* OCP_EEE_CONFIG2 */
559 #define RG_LPIHYS_NUM		0x7000	/* bit 12 ~ 15 */
560 #define RG_DACQUIET_EN		0x0400
561 #define RG_LDVQUIET_EN		0x0200
562 #define RG_CKRSEL		0x0020
563 #define RG_EEEPRG_EN		0x0010
564 
565 /* OCP_EEE_CONFIG3 */
566 #define fast_snr_mask		0xff80
567 #define fast_snr(x)		(min(x, 0x1ff) << 7)	/* bit 7 ~ 15 */
568 #define RG_LFS_SEL		0x0060	/* bit 6 ~ 5 */
569 #define MSK_PH			0x0006	/* bit 0 ~ 3 */
570 
571 /* OCP_EEE_AR */
572 /* bit[15:14] function */
573 #define FUN_ADDR		0x0000
574 #define FUN_DATA		0x4000
575 /* bit[4:0] device addr */
576 
577 /* OCP_EEE_CFG */
578 #define CTAP_SHORT_EN		0x0040
579 #define EEE10_EN		0x0010
580 
581 /* OCP_DOWN_SPEED */
582 #define EN_EEE_CMODE		BIT(14)
583 #define EN_EEE_1000		BIT(13)
584 #define EN_EEE_100		BIT(12)
585 #define EN_10M_CLKDIV		BIT(11)
586 #define EN_10M_BGOFF		0x0080
587 
588 /* OCP_PHY_STATE */
589 #define TXDIS_STATE		0x01
590 #define ABD_STATE		0x02
591 
592 /* OCP_PHY_PATCH_STAT */
593 #define PATCH_READY		BIT(6)
594 
595 /* OCP_PHY_PATCH_CMD */
596 #define PATCH_REQUEST		BIT(4)
597 
598 /* OCP_PHY_LOCK */
599 #define PATCH_LOCK		BIT(0)
600 
601 /* OCP_ADC_CFG */
602 #define CKADSEL_L		0x0100
603 #define ADC_EN			0x0080
604 #define EN_EMI_L		0x0040
605 
606 /* OCP_SYSCLK_CFG */
607 #define clk_div_expo(x)		(min(x, 5) << 8)
608 
609 /* SRAM_GREEN_CFG */
610 #define GREEN_ETH_EN		BIT(15)
611 #define R_TUNE_EN		BIT(11)
612 
613 /* SRAM_LPF_CFG */
614 #define LPF_AUTO_TUNE		0x8000
615 
616 /* SRAM_10M_AMP1 */
617 #define GDAC_IB_UPALL		0x0008
618 
619 /* SRAM_10M_AMP2 */
620 #define AMP_DN			0x0200
621 
622 /* SRAM_IMPEDANCE */
623 #define RX_DRIVING_MASK		0x6000
624 
625 /* SRAM_PHY_LOCK */
626 #define PHY_PATCH_LOCK		0x0001
627 
628 /* MAC PASSTHRU */
629 #define AD_MASK			0xfee0
630 #define BND_MASK		0x0004
631 #define BD_MASK			0x0001
632 #define EFUSE			0xcfdb
633 #define PASS_THRU_MASK		0x1
634 
635 #define BP4_SUPER_ONLY		0x1578	/* RTL_VER_04 only */
636 
637 enum rtl_register_content {
638 	_1000bps	= 0x10,
639 	_100bps		= 0x08,
640 	_10bps		= 0x04,
641 	LINK_STATUS	= 0x02,
642 	FULL_DUP	= 0x01,
643 };
644 
645 #define RTL8152_MAX_TX		4
646 #define RTL8152_MAX_RX		10
647 #define INTBUFSIZE		2
648 #define TX_ALIGN		4
649 #define RX_ALIGN		8
650 
651 #define RTL8152_RX_MAX_PENDING	4096
652 #define RTL8152_RXFG_HEADSZ	256
653 
654 #define INTR_LINK		0x0004
655 
656 #define RTL8152_REQT_READ	0xc0
657 #define RTL8152_REQT_WRITE	0x40
658 #define RTL8152_REQ_GET_REGS	0x05
659 #define RTL8152_REQ_SET_REGS	0x05
660 
661 #define BYTE_EN_DWORD		0xff
662 #define BYTE_EN_WORD		0x33
663 #define BYTE_EN_BYTE		0x11
664 #define BYTE_EN_SIX_BYTES	0x3f
665 #define BYTE_EN_START_MASK	0x0f
666 #define BYTE_EN_END_MASK	0xf0
667 
668 #define RTL8153_MAX_PACKET	9216 /* 9K */
669 #define RTL8153_MAX_MTU		(RTL8153_MAX_PACKET - VLAN_ETH_HLEN - \
670 				 ETH_FCS_LEN)
671 #define RTL8152_RMS		(VLAN_ETH_FRAME_LEN + ETH_FCS_LEN)
672 #define RTL8153_RMS		RTL8153_MAX_PACKET
673 #define RTL8152_TX_TIMEOUT	(5 * HZ)
674 #define RTL8152_NAPI_WEIGHT	64
675 #define rx_reserved_size(x)	((x) + VLAN_ETH_HLEN + ETH_FCS_LEN + \
676 				 sizeof(struct rx_desc) + RX_ALIGN)
677 
678 /* rtl8152 flags */
679 enum rtl8152_flags {
680 	RTL8152_UNPLUG = 0,
681 	RTL8152_SET_RX_MODE,
682 	WORK_ENABLE,
683 	RTL8152_LINK_CHG,
684 	SELECTIVE_SUSPEND,
685 	PHY_RESET,
686 	SCHEDULE_TASKLET,
687 	GREEN_ETHERNET,
688 	DELL_TB_RX_AGG_BUG,
689 	LENOVO_MACPASSTHRU,
690 };
691 
692 /* Define these values to match your device */
693 #define VENDOR_ID_REALTEK		0x0bda
694 #define VENDOR_ID_MICROSOFT		0x045e
695 #define VENDOR_ID_SAMSUNG		0x04e8
696 #define VENDOR_ID_LENOVO		0x17ef
697 #define VENDOR_ID_LINKSYS		0x13b1
698 #define VENDOR_ID_NVIDIA		0x0955
699 #define VENDOR_ID_TPLINK		0x2357
700 
701 #define DEVICE_ID_THINKPAD_THUNDERBOLT3_DOCK_GEN2	0x3082
702 #define DEVICE_ID_THINKPAD_USB_C_DOCK_GEN2		0xa387
703 
704 #define MCU_TYPE_PLA			0x0100
705 #define MCU_TYPE_USB			0x0000
706 
707 struct tally_counter {
708 	__le64	tx_packets;
709 	__le64	rx_packets;
710 	__le64	tx_errors;
711 	__le32	rx_errors;
712 	__le16	rx_missed;
713 	__le16	align_errors;
714 	__le32	tx_one_collision;
715 	__le32	tx_multi_collision;
716 	__le64	rx_unicast;
717 	__le64	rx_broadcast;
718 	__le32	rx_multicast;
719 	__le16	tx_aborted;
720 	__le16	tx_underrun;
721 };
722 
723 struct rx_desc {
724 	__le32 opts1;
725 #define RX_LEN_MASK			0x7fff
726 
727 	__le32 opts2;
728 #define RD_UDP_CS			BIT(23)
729 #define RD_TCP_CS			BIT(22)
730 #define RD_IPV6_CS			BIT(20)
731 #define RD_IPV4_CS			BIT(19)
732 
733 	__le32 opts3;
734 #define IPF				BIT(23) /* IP checksum fail */
735 #define UDPF				BIT(22) /* UDP checksum fail */
736 #define TCPF				BIT(21) /* TCP checksum fail */
737 #define RX_VLAN_TAG			BIT(16)
738 
739 	__le32 opts4;
740 	__le32 opts5;
741 	__le32 opts6;
742 };
743 
744 struct tx_desc {
745 	__le32 opts1;
746 #define TX_FS			BIT(31) /* First segment of a packet */
747 #define TX_LS			BIT(30) /* Final segment of a packet */
748 #define GTSENDV4		BIT(28)
749 #define GTSENDV6		BIT(27)
750 #define GTTCPHO_SHIFT		18
751 #define GTTCPHO_MAX		0x7fU
752 #define TX_LEN_MAX		0x3ffffU
753 
754 	__le32 opts2;
755 #define UDP_CS			BIT(31) /* Calculate UDP/IP checksum */
756 #define TCP_CS			BIT(30) /* Calculate TCP/IP checksum */
757 #define IPV4_CS			BIT(29) /* Calculate IPv4 checksum */
758 #define IPV6_CS			BIT(28) /* Calculate IPv6 checksum */
759 #define MSS_SHIFT		17
760 #define MSS_MAX			0x7ffU
761 #define TCPHO_SHIFT		17
762 #define TCPHO_MAX		0x7ffU
763 #define TX_VLAN_TAG		BIT(16)
764 };
765 
766 struct r8152;
767 
768 struct rx_agg {
769 	struct list_head list, info_list;
770 	struct urb *urb;
771 	struct r8152 *context;
772 	struct page *page;
773 	void *buffer;
774 };
775 
776 struct tx_agg {
777 	struct list_head list;
778 	struct urb *urb;
779 	struct r8152 *context;
780 	void *buffer;
781 	void *head;
782 	u32 skb_num;
783 	u32 skb_len;
784 };
785 
786 struct r8152 {
787 	unsigned long flags;
788 	struct usb_device *udev;
789 	struct napi_struct napi;
790 	struct usb_interface *intf;
791 	struct net_device *netdev;
792 	struct urb *intr_urb;
793 	struct tx_agg tx_info[RTL8152_MAX_TX];
794 	struct list_head rx_info, rx_used;
795 	struct list_head rx_done, tx_free;
796 	struct sk_buff_head tx_queue, rx_queue;
797 	spinlock_t rx_lock, tx_lock;
798 	struct delayed_work schedule, hw_phy_work;
799 	struct mii_if_info mii;
800 	struct mutex control;	/* use for hw setting */
801 #ifdef CONFIG_PM_SLEEP
802 	struct notifier_block pm_notifier;
803 #endif
804 	struct tasklet_struct tx_tl;
805 
806 	struct rtl_ops {
807 		void (*init)(struct r8152 *tp);
808 		int (*enable)(struct r8152 *tp);
809 		void (*disable)(struct r8152 *tp);
810 		void (*up)(struct r8152 *tp);
811 		void (*down)(struct r8152 *tp);
812 		void (*unload)(struct r8152 *tp);
813 		int (*eee_get)(struct r8152 *tp, struct ethtool_eee *eee);
814 		int (*eee_set)(struct r8152 *tp, struct ethtool_eee *eee);
815 		bool (*in_nway)(struct r8152 *tp);
816 		void (*hw_phy_cfg)(struct r8152 *tp);
817 		void (*autosuspend_en)(struct r8152 *tp, bool enable);
818 	} rtl_ops;
819 
820 	struct ups_info {
821 		u32 _10m_ckdiv:1;
822 		u32 _250m_ckdiv:1;
823 		u32 aldps:1;
824 		u32 lite_mode:2;
825 		u32 speed_duplex:4;
826 		u32 eee:1;
827 		u32 eee_lite:1;
828 		u32 eee_ckdiv:1;
829 		u32 eee_plloff_100:1;
830 		u32 eee_plloff_giga:1;
831 		u32 eee_cmod_lv:1;
832 		u32 green:1;
833 		u32 flow_control:1;
834 		u32 ctap_short_off:1;
835 	} ups_info;
836 
837 #define RTL_VER_SIZE		32
838 
839 	struct rtl_fw {
840 		const char *fw_name;
841 		const struct firmware *fw;
842 
843 		char version[RTL_VER_SIZE];
844 		int (*pre_fw)(struct r8152 *tp);
845 		int (*post_fw)(struct r8152 *tp);
846 
847 		bool retry;
848 	} rtl_fw;
849 
850 	atomic_t rx_count;
851 
852 	bool eee_en;
853 	int intr_interval;
854 	u32 saved_wolopts;
855 	u32 msg_enable;
856 	u32 tx_qlen;
857 	u32 coalesce;
858 	u32 advertising;
859 	u32 rx_buf_sz;
860 	u32 rx_copybreak;
861 	u32 rx_pending;
862 
863 	u16 ocp_base;
864 	u16 speed;
865 	u16 eee_adv;
866 	u8 *intr_buff;
867 	u8 version;
868 	u8 duplex;
869 	u8 autoneg;
870 };
871 
872 /**
873  * struct fw_block - block type and total length
874  * @type: type of the current block, such as RTL_FW_END, RTL_FW_PLA,
875  *	RTL_FW_USB and so on.
876  * @length: total length of the current block.
877  */
878 struct fw_block {
879 	__le32 type;
880 	__le32 length;
881 } __packed;
882 
883 /**
884  * struct fw_header - header of the firmware file
885  * @checksum: checksum of sha256 which is calculated from the whole file
886  *	except the checksum field of the file. That is, calculate sha256
887  *	from the version field to the end of the file.
888  * @version: version of this firmware.
889  * @blocks: the first firmware block of the file
890  */
891 struct fw_header {
892 	u8 checksum[32];
893 	char version[RTL_VER_SIZE];
894 	struct fw_block blocks[];
895 } __packed;
896 
897 /**
898  * struct fw_mac - a firmware block used by RTL_FW_PLA and RTL_FW_USB.
899  *	The layout of the firmware block is:
900  *	<struct fw_mac> + <info> + <firmware data>.
901  * @fw_offset: offset of the firmware binary data. The start address of
902  *	the data would be the address of struct fw_mac + @fw_offset.
903  * @fw_reg: the register to load the firmware. Depends on chip.
904  * @bp_ba_addr: the register to write break point base address. Depends on
905  *	chip.
906  * @bp_ba_value: break point base address. Depends on chip.
907  * @bp_en_addr: the register to write break point enabled mask. Depends
908  *	on chip.
909  * @bp_en_value: break point enabled mask. Depends on the firmware.
910  * @bp_start: the start register of break points. Depends on chip.
911  * @bp_num: the break point number which needs to be set for this firmware.
912  *	Depends on the firmware.
913  * @bp: break points. Depends on firmware.
914  * @fw_ver_reg: the register to store the fw version.
915  * @fw_ver_data: the firmware version of the current type.
916  * @info: additional information for debugging, and is followed by the
917  *	binary data of firmware.
918  */
919 struct fw_mac {
920 	struct fw_block blk_hdr;
921 	__le16 fw_offset;
922 	__le16 fw_reg;
923 	__le16 bp_ba_addr;
924 	__le16 bp_ba_value;
925 	__le16 bp_en_addr;
926 	__le16 bp_en_value;
927 	__le16 bp_start;
928 	__le16 bp_num;
929 	__le16 bp[16]; /* any value determined by firmware */
930 	__le32 reserved;
931 	__le16 fw_ver_reg;
932 	u8 fw_ver_data;
933 	char info[];
934 } __packed;
935 
936 /**
937  * struct fw_phy_patch_key - a firmware block used by RTL_FW_PHY_START.
938  *	This is used to set patch key when loading the firmware of PHY.
939  * @key_reg: the register to write the patch key.
940  * @key_data: patch key.
941  */
942 struct fw_phy_patch_key {
943 	struct fw_block blk_hdr;
944 	__le16 key_reg;
945 	__le16 key_data;
946 	__le32 reserved;
947 } __packed;
948 
949 /**
950  * struct fw_phy_nc - a firmware block used by RTL_FW_PHY_NC.
951  *	The layout of the firmware block is:
952  *	<struct fw_phy_nc> + <info> + <firmware data>.
953  * @fw_offset: offset of the firmware binary data. The start address of
954  *	the data would be the address of struct fw_phy_nc + @fw_offset.
955  * @fw_reg: the register to load the firmware. Depends on chip.
956  * @ba_reg: the register to write the base address. Depends on chip.
957  * @ba_data: base address. Depends on chip.
958  * @patch_en_addr: the register of enabling patch mode. Depends on chip.
959  * @patch_en_value: patch mode enabled mask. Depends on the firmware.
960  * @mode_reg: the regitster of switching the mode.
961  * @mod_pre: the mode needing to be set before loading the firmware.
962  * @mod_post: the mode to be set when finishing to load the firmware.
963  * @bp_start: the start register of break points. Depends on chip.
964  * @bp_num: the break point number which needs to be set for this firmware.
965  *	Depends on the firmware.
966  * @bp: break points. Depends on firmware.
967  * @info: additional information for debugging, and is followed by the
968  *	binary data of firmware.
969  */
970 struct fw_phy_nc {
971 	struct fw_block blk_hdr;
972 	__le16 fw_offset;
973 	__le16 fw_reg;
974 	__le16 ba_reg;
975 	__le16 ba_data;
976 	__le16 patch_en_addr;
977 	__le16 patch_en_value;
978 	__le16 mode_reg;
979 	__le16 mode_pre;
980 	__le16 mode_post;
981 	__le16 reserved;
982 	__le16 bp_start;
983 	__le16 bp_num;
984 	__le16 bp[4];
985 	char info[];
986 } __packed;
987 
988 enum rtl_fw_type {
989 	RTL_FW_END = 0,
990 	RTL_FW_PLA,
991 	RTL_FW_USB,
992 	RTL_FW_PHY_START,
993 	RTL_FW_PHY_STOP,
994 	RTL_FW_PHY_NC,
995 };
996 
997 enum rtl_version {
998 	RTL_VER_UNKNOWN = 0,
999 	RTL_VER_01,
1000 	RTL_VER_02,
1001 	RTL_VER_03,
1002 	RTL_VER_04,
1003 	RTL_VER_05,
1004 	RTL_VER_06,
1005 	RTL_VER_07,
1006 	RTL_VER_08,
1007 	RTL_VER_09,
1008 	RTL_VER_MAX
1009 };
1010 
1011 enum tx_csum_stat {
1012 	TX_CSUM_SUCCESS = 0,
1013 	TX_CSUM_TSO,
1014 	TX_CSUM_NONE
1015 };
1016 
1017 #define RTL_ADVERTISED_10_HALF			BIT(0)
1018 #define RTL_ADVERTISED_10_FULL			BIT(1)
1019 #define RTL_ADVERTISED_100_HALF			BIT(2)
1020 #define RTL_ADVERTISED_100_FULL			BIT(3)
1021 #define RTL_ADVERTISED_1000_HALF		BIT(4)
1022 #define RTL_ADVERTISED_1000_FULL		BIT(5)
1023 
1024 /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
1025  * The RTL chips use a 64 element hash table based on the Ethernet CRC.
1026  */
1027 static const int multicast_filter_limit = 32;
1028 static unsigned int agg_buf_sz = 16384;
1029 
1030 #define RTL_LIMITED_TSO_SIZE	(agg_buf_sz - sizeof(struct tx_desc) - \
1031 				 VLAN_ETH_HLEN - ETH_FCS_LEN)
1032 
1033 static
1034 int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
1035 {
1036 	int ret;
1037 	void *tmp;
1038 
1039 	tmp = kmalloc(size, GFP_KERNEL);
1040 	if (!tmp)
1041 		return -ENOMEM;
1042 
1043 	ret = usb_control_msg(tp->udev, usb_rcvctrlpipe(tp->udev, 0),
1044 			      RTL8152_REQ_GET_REGS, RTL8152_REQT_READ,
1045 			      value, index, tmp, size, 500);
1046 	if (ret < 0)
1047 		memset(data, 0xff, size);
1048 	else
1049 		memcpy(data, tmp, size);
1050 
1051 	kfree(tmp);
1052 
1053 	return ret;
1054 }
1055 
1056 static
1057 int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data)
1058 {
1059 	int ret;
1060 	void *tmp;
1061 
1062 	tmp = kmemdup(data, size, GFP_KERNEL);
1063 	if (!tmp)
1064 		return -ENOMEM;
1065 
1066 	ret = usb_control_msg(tp->udev, usb_sndctrlpipe(tp->udev, 0),
1067 			      RTL8152_REQ_SET_REGS, RTL8152_REQT_WRITE,
1068 			      value, index, tmp, size, 500);
1069 
1070 	kfree(tmp);
1071 
1072 	return ret;
1073 }
1074 
1075 static void rtl_set_unplug(struct r8152 *tp)
1076 {
1077 	if (tp->udev->state == USB_STATE_NOTATTACHED) {
1078 		set_bit(RTL8152_UNPLUG, &tp->flags);
1079 		smp_mb__after_atomic();
1080 	}
1081 }
1082 
1083 static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size,
1084 			    void *data, u16 type)
1085 {
1086 	u16 limit = 64;
1087 	int ret = 0;
1088 
1089 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1090 		return -ENODEV;
1091 
1092 	/* both size and indix must be 4 bytes align */
1093 	if ((size & 3) || !size || (index & 3) || !data)
1094 		return -EPERM;
1095 
1096 	if ((u32)index + (u32)size > 0xffff)
1097 		return -EPERM;
1098 
1099 	while (size) {
1100 		if (size > limit) {
1101 			ret = get_registers(tp, index, type, limit, data);
1102 			if (ret < 0)
1103 				break;
1104 
1105 			index += limit;
1106 			data += limit;
1107 			size -= limit;
1108 		} else {
1109 			ret = get_registers(tp, index, type, size, data);
1110 			if (ret < 0)
1111 				break;
1112 
1113 			index += size;
1114 			data += size;
1115 			size = 0;
1116 			break;
1117 		}
1118 	}
1119 
1120 	if (ret == -ENODEV)
1121 		rtl_set_unplug(tp);
1122 
1123 	return ret;
1124 }
1125 
1126 static int generic_ocp_write(struct r8152 *tp, u16 index, u16 byteen,
1127 			     u16 size, void *data, u16 type)
1128 {
1129 	int ret;
1130 	u16 byteen_start, byteen_end, byen;
1131 	u16 limit = 512;
1132 
1133 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1134 		return -ENODEV;
1135 
1136 	/* both size and indix must be 4 bytes align */
1137 	if ((size & 3) || !size || (index & 3) || !data)
1138 		return -EPERM;
1139 
1140 	if ((u32)index + (u32)size > 0xffff)
1141 		return -EPERM;
1142 
1143 	byteen_start = byteen & BYTE_EN_START_MASK;
1144 	byteen_end = byteen & BYTE_EN_END_MASK;
1145 
1146 	byen = byteen_start | (byteen_start << 4);
1147 	ret = set_registers(tp, index, type | byen, 4, data);
1148 	if (ret < 0)
1149 		goto error1;
1150 
1151 	index += 4;
1152 	data += 4;
1153 	size -= 4;
1154 
1155 	if (size) {
1156 		size -= 4;
1157 
1158 		while (size) {
1159 			if (size > limit) {
1160 				ret = set_registers(tp, index,
1161 						    type | BYTE_EN_DWORD,
1162 						    limit, data);
1163 				if (ret < 0)
1164 					goto error1;
1165 
1166 				index += limit;
1167 				data += limit;
1168 				size -= limit;
1169 			} else {
1170 				ret = set_registers(tp, index,
1171 						    type | BYTE_EN_DWORD,
1172 						    size, data);
1173 				if (ret < 0)
1174 					goto error1;
1175 
1176 				index += size;
1177 				data += size;
1178 				size = 0;
1179 				break;
1180 			}
1181 		}
1182 
1183 		byen = byteen_end | (byteen_end >> 4);
1184 		ret = set_registers(tp, index, type | byen, 4, data);
1185 		if (ret < 0)
1186 			goto error1;
1187 	}
1188 
1189 error1:
1190 	if (ret == -ENODEV)
1191 		rtl_set_unplug(tp);
1192 
1193 	return ret;
1194 }
1195 
1196 static inline
1197 int pla_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data)
1198 {
1199 	return generic_ocp_read(tp, index, size, data, MCU_TYPE_PLA);
1200 }
1201 
1202 static inline
1203 int pla_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
1204 {
1205 	return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_PLA);
1206 }
1207 
1208 static inline
1209 int usb_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data)
1210 {
1211 	return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_USB);
1212 }
1213 
1214 static u32 ocp_read_dword(struct r8152 *tp, u16 type, u16 index)
1215 {
1216 	__le32 data;
1217 
1218 	generic_ocp_read(tp, index, sizeof(data), &data, type);
1219 
1220 	return __le32_to_cpu(data);
1221 }
1222 
1223 static void ocp_write_dword(struct r8152 *tp, u16 type, u16 index, u32 data)
1224 {
1225 	__le32 tmp = __cpu_to_le32(data);
1226 
1227 	generic_ocp_write(tp, index, BYTE_EN_DWORD, sizeof(tmp), &tmp, type);
1228 }
1229 
1230 static u16 ocp_read_word(struct r8152 *tp, u16 type, u16 index)
1231 {
1232 	u32 data;
1233 	__le32 tmp;
1234 	u16 byen = BYTE_EN_WORD;
1235 	u8 shift = index & 2;
1236 
1237 	index &= ~3;
1238 	byen <<= shift;
1239 
1240 	generic_ocp_read(tp, index, sizeof(tmp), &tmp, type | byen);
1241 
1242 	data = __le32_to_cpu(tmp);
1243 	data >>= (shift * 8);
1244 	data &= 0xffff;
1245 
1246 	return (u16)data;
1247 }
1248 
1249 static void ocp_write_word(struct r8152 *tp, u16 type, u16 index, u32 data)
1250 {
1251 	u32 mask = 0xffff;
1252 	__le32 tmp;
1253 	u16 byen = BYTE_EN_WORD;
1254 	u8 shift = index & 2;
1255 
1256 	data &= mask;
1257 
1258 	if (index & 2) {
1259 		byen <<= shift;
1260 		mask <<= (shift * 8);
1261 		data <<= (shift * 8);
1262 		index &= ~3;
1263 	}
1264 
1265 	tmp = __cpu_to_le32(data);
1266 
1267 	generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
1268 }
1269 
1270 static u8 ocp_read_byte(struct r8152 *tp, u16 type, u16 index)
1271 {
1272 	u32 data;
1273 	__le32 tmp;
1274 	u8 shift = index & 3;
1275 
1276 	index &= ~3;
1277 
1278 	generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
1279 
1280 	data = __le32_to_cpu(tmp);
1281 	data >>= (shift * 8);
1282 	data &= 0xff;
1283 
1284 	return (u8)data;
1285 }
1286 
1287 static void ocp_write_byte(struct r8152 *tp, u16 type, u16 index, u32 data)
1288 {
1289 	u32 mask = 0xff;
1290 	__le32 tmp;
1291 	u16 byen = BYTE_EN_BYTE;
1292 	u8 shift = index & 3;
1293 
1294 	data &= mask;
1295 
1296 	if (index & 3) {
1297 		byen <<= shift;
1298 		mask <<= (shift * 8);
1299 		data <<= (shift * 8);
1300 		index &= ~3;
1301 	}
1302 
1303 	tmp = __cpu_to_le32(data);
1304 
1305 	generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
1306 }
1307 
1308 static u16 ocp_reg_read(struct r8152 *tp, u16 addr)
1309 {
1310 	u16 ocp_base, ocp_index;
1311 
1312 	ocp_base = addr & 0xf000;
1313 	if (ocp_base != tp->ocp_base) {
1314 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
1315 		tp->ocp_base = ocp_base;
1316 	}
1317 
1318 	ocp_index = (addr & 0x0fff) | 0xb000;
1319 	return ocp_read_word(tp, MCU_TYPE_PLA, ocp_index);
1320 }
1321 
1322 static void ocp_reg_write(struct r8152 *tp, u16 addr, u16 data)
1323 {
1324 	u16 ocp_base, ocp_index;
1325 
1326 	ocp_base = addr & 0xf000;
1327 	if (ocp_base != tp->ocp_base) {
1328 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base);
1329 		tp->ocp_base = ocp_base;
1330 	}
1331 
1332 	ocp_index = (addr & 0x0fff) | 0xb000;
1333 	ocp_write_word(tp, MCU_TYPE_PLA, ocp_index, data);
1334 }
1335 
1336 static inline void r8152_mdio_write(struct r8152 *tp, u32 reg_addr, u32 value)
1337 {
1338 	ocp_reg_write(tp, OCP_BASE_MII + reg_addr * 2, value);
1339 }
1340 
1341 static inline int r8152_mdio_read(struct r8152 *tp, u32 reg_addr)
1342 {
1343 	return ocp_reg_read(tp, OCP_BASE_MII + reg_addr * 2);
1344 }
1345 
1346 static void sram_write(struct r8152 *tp, u16 addr, u16 data)
1347 {
1348 	ocp_reg_write(tp, OCP_SRAM_ADDR, addr);
1349 	ocp_reg_write(tp, OCP_SRAM_DATA, data);
1350 }
1351 
1352 static u16 sram_read(struct r8152 *tp, u16 addr)
1353 {
1354 	ocp_reg_write(tp, OCP_SRAM_ADDR, addr);
1355 	return ocp_reg_read(tp, OCP_SRAM_DATA);
1356 }
1357 
1358 static int read_mii_word(struct net_device *netdev, int phy_id, int reg)
1359 {
1360 	struct r8152 *tp = netdev_priv(netdev);
1361 	int ret;
1362 
1363 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1364 		return -ENODEV;
1365 
1366 	if (phy_id != R8152_PHY_ID)
1367 		return -EINVAL;
1368 
1369 	ret = r8152_mdio_read(tp, reg);
1370 
1371 	return ret;
1372 }
1373 
1374 static
1375 void write_mii_word(struct net_device *netdev, int phy_id, int reg, int val)
1376 {
1377 	struct r8152 *tp = netdev_priv(netdev);
1378 
1379 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1380 		return;
1381 
1382 	if (phy_id != R8152_PHY_ID)
1383 		return;
1384 
1385 	r8152_mdio_write(tp, reg, val);
1386 }
1387 
1388 static int
1389 r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags);
1390 
1391 static int rtl8152_set_mac_address(struct net_device *netdev, void *p)
1392 {
1393 	struct r8152 *tp = netdev_priv(netdev);
1394 	struct sockaddr *addr = p;
1395 	int ret = -EADDRNOTAVAIL;
1396 
1397 	if (!is_valid_ether_addr(addr->sa_data))
1398 		goto out1;
1399 
1400 	ret = usb_autopm_get_interface(tp->intf);
1401 	if (ret < 0)
1402 		goto out1;
1403 
1404 	mutex_lock(&tp->control);
1405 
1406 	memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1407 
1408 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
1409 	pla_ocp_write(tp, PLA_IDR, BYTE_EN_SIX_BYTES, 8, addr->sa_data);
1410 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
1411 
1412 	mutex_unlock(&tp->control);
1413 
1414 	usb_autopm_put_interface(tp->intf);
1415 out1:
1416 	return ret;
1417 }
1418 
1419 /* Devices containing proper chips can support a persistent
1420  * host system provided MAC address.
1421  * Examples of this are Dell TB15 and Dell WD15 docks
1422  */
1423 static int vendor_mac_passthru_addr_read(struct r8152 *tp, struct sockaddr *sa)
1424 {
1425 	acpi_status status;
1426 	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1427 	union acpi_object *obj;
1428 	int ret = -EINVAL;
1429 	u32 ocp_data;
1430 	unsigned char buf[6];
1431 	char *mac_obj_name;
1432 	acpi_object_type mac_obj_type;
1433 	int mac_strlen;
1434 
1435 	if (test_bit(LENOVO_MACPASSTHRU, &tp->flags)) {
1436 		mac_obj_name = "\\MACA";
1437 		mac_obj_type = ACPI_TYPE_STRING;
1438 		mac_strlen = 0x16;
1439 	} else {
1440 		/* test for -AD variant of RTL8153 */
1441 		ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
1442 		if ((ocp_data & AD_MASK) == 0x1000) {
1443 			/* test for MAC address pass-through bit */
1444 			ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, EFUSE);
1445 			if ((ocp_data & PASS_THRU_MASK) != 1) {
1446 				netif_dbg(tp, probe, tp->netdev,
1447 						"No efuse for RTL8153-AD MAC pass through\n");
1448 				return -ENODEV;
1449 			}
1450 		} else {
1451 			/* test for RTL8153-BND and RTL8153-BD */
1452 			ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_MISC_1);
1453 			if ((ocp_data & BND_MASK) == 0 && (ocp_data & BD_MASK) == 0) {
1454 				netif_dbg(tp, probe, tp->netdev,
1455 						"Invalid variant for MAC pass through\n");
1456 				return -ENODEV;
1457 			}
1458 		}
1459 
1460 		mac_obj_name = "\\_SB.AMAC";
1461 		mac_obj_type = ACPI_TYPE_BUFFER;
1462 		mac_strlen = 0x17;
1463 	}
1464 
1465 	/* returns _AUXMAC_#AABBCCDDEEFF# */
1466 	status = acpi_evaluate_object(NULL, mac_obj_name, NULL, &buffer);
1467 	obj = (union acpi_object *)buffer.pointer;
1468 	if (!ACPI_SUCCESS(status))
1469 		return -ENODEV;
1470 	if (obj->type != mac_obj_type || obj->string.length != mac_strlen) {
1471 		netif_warn(tp, probe, tp->netdev,
1472 			   "Invalid buffer for pass-thru MAC addr: (%d, %d)\n",
1473 			   obj->type, obj->string.length);
1474 		goto amacout;
1475 	}
1476 
1477 	if (strncmp(obj->string.pointer, "_AUXMAC_#", 9) != 0 ||
1478 	    strncmp(obj->string.pointer + 0x15, "#", 1) != 0) {
1479 		netif_warn(tp, probe, tp->netdev,
1480 			   "Invalid header when reading pass-thru MAC addr\n");
1481 		goto amacout;
1482 	}
1483 	ret = hex2bin(buf, obj->string.pointer + 9, 6);
1484 	if (!(ret == 0 && is_valid_ether_addr(buf))) {
1485 		netif_warn(tp, probe, tp->netdev,
1486 			   "Invalid MAC for pass-thru MAC addr: %d, %pM\n",
1487 			   ret, buf);
1488 		ret = -EINVAL;
1489 		goto amacout;
1490 	}
1491 	memcpy(sa->sa_data, buf, 6);
1492 	netif_info(tp, probe, tp->netdev,
1493 		   "Using pass-thru MAC addr %pM\n", sa->sa_data);
1494 
1495 amacout:
1496 	kfree(obj);
1497 	return ret;
1498 }
1499 
1500 static int determine_ethernet_addr(struct r8152 *tp, struct sockaddr *sa)
1501 {
1502 	struct net_device *dev = tp->netdev;
1503 	int ret;
1504 
1505 	sa->sa_family = dev->type;
1506 
1507 	if (tp->version == RTL_VER_01) {
1508 		ret = pla_ocp_read(tp, PLA_IDR, 8, sa->sa_data);
1509 	} else {
1510 		/* if device doesn't support MAC pass through this will
1511 		 * be expected to be non-zero
1512 		 */
1513 		ret = vendor_mac_passthru_addr_read(tp, sa);
1514 		if (ret < 0)
1515 			ret = pla_ocp_read(tp, PLA_BACKUP, 8, sa->sa_data);
1516 	}
1517 
1518 	if (ret < 0) {
1519 		netif_err(tp, probe, dev, "Get ether addr fail\n");
1520 	} else if (!is_valid_ether_addr(sa->sa_data)) {
1521 		netif_err(tp, probe, dev, "Invalid ether addr %pM\n",
1522 			  sa->sa_data);
1523 		eth_hw_addr_random(dev);
1524 		ether_addr_copy(sa->sa_data, dev->dev_addr);
1525 		netif_info(tp, probe, dev, "Random ether addr %pM\n",
1526 			   sa->sa_data);
1527 		return 0;
1528 	}
1529 
1530 	return ret;
1531 }
1532 
1533 static int set_ethernet_addr(struct r8152 *tp)
1534 {
1535 	struct net_device *dev = tp->netdev;
1536 	struct sockaddr sa;
1537 	int ret;
1538 
1539 	ret = determine_ethernet_addr(tp, &sa);
1540 	if (ret < 0)
1541 		return ret;
1542 
1543 	if (tp->version == RTL_VER_01)
1544 		ether_addr_copy(dev->dev_addr, sa.sa_data);
1545 	else
1546 		ret = rtl8152_set_mac_address(dev, &sa);
1547 
1548 	return ret;
1549 }
1550 
1551 static void read_bulk_callback(struct urb *urb)
1552 {
1553 	struct net_device *netdev;
1554 	int status = urb->status;
1555 	struct rx_agg *agg;
1556 	struct r8152 *tp;
1557 	unsigned long flags;
1558 
1559 	agg = urb->context;
1560 	if (!agg)
1561 		return;
1562 
1563 	tp = agg->context;
1564 	if (!tp)
1565 		return;
1566 
1567 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1568 		return;
1569 
1570 	if (!test_bit(WORK_ENABLE, &tp->flags))
1571 		return;
1572 
1573 	netdev = tp->netdev;
1574 
1575 	/* When link down, the driver would cancel all bulks. */
1576 	/* This avoid the re-submitting bulk */
1577 	if (!netif_carrier_ok(netdev))
1578 		return;
1579 
1580 	usb_mark_last_busy(tp->udev);
1581 
1582 	switch (status) {
1583 	case 0:
1584 		if (urb->actual_length < ETH_ZLEN)
1585 			break;
1586 
1587 		spin_lock_irqsave(&tp->rx_lock, flags);
1588 		list_add_tail(&agg->list, &tp->rx_done);
1589 		spin_unlock_irqrestore(&tp->rx_lock, flags);
1590 		napi_schedule(&tp->napi);
1591 		return;
1592 	case -ESHUTDOWN:
1593 		rtl_set_unplug(tp);
1594 		netif_device_detach(tp->netdev);
1595 		return;
1596 	case -ENOENT:
1597 		return;	/* the urb is in unlink state */
1598 	case -ETIME:
1599 		if (net_ratelimit())
1600 			netdev_warn(netdev, "maybe reset is needed?\n");
1601 		break;
1602 	default:
1603 		if (net_ratelimit())
1604 			netdev_warn(netdev, "Rx status %d\n", status);
1605 		break;
1606 	}
1607 
1608 	r8152_submit_rx(tp, agg, GFP_ATOMIC);
1609 }
1610 
1611 static void write_bulk_callback(struct urb *urb)
1612 {
1613 	struct net_device_stats *stats;
1614 	struct net_device *netdev;
1615 	struct tx_agg *agg;
1616 	struct r8152 *tp;
1617 	unsigned long flags;
1618 	int status = urb->status;
1619 
1620 	agg = urb->context;
1621 	if (!agg)
1622 		return;
1623 
1624 	tp = agg->context;
1625 	if (!tp)
1626 		return;
1627 
1628 	netdev = tp->netdev;
1629 	stats = &netdev->stats;
1630 	if (status) {
1631 		if (net_ratelimit())
1632 			netdev_warn(netdev, "Tx status %d\n", status);
1633 		stats->tx_errors += agg->skb_num;
1634 	} else {
1635 		stats->tx_packets += agg->skb_num;
1636 		stats->tx_bytes += agg->skb_len;
1637 	}
1638 
1639 	spin_lock_irqsave(&tp->tx_lock, flags);
1640 	list_add_tail(&agg->list, &tp->tx_free);
1641 	spin_unlock_irqrestore(&tp->tx_lock, flags);
1642 
1643 	usb_autopm_put_interface_async(tp->intf);
1644 
1645 	if (!netif_carrier_ok(netdev))
1646 		return;
1647 
1648 	if (!test_bit(WORK_ENABLE, &tp->flags))
1649 		return;
1650 
1651 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1652 		return;
1653 
1654 	if (!skb_queue_empty(&tp->tx_queue))
1655 		tasklet_schedule(&tp->tx_tl);
1656 }
1657 
1658 static void intr_callback(struct urb *urb)
1659 {
1660 	struct r8152 *tp;
1661 	__le16 *d;
1662 	int status = urb->status;
1663 	int res;
1664 
1665 	tp = urb->context;
1666 	if (!tp)
1667 		return;
1668 
1669 	if (!test_bit(WORK_ENABLE, &tp->flags))
1670 		return;
1671 
1672 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
1673 		return;
1674 
1675 	switch (status) {
1676 	case 0:			/* success */
1677 		break;
1678 	case -ECONNRESET:	/* unlink */
1679 	case -ESHUTDOWN:
1680 		netif_device_detach(tp->netdev);
1681 		/* fall through */
1682 	case -ENOENT:
1683 	case -EPROTO:
1684 		netif_info(tp, intr, tp->netdev,
1685 			   "Stop submitting intr, status %d\n", status);
1686 		return;
1687 	case -EOVERFLOW:
1688 		netif_info(tp, intr, tp->netdev, "intr status -EOVERFLOW\n");
1689 		goto resubmit;
1690 	/* -EPIPE:  should clear the halt */
1691 	default:
1692 		netif_info(tp, intr, tp->netdev, "intr status %d\n", status);
1693 		goto resubmit;
1694 	}
1695 
1696 	d = urb->transfer_buffer;
1697 	if (INTR_LINK & __le16_to_cpu(d[0])) {
1698 		if (!netif_carrier_ok(tp->netdev)) {
1699 			set_bit(RTL8152_LINK_CHG, &tp->flags);
1700 			schedule_delayed_work(&tp->schedule, 0);
1701 		}
1702 	} else {
1703 		if (netif_carrier_ok(tp->netdev)) {
1704 			netif_stop_queue(tp->netdev);
1705 			set_bit(RTL8152_LINK_CHG, &tp->flags);
1706 			schedule_delayed_work(&tp->schedule, 0);
1707 		}
1708 	}
1709 
1710 resubmit:
1711 	res = usb_submit_urb(urb, GFP_ATOMIC);
1712 	if (res == -ENODEV) {
1713 		rtl_set_unplug(tp);
1714 		netif_device_detach(tp->netdev);
1715 	} else if (res) {
1716 		netif_err(tp, intr, tp->netdev,
1717 			  "can't resubmit intr, status %d\n", res);
1718 	}
1719 }
1720 
1721 static inline void *rx_agg_align(void *data)
1722 {
1723 	return (void *)ALIGN((uintptr_t)data, RX_ALIGN);
1724 }
1725 
1726 static inline void *tx_agg_align(void *data)
1727 {
1728 	return (void *)ALIGN((uintptr_t)data, TX_ALIGN);
1729 }
1730 
1731 static void free_rx_agg(struct r8152 *tp, struct rx_agg *agg)
1732 {
1733 	list_del(&agg->info_list);
1734 
1735 	usb_free_urb(agg->urb);
1736 	put_page(agg->page);
1737 	kfree(agg);
1738 
1739 	atomic_dec(&tp->rx_count);
1740 }
1741 
1742 static struct rx_agg *alloc_rx_agg(struct r8152 *tp, gfp_t mflags)
1743 {
1744 	struct net_device *netdev = tp->netdev;
1745 	int node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1;
1746 	unsigned int order = get_order(tp->rx_buf_sz);
1747 	struct rx_agg *rx_agg;
1748 	unsigned long flags;
1749 
1750 	rx_agg = kmalloc_node(sizeof(*rx_agg), mflags, node);
1751 	if (!rx_agg)
1752 		return NULL;
1753 
1754 	rx_agg->page = alloc_pages(mflags | __GFP_COMP, order);
1755 	if (!rx_agg->page)
1756 		goto free_rx;
1757 
1758 	rx_agg->buffer = page_address(rx_agg->page);
1759 
1760 	rx_agg->urb = usb_alloc_urb(0, mflags);
1761 	if (!rx_agg->urb)
1762 		goto free_buf;
1763 
1764 	rx_agg->context = tp;
1765 
1766 	INIT_LIST_HEAD(&rx_agg->list);
1767 	INIT_LIST_HEAD(&rx_agg->info_list);
1768 	spin_lock_irqsave(&tp->rx_lock, flags);
1769 	list_add_tail(&rx_agg->info_list, &tp->rx_info);
1770 	spin_unlock_irqrestore(&tp->rx_lock, flags);
1771 
1772 	atomic_inc(&tp->rx_count);
1773 
1774 	return rx_agg;
1775 
1776 free_buf:
1777 	__free_pages(rx_agg->page, order);
1778 free_rx:
1779 	kfree(rx_agg);
1780 	return NULL;
1781 }
1782 
1783 static void free_all_mem(struct r8152 *tp)
1784 {
1785 	struct rx_agg *agg, *agg_next;
1786 	unsigned long flags;
1787 	int i;
1788 
1789 	spin_lock_irqsave(&tp->rx_lock, flags);
1790 
1791 	list_for_each_entry_safe(agg, agg_next, &tp->rx_info, info_list)
1792 		free_rx_agg(tp, agg);
1793 
1794 	spin_unlock_irqrestore(&tp->rx_lock, flags);
1795 
1796 	WARN_ON(atomic_read(&tp->rx_count));
1797 
1798 	for (i = 0; i < RTL8152_MAX_TX; i++) {
1799 		usb_free_urb(tp->tx_info[i].urb);
1800 		tp->tx_info[i].urb = NULL;
1801 
1802 		kfree(tp->tx_info[i].buffer);
1803 		tp->tx_info[i].buffer = NULL;
1804 		tp->tx_info[i].head = NULL;
1805 	}
1806 
1807 	usb_free_urb(tp->intr_urb);
1808 	tp->intr_urb = NULL;
1809 
1810 	kfree(tp->intr_buff);
1811 	tp->intr_buff = NULL;
1812 }
1813 
1814 static int alloc_all_mem(struct r8152 *tp)
1815 {
1816 	struct net_device *netdev = tp->netdev;
1817 	struct usb_interface *intf = tp->intf;
1818 	struct usb_host_interface *alt = intf->cur_altsetting;
1819 	struct usb_host_endpoint *ep_intr = alt->endpoint + 2;
1820 	int node, i;
1821 
1822 	node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1;
1823 
1824 	spin_lock_init(&tp->rx_lock);
1825 	spin_lock_init(&tp->tx_lock);
1826 	INIT_LIST_HEAD(&tp->rx_info);
1827 	INIT_LIST_HEAD(&tp->tx_free);
1828 	INIT_LIST_HEAD(&tp->rx_done);
1829 	skb_queue_head_init(&tp->tx_queue);
1830 	skb_queue_head_init(&tp->rx_queue);
1831 	atomic_set(&tp->rx_count, 0);
1832 
1833 	for (i = 0; i < RTL8152_MAX_RX; i++) {
1834 		if (!alloc_rx_agg(tp, GFP_KERNEL))
1835 			goto err1;
1836 	}
1837 
1838 	for (i = 0; i < RTL8152_MAX_TX; i++) {
1839 		struct urb *urb;
1840 		u8 *buf;
1841 
1842 		buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node);
1843 		if (!buf)
1844 			goto err1;
1845 
1846 		if (buf != tx_agg_align(buf)) {
1847 			kfree(buf);
1848 			buf = kmalloc_node(agg_buf_sz + TX_ALIGN, GFP_KERNEL,
1849 					   node);
1850 			if (!buf)
1851 				goto err1;
1852 		}
1853 
1854 		urb = usb_alloc_urb(0, GFP_KERNEL);
1855 		if (!urb) {
1856 			kfree(buf);
1857 			goto err1;
1858 		}
1859 
1860 		INIT_LIST_HEAD(&tp->tx_info[i].list);
1861 		tp->tx_info[i].context = tp;
1862 		tp->tx_info[i].urb = urb;
1863 		tp->tx_info[i].buffer = buf;
1864 		tp->tx_info[i].head = tx_agg_align(buf);
1865 
1866 		list_add_tail(&tp->tx_info[i].list, &tp->tx_free);
1867 	}
1868 
1869 	tp->intr_urb = usb_alloc_urb(0, GFP_KERNEL);
1870 	if (!tp->intr_urb)
1871 		goto err1;
1872 
1873 	tp->intr_buff = kmalloc(INTBUFSIZE, GFP_KERNEL);
1874 	if (!tp->intr_buff)
1875 		goto err1;
1876 
1877 	tp->intr_interval = (int)ep_intr->desc.bInterval;
1878 	usb_fill_int_urb(tp->intr_urb, tp->udev, usb_rcvintpipe(tp->udev, 3),
1879 			 tp->intr_buff, INTBUFSIZE, intr_callback,
1880 			 tp, tp->intr_interval);
1881 
1882 	return 0;
1883 
1884 err1:
1885 	free_all_mem(tp);
1886 	return -ENOMEM;
1887 }
1888 
1889 static struct tx_agg *r8152_get_tx_agg(struct r8152 *tp)
1890 {
1891 	struct tx_agg *agg = NULL;
1892 	unsigned long flags;
1893 
1894 	if (list_empty(&tp->tx_free))
1895 		return NULL;
1896 
1897 	spin_lock_irqsave(&tp->tx_lock, flags);
1898 	if (!list_empty(&tp->tx_free)) {
1899 		struct list_head *cursor;
1900 
1901 		cursor = tp->tx_free.next;
1902 		list_del_init(cursor);
1903 		agg = list_entry(cursor, struct tx_agg, list);
1904 	}
1905 	spin_unlock_irqrestore(&tp->tx_lock, flags);
1906 
1907 	return agg;
1908 }
1909 
1910 /* r8152_csum_workaround()
1911  * The hw limits the value of the transport offset. When the offset is out of
1912  * range, calculate the checksum by sw.
1913  */
1914 static void r8152_csum_workaround(struct r8152 *tp, struct sk_buff *skb,
1915 				  struct sk_buff_head *list)
1916 {
1917 	if (skb_shinfo(skb)->gso_size) {
1918 		netdev_features_t features = tp->netdev->features;
1919 		struct sk_buff *segs, *seg, *next;
1920 		struct sk_buff_head seg_list;
1921 
1922 		features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
1923 		segs = skb_gso_segment(skb, features);
1924 		if (IS_ERR(segs) || !segs)
1925 			goto drop;
1926 
1927 		__skb_queue_head_init(&seg_list);
1928 
1929 		skb_list_walk_safe(segs, seg, next) {
1930 			skb_mark_not_on_list(seg);
1931 			__skb_queue_tail(&seg_list, seg);
1932 		}
1933 
1934 		skb_queue_splice(&seg_list, list);
1935 		dev_kfree_skb(skb);
1936 	} else if (skb->ip_summed == CHECKSUM_PARTIAL) {
1937 		if (skb_checksum_help(skb) < 0)
1938 			goto drop;
1939 
1940 		__skb_queue_head(list, skb);
1941 	} else {
1942 		struct net_device_stats *stats;
1943 
1944 drop:
1945 		stats = &tp->netdev->stats;
1946 		stats->tx_dropped++;
1947 		dev_kfree_skb(skb);
1948 	}
1949 }
1950 
1951 static inline void rtl_tx_vlan_tag(struct tx_desc *desc, struct sk_buff *skb)
1952 {
1953 	if (skb_vlan_tag_present(skb)) {
1954 		u32 opts2;
1955 
1956 		opts2 = TX_VLAN_TAG | swab16(skb_vlan_tag_get(skb));
1957 		desc->opts2 |= cpu_to_le32(opts2);
1958 	}
1959 }
1960 
1961 static inline void rtl_rx_vlan_tag(struct rx_desc *desc, struct sk_buff *skb)
1962 {
1963 	u32 opts2 = le32_to_cpu(desc->opts2);
1964 
1965 	if (opts2 & RX_VLAN_TAG)
1966 		__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
1967 				       swab16(opts2 & 0xffff));
1968 }
1969 
1970 static int r8152_tx_csum(struct r8152 *tp, struct tx_desc *desc,
1971 			 struct sk_buff *skb, u32 len, u32 transport_offset)
1972 {
1973 	u32 mss = skb_shinfo(skb)->gso_size;
1974 	u32 opts1, opts2 = 0;
1975 	int ret = TX_CSUM_SUCCESS;
1976 
1977 	WARN_ON_ONCE(len > TX_LEN_MAX);
1978 
1979 	opts1 = len | TX_FS | TX_LS;
1980 
1981 	if (mss) {
1982 		if (transport_offset > GTTCPHO_MAX) {
1983 			netif_warn(tp, tx_err, tp->netdev,
1984 				   "Invalid transport offset 0x%x for TSO\n",
1985 				   transport_offset);
1986 			ret = TX_CSUM_TSO;
1987 			goto unavailable;
1988 		}
1989 
1990 		switch (vlan_get_protocol(skb)) {
1991 		case htons(ETH_P_IP):
1992 			opts1 |= GTSENDV4;
1993 			break;
1994 
1995 		case htons(ETH_P_IPV6):
1996 			if (skb_cow_head(skb, 0)) {
1997 				ret = TX_CSUM_TSO;
1998 				goto unavailable;
1999 			}
2000 			tcp_v6_gso_csum_prep(skb);
2001 			opts1 |= GTSENDV6;
2002 			break;
2003 
2004 		default:
2005 			WARN_ON_ONCE(1);
2006 			break;
2007 		}
2008 
2009 		opts1 |= transport_offset << GTTCPHO_SHIFT;
2010 		opts2 |= min(mss, MSS_MAX) << MSS_SHIFT;
2011 	} else if (skb->ip_summed == CHECKSUM_PARTIAL) {
2012 		u8 ip_protocol;
2013 
2014 		if (transport_offset > TCPHO_MAX) {
2015 			netif_warn(tp, tx_err, tp->netdev,
2016 				   "Invalid transport offset 0x%x\n",
2017 				   transport_offset);
2018 			ret = TX_CSUM_NONE;
2019 			goto unavailable;
2020 		}
2021 
2022 		switch (vlan_get_protocol(skb)) {
2023 		case htons(ETH_P_IP):
2024 			opts2 |= IPV4_CS;
2025 			ip_protocol = ip_hdr(skb)->protocol;
2026 			break;
2027 
2028 		case htons(ETH_P_IPV6):
2029 			opts2 |= IPV6_CS;
2030 			ip_protocol = ipv6_hdr(skb)->nexthdr;
2031 			break;
2032 
2033 		default:
2034 			ip_protocol = IPPROTO_RAW;
2035 			break;
2036 		}
2037 
2038 		if (ip_protocol == IPPROTO_TCP)
2039 			opts2 |= TCP_CS;
2040 		else if (ip_protocol == IPPROTO_UDP)
2041 			opts2 |= UDP_CS;
2042 		else
2043 			WARN_ON_ONCE(1);
2044 
2045 		opts2 |= transport_offset << TCPHO_SHIFT;
2046 	}
2047 
2048 	desc->opts2 = cpu_to_le32(opts2);
2049 	desc->opts1 = cpu_to_le32(opts1);
2050 
2051 unavailable:
2052 	return ret;
2053 }
2054 
2055 static int r8152_tx_agg_fill(struct r8152 *tp, struct tx_agg *agg)
2056 {
2057 	struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
2058 	int remain, ret;
2059 	u8 *tx_data;
2060 
2061 	__skb_queue_head_init(&skb_head);
2062 	spin_lock(&tx_queue->lock);
2063 	skb_queue_splice_init(tx_queue, &skb_head);
2064 	spin_unlock(&tx_queue->lock);
2065 
2066 	tx_data = agg->head;
2067 	agg->skb_num = 0;
2068 	agg->skb_len = 0;
2069 	remain = agg_buf_sz;
2070 
2071 	while (remain >= ETH_ZLEN + sizeof(struct tx_desc)) {
2072 		struct tx_desc *tx_desc;
2073 		struct sk_buff *skb;
2074 		unsigned int len;
2075 		u32 offset;
2076 
2077 		skb = __skb_dequeue(&skb_head);
2078 		if (!skb)
2079 			break;
2080 
2081 		len = skb->len + sizeof(*tx_desc);
2082 
2083 		if (len > remain) {
2084 			__skb_queue_head(&skb_head, skb);
2085 			break;
2086 		}
2087 
2088 		tx_data = tx_agg_align(tx_data);
2089 		tx_desc = (struct tx_desc *)tx_data;
2090 
2091 		offset = (u32)skb_transport_offset(skb);
2092 
2093 		if (r8152_tx_csum(tp, tx_desc, skb, skb->len, offset)) {
2094 			r8152_csum_workaround(tp, skb, &skb_head);
2095 			continue;
2096 		}
2097 
2098 		rtl_tx_vlan_tag(tx_desc, skb);
2099 
2100 		tx_data += sizeof(*tx_desc);
2101 
2102 		len = skb->len;
2103 		if (skb_copy_bits(skb, 0, tx_data, len) < 0) {
2104 			struct net_device_stats *stats = &tp->netdev->stats;
2105 
2106 			stats->tx_dropped++;
2107 			dev_kfree_skb_any(skb);
2108 			tx_data -= sizeof(*tx_desc);
2109 			continue;
2110 		}
2111 
2112 		tx_data += len;
2113 		agg->skb_len += len;
2114 		agg->skb_num += skb_shinfo(skb)->gso_segs ?: 1;
2115 
2116 		dev_kfree_skb_any(skb);
2117 
2118 		remain = agg_buf_sz - (int)(tx_agg_align(tx_data) - agg->head);
2119 
2120 		if (test_bit(DELL_TB_RX_AGG_BUG, &tp->flags))
2121 			break;
2122 	}
2123 
2124 	if (!skb_queue_empty(&skb_head)) {
2125 		spin_lock(&tx_queue->lock);
2126 		skb_queue_splice(&skb_head, tx_queue);
2127 		spin_unlock(&tx_queue->lock);
2128 	}
2129 
2130 	netif_tx_lock(tp->netdev);
2131 
2132 	if (netif_queue_stopped(tp->netdev) &&
2133 	    skb_queue_len(&tp->tx_queue) < tp->tx_qlen)
2134 		netif_wake_queue(tp->netdev);
2135 
2136 	netif_tx_unlock(tp->netdev);
2137 
2138 	ret = usb_autopm_get_interface_async(tp->intf);
2139 	if (ret < 0)
2140 		goto out_tx_fill;
2141 
2142 	usb_fill_bulk_urb(agg->urb, tp->udev, usb_sndbulkpipe(tp->udev, 2),
2143 			  agg->head, (int)(tx_data - (u8 *)agg->head),
2144 			  (usb_complete_t)write_bulk_callback, agg);
2145 
2146 	ret = usb_submit_urb(agg->urb, GFP_ATOMIC);
2147 	if (ret < 0)
2148 		usb_autopm_put_interface_async(tp->intf);
2149 
2150 out_tx_fill:
2151 	return ret;
2152 }
2153 
2154 static u8 r8152_rx_csum(struct r8152 *tp, struct rx_desc *rx_desc)
2155 {
2156 	u8 checksum = CHECKSUM_NONE;
2157 	u32 opts2, opts3;
2158 
2159 	if (!(tp->netdev->features & NETIF_F_RXCSUM))
2160 		goto return_result;
2161 
2162 	opts2 = le32_to_cpu(rx_desc->opts2);
2163 	opts3 = le32_to_cpu(rx_desc->opts3);
2164 
2165 	if (opts2 & RD_IPV4_CS) {
2166 		if (opts3 & IPF)
2167 			checksum = CHECKSUM_NONE;
2168 		else if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF))
2169 			checksum = CHECKSUM_UNNECESSARY;
2170 		else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF))
2171 			checksum = CHECKSUM_UNNECESSARY;
2172 	} else if (opts2 & RD_IPV6_CS) {
2173 		if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF))
2174 			checksum = CHECKSUM_UNNECESSARY;
2175 		else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF))
2176 			checksum = CHECKSUM_UNNECESSARY;
2177 	}
2178 
2179 return_result:
2180 	return checksum;
2181 }
2182 
2183 static inline bool rx_count_exceed(struct r8152 *tp)
2184 {
2185 	return atomic_read(&tp->rx_count) > RTL8152_MAX_RX;
2186 }
2187 
2188 static inline int agg_offset(struct rx_agg *agg, void *addr)
2189 {
2190 	return (int)(addr - agg->buffer);
2191 }
2192 
2193 static struct rx_agg *rtl_get_free_rx(struct r8152 *tp, gfp_t mflags)
2194 {
2195 	struct rx_agg *agg, *agg_next, *agg_free = NULL;
2196 	unsigned long flags;
2197 
2198 	spin_lock_irqsave(&tp->rx_lock, flags);
2199 
2200 	list_for_each_entry_safe(agg, agg_next, &tp->rx_used, list) {
2201 		if (page_count(agg->page) == 1) {
2202 			if (!agg_free) {
2203 				list_del_init(&agg->list);
2204 				agg_free = agg;
2205 				continue;
2206 			}
2207 			if (rx_count_exceed(tp)) {
2208 				list_del_init(&agg->list);
2209 				free_rx_agg(tp, agg);
2210 			}
2211 			break;
2212 		}
2213 	}
2214 
2215 	spin_unlock_irqrestore(&tp->rx_lock, flags);
2216 
2217 	if (!agg_free && atomic_read(&tp->rx_count) < tp->rx_pending)
2218 		agg_free = alloc_rx_agg(tp, mflags);
2219 
2220 	return agg_free;
2221 }
2222 
2223 static int rx_bottom(struct r8152 *tp, int budget)
2224 {
2225 	unsigned long flags;
2226 	struct list_head *cursor, *next, rx_queue;
2227 	int ret = 0, work_done = 0;
2228 	struct napi_struct *napi = &tp->napi;
2229 
2230 	if (!skb_queue_empty(&tp->rx_queue)) {
2231 		while (work_done < budget) {
2232 			struct sk_buff *skb = __skb_dequeue(&tp->rx_queue);
2233 			struct net_device *netdev = tp->netdev;
2234 			struct net_device_stats *stats = &netdev->stats;
2235 			unsigned int pkt_len;
2236 
2237 			if (!skb)
2238 				break;
2239 
2240 			pkt_len = skb->len;
2241 			napi_gro_receive(napi, skb);
2242 			work_done++;
2243 			stats->rx_packets++;
2244 			stats->rx_bytes += pkt_len;
2245 		}
2246 	}
2247 
2248 	if (list_empty(&tp->rx_done))
2249 		goto out1;
2250 
2251 	INIT_LIST_HEAD(&rx_queue);
2252 	spin_lock_irqsave(&tp->rx_lock, flags);
2253 	list_splice_init(&tp->rx_done, &rx_queue);
2254 	spin_unlock_irqrestore(&tp->rx_lock, flags);
2255 
2256 	list_for_each_safe(cursor, next, &rx_queue) {
2257 		struct rx_desc *rx_desc;
2258 		struct rx_agg *agg, *agg_free;
2259 		int len_used = 0;
2260 		struct urb *urb;
2261 		u8 *rx_data;
2262 
2263 		list_del_init(cursor);
2264 
2265 		agg = list_entry(cursor, struct rx_agg, list);
2266 		urb = agg->urb;
2267 		if (urb->actual_length < ETH_ZLEN)
2268 			goto submit;
2269 
2270 		agg_free = rtl_get_free_rx(tp, GFP_ATOMIC);
2271 
2272 		rx_desc = agg->buffer;
2273 		rx_data = agg->buffer;
2274 		len_used += sizeof(struct rx_desc);
2275 
2276 		while (urb->actual_length > len_used) {
2277 			struct net_device *netdev = tp->netdev;
2278 			struct net_device_stats *stats = &netdev->stats;
2279 			unsigned int pkt_len, rx_frag_head_sz;
2280 			struct sk_buff *skb;
2281 
2282 			/* limite the skb numbers for rx_queue */
2283 			if (unlikely(skb_queue_len(&tp->rx_queue) >= 1000))
2284 				break;
2285 
2286 			pkt_len = le32_to_cpu(rx_desc->opts1) & RX_LEN_MASK;
2287 			if (pkt_len < ETH_ZLEN)
2288 				break;
2289 
2290 			len_used += pkt_len;
2291 			if (urb->actual_length < len_used)
2292 				break;
2293 
2294 			pkt_len -= ETH_FCS_LEN;
2295 			rx_data += sizeof(struct rx_desc);
2296 
2297 			if (!agg_free || tp->rx_copybreak > pkt_len)
2298 				rx_frag_head_sz = pkt_len;
2299 			else
2300 				rx_frag_head_sz = tp->rx_copybreak;
2301 
2302 			skb = napi_alloc_skb(napi, rx_frag_head_sz);
2303 			if (!skb) {
2304 				stats->rx_dropped++;
2305 				goto find_next_rx;
2306 			}
2307 
2308 			skb->ip_summed = r8152_rx_csum(tp, rx_desc);
2309 			memcpy(skb->data, rx_data, rx_frag_head_sz);
2310 			skb_put(skb, rx_frag_head_sz);
2311 			pkt_len -= rx_frag_head_sz;
2312 			rx_data += rx_frag_head_sz;
2313 			if (pkt_len) {
2314 				skb_add_rx_frag(skb, 0, agg->page,
2315 						agg_offset(agg, rx_data),
2316 						pkt_len,
2317 						SKB_DATA_ALIGN(pkt_len));
2318 				get_page(agg->page);
2319 			}
2320 
2321 			skb->protocol = eth_type_trans(skb, netdev);
2322 			rtl_rx_vlan_tag(rx_desc, skb);
2323 			if (work_done < budget) {
2324 				work_done++;
2325 				stats->rx_packets++;
2326 				stats->rx_bytes += skb->len;
2327 				napi_gro_receive(napi, skb);
2328 			} else {
2329 				__skb_queue_tail(&tp->rx_queue, skb);
2330 			}
2331 
2332 find_next_rx:
2333 			rx_data = rx_agg_align(rx_data + pkt_len + ETH_FCS_LEN);
2334 			rx_desc = (struct rx_desc *)rx_data;
2335 			len_used = agg_offset(agg, rx_data);
2336 			len_used += sizeof(struct rx_desc);
2337 		}
2338 
2339 		WARN_ON(!agg_free && page_count(agg->page) > 1);
2340 
2341 		if (agg_free) {
2342 			spin_lock_irqsave(&tp->rx_lock, flags);
2343 			if (page_count(agg->page) == 1) {
2344 				list_add(&agg_free->list, &tp->rx_used);
2345 			} else {
2346 				list_add_tail(&agg->list, &tp->rx_used);
2347 				agg = agg_free;
2348 				urb = agg->urb;
2349 			}
2350 			spin_unlock_irqrestore(&tp->rx_lock, flags);
2351 		}
2352 
2353 submit:
2354 		if (!ret) {
2355 			ret = r8152_submit_rx(tp, agg, GFP_ATOMIC);
2356 		} else {
2357 			urb->actual_length = 0;
2358 			list_add_tail(&agg->list, next);
2359 		}
2360 	}
2361 
2362 	if (!list_empty(&rx_queue)) {
2363 		spin_lock_irqsave(&tp->rx_lock, flags);
2364 		list_splice_tail(&rx_queue, &tp->rx_done);
2365 		spin_unlock_irqrestore(&tp->rx_lock, flags);
2366 	}
2367 
2368 out1:
2369 	return work_done;
2370 }
2371 
2372 static void tx_bottom(struct r8152 *tp)
2373 {
2374 	int res;
2375 
2376 	do {
2377 		struct net_device *netdev = tp->netdev;
2378 		struct tx_agg *agg;
2379 
2380 		if (skb_queue_empty(&tp->tx_queue))
2381 			break;
2382 
2383 		agg = r8152_get_tx_agg(tp);
2384 		if (!agg)
2385 			break;
2386 
2387 		res = r8152_tx_agg_fill(tp, agg);
2388 		if (!res)
2389 			continue;
2390 
2391 		if (res == -ENODEV) {
2392 			rtl_set_unplug(tp);
2393 			netif_device_detach(netdev);
2394 		} else {
2395 			struct net_device_stats *stats = &netdev->stats;
2396 			unsigned long flags;
2397 
2398 			netif_warn(tp, tx_err, netdev,
2399 				   "failed tx_urb %d\n", res);
2400 			stats->tx_dropped += agg->skb_num;
2401 
2402 			spin_lock_irqsave(&tp->tx_lock, flags);
2403 			list_add_tail(&agg->list, &tp->tx_free);
2404 			spin_unlock_irqrestore(&tp->tx_lock, flags);
2405 		}
2406 	} while (res == 0);
2407 }
2408 
2409 static void bottom_half(unsigned long data)
2410 {
2411 	struct r8152 *tp;
2412 
2413 	tp = (struct r8152 *)data;
2414 
2415 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
2416 		return;
2417 
2418 	if (!test_bit(WORK_ENABLE, &tp->flags))
2419 		return;
2420 
2421 	/* When link down, the driver would cancel all bulks. */
2422 	/* This avoid the re-submitting bulk */
2423 	if (!netif_carrier_ok(tp->netdev))
2424 		return;
2425 
2426 	clear_bit(SCHEDULE_TASKLET, &tp->flags);
2427 
2428 	tx_bottom(tp);
2429 }
2430 
2431 static int r8152_poll(struct napi_struct *napi, int budget)
2432 {
2433 	struct r8152 *tp = container_of(napi, struct r8152, napi);
2434 	int work_done;
2435 
2436 	work_done = rx_bottom(tp, budget);
2437 
2438 	if (work_done < budget) {
2439 		if (!napi_complete_done(napi, work_done))
2440 			goto out;
2441 		if (!list_empty(&tp->rx_done))
2442 			napi_schedule(napi);
2443 	}
2444 
2445 out:
2446 	return work_done;
2447 }
2448 
2449 static
2450 int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags)
2451 {
2452 	int ret;
2453 
2454 	/* The rx would be stopped, so skip submitting */
2455 	if (test_bit(RTL8152_UNPLUG, &tp->flags) ||
2456 	    !test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev))
2457 		return 0;
2458 
2459 	usb_fill_bulk_urb(agg->urb, tp->udev, usb_rcvbulkpipe(tp->udev, 1),
2460 			  agg->buffer, tp->rx_buf_sz,
2461 			  (usb_complete_t)read_bulk_callback, agg);
2462 
2463 	ret = usb_submit_urb(agg->urb, mem_flags);
2464 	if (ret == -ENODEV) {
2465 		rtl_set_unplug(tp);
2466 		netif_device_detach(tp->netdev);
2467 	} else if (ret) {
2468 		struct urb *urb = agg->urb;
2469 		unsigned long flags;
2470 
2471 		urb->actual_length = 0;
2472 		spin_lock_irqsave(&tp->rx_lock, flags);
2473 		list_add_tail(&agg->list, &tp->rx_done);
2474 		spin_unlock_irqrestore(&tp->rx_lock, flags);
2475 
2476 		netif_err(tp, rx_err, tp->netdev,
2477 			  "Couldn't submit rx[%p], ret = %d\n", agg, ret);
2478 
2479 		napi_schedule(&tp->napi);
2480 	}
2481 
2482 	return ret;
2483 }
2484 
2485 static void rtl_drop_queued_tx(struct r8152 *tp)
2486 {
2487 	struct net_device_stats *stats = &tp->netdev->stats;
2488 	struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue;
2489 	struct sk_buff *skb;
2490 
2491 	if (skb_queue_empty(tx_queue))
2492 		return;
2493 
2494 	__skb_queue_head_init(&skb_head);
2495 	spin_lock_bh(&tx_queue->lock);
2496 	skb_queue_splice_init(tx_queue, &skb_head);
2497 	spin_unlock_bh(&tx_queue->lock);
2498 
2499 	while ((skb = __skb_dequeue(&skb_head))) {
2500 		dev_kfree_skb(skb);
2501 		stats->tx_dropped++;
2502 	}
2503 }
2504 
2505 static void rtl8152_tx_timeout(struct net_device *netdev, unsigned int txqueue)
2506 {
2507 	struct r8152 *tp = netdev_priv(netdev);
2508 
2509 	netif_warn(tp, tx_err, netdev, "Tx timeout\n");
2510 
2511 	usb_queue_reset_device(tp->intf);
2512 }
2513 
2514 static void rtl8152_set_rx_mode(struct net_device *netdev)
2515 {
2516 	struct r8152 *tp = netdev_priv(netdev);
2517 
2518 	if (netif_carrier_ok(netdev)) {
2519 		set_bit(RTL8152_SET_RX_MODE, &tp->flags);
2520 		schedule_delayed_work(&tp->schedule, 0);
2521 	}
2522 }
2523 
2524 static void _rtl8152_set_rx_mode(struct net_device *netdev)
2525 {
2526 	struct r8152 *tp = netdev_priv(netdev);
2527 	u32 mc_filter[2];	/* Multicast hash filter */
2528 	__le32 tmp[2];
2529 	u32 ocp_data;
2530 
2531 	netif_stop_queue(netdev);
2532 	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2533 	ocp_data &= ~RCR_ACPT_ALL;
2534 	ocp_data |= RCR_AB | RCR_APM;
2535 
2536 	if (netdev->flags & IFF_PROMISC) {
2537 		/* Unconditionally log net taps. */
2538 		netif_notice(tp, link, netdev, "Promiscuous mode enabled\n");
2539 		ocp_data |= RCR_AM | RCR_AAP;
2540 		mc_filter[1] = 0xffffffff;
2541 		mc_filter[0] = 0xffffffff;
2542 	} else if ((netdev_mc_count(netdev) > multicast_filter_limit) ||
2543 		   (netdev->flags & IFF_ALLMULTI)) {
2544 		/* Too many to filter perfectly -- accept all multicasts. */
2545 		ocp_data |= RCR_AM;
2546 		mc_filter[1] = 0xffffffff;
2547 		mc_filter[0] = 0xffffffff;
2548 	} else {
2549 		struct netdev_hw_addr *ha;
2550 
2551 		mc_filter[1] = 0;
2552 		mc_filter[0] = 0;
2553 		netdev_for_each_mc_addr(ha, netdev) {
2554 			int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
2555 
2556 			mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
2557 			ocp_data |= RCR_AM;
2558 		}
2559 	}
2560 
2561 	tmp[0] = __cpu_to_le32(swab32(mc_filter[1]));
2562 	tmp[1] = __cpu_to_le32(swab32(mc_filter[0]));
2563 
2564 	pla_ocp_write(tp, PLA_MAR, BYTE_EN_DWORD, sizeof(tmp), tmp);
2565 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2566 	netif_wake_queue(netdev);
2567 }
2568 
2569 static netdev_features_t
2570 rtl8152_features_check(struct sk_buff *skb, struct net_device *dev,
2571 		       netdev_features_t features)
2572 {
2573 	u32 mss = skb_shinfo(skb)->gso_size;
2574 	int max_offset = mss ? GTTCPHO_MAX : TCPHO_MAX;
2575 	int offset = skb_transport_offset(skb);
2576 
2577 	if ((mss || skb->ip_summed == CHECKSUM_PARTIAL) && offset > max_offset)
2578 		features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
2579 	else if ((skb->len + sizeof(struct tx_desc)) > agg_buf_sz)
2580 		features &= ~NETIF_F_GSO_MASK;
2581 
2582 	return features;
2583 }
2584 
2585 static netdev_tx_t rtl8152_start_xmit(struct sk_buff *skb,
2586 				      struct net_device *netdev)
2587 {
2588 	struct r8152 *tp = netdev_priv(netdev);
2589 
2590 	skb_tx_timestamp(skb);
2591 
2592 	skb_queue_tail(&tp->tx_queue, skb);
2593 
2594 	if (!list_empty(&tp->tx_free)) {
2595 		if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
2596 			set_bit(SCHEDULE_TASKLET, &tp->flags);
2597 			schedule_delayed_work(&tp->schedule, 0);
2598 		} else {
2599 			usb_mark_last_busy(tp->udev);
2600 			tasklet_schedule(&tp->tx_tl);
2601 		}
2602 	} else if (skb_queue_len(&tp->tx_queue) > tp->tx_qlen) {
2603 		netif_stop_queue(netdev);
2604 	}
2605 
2606 	return NETDEV_TX_OK;
2607 }
2608 
2609 static void r8152b_reset_packet_filter(struct r8152 *tp)
2610 {
2611 	u32	ocp_data;
2612 
2613 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_FMC);
2614 	ocp_data &= ~FMC_FCR_MCU_EN;
2615 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2616 	ocp_data |= FMC_FCR_MCU_EN;
2617 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data);
2618 }
2619 
2620 static void rtl8152_nic_reset(struct r8152 *tp)
2621 {
2622 	int	i;
2623 
2624 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, CR_RST);
2625 
2626 	for (i = 0; i < 1000; i++) {
2627 		if (!(ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR) & CR_RST))
2628 			break;
2629 		usleep_range(100, 400);
2630 	}
2631 }
2632 
2633 static void set_tx_qlen(struct r8152 *tp)
2634 {
2635 	struct net_device *netdev = tp->netdev;
2636 
2637 	tp->tx_qlen = agg_buf_sz / (netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN +
2638 				    sizeof(struct tx_desc));
2639 }
2640 
2641 static inline u8 rtl8152_get_speed(struct r8152 *tp)
2642 {
2643 	return ocp_read_byte(tp, MCU_TYPE_PLA, PLA_PHYSTATUS);
2644 }
2645 
2646 static void rtl_set_eee_plus(struct r8152 *tp)
2647 {
2648 	u32 ocp_data;
2649 	u8 speed;
2650 
2651 	speed = rtl8152_get_speed(tp);
2652 	if (speed & _10bps) {
2653 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
2654 		ocp_data |= EEEP_CR_EEEP_TX;
2655 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2656 	} else {
2657 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR);
2658 		ocp_data &= ~EEEP_CR_EEEP_TX;
2659 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data);
2660 	}
2661 }
2662 
2663 static void rxdy_gated_en(struct r8152 *tp, bool enable)
2664 {
2665 	u32 ocp_data;
2666 
2667 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MISC_1);
2668 	if (enable)
2669 		ocp_data |= RXDY_GATED_EN;
2670 	else
2671 		ocp_data &= ~RXDY_GATED_EN;
2672 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MISC_1, ocp_data);
2673 }
2674 
2675 static int rtl_start_rx(struct r8152 *tp)
2676 {
2677 	struct rx_agg *agg, *agg_next;
2678 	struct list_head tmp_list;
2679 	unsigned long flags;
2680 	int ret = 0, i = 0;
2681 
2682 	INIT_LIST_HEAD(&tmp_list);
2683 
2684 	spin_lock_irqsave(&tp->rx_lock, flags);
2685 
2686 	INIT_LIST_HEAD(&tp->rx_done);
2687 	INIT_LIST_HEAD(&tp->rx_used);
2688 
2689 	list_splice_init(&tp->rx_info, &tmp_list);
2690 
2691 	spin_unlock_irqrestore(&tp->rx_lock, flags);
2692 
2693 	list_for_each_entry_safe(agg, agg_next, &tmp_list, info_list) {
2694 		INIT_LIST_HEAD(&agg->list);
2695 
2696 		/* Only RTL8152_MAX_RX rx_agg need to be submitted. */
2697 		if (++i > RTL8152_MAX_RX) {
2698 			spin_lock_irqsave(&tp->rx_lock, flags);
2699 			list_add_tail(&agg->list, &tp->rx_used);
2700 			spin_unlock_irqrestore(&tp->rx_lock, flags);
2701 		} else if (unlikely(ret < 0)) {
2702 			spin_lock_irqsave(&tp->rx_lock, flags);
2703 			list_add_tail(&agg->list, &tp->rx_done);
2704 			spin_unlock_irqrestore(&tp->rx_lock, flags);
2705 		} else {
2706 			ret = r8152_submit_rx(tp, agg, GFP_KERNEL);
2707 		}
2708 	}
2709 
2710 	spin_lock_irqsave(&tp->rx_lock, flags);
2711 	WARN_ON(!list_empty(&tp->rx_info));
2712 	list_splice(&tmp_list, &tp->rx_info);
2713 	spin_unlock_irqrestore(&tp->rx_lock, flags);
2714 
2715 	return ret;
2716 }
2717 
2718 static int rtl_stop_rx(struct r8152 *tp)
2719 {
2720 	struct rx_agg *agg, *agg_next;
2721 	struct list_head tmp_list;
2722 	unsigned long flags;
2723 
2724 	INIT_LIST_HEAD(&tmp_list);
2725 
2726 	/* The usb_kill_urb() couldn't be used in atomic.
2727 	 * Therefore, move the list of rx_info to a tmp one.
2728 	 * Then, list_for_each_entry_safe could be used without
2729 	 * spin lock.
2730 	 */
2731 
2732 	spin_lock_irqsave(&tp->rx_lock, flags);
2733 	list_splice_init(&tp->rx_info, &tmp_list);
2734 	spin_unlock_irqrestore(&tp->rx_lock, flags);
2735 
2736 	list_for_each_entry_safe(agg, agg_next, &tmp_list, info_list) {
2737 		/* At least RTL8152_MAX_RX rx_agg have the page_count being
2738 		 * equal to 1, so the other ones could be freed safely.
2739 		 */
2740 		if (page_count(agg->page) > 1)
2741 			free_rx_agg(tp, agg);
2742 		else
2743 			usb_kill_urb(agg->urb);
2744 	}
2745 
2746 	/* Move back the list of temp to the rx_info */
2747 	spin_lock_irqsave(&tp->rx_lock, flags);
2748 	WARN_ON(!list_empty(&tp->rx_info));
2749 	list_splice(&tmp_list, &tp->rx_info);
2750 	spin_unlock_irqrestore(&tp->rx_lock, flags);
2751 
2752 	while (!skb_queue_empty(&tp->rx_queue))
2753 		dev_kfree_skb(__skb_dequeue(&tp->rx_queue));
2754 
2755 	return 0;
2756 }
2757 
2758 static inline void r8153b_rx_agg_chg_indicate(struct r8152 *tp)
2759 {
2760 	ocp_write_byte(tp, MCU_TYPE_USB, USB_UPT_RXDMA_OWN,
2761 		       OWN_UPDATE | OWN_CLEAR);
2762 }
2763 
2764 static int rtl_enable(struct r8152 *tp)
2765 {
2766 	u32 ocp_data;
2767 
2768 	r8152b_reset_packet_filter(tp);
2769 
2770 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR);
2771 	ocp_data |= CR_RE | CR_TE;
2772 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, ocp_data);
2773 
2774 	switch (tp->version) {
2775 	case RTL_VER_08:
2776 	case RTL_VER_09:
2777 		r8153b_rx_agg_chg_indicate(tp);
2778 		break;
2779 	default:
2780 		break;
2781 	}
2782 
2783 	rxdy_gated_en(tp, false);
2784 
2785 	return 0;
2786 }
2787 
2788 static int rtl8152_enable(struct r8152 *tp)
2789 {
2790 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
2791 		return -ENODEV;
2792 
2793 	set_tx_qlen(tp);
2794 	rtl_set_eee_plus(tp);
2795 
2796 	return rtl_enable(tp);
2797 }
2798 
2799 static void r8153_set_rx_early_timeout(struct r8152 *tp)
2800 {
2801 	u32 ocp_data = tp->coalesce / 8;
2802 
2803 	switch (tp->version) {
2804 	case RTL_VER_03:
2805 	case RTL_VER_04:
2806 	case RTL_VER_05:
2807 	case RTL_VER_06:
2808 		ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT,
2809 			       ocp_data);
2810 		break;
2811 
2812 	case RTL_VER_08:
2813 	case RTL_VER_09:
2814 		/* The RTL8153B uses USB_RX_EXTRA_AGGR_TMR for rx timeout
2815 		 * primarily. For USB_RX_EARLY_TIMEOUT, we fix it to 128ns.
2816 		 */
2817 		ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT,
2818 			       128 / 8);
2819 		ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EXTRA_AGGR_TMR,
2820 			       ocp_data);
2821 		break;
2822 
2823 	default:
2824 		break;
2825 	}
2826 }
2827 
2828 static void r8153_set_rx_early_size(struct r8152 *tp)
2829 {
2830 	u32 ocp_data = tp->rx_buf_sz - rx_reserved_size(tp->netdev->mtu);
2831 
2832 	switch (tp->version) {
2833 	case RTL_VER_03:
2834 	case RTL_VER_04:
2835 	case RTL_VER_05:
2836 	case RTL_VER_06:
2837 		ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE,
2838 			       ocp_data / 4);
2839 		break;
2840 	case RTL_VER_08:
2841 	case RTL_VER_09:
2842 		ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE,
2843 			       ocp_data / 8);
2844 		break;
2845 	default:
2846 		WARN_ON_ONCE(1);
2847 		break;
2848 	}
2849 }
2850 
2851 static int rtl8153_enable(struct r8152 *tp)
2852 {
2853 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
2854 		return -ENODEV;
2855 
2856 	set_tx_qlen(tp);
2857 	rtl_set_eee_plus(tp);
2858 	r8153_set_rx_early_timeout(tp);
2859 	r8153_set_rx_early_size(tp);
2860 
2861 	if (tp->version == RTL_VER_09) {
2862 		u32 ocp_data;
2863 
2864 		ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_TASK);
2865 		ocp_data &= ~FC_PATCH_TASK;
2866 		ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data);
2867 		usleep_range(1000, 2000);
2868 		ocp_data |= FC_PATCH_TASK;
2869 		ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data);
2870 	}
2871 
2872 	return rtl_enable(tp);
2873 }
2874 
2875 static void rtl_disable(struct r8152 *tp)
2876 {
2877 	u32 ocp_data;
2878 	int i;
2879 
2880 	if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
2881 		rtl_drop_queued_tx(tp);
2882 		return;
2883 	}
2884 
2885 	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
2886 	ocp_data &= ~RCR_ACPT_ALL;
2887 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
2888 
2889 	rtl_drop_queued_tx(tp);
2890 
2891 	for (i = 0; i < RTL8152_MAX_TX; i++)
2892 		usb_kill_urb(tp->tx_info[i].urb);
2893 
2894 	rxdy_gated_en(tp, true);
2895 
2896 	for (i = 0; i < 1000; i++) {
2897 		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
2898 		if ((ocp_data & FIFO_EMPTY) == FIFO_EMPTY)
2899 			break;
2900 		usleep_range(1000, 2000);
2901 	}
2902 
2903 	for (i = 0; i < 1000; i++) {
2904 		if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0) & TCR0_TX_EMPTY)
2905 			break;
2906 		usleep_range(1000, 2000);
2907 	}
2908 
2909 	rtl_stop_rx(tp);
2910 
2911 	rtl8152_nic_reset(tp);
2912 }
2913 
2914 static void r8152_power_cut_en(struct r8152 *tp, bool enable)
2915 {
2916 	u32 ocp_data;
2917 
2918 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CTRL);
2919 	if (enable)
2920 		ocp_data |= POWER_CUT;
2921 	else
2922 		ocp_data &= ~POWER_CUT;
2923 	ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CTRL, ocp_data);
2924 
2925 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS);
2926 	ocp_data &= ~RESUME_INDICATE;
2927 	ocp_write_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS, ocp_data);
2928 }
2929 
2930 static void rtl_rx_vlan_en(struct r8152 *tp, bool enable)
2931 {
2932 	u32 ocp_data;
2933 
2934 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CPCR);
2935 	if (enable)
2936 		ocp_data |= CPCR_RX_VLAN;
2937 	else
2938 		ocp_data &= ~CPCR_RX_VLAN;
2939 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_CPCR, ocp_data);
2940 }
2941 
2942 static int rtl8152_set_features(struct net_device *dev,
2943 				netdev_features_t features)
2944 {
2945 	netdev_features_t changed = features ^ dev->features;
2946 	struct r8152 *tp = netdev_priv(dev);
2947 	int ret;
2948 
2949 	ret = usb_autopm_get_interface(tp->intf);
2950 	if (ret < 0)
2951 		goto out;
2952 
2953 	mutex_lock(&tp->control);
2954 
2955 	if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
2956 		if (features & NETIF_F_HW_VLAN_CTAG_RX)
2957 			rtl_rx_vlan_en(tp, true);
2958 		else
2959 			rtl_rx_vlan_en(tp, false);
2960 	}
2961 
2962 	mutex_unlock(&tp->control);
2963 
2964 	usb_autopm_put_interface(tp->intf);
2965 
2966 out:
2967 	return ret;
2968 }
2969 
2970 #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
2971 
2972 static u32 __rtl_get_wol(struct r8152 *tp)
2973 {
2974 	u32 ocp_data;
2975 	u32 wolopts = 0;
2976 
2977 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
2978 	if (ocp_data & LINK_ON_WAKE_EN)
2979 		wolopts |= WAKE_PHY;
2980 
2981 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
2982 	if (ocp_data & UWF_EN)
2983 		wolopts |= WAKE_UCAST;
2984 	if (ocp_data & BWF_EN)
2985 		wolopts |= WAKE_BCAST;
2986 	if (ocp_data & MWF_EN)
2987 		wolopts |= WAKE_MCAST;
2988 
2989 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
2990 	if (ocp_data & MAGIC_EN)
2991 		wolopts |= WAKE_MAGIC;
2992 
2993 	return wolopts;
2994 }
2995 
2996 static void __rtl_set_wol(struct r8152 *tp, u32 wolopts)
2997 {
2998 	u32 ocp_data;
2999 
3000 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
3001 
3002 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
3003 	ocp_data &= ~LINK_ON_WAKE_EN;
3004 	if (wolopts & WAKE_PHY)
3005 		ocp_data |= LINK_ON_WAKE_EN;
3006 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
3007 
3008 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5);
3009 	ocp_data &= ~(UWF_EN | BWF_EN | MWF_EN);
3010 	if (wolopts & WAKE_UCAST)
3011 		ocp_data |= UWF_EN;
3012 	if (wolopts & WAKE_BCAST)
3013 		ocp_data |= BWF_EN;
3014 	if (wolopts & WAKE_MCAST)
3015 		ocp_data |= MWF_EN;
3016 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG5, ocp_data);
3017 
3018 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
3019 
3020 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL);
3021 	ocp_data &= ~MAGIC_EN;
3022 	if (wolopts & WAKE_MAGIC)
3023 		ocp_data |= MAGIC_EN;
3024 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL, ocp_data);
3025 
3026 	if (wolopts & WAKE_ANY)
3027 		device_set_wakeup_enable(&tp->udev->dev, true);
3028 	else
3029 		device_set_wakeup_enable(&tp->udev->dev, false);
3030 }
3031 
3032 static void r8153_mac_clk_spd(struct r8152 *tp, bool enable)
3033 {
3034 	/* MAC clock speed down */
3035 	if (enable) {
3036 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL,
3037 			       ALDPS_SPDWN_RATIO);
3038 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2,
3039 			       EEE_SPDWN_RATIO);
3040 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3,
3041 			       PKT_AVAIL_SPDWN_EN | SUSPEND_SPDWN_EN |
3042 			       U1U2_SPDWN_EN | L1_SPDWN_EN);
3043 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4,
3044 			       PWRSAVE_SPDWN_EN | RXDV_SPDWN_EN | TX10MIDLE_EN |
3045 			       TP100_SPDWN_EN | TP500_SPDWN_EN | EEE_SPDWN_EN |
3046 			       TP1000_SPDWN_EN);
3047 	} else {
3048 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, 0);
3049 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, 0);
3050 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, 0);
3051 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4, 0);
3052 	}
3053 }
3054 
3055 static void r8153_u1u2en(struct r8152 *tp, bool enable)
3056 {
3057 	u8 u1u2[8];
3058 
3059 	if (enable)
3060 		memset(u1u2, 0xff, sizeof(u1u2));
3061 	else
3062 		memset(u1u2, 0x00, sizeof(u1u2));
3063 
3064 	usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2);
3065 }
3066 
3067 static void r8153b_u1u2en(struct r8152 *tp, bool enable)
3068 {
3069 	u32 ocp_data;
3070 
3071 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_LPM_CONFIG);
3072 	if (enable)
3073 		ocp_data |= LPM_U1U2_EN;
3074 	else
3075 		ocp_data &= ~LPM_U1U2_EN;
3076 
3077 	ocp_write_word(tp, MCU_TYPE_USB, USB_LPM_CONFIG, ocp_data);
3078 }
3079 
3080 static void r8153_u2p3en(struct r8152 *tp, bool enable)
3081 {
3082 	u32 ocp_data;
3083 
3084 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL);
3085 	if (enable)
3086 		ocp_data |= U2P3_ENABLE;
3087 	else
3088 		ocp_data &= ~U2P3_ENABLE;
3089 	ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data);
3090 }
3091 
3092 static void r8153b_ups_flags(struct r8152 *tp)
3093 {
3094 	u32 ups_flags = 0;
3095 
3096 	if (tp->ups_info.green)
3097 		ups_flags |= UPS_FLAGS_EN_GREEN;
3098 
3099 	if (tp->ups_info.aldps)
3100 		ups_flags |= UPS_FLAGS_EN_ALDPS;
3101 
3102 	if (tp->ups_info.eee)
3103 		ups_flags |= UPS_FLAGS_EN_EEE;
3104 
3105 	if (tp->ups_info.flow_control)
3106 		ups_flags |= UPS_FLAGS_EN_FLOW_CTR;
3107 
3108 	if (tp->ups_info.eee_ckdiv)
3109 		ups_flags |= UPS_FLAGS_EN_EEE_CKDIV;
3110 
3111 	if (tp->ups_info.eee_cmod_lv)
3112 		ups_flags |= UPS_FLAGS_EEE_CMOD_LV_EN;
3113 
3114 	if (tp->ups_info._10m_ckdiv)
3115 		ups_flags |= UPS_FLAGS_EN_10M_CKDIV;
3116 
3117 	if (tp->ups_info.eee_plloff_100)
3118 		ups_flags |= UPS_FLAGS_EEE_PLLOFF_100;
3119 
3120 	if (tp->ups_info.eee_plloff_giga)
3121 		ups_flags |= UPS_FLAGS_EEE_PLLOFF_GIGA;
3122 
3123 	if (tp->ups_info._250m_ckdiv)
3124 		ups_flags |= UPS_FLAGS_250M_CKDIV;
3125 
3126 	if (tp->ups_info.ctap_short_off)
3127 		ups_flags |= UPS_FLAGS_CTAP_SHORT_DIS;
3128 
3129 	switch (tp->ups_info.speed_duplex) {
3130 	case NWAY_10M_HALF:
3131 		ups_flags |= ups_flags_speed(1);
3132 		break;
3133 	case NWAY_10M_FULL:
3134 		ups_flags |= ups_flags_speed(2);
3135 		break;
3136 	case NWAY_100M_HALF:
3137 		ups_flags |= ups_flags_speed(3);
3138 		break;
3139 	case NWAY_100M_FULL:
3140 		ups_flags |= ups_flags_speed(4);
3141 		break;
3142 	case NWAY_1000M_FULL:
3143 		ups_flags |= ups_flags_speed(5);
3144 		break;
3145 	case FORCE_10M_HALF:
3146 		ups_flags |= ups_flags_speed(6);
3147 		break;
3148 	case FORCE_10M_FULL:
3149 		ups_flags |= ups_flags_speed(7);
3150 		break;
3151 	case FORCE_100M_HALF:
3152 		ups_flags |= ups_flags_speed(8);
3153 		break;
3154 	case FORCE_100M_FULL:
3155 		ups_flags |= ups_flags_speed(9);
3156 		break;
3157 	default:
3158 		break;
3159 	}
3160 
3161 	ocp_write_dword(tp, MCU_TYPE_USB, USB_UPS_FLAGS, ups_flags);
3162 }
3163 
3164 static void r8153b_green_en(struct r8152 *tp, bool enable)
3165 {
3166 	u16 data;
3167 
3168 	if (enable) {
3169 		sram_write(tp, 0x8045, 0);	/* 10M abiq&ldvbias */
3170 		sram_write(tp, 0x804d, 0x1222);	/* 100M short abiq&ldvbias */
3171 		sram_write(tp, 0x805d, 0x0022);	/* 1000M short abiq&ldvbias */
3172 	} else {
3173 		sram_write(tp, 0x8045, 0x2444);	/* 10M abiq&ldvbias */
3174 		sram_write(tp, 0x804d, 0x2444);	/* 100M short abiq&ldvbias */
3175 		sram_write(tp, 0x805d, 0x2444);	/* 1000M short abiq&ldvbias */
3176 	}
3177 
3178 	data = sram_read(tp, SRAM_GREEN_CFG);
3179 	data |= GREEN_ETH_EN;
3180 	sram_write(tp, SRAM_GREEN_CFG, data);
3181 
3182 	tp->ups_info.green = enable;
3183 }
3184 
3185 static u16 r8153_phy_status(struct r8152 *tp, u16 desired)
3186 {
3187 	u16 data;
3188 	int i;
3189 
3190 	for (i = 0; i < 500; i++) {
3191 		data = ocp_reg_read(tp, OCP_PHY_STATUS);
3192 		data &= PHY_STAT_MASK;
3193 		if (desired) {
3194 			if (data == desired)
3195 				break;
3196 		} else if (data == PHY_STAT_LAN_ON || data == PHY_STAT_PWRDN ||
3197 			   data == PHY_STAT_EXT_INIT) {
3198 			break;
3199 		}
3200 
3201 		msleep(20);
3202 		if (test_bit(RTL8152_UNPLUG, &tp->flags))
3203 			break;
3204 	}
3205 
3206 	return data;
3207 }
3208 
3209 static void r8153b_ups_en(struct r8152 *tp, bool enable)
3210 {
3211 	u32 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_POWER_CUT);
3212 
3213 	if (enable) {
3214 		r8153b_ups_flags(tp);
3215 
3216 		ocp_data |= UPS_EN | USP_PREWAKE | PHASE2_EN;
3217 		ocp_write_byte(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
3218 
3219 		ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, 0xcfff);
3220 		ocp_data |= BIT(0);
3221 		ocp_write_byte(tp, MCU_TYPE_USB, 0xcfff, ocp_data);
3222 	} else {
3223 		u16 data;
3224 
3225 		ocp_data &= ~(UPS_EN | USP_PREWAKE);
3226 		ocp_write_byte(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
3227 
3228 		ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, 0xcfff);
3229 		ocp_data &= ~BIT(0);
3230 		ocp_write_byte(tp, MCU_TYPE_USB, 0xcfff, ocp_data);
3231 
3232 		ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
3233 		ocp_data &= ~PCUT_STATUS;
3234 		ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
3235 
3236 		data = r8153_phy_status(tp, 0);
3237 
3238 		switch (data) {
3239 		case PHY_STAT_PWRDN:
3240 		case PHY_STAT_EXT_INIT:
3241 			r8153b_green_en(tp,
3242 					test_bit(GREEN_ETHERNET, &tp->flags));
3243 
3244 			data = r8152_mdio_read(tp, MII_BMCR);
3245 			data &= ~BMCR_PDOWN;
3246 			data |= BMCR_RESET;
3247 			r8152_mdio_write(tp, MII_BMCR, data);
3248 
3249 			data = r8153_phy_status(tp, PHY_STAT_LAN_ON);
3250 			/* fall through */
3251 
3252 		default:
3253 			if (data != PHY_STAT_LAN_ON)
3254 				netif_warn(tp, link, tp->netdev,
3255 					   "PHY not ready");
3256 			break;
3257 		}
3258 	}
3259 }
3260 
3261 static void r8153_power_cut_en(struct r8152 *tp, bool enable)
3262 {
3263 	u32 ocp_data;
3264 
3265 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
3266 	if (enable)
3267 		ocp_data |= PWR_EN | PHASE2_EN;
3268 	else
3269 		ocp_data &= ~(PWR_EN | PHASE2_EN);
3270 	ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
3271 
3272 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
3273 	ocp_data &= ~PCUT_STATUS;
3274 	ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
3275 }
3276 
3277 static void r8153b_power_cut_en(struct r8152 *tp, bool enable)
3278 {
3279 	u32 ocp_data;
3280 
3281 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
3282 	if (enable)
3283 		ocp_data |= PWR_EN | PHASE2_EN;
3284 	else
3285 		ocp_data &= ~PWR_EN;
3286 	ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
3287 
3288 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
3289 	ocp_data &= ~PCUT_STATUS;
3290 	ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
3291 }
3292 
3293 static void r8153_queue_wake(struct r8152 *tp, bool enable)
3294 {
3295 	u32 ocp_data;
3296 
3297 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_INDICATE_FALG);
3298 	if (enable)
3299 		ocp_data |= UPCOMING_RUNTIME_D3;
3300 	else
3301 		ocp_data &= ~UPCOMING_RUNTIME_D3;
3302 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_INDICATE_FALG, ocp_data);
3303 
3304 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_SUSPEND_FLAG);
3305 	ocp_data &= ~LINK_CHG_EVENT;
3306 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_SUSPEND_FLAG, ocp_data);
3307 
3308 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS);
3309 	ocp_data &= ~LINK_CHANGE_FLAG;
3310 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data);
3311 }
3312 
3313 static bool rtl_can_wakeup(struct r8152 *tp)
3314 {
3315 	struct usb_device *udev = tp->udev;
3316 
3317 	return (udev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_WAKEUP);
3318 }
3319 
3320 static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
3321 {
3322 	if (enable) {
3323 		u32 ocp_data;
3324 
3325 		__rtl_set_wol(tp, WAKE_ANY);
3326 
3327 		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
3328 
3329 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
3330 		ocp_data |= LINK_OFF_WAKE_EN;
3331 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
3332 
3333 		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
3334 	} else {
3335 		u32 ocp_data;
3336 
3337 		__rtl_set_wol(tp, tp->saved_wolopts);
3338 
3339 		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
3340 
3341 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
3342 		ocp_data &= ~LINK_OFF_WAKE_EN;
3343 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
3344 
3345 		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
3346 	}
3347 }
3348 
3349 static void rtl8153_runtime_enable(struct r8152 *tp, bool enable)
3350 {
3351 	if (enable) {
3352 		r8153_u1u2en(tp, false);
3353 		r8153_u2p3en(tp, false);
3354 		r8153_mac_clk_spd(tp, true);
3355 		rtl_runtime_suspend_enable(tp, true);
3356 	} else {
3357 		rtl_runtime_suspend_enable(tp, false);
3358 		r8153_mac_clk_spd(tp, false);
3359 
3360 		switch (tp->version) {
3361 		case RTL_VER_03:
3362 		case RTL_VER_04:
3363 			break;
3364 		case RTL_VER_05:
3365 		case RTL_VER_06:
3366 		default:
3367 			r8153_u2p3en(tp, true);
3368 			break;
3369 		}
3370 
3371 		r8153_u1u2en(tp, true);
3372 	}
3373 }
3374 
3375 static void rtl8153b_runtime_enable(struct r8152 *tp, bool enable)
3376 {
3377 	if (enable) {
3378 		r8153_queue_wake(tp, true);
3379 		r8153b_u1u2en(tp, false);
3380 		r8153_u2p3en(tp, false);
3381 		rtl_runtime_suspend_enable(tp, true);
3382 		r8153b_ups_en(tp, true);
3383 	} else {
3384 		r8153b_ups_en(tp, false);
3385 		r8153_queue_wake(tp, false);
3386 		rtl_runtime_suspend_enable(tp, false);
3387 		if (tp->udev->speed != USB_SPEED_HIGH)
3388 			r8153b_u1u2en(tp, true);
3389 	}
3390 }
3391 
3392 static void r8153_teredo_off(struct r8152 *tp)
3393 {
3394 	u32 ocp_data;
3395 
3396 	switch (tp->version) {
3397 	case RTL_VER_01:
3398 	case RTL_VER_02:
3399 	case RTL_VER_03:
3400 	case RTL_VER_04:
3401 	case RTL_VER_05:
3402 	case RTL_VER_06:
3403 	case RTL_VER_07:
3404 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
3405 		ocp_data &= ~(TEREDO_SEL | TEREDO_RS_EVENT_MASK |
3406 			      OOB_TEREDO_EN);
3407 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
3408 		break;
3409 
3410 	case RTL_VER_08:
3411 	case RTL_VER_09:
3412 		/* The bit 0 ~ 7 are relative with teredo settings. They are
3413 		 * W1C (write 1 to clear), so set all 1 to disable it.
3414 		 */
3415 		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, 0xff);
3416 		break;
3417 
3418 	default:
3419 		break;
3420 	}
3421 
3422 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_WDT6_CTRL, WDT6_SET_MODE);
3423 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_REALWOW_TIMER, 0);
3424 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TEREDO_TIMER, 0);
3425 }
3426 
3427 static void rtl_reset_bmu(struct r8152 *tp)
3428 {
3429 	u32 ocp_data;
3430 
3431 	ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_BMU_RESET);
3432 	ocp_data &= ~(BMU_RESET_EP_IN | BMU_RESET_EP_OUT);
3433 	ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data);
3434 	ocp_data |= BMU_RESET_EP_IN | BMU_RESET_EP_OUT;
3435 	ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data);
3436 }
3437 
3438 /* Clear the bp to stop the firmware before loading a new one */
3439 static void rtl_clear_bp(struct r8152 *tp, u16 type)
3440 {
3441 	switch (tp->version) {
3442 	case RTL_VER_01:
3443 	case RTL_VER_02:
3444 	case RTL_VER_07:
3445 		break;
3446 	case RTL_VER_03:
3447 	case RTL_VER_04:
3448 	case RTL_VER_05:
3449 	case RTL_VER_06:
3450 		ocp_write_byte(tp, type, PLA_BP_EN, 0);
3451 		break;
3452 	case RTL_VER_08:
3453 	case RTL_VER_09:
3454 	default:
3455 		if (type == MCU_TYPE_USB) {
3456 			ocp_write_byte(tp, MCU_TYPE_USB, USB_BP2_EN, 0);
3457 
3458 			ocp_write_word(tp, MCU_TYPE_USB, USB_BP_8, 0);
3459 			ocp_write_word(tp, MCU_TYPE_USB, USB_BP_9, 0);
3460 			ocp_write_word(tp, MCU_TYPE_USB, USB_BP_10, 0);
3461 			ocp_write_word(tp, MCU_TYPE_USB, USB_BP_11, 0);
3462 			ocp_write_word(tp, MCU_TYPE_USB, USB_BP_12, 0);
3463 			ocp_write_word(tp, MCU_TYPE_USB, USB_BP_13, 0);
3464 			ocp_write_word(tp, MCU_TYPE_USB, USB_BP_14, 0);
3465 			ocp_write_word(tp, MCU_TYPE_USB, USB_BP_15, 0);
3466 		} else {
3467 			ocp_write_byte(tp, MCU_TYPE_PLA, PLA_BP_EN, 0);
3468 		}
3469 		break;
3470 	}
3471 
3472 	ocp_write_word(tp, type, PLA_BP_0, 0);
3473 	ocp_write_word(tp, type, PLA_BP_1, 0);
3474 	ocp_write_word(tp, type, PLA_BP_2, 0);
3475 	ocp_write_word(tp, type, PLA_BP_3, 0);
3476 	ocp_write_word(tp, type, PLA_BP_4, 0);
3477 	ocp_write_word(tp, type, PLA_BP_5, 0);
3478 	ocp_write_word(tp, type, PLA_BP_6, 0);
3479 	ocp_write_word(tp, type, PLA_BP_7, 0);
3480 
3481 	/* wait 3 ms to make sure the firmware is stopped */
3482 	usleep_range(3000, 6000);
3483 	ocp_write_word(tp, type, PLA_BP_BA, 0);
3484 }
3485 
3486 static int r8153_patch_request(struct r8152 *tp, bool request)
3487 {
3488 	u16 data;
3489 	int i;
3490 
3491 	data = ocp_reg_read(tp, OCP_PHY_PATCH_CMD);
3492 	if (request)
3493 		data |= PATCH_REQUEST;
3494 	else
3495 		data &= ~PATCH_REQUEST;
3496 	ocp_reg_write(tp, OCP_PHY_PATCH_CMD, data);
3497 
3498 	for (i = 0; request && i < 5000; i++) {
3499 		usleep_range(1000, 2000);
3500 		if (ocp_reg_read(tp, OCP_PHY_PATCH_STAT) & PATCH_READY)
3501 			break;
3502 	}
3503 
3504 	if (request && !(ocp_reg_read(tp, OCP_PHY_PATCH_STAT) & PATCH_READY)) {
3505 		netif_err(tp, drv, tp->netdev, "patch request fail\n");
3506 		r8153_patch_request(tp, false);
3507 		return -ETIME;
3508 	} else {
3509 		return 0;
3510 	}
3511 }
3512 
3513 static int r8153_pre_ram_code(struct r8152 *tp, u16 key_addr, u16 patch_key)
3514 {
3515 	if (r8153_patch_request(tp, true)) {
3516 		dev_err(&tp->intf->dev, "patch request fail\n");
3517 		return -ETIME;
3518 	}
3519 
3520 	sram_write(tp, key_addr, patch_key);
3521 	sram_write(tp, SRAM_PHY_LOCK, PHY_PATCH_LOCK);
3522 
3523 	return 0;
3524 }
3525 
3526 static int r8153_post_ram_code(struct r8152 *tp, u16 key_addr)
3527 {
3528 	u16 data;
3529 
3530 	sram_write(tp, 0x0000, 0x0000);
3531 
3532 	data = ocp_reg_read(tp, OCP_PHY_LOCK);
3533 	data &= ~PATCH_LOCK;
3534 	ocp_reg_write(tp, OCP_PHY_LOCK, data);
3535 
3536 	sram_write(tp, key_addr, 0x0000);
3537 
3538 	r8153_patch_request(tp, false);
3539 
3540 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, tp->ocp_base);
3541 
3542 	return 0;
3543 }
3544 
3545 static bool rtl8152_is_fw_phy_nc_ok(struct r8152 *tp, struct fw_phy_nc *phy)
3546 {
3547 	u32 length;
3548 	u16 fw_offset, fw_reg, ba_reg, patch_en_addr, mode_reg, bp_start;
3549 	bool rc = false;
3550 
3551 	switch (tp->version) {
3552 	case RTL_VER_04:
3553 	case RTL_VER_05:
3554 	case RTL_VER_06:
3555 		fw_reg = 0xa014;
3556 		ba_reg = 0xa012;
3557 		patch_en_addr = 0xa01a;
3558 		mode_reg = 0xb820;
3559 		bp_start = 0xa000;
3560 		break;
3561 	default:
3562 		goto out;
3563 	}
3564 
3565 	fw_offset = __le16_to_cpu(phy->fw_offset);
3566 	if (fw_offset < sizeof(*phy)) {
3567 		dev_err(&tp->intf->dev, "fw_offset too small\n");
3568 		goto out;
3569 	}
3570 
3571 	length = __le32_to_cpu(phy->blk_hdr.length);
3572 	if (length < fw_offset) {
3573 		dev_err(&tp->intf->dev, "invalid fw_offset\n");
3574 		goto out;
3575 	}
3576 
3577 	length -= __le16_to_cpu(phy->fw_offset);
3578 	if (!length || (length & 1)) {
3579 		dev_err(&tp->intf->dev, "invalid block length\n");
3580 		goto out;
3581 	}
3582 
3583 	if (__le16_to_cpu(phy->fw_reg) != fw_reg) {
3584 		dev_err(&tp->intf->dev, "invalid register to load firmware\n");
3585 		goto out;
3586 	}
3587 
3588 	if (__le16_to_cpu(phy->ba_reg) != ba_reg) {
3589 		dev_err(&tp->intf->dev, "invalid base address register\n");
3590 		goto out;
3591 	}
3592 
3593 	if (__le16_to_cpu(phy->patch_en_addr) != patch_en_addr) {
3594 		dev_err(&tp->intf->dev,
3595 			"invalid patch mode enabled register\n");
3596 		goto out;
3597 	}
3598 
3599 	if (__le16_to_cpu(phy->mode_reg) != mode_reg) {
3600 		dev_err(&tp->intf->dev,
3601 			"invalid register to switch the mode\n");
3602 		goto out;
3603 	}
3604 
3605 	if (__le16_to_cpu(phy->bp_start) != bp_start) {
3606 		dev_err(&tp->intf->dev,
3607 			"invalid start register of break point\n");
3608 		goto out;
3609 	}
3610 
3611 	if (__le16_to_cpu(phy->bp_num) > 4) {
3612 		dev_err(&tp->intf->dev, "invalid break point number\n");
3613 		goto out;
3614 	}
3615 
3616 	rc = true;
3617 out:
3618 	return rc;
3619 }
3620 
3621 static bool rtl8152_is_fw_mac_ok(struct r8152 *tp, struct fw_mac *mac)
3622 {
3623 	u16 fw_reg, bp_ba_addr, bp_en_addr, bp_start, fw_offset;
3624 	bool rc = false;
3625 	u32 length, type;
3626 	int i, max_bp;
3627 
3628 	type = __le32_to_cpu(mac->blk_hdr.type);
3629 	if (type == RTL_FW_PLA) {
3630 		switch (tp->version) {
3631 		case RTL_VER_01:
3632 		case RTL_VER_02:
3633 		case RTL_VER_07:
3634 			fw_reg = 0xf800;
3635 			bp_ba_addr = PLA_BP_BA;
3636 			bp_en_addr = 0;
3637 			bp_start = PLA_BP_0;
3638 			max_bp = 8;
3639 			break;
3640 		case RTL_VER_03:
3641 		case RTL_VER_04:
3642 		case RTL_VER_05:
3643 		case RTL_VER_06:
3644 		case RTL_VER_08:
3645 		case RTL_VER_09:
3646 			fw_reg = 0xf800;
3647 			bp_ba_addr = PLA_BP_BA;
3648 			bp_en_addr = PLA_BP_EN;
3649 			bp_start = PLA_BP_0;
3650 			max_bp = 8;
3651 			break;
3652 		default:
3653 			goto out;
3654 		}
3655 	} else if (type == RTL_FW_USB) {
3656 		switch (tp->version) {
3657 		case RTL_VER_03:
3658 		case RTL_VER_04:
3659 		case RTL_VER_05:
3660 		case RTL_VER_06:
3661 			fw_reg = 0xf800;
3662 			bp_ba_addr = USB_BP_BA;
3663 			bp_en_addr = USB_BP_EN;
3664 			bp_start = USB_BP_0;
3665 			max_bp = 8;
3666 			break;
3667 		case RTL_VER_08:
3668 		case RTL_VER_09:
3669 			fw_reg = 0xe600;
3670 			bp_ba_addr = USB_BP_BA;
3671 			bp_en_addr = USB_BP2_EN;
3672 			bp_start = USB_BP_0;
3673 			max_bp = 16;
3674 			break;
3675 		case RTL_VER_01:
3676 		case RTL_VER_02:
3677 		case RTL_VER_07:
3678 		default:
3679 			goto out;
3680 		}
3681 	} else {
3682 		goto out;
3683 	}
3684 
3685 	fw_offset = __le16_to_cpu(mac->fw_offset);
3686 	if (fw_offset < sizeof(*mac)) {
3687 		dev_err(&tp->intf->dev, "fw_offset too small\n");
3688 		goto out;
3689 	}
3690 
3691 	length = __le32_to_cpu(mac->blk_hdr.length);
3692 	if (length < fw_offset) {
3693 		dev_err(&tp->intf->dev, "invalid fw_offset\n");
3694 		goto out;
3695 	}
3696 
3697 	length -= fw_offset;
3698 	if (length < 4 || (length & 3)) {
3699 		dev_err(&tp->intf->dev, "invalid block length\n");
3700 		goto out;
3701 	}
3702 
3703 	if (__le16_to_cpu(mac->fw_reg) != fw_reg) {
3704 		dev_err(&tp->intf->dev, "invalid register to load firmware\n");
3705 		goto out;
3706 	}
3707 
3708 	if (__le16_to_cpu(mac->bp_ba_addr) != bp_ba_addr) {
3709 		dev_err(&tp->intf->dev, "invalid base address register\n");
3710 		goto out;
3711 	}
3712 
3713 	if (__le16_to_cpu(mac->bp_en_addr) != bp_en_addr) {
3714 		dev_err(&tp->intf->dev, "invalid enabled mask register\n");
3715 		goto out;
3716 	}
3717 
3718 	if (__le16_to_cpu(mac->bp_start) != bp_start) {
3719 		dev_err(&tp->intf->dev,
3720 			"invalid start register of break point\n");
3721 		goto out;
3722 	}
3723 
3724 	if (__le16_to_cpu(mac->bp_num) > max_bp) {
3725 		dev_err(&tp->intf->dev, "invalid break point number\n");
3726 		goto out;
3727 	}
3728 
3729 	for (i = __le16_to_cpu(mac->bp_num); i < max_bp; i++) {
3730 		if (mac->bp[i]) {
3731 			dev_err(&tp->intf->dev, "unused bp%u is not zero\n", i);
3732 			goto out;
3733 		}
3734 	}
3735 
3736 	rc = true;
3737 out:
3738 	return rc;
3739 }
3740 
3741 /* Verify the checksum for the firmware file. It is calculated from the version
3742  * field to the end of the file. Compare the result with the checksum field to
3743  * make sure the file is correct.
3744  */
3745 static long rtl8152_fw_verify_checksum(struct r8152 *tp,
3746 				       struct fw_header *fw_hdr, size_t size)
3747 {
3748 	unsigned char checksum[sizeof(fw_hdr->checksum)];
3749 	struct crypto_shash *alg;
3750 	struct shash_desc *sdesc;
3751 	size_t len;
3752 	long rc;
3753 
3754 	alg = crypto_alloc_shash("sha256", 0, 0);
3755 	if (IS_ERR(alg)) {
3756 		rc = PTR_ERR(alg);
3757 		goto out;
3758 	}
3759 
3760 	if (crypto_shash_digestsize(alg) != sizeof(fw_hdr->checksum)) {
3761 		rc = -EFAULT;
3762 		dev_err(&tp->intf->dev, "digestsize incorrect (%u)\n",
3763 			crypto_shash_digestsize(alg));
3764 		goto free_shash;
3765 	}
3766 
3767 	len = sizeof(*sdesc) + crypto_shash_descsize(alg);
3768 	sdesc = kmalloc(len, GFP_KERNEL);
3769 	if (!sdesc) {
3770 		rc = -ENOMEM;
3771 		goto free_shash;
3772 	}
3773 	sdesc->tfm = alg;
3774 
3775 	len = size - sizeof(fw_hdr->checksum);
3776 	rc = crypto_shash_digest(sdesc, fw_hdr->version, len, checksum);
3777 	kfree(sdesc);
3778 	if (rc)
3779 		goto free_shash;
3780 
3781 	if (memcmp(fw_hdr->checksum, checksum, sizeof(fw_hdr->checksum))) {
3782 		dev_err(&tp->intf->dev, "checksum fail\n");
3783 		rc = -EFAULT;
3784 	}
3785 
3786 free_shash:
3787 	crypto_free_shash(alg);
3788 out:
3789 	return rc;
3790 }
3791 
3792 static long rtl8152_check_firmware(struct r8152 *tp, struct rtl_fw *rtl_fw)
3793 {
3794 	const struct firmware *fw = rtl_fw->fw;
3795 	struct fw_header *fw_hdr = (struct fw_header *)fw->data;
3796 	struct fw_mac *pla = NULL, *usb = NULL;
3797 	struct fw_phy_patch_key *start = NULL;
3798 	struct fw_phy_nc *phy_nc = NULL;
3799 	struct fw_block *stop = NULL;
3800 	long ret = -EFAULT;
3801 	int i;
3802 
3803 	if (fw->size < sizeof(*fw_hdr)) {
3804 		dev_err(&tp->intf->dev, "file too small\n");
3805 		goto fail;
3806 	}
3807 
3808 	ret = rtl8152_fw_verify_checksum(tp, fw_hdr, fw->size);
3809 	if (ret)
3810 		goto fail;
3811 
3812 	ret = -EFAULT;
3813 
3814 	for (i = sizeof(*fw_hdr); i < fw->size;) {
3815 		struct fw_block *block = (struct fw_block *)&fw->data[i];
3816 		u32 type;
3817 
3818 		if ((i + sizeof(*block)) > fw->size)
3819 			goto fail;
3820 
3821 		type = __le32_to_cpu(block->type);
3822 		switch (type) {
3823 		case RTL_FW_END:
3824 			if (__le32_to_cpu(block->length) != sizeof(*block))
3825 				goto fail;
3826 			goto fw_end;
3827 		case RTL_FW_PLA:
3828 			if (pla) {
3829 				dev_err(&tp->intf->dev,
3830 					"multiple PLA firmware encountered");
3831 				goto fail;
3832 			}
3833 
3834 			pla = (struct fw_mac *)block;
3835 			if (!rtl8152_is_fw_mac_ok(tp, pla)) {
3836 				dev_err(&tp->intf->dev,
3837 					"check PLA firmware failed\n");
3838 				goto fail;
3839 			}
3840 			break;
3841 		case RTL_FW_USB:
3842 			if (usb) {
3843 				dev_err(&tp->intf->dev,
3844 					"multiple USB firmware encountered");
3845 				goto fail;
3846 			}
3847 
3848 			usb = (struct fw_mac *)block;
3849 			if (!rtl8152_is_fw_mac_ok(tp, usb)) {
3850 				dev_err(&tp->intf->dev,
3851 					"check USB firmware failed\n");
3852 				goto fail;
3853 			}
3854 			break;
3855 		case RTL_FW_PHY_START:
3856 			if (start || phy_nc || stop) {
3857 				dev_err(&tp->intf->dev,
3858 					"check PHY_START fail\n");
3859 				goto fail;
3860 			}
3861 
3862 			if (__le32_to_cpu(block->length) != sizeof(*start)) {
3863 				dev_err(&tp->intf->dev,
3864 					"Invalid length for PHY_START\n");
3865 				goto fail;
3866 			}
3867 
3868 			start = (struct fw_phy_patch_key *)block;
3869 			break;
3870 		case RTL_FW_PHY_STOP:
3871 			if (stop || !start) {
3872 				dev_err(&tp->intf->dev,
3873 					"Check PHY_STOP fail\n");
3874 				goto fail;
3875 			}
3876 
3877 			if (__le32_to_cpu(block->length) != sizeof(*block)) {
3878 				dev_err(&tp->intf->dev,
3879 					"Invalid length for PHY_STOP\n");
3880 				goto fail;
3881 			}
3882 
3883 			stop = block;
3884 			break;
3885 		case RTL_FW_PHY_NC:
3886 			if (!start || stop) {
3887 				dev_err(&tp->intf->dev,
3888 					"check PHY_NC fail\n");
3889 				goto fail;
3890 			}
3891 
3892 			if (phy_nc) {
3893 				dev_err(&tp->intf->dev,
3894 					"multiple PHY NC encountered\n");
3895 				goto fail;
3896 			}
3897 
3898 			phy_nc = (struct fw_phy_nc *)block;
3899 			if (!rtl8152_is_fw_phy_nc_ok(tp, phy_nc)) {
3900 				dev_err(&tp->intf->dev,
3901 					"check PHY NC firmware failed\n");
3902 				goto fail;
3903 			}
3904 
3905 			break;
3906 		default:
3907 			dev_warn(&tp->intf->dev, "Unknown type %u is found\n",
3908 				 type);
3909 			break;
3910 		}
3911 
3912 		/* next block */
3913 		i += ALIGN(__le32_to_cpu(block->length), 8);
3914 	}
3915 
3916 fw_end:
3917 	if ((phy_nc || start) && !stop) {
3918 		dev_err(&tp->intf->dev, "without PHY_STOP\n");
3919 		goto fail;
3920 	}
3921 
3922 	return 0;
3923 fail:
3924 	return ret;
3925 }
3926 
3927 static void rtl8152_fw_phy_nc_apply(struct r8152 *tp, struct fw_phy_nc *phy)
3928 {
3929 	u16 mode_reg, bp_index;
3930 	u32 length, i, num;
3931 	__le16 *data;
3932 
3933 	mode_reg = __le16_to_cpu(phy->mode_reg);
3934 	sram_write(tp, mode_reg, __le16_to_cpu(phy->mode_pre));
3935 	sram_write(tp, __le16_to_cpu(phy->ba_reg),
3936 		   __le16_to_cpu(phy->ba_data));
3937 
3938 	length = __le32_to_cpu(phy->blk_hdr.length);
3939 	length -= __le16_to_cpu(phy->fw_offset);
3940 	num = length / 2;
3941 	data = (__le16 *)((u8 *)phy + __le16_to_cpu(phy->fw_offset));
3942 
3943 	ocp_reg_write(tp, OCP_SRAM_ADDR, __le16_to_cpu(phy->fw_reg));
3944 	for (i = 0; i < num; i++)
3945 		ocp_reg_write(tp, OCP_SRAM_DATA, __le16_to_cpu(data[i]));
3946 
3947 	sram_write(tp, __le16_to_cpu(phy->patch_en_addr),
3948 		   __le16_to_cpu(phy->patch_en_value));
3949 
3950 	bp_index = __le16_to_cpu(phy->bp_start);
3951 	num = __le16_to_cpu(phy->bp_num);
3952 	for (i = 0; i < num; i++) {
3953 		sram_write(tp, bp_index, __le16_to_cpu(phy->bp[i]));
3954 		bp_index += 2;
3955 	}
3956 
3957 	sram_write(tp, mode_reg, __le16_to_cpu(phy->mode_post));
3958 
3959 	dev_dbg(&tp->intf->dev, "successfully applied %s\n", phy->info);
3960 }
3961 
3962 static void rtl8152_fw_mac_apply(struct r8152 *tp, struct fw_mac *mac)
3963 {
3964 	u16 bp_en_addr, bp_index, type, bp_num, fw_ver_reg;
3965 	u32 length;
3966 	u8 *data;
3967 	int i;
3968 
3969 	switch (__le32_to_cpu(mac->blk_hdr.type)) {
3970 	case RTL_FW_PLA:
3971 		type = MCU_TYPE_PLA;
3972 		break;
3973 	case RTL_FW_USB:
3974 		type = MCU_TYPE_USB;
3975 		break;
3976 	default:
3977 		return;
3978 	}
3979 
3980 	rtl_clear_bp(tp, type);
3981 
3982 	/* Enable backup/restore of MACDBG. This is required after clearing PLA
3983 	 * break points and before applying the PLA firmware.
3984 	 */
3985 	if (tp->version == RTL_VER_04 && type == MCU_TYPE_PLA &&
3986 	    !(ocp_read_word(tp, MCU_TYPE_PLA, PLA_MACDBG_POST) & DEBUG_OE)) {
3987 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MACDBG_PRE, DEBUG_LTSSM);
3988 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_MACDBG_POST, DEBUG_LTSSM);
3989 	}
3990 
3991 	length = __le32_to_cpu(mac->blk_hdr.length);
3992 	length -= __le16_to_cpu(mac->fw_offset);
3993 
3994 	data = (u8 *)mac;
3995 	data += __le16_to_cpu(mac->fw_offset);
3996 
3997 	generic_ocp_write(tp, __le16_to_cpu(mac->fw_reg), 0xff, length, data,
3998 			  type);
3999 
4000 	ocp_write_word(tp, type, __le16_to_cpu(mac->bp_ba_addr),
4001 		       __le16_to_cpu(mac->bp_ba_value));
4002 
4003 	bp_index = __le16_to_cpu(mac->bp_start);
4004 	bp_num = __le16_to_cpu(mac->bp_num);
4005 	for (i = 0; i < bp_num; i++) {
4006 		ocp_write_word(tp, type, bp_index, __le16_to_cpu(mac->bp[i]));
4007 		bp_index += 2;
4008 	}
4009 
4010 	bp_en_addr = __le16_to_cpu(mac->bp_en_addr);
4011 	if (bp_en_addr)
4012 		ocp_write_word(tp, type, bp_en_addr,
4013 			       __le16_to_cpu(mac->bp_en_value));
4014 
4015 	fw_ver_reg = __le16_to_cpu(mac->fw_ver_reg);
4016 	if (fw_ver_reg)
4017 		ocp_write_byte(tp, MCU_TYPE_USB, fw_ver_reg,
4018 			       mac->fw_ver_data);
4019 
4020 	dev_dbg(&tp->intf->dev, "successfully applied %s\n", mac->info);
4021 }
4022 
4023 static void rtl8152_apply_firmware(struct r8152 *tp)
4024 {
4025 	struct rtl_fw *rtl_fw = &tp->rtl_fw;
4026 	const struct firmware *fw;
4027 	struct fw_header *fw_hdr;
4028 	struct fw_phy_patch_key *key;
4029 	u16 key_addr = 0;
4030 	int i;
4031 
4032 	if (IS_ERR_OR_NULL(rtl_fw->fw))
4033 		return;
4034 
4035 	fw = rtl_fw->fw;
4036 	fw_hdr = (struct fw_header *)fw->data;
4037 
4038 	if (rtl_fw->pre_fw)
4039 		rtl_fw->pre_fw(tp);
4040 
4041 	for (i = offsetof(struct fw_header, blocks); i < fw->size;) {
4042 		struct fw_block *block = (struct fw_block *)&fw->data[i];
4043 
4044 		switch (__le32_to_cpu(block->type)) {
4045 		case RTL_FW_END:
4046 			goto post_fw;
4047 		case RTL_FW_PLA:
4048 		case RTL_FW_USB:
4049 			rtl8152_fw_mac_apply(tp, (struct fw_mac *)block);
4050 			break;
4051 		case RTL_FW_PHY_START:
4052 			key = (struct fw_phy_patch_key *)block;
4053 			key_addr = __le16_to_cpu(key->key_reg);
4054 			r8153_pre_ram_code(tp, key_addr,
4055 					   __le16_to_cpu(key->key_data));
4056 			break;
4057 		case RTL_FW_PHY_STOP:
4058 			WARN_ON(!key_addr);
4059 			r8153_post_ram_code(tp, key_addr);
4060 			break;
4061 		case RTL_FW_PHY_NC:
4062 			rtl8152_fw_phy_nc_apply(tp, (struct fw_phy_nc *)block);
4063 			break;
4064 		default:
4065 			break;
4066 		}
4067 
4068 		i += ALIGN(__le32_to_cpu(block->length), 8);
4069 	}
4070 
4071 post_fw:
4072 	if (rtl_fw->post_fw)
4073 		rtl_fw->post_fw(tp);
4074 
4075 	strscpy(rtl_fw->version, fw_hdr->version, RTL_VER_SIZE);
4076 	dev_info(&tp->intf->dev, "load %s successfully\n", rtl_fw->version);
4077 }
4078 
4079 static void rtl8152_release_firmware(struct r8152 *tp)
4080 {
4081 	struct rtl_fw *rtl_fw = &tp->rtl_fw;
4082 
4083 	if (!IS_ERR_OR_NULL(rtl_fw->fw)) {
4084 		release_firmware(rtl_fw->fw);
4085 		rtl_fw->fw = NULL;
4086 	}
4087 }
4088 
4089 static int rtl8152_request_firmware(struct r8152 *tp)
4090 {
4091 	struct rtl_fw *rtl_fw = &tp->rtl_fw;
4092 	long rc;
4093 
4094 	if (rtl_fw->fw || !rtl_fw->fw_name) {
4095 		dev_info(&tp->intf->dev, "skip request firmware\n");
4096 		rc = 0;
4097 		goto result;
4098 	}
4099 
4100 	rc = request_firmware(&rtl_fw->fw, rtl_fw->fw_name, &tp->intf->dev);
4101 	if (rc < 0)
4102 		goto result;
4103 
4104 	rc = rtl8152_check_firmware(tp, rtl_fw);
4105 	if (rc < 0)
4106 		release_firmware(rtl_fw->fw);
4107 
4108 result:
4109 	if (rc) {
4110 		rtl_fw->fw = ERR_PTR(rc);
4111 
4112 		dev_warn(&tp->intf->dev,
4113 			 "unable to load firmware patch %s (%ld)\n",
4114 			 rtl_fw->fw_name, rc);
4115 	}
4116 
4117 	return rc;
4118 }
4119 
4120 static void r8152_aldps_en(struct r8152 *tp, bool enable)
4121 {
4122 	if (enable) {
4123 		ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPWRSAVE | ENPDNPS |
4124 						    LINKENA | DIS_SDSAVE);
4125 	} else {
4126 		ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPDNPS | LINKENA |
4127 						    DIS_SDSAVE);
4128 		msleep(20);
4129 	}
4130 }
4131 
4132 static inline void r8152_mmd_indirect(struct r8152 *tp, u16 dev, u16 reg)
4133 {
4134 	ocp_reg_write(tp, OCP_EEE_AR, FUN_ADDR | dev);
4135 	ocp_reg_write(tp, OCP_EEE_DATA, reg);
4136 	ocp_reg_write(tp, OCP_EEE_AR, FUN_DATA | dev);
4137 }
4138 
4139 static u16 r8152_mmd_read(struct r8152 *tp, u16 dev, u16 reg)
4140 {
4141 	u16 data;
4142 
4143 	r8152_mmd_indirect(tp, dev, reg);
4144 	data = ocp_reg_read(tp, OCP_EEE_DATA);
4145 	ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
4146 
4147 	return data;
4148 }
4149 
4150 static void r8152_mmd_write(struct r8152 *tp, u16 dev, u16 reg, u16 data)
4151 {
4152 	r8152_mmd_indirect(tp, dev, reg);
4153 	ocp_reg_write(tp, OCP_EEE_DATA, data);
4154 	ocp_reg_write(tp, OCP_EEE_AR, 0x0000);
4155 }
4156 
4157 static void r8152_eee_en(struct r8152 *tp, bool enable)
4158 {
4159 	u16 config1, config2, config3;
4160 	u32 ocp_data;
4161 
4162 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
4163 	config1 = ocp_reg_read(tp, OCP_EEE_CONFIG1) & ~sd_rise_time_mask;
4164 	config2 = ocp_reg_read(tp, OCP_EEE_CONFIG2);
4165 	config3 = ocp_reg_read(tp, OCP_EEE_CONFIG3) & ~fast_snr_mask;
4166 
4167 	if (enable) {
4168 		ocp_data |= EEE_RX_EN | EEE_TX_EN;
4169 		config1 |= EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN | RX_QUIET_EN;
4170 		config1 |= sd_rise_time(1);
4171 		config2 |= RG_DACQUIET_EN | RG_LDVQUIET_EN;
4172 		config3 |= fast_snr(42);
4173 	} else {
4174 		ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
4175 		config1 &= ~(EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN |
4176 			     RX_QUIET_EN);
4177 		config1 |= sd_rise_time(7);
4178 		config2 &= ~(RG_DACQUIET_EN | RG_LDVQUIET_EN);
4179 		config3 |= fast_snr(511);
4180 	}
4181 
4182 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
4183 	ocp_reg_write(tp, OCP_EEE_CONFIG1, config1);
4184 	ocp_reg_write(tp, OCP_EEE_CONFIG2, config2);
4185 	ocp_reg_write(tp, OCP_EEE_CONFIG3, config3);
4186 }
4187 
4188 static void r8153_eee_en(struct r8152 *tp, bool enable)
4189 {
4190 	u32 ocp_data;
4191 	u16 config;
4192 
4193 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR);
4194 	config = ocp_reg_read(tp, OCP_EEE_CFG);
4195 
4196 	if (enable) {
4197 		ocp_data |= EEE_RX_EN | EEE_TX_EN;
4198 		config |= EEE10_EN;
4199 	} else {
4200 		ocp_data &= ~(EEE_RX_EN | EEE_TX_EN);
4201 		config &= ~EEE10_EN;
4202 	}
4203 
4204 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data);
4205 	ocp_reg_write(tp, OCP_EEE_CFG, config);
4206 
4207 	tp->ups_info.eee = enable;
4208 }
4209 
4210 static void rtl_eee_enable(struct r8152 *tp, bool enable)
4211 {
4212 	switch (tp->version) {
4213 	case RTL_VER_01:
4214 	case RTL_VER_02:
4215 	case RTL_VER_07:
4216 		if (enable) {
4217 			r8152_eee_en(tp, true);
4218 			r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
4219 					tp->eee_adv);
4220 		} else {
4221 			r8152_eee_en(tp, false);
4222 			r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, 0);
4223 		}
4224 		break;
4225 	case RTL_VER_03:
4226 	case RTL_VER_04:
4227 	case RTL_VER_05:
4228 	case RTL_VER_06:
4229 	case RTL_VER_08:
4230 	case RTL_VER_09:
4231 		if (enable) {
4232 			r8153_eee_en(tp, true);
4233 			ocp_reg_write(tp, OCP_EEE_ADV, tp->eee_adv);
4234 		} else {
4235 			r8153_eee_en(tp, false);
4236 			ocp_reg_write(tp, OCP_EEE_ADV, 0);
4237 		}
4238 		break;
4239 	default:
4240 		break;
4241 	}
4242 }
4243 
4244 static void r8152b_enable_fc(struct r8152 *tp)
4245 {
4246 	u16 anar;
4247 
4248 	anar = r8152_mdio_read(tp, MII_ADVERTISE);
4249 	anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4250 	r8152_mdio_write(tp, MII_ADVERTISE, anar);
4251 
4252 	tp->ups_info.flow_control = true;
4253 }
4254 
4255 static void rtl8152_disable(struct r8152 *tp)
4256 {
4257 	r8152_aldps_en(tp, false);
4258 	rtl_disable(tp);
4259 	r8152_aldps_en(tp, true);
4260 }
4261 
4262 static void r8152b_hw_phy_cfg(struct r8152 *tp)
4263 {
4264 	rtl8152_apply_firmware(tp);
4265 	rtl_eee_enable(tp, tp->eee_en);
4266 	r8152_aldps_en(tp, true);
4267 	r8152b_enable_fc(tp);
4268 
4269 	set_bit(PHY_RESET, &tp->flags);
4270 }
4271 
4272 static void wait_oob_link_list_ready(struct r8152 *tp)
4273 {
4274 	u32 ocp_data;
4275 	int i;
4276 
4277 	for (i = 0; i < 1000; i++) {
4278 		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4279 		if (ocp_data & LINK_LIST_READY)
4280 			break;
4281 		usleep_range(1000, 2000);
4282 	}
4283 }
4284 
4285 static void r8152b_exit_oob(struct r8152 *tp)
4286 {
4287 	u32 ocp_data;
4288 
4289 	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
4290 	ocp_data &= ~RCR_ACPT_ALL;
4291 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
4292 
4293 	rxdy_gated_en(tp, true);
4294 	r8153_teredo_off(tp);
4295 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
4296 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, 0x00);
4297 
4298 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4299 	ocp_data &= ~NOW_IS_OOB;
4300 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4301 
4302 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4303 	ocp_data &= ~MCU_BORW_EN;
4304 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4305 
4306 	wait_oob_link_list_ready(tp);
4307 
4308 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4309 	ocp_data |= RE_INIT_LL;
4310 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4311 
4312 	wait_oob_link_list_ready(tp);
4313 
4314 	rtl8152_nic_reset(tp);
4315 
4316 	/* rx share fifo credit full threshold */
4317 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
4318 
4319 	if (tp->udev->speed == USB_SPEED_FULL ||
4320 	    tp->udev->speed == USB_SPEED_LOW) {
4321 		/* rx share fifo credit near full threshold */
4322 		ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
4323 				RXFIFO_THR2_FULL);
4324 		ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
4325 				RXFIFO_THR3_FULL);
4326 	} else {
4327 		/* rx share fifo credit near full threshold */
4328 		ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1,
4329 				RXFIFO_THR2_HIGH);
4330 		ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2,
4331 				RXFIFO_THR3_HIGH);
4332 	}
4333 
4334 	/* TX share fifo free credit full threshold */
4335 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL);
4336 
4337 	ocp_write_byte(tp, MCU_TYPE_USB, USB_TX_AGG, TX_AGG_MAX_THRESHOLD);
4338 	ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_HIGH);
4339 	ocp_write_dword(tp, MCU_TYPE_USB, USB_TX_DMA,
4340 			TEST_MODE_DISABLE | TX_SIZE_ADJUST1);
4341 
4342 	rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
4343 
4344 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
4345 
4346 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
4347 	ocp_data |= TCR0_AUTO_FIFO;
4348 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
4349 }
4350 
4351 static void r8152b_enter_oob(struct r8152 *tp)
4352 {
4353 	u32 ocp_data;
4354 
4355 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4356 	ocp_data &= ~NOW_IS_OOB;
4357 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4358 
4359 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_OOB);
4360 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_OOB);
4361 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_OOB);
4362 
4363 	rtl_disable(tp);
4364 
4365 	wait_oob_link_list_ready(tp);
4366 
4367 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4368 	ocp_data |= RE_INIT_LL;
4369 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4370 
4371 	wait_oob_link_list_ready(tp);
4372 
4373 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS);
4374 
4375 	rtl_rx_vlan_en(tp, true);
4376 
4377 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BDC_CR);
4378 	ocp_data |= ALDPS_PROXY_MODE;
4379 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_BDC_CR, ocp_data);
4380 
4381 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4382 	ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
4383 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4384 
4385 	rxdy_gated_en(tp, false);
4386 
4387 	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
4388 	ocp_data |= RCR_APM | RCR_AM | RCR_AB;
4389 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
4390 }
4391 
4392 static int r8153_pre_firmware_1(struct r8152 *tp)
4393 {
4394 	int i;
4395 
4396 	/* Wait till the WTD timer is ready. It would take at most 104 ms. */
4397 	for (i = 0; i < 104; i++) {
4398 		u32 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_WDT1_CTRL);
4399 
4400 		if (!(ocp_data & WTD1_EN))
4401 			break;
4402 		usleep_range(1000, 2000);
4403 	}
4404 
4405 	return 0;
4406 }
4407 
4408 static int r8153_post_firmware_1(struct r8152 *tp)
4409 {
4410 	/* set USB_BP_4 to support USB_SPEED_SUPER only */
4411 	if (ocp_read_byte(tp, MCU_TYPE_USB, USB_CSTMR) & FORCE_SUPER)
4412 		ocp_write_word(tp, MCU_TYPE_USB, USB_BP_4, BP4_SUPER_ONLY);
4413 
4414 	/* reset UPHY timer to 36 ms */
4415 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_UPHY_TIMER, 36000 / 16);
4416 
4417 	return 0;
4418 }
4419 
4420 static int r8153_pre_firmware_2(struct r8152 *tp)
4421 {
4422 	u32 ocp_data;
4423 
4424 	r8153_pre_firmware_1(tp);
4425 
4426 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0);
4427 	ocp_data &= ~FW_FIX_SUSPEND;
4428 	ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0, ocp_data);
4429 
4430 	return 0;
4431 }
4432 
4433 static int r8153_post_firmware_2(struct r8152 *tp)
4434 {
4435 	u32 ocp_data;
4436 
4437 	/* enable bp0 if support USB_SPEED_SUPER only */
4438 	if (ocp_read_byte(tp, MCU_TYPE_USB, USB_CSTMR) & FORCE_SUPER) {
4439 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BP_EN);
4440 		ocp_data |= BIT(0);
4441 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_BP_EN, ocp_data);
4442 	}
4443 
4444 	/* reset UPHY timer to 36 ms */
4445 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_UPHY_TIMER, 36000 / 16);
4446 
4447 	/* enable U3P3 check, set the counter to 4 */
4448 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, U3P3_CHECK_EN | 4);
4449 
4450 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0);
4451 	ocp_data |= FW_FIX_SUSPEND;
4452 	ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0, ocp_data);
4453 
4454 	ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
4455 	ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
4456 	ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
4457 
4458 	return 0;
4459 }
4460 
4461 static int r8153_post_firmware_3(struct r8152 *tp)
4462 {
4463 	u32 ocp_data;
4464 
4465 	ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
4466 	ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
4467 	ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
4468 
4469 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1);
4470 	ocp_data |= FW_IP_RESET_EN;
4471 	ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1, ocp_data);
4472 
4473 	return 0;
4474 }
4475 
4476 static int r8153b_pre_firmware_1(struct r8152 *tp)
4477 {
4478 	/* enable fc timer and set timer to 1 second. */
4479 	ocp_write_word(tp, MCU_TYPE_USB, USB_FC_TIMER,
4480 		       CTRL_TIMER_EN | (1000 / 8));
4481 
4482 	return 0;
4483 }
4484 
4485 static int r8153b_post_firmware_1(struct r8152 *tp)
4486 {
4487 	u32 ocp_data;
4488 
4489 	/* enable bp0 for RTL8153-BND */
4490 	ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_MISC_1);
4491 	if (ocp_data & BND_MASK) {
4492 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BP_EN);
4493 		ocp_data |= BIT(0);
4494 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_BP_EN, ocp_data);
4495 	}
4496 
4497 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_CTRL);
4498 	ocp_data |= FLOW_CTRL_PATCH_OPT;
4499 	ocp_write_word(tp, MCU_TYPE_USB, USB_FW_CTRL, ocp_data);
4500 
4501 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_TASK);
4502 	ocp_data |= FC_PATCH_TASK;
4503 	ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data);
4504 
4505 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1);
4506 	ocp_data |= FW_IP_RESET_EN;
4507 	ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1, ocp_data);
4508 
4509 	return 0;
4510 }
4511 
4512 static void r8153_aldps_en(struct r8152 *tp, bool enable)
4513 {
4514 	u16 data;
4515 
4516 	data = ocp_reg_read(tp, OCP_POWER_CFG);
4517 	if (enable) {
4518 		data |= EN_ALDPS;
4519 		ocp_reg_write(tp, OCP_POWER_CFG, data);
4520 	} else {
4521 		int i;
4522 
4523 		data &= ~EN_ALDPS;
4524 		ocp_reg_write(tp, OCP_POWER_CFG, data);
4525 		for (i = 0; i < 20; i++) {
4526 			usleep_range(1000, 2000);
4527 			if (ocp_read_word(tp, MCU_TYPE_PLA, 0xe000) & 0x0100)
4528 				break;
4529 		}
4530 	}
4531 
4532 	tp->ups_info.aldps = enable;
4533 }
4534 
4535 static void r8153_hw_phy_cfg(struct r8152 *tp)
4536 {
4537 	u32 ocp_data;
4538 	u16 data;
4539 
4540 	/* disable ALDPS before updating the PHY parameters */
4541 	r8153_aldps_en(tp, false);
4542 
4543 	/* disable EEE before updating the PHY parameters */
4544 	rtl_eee_enable(tp, false);
4545 
4546 	rtl8152_apply_firmware(tp);
4547 
4548 	if (tp->version == RTL_VER_03) {
4549 		data = ocp_reg_read(tp, OCP_EEE_CFG);
4550 		data &= ~CTAP_SHORT_EN;
4551 		ocp_reg_write(tp, OCP_EEE_CFG, data);
4552 	}
4553 
4554 	data = ocp_reg_read(tp, OCP_POWER_CFG);
4555 	data |= EEE_CLKDIV_EN;
4556 	ocp_reg_write(tp, OCP_POWER_CFG, data);
4557 
4558 	data = ocp_reg_read(tp, OCP_DOWN_SPEED);
4559 	data |= EN_10M_BGOFF;
4560 	ocp_reg_write(tp, OCP_DOWN_SPEED, data);
4561 	data = ocp_reg_read(tp, OCP_POWER_CFG);
4562 	data |= EN_10M_PLLOFF;
4563 	ocp_reg_write(tp, OCP_POWER_CFG, data);
4564 	sram_write(tp, SRAM_IMPEDANCE, 0x0b13);
4565 
4566 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
4567 	ocp_data |= PFM_PWM_SWITCH;
4568 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
4569 
4570 	/* Enable LPF corner auto tune */
4571 	sram_write(tp, SRAM_LPF_CFG, 0xf70f);
4572 
4573 	/* Adjust 10M Amplitude */
4574 	sram_write(tp, SRAM_10M_AMP1, 0x00af);
4575 	sram_write(tp, SRAM_10M_AMP2, 0x0208);
4576 
4577 	if (tp->eee_en)
4578 		rtl_eee_enable(tp, true);
4579 
4580 	r8153_aldps_en(tp, true);
4581 	r8152b_enable_fc(tp);
4582 
4583 	switch (tp->version) {
4584 	case RTL_VER_03:
4585 	case RTL_VER_04:
4586 		break;
4587 	case RTL_VER_05:
4588 	case RTL_VER_06:
4589 	default:
4590 		r8153_u2p3en(tp, true);
4591 		break;
4592 	}
4593 
4594 	set_bit(PHY_RESET, &tp->flags);
4595 }
4596 
4597 static u32 r8152_efuse_read(struct r8152 *tp, u8 addr)
4598 {
4599 	u32 ocp_data;
4600 
4601 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_EFUSE_CMD, EFUSE_READ_CMD | addr);
4602 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EFUSE_CMD);
4603 	ocp_data = (ocp_data & EFUSE_DATA_BIT16) << 9;	/* data of bit16 */
4604 	ocp_data |= ocp_read_word(tp, MCU_TYPE_PLA, PLA_EFUSE_DATA);
4605 
4606 	return ocp_data;
4607 }
4608 
4609 static void r8153b_hw_phy_cfg(struct r8152 *tp)
4610 {
4611 	u32 ocp_data;
4612 	u16 data;
4613 
4614 	/* disable ALDPS before updating the PHY parameters */
4615 	r8153_aldps_en(tp, false);
4616 
4617 	/* disable EEE before updating the PHY parameters */
4618 	rtl_eee_enable(tp, false);
4619 
4620 	rtl8152_apply_firmware(tp);
4621 
4622 	r8153b_green_en(tp, test_bit(GREEN_ETHERNET, &tp->flags));
4623 
4624 	data = sram_read(tp, SRAM_GREEN_CFG);
4625 	data |= R_TUNE_EN;
4626 	sram_write(tp, SRAM_GREEN_CFG, data);
4627 	data = ocp_reg_read(tp, OCP_NCTL_CFG);
4628 	data |= PGA_RETURN_EN;
4629 	ocp_reg_write(tp, OCP_NCTL_CFG, data);
4630 
4631 	/* ADC Bias Calibration:
4632 	 * read efuse offset 0x7d to get a 17-bit data. Remove the dummy/fake
4633 	 * bit (bit3) to rebuild the real 16-bit data. Write the data to the
4634 	 * ADC ioffset.
4635 	 */
4636 	ocp_data = r8152_efuse_read(tp, 0x7d);
4637 	data = (u16)(((ocp_data & 0x1fff0) >> 1) | (ocp_data & 0x7));
4638 	if (data != 0xffff)
4639 		ocp_reg_write(tp, OCP_ADC_IOFFSET, data);
4640 
4641 	/* ups mode tx-link-pulse timing adjustment:
4642 	 * rg_saw_cnt = OCP reg 0xC426 Bit[13:0]
4643 	 * swr_cnt_1ms_ini = 16000000 / rg_saw_cnt
4644 	 */
4645 	ocp_data = ocp_reg_read(tp, 0xc426);
4646 	ocp_data &= 0x3fff;
4647 	if (ocp_data) {
4648 		u32 swr_cnt_1ms_ini;
4649 
4650 		swr_cnt_1ms_ini = (16000000 / ocp_data) & SAW_CNT_1MS_MASK;
4651 		ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CFG);
4652 		ocp_data = (ocp_data & ~SAW_CNT_1MS_MASK) | swr_cnt_1ms_ini;
4653 		ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CFG, ocp_data);
4654 	}
4655 
4656 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
4657 	ocp_data |= PFM_PWM_SWITCH;
4658 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
4659 
4660 	/* Advnace EEE */
4661 	if (!r8153_patch_request(tp, true)) {
4662 		data = ocp_reg_read(tp, OCP_POWER_CFG);
4663 		data |= EEE_CLKDIV_EN;
4664 		ocp_reg_write(tp, OCP_POWER_CFG, data);
4665 		tp->ups_info.eee_ckdiv = true;
4666 
4667 		data = ocp_reg_read(tp, OCP_DOWN_SPEED);
4668 		data |= EN_EEE_CMODE | EN_EEE_1000 | EN_10M_CLKDIV;
4669 		ocp_reg_write(tp, OCP_DOWN_SPEED, data);
4670 		tp->ups_info.eee_cmod_lv = true;
4671 		tp->ups_info._10m_ckdiv = true;
4672 		tp->ups_info.eee_plloff_giga = true;
4673 
4674 		ocp_reg_write(tp, OCP_SYSCLK_CFG, 0);
4675 		ocp_reg_write(tp, OCP_SYSCLK_CFG, clk_div_expo(5));
4676 		tp->ups_info._250m_ckdiv = true;
4677 
4678 		r8153_patch_request(tp, false);
4679 	}
4680 
4681 	if (tp->eee_en)
4682 		rtl_eee_enable(tp, true);
4683 
4684 	r8153_aldps_en(tp, true);
4685 	r8152b_enable_fc(tp);
4686 
4687 	set_bit(PHY_RESET, &tp->flags);
4688 }
4689 
4690 static void r8153_first_init(struct r8152 *tp)
4691 {
4692 	u32 ocp_data;
4693 
4694 	r8153_mac_clk_spd(tp, false);
4695 	rxdy_gated_en(tp, true);
4696 	r8153_teredo_off(tp);
4697 
4698 	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
4699 	ocp_data &= ~RCR_ACPT_ALL;
4700 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
4701 
4702 	rtl8152_nic_reset(tp);
4703 	rtl_reset_bmu(tp);
4704 
4705 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4706 	ocp_data &= ~NOW_IS_OOB;
4707 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4708 
4709 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4710 	ocp_data &= ~MCU_BORW_EN;
4711 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4712 
4713 	wait_oob_link_list_ready(tp);
4714 
4715 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4716 	ocp_data |= RE_INIT_LL;
4717 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4718 
4719 	wait_oob_link_list_ready(tp);
4720 
4721 	rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX);
4722 
4723 	ocp_data = tp->netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
4724 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, ocp_data);
4725 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_MTPS, MTPS_JUMBO);
4726 
4727 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0);
4728 	ocp_data |= TCR0_AUTO_FIFO;
4729 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data);
4730 
4731 	rtl8152_nic_reset(tp);
4732 
4733 	/* rx share fifo credit full threshold */
4734 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL);
4735 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_NORMAL);
4736 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_NORMAL);
4737 	/* TX share fifo free credit full threshold */
4738 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL2);
4739 }
4740 
4741 static void r8153_enter_oob(struct r8152 *tp)
4742 {
4743 	u32 ocp_data;
4744 
4745 	r8153_mac_clk_spd(tp, true);
4746 
4747 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4748 	ocp_data &= ~NOW_IS_OOB;
4749 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4750 
4751 	rtl_disable(tp);
4752 	rtl_reset_bmu(tp);
4753 
4754 	wait_oob_link_list_ready(tp);
4755 
4756 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7);
4757 	ocp_data |= RE_INIT_LL;
4758 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data);
4759 
4760 	wait_oob_link_list_ready(tp);
4761 
4762 	ocp_data = tp->netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
4763 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, ocp_data);
4764 
4765 	switch (tp->version) {
4766 	case RTL_VER_03:
4767 	case RTL_VER_04:
4768 	case RTL_VER_05:
4769 	case RTL_VER_06:
4770 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG);
4771 		ocp_data &= ~TEREDO_WAKE_MASK;
4772 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data);
4773 		break;
4774 
4775 	case RTL_VER_08:
4776 	case RTL_VER_09:
4777 		/* Clear teredo wake event. bit[15:8] is the teredo wakeup
4778 		 * type. Set it to zero. bits[7:0] are the W1C bits about
4779 		 * the events. Set them to all 1 to clear them.
4780 		 */
4781 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_WAKE_BASE, 0x00ff);
4782 		break;
4783 
4784 	default:
4785 		break;
4786 	}
4787 
4788 	rtl_rx_vlan_en(tp, true);
4789 
4790 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BDC_CR);
4791 	ocp_data |= ALDPS_PROXY_MODE;
4792 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_BDC_CR, ocp_data);
4793 
4794 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL);
4795 	ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB;
4796 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data);
4797 
4798 	rxdy_gated_en(tp, false);
4799 
4800 	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
4801 	ocp_data |= RCR_APM | RCR_AM | RCR_AB;
4802 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
4803 }
4804 
4805 static void rtl8153_disable(struct r8152 *tp)
4806 {
4807 	r8153_aldps_en(tp, false);
4808 	rtl_disable(tp);
4809 	rtl_reset_bmu(tp);
4810 	r8153_aldps_en(tp, true);
4811 }
4812 
4813 static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u32 speed, u8 duplex,
4814 			     u32 advertising)
4815 {
4816 	u16 bmcr;
4817 	int ret = 0;
4818 
4819 	if (autoneg == AUTONEG_DISABLE) {
4820 		if (duplex != DUPLEX_HALF && duplex != DUPLEX_FULL)
4821 			return -EINVAL;
4822 
4823 		switch (speed) {
4824 		case SPEED_10:
4825 			bmcr = BMCR_SPEED10;
4826 			if (duplex == DUPLEX_FULL) {
4827 				bmcr |= BMCR_FULLDPLX;
4828 				tp->ups_info.speed_duplex = FORCE_10M_FULL;
4829 			} else {
4830 				tp->ups_info.speed_duplex = FORCE_10M_HALF;
4831 			}
4832 			break;
4833 		case SPEED_100:
4834 			bmcr = BMCR_SPEED100;
4835 			if (duplex == DUPLEX_FULL) {
4836 				bmcr |= BMCR_FULLDPLX;
4837 				tp->ups_info.speed_duplex = FORCE_100M_FULL;
4838 			} else {
4839 				tp->ups_info.speed_duplex = FORCE_100M_HALF;
4840 			}
4841 			break;
4842 		case SPEED_1000:
4843 			if (tp->mii.supports_gmii) {
4844 				bmcr = BMCR_SPEED1000 | BMCR_FULLDPLX;
4845 				tp->ups_info.speed_duplex = NWAY_1000M_FULL;
4846 				break;
4847 			}
4848 			/* fall through */
4849 		default:
4850 			ret = -EINVAL;
4851 			goto out;
4852 		}
4853 
4854 		if (duplex == DUPLEX_FULL)
4855 			tp->mii.full_duplex = 1;
4856 		else
4857 			tp->mii.full_duplex = 0;
4858 
4859 		tp->mii.force_media = 1;
4860 	} else {
4861 		u16 anar, tmp1;
4862 		u32 support;
4863 
4864 		support = RTL_ADVERTISED_10_HALF | RTL_ADVERTISED_10_FULL |
4865 			  RTL_ADVERTISED_100_HALF | RTL_ADVERTISED_100_FULL;
4866 
4867 		if (tp->mii.supports_gmii)
4868 			support |= RTL_ADVERTISED_1000_FULL;
4869 
4870 		if (!(advertising & support))
4871 			return -EINVAL;
4872 
4873 		anar = r8152_mdio_read(tp, MII_ADVERTISE);
4874 		tmp1 = anar & ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
4875 				ADVERTISE_100HALF | ADVERTISE_100FULL);
4876 		if (advertising & RTL_ADVERTISED_10_HALF) {
4877 			tmp1 |= ADVERTISE_10HALF;
4878 			tp->ups_info.speed_duplex = NWAY_10M_HALF;
4879 		}
4880 		if (advertising & RTL_ADVERTISED_10_FULL) {
4881 			tmp1 |= ADVERTISE_10FULL;
4882 			tp->ups_info.speed_duplex = NWAY_10M_FULL;
4883 		}
4884 
4885 		if (advertising & RTL_ADVERTISED_100_HALF) {
4886 			tmp1 |= ADVERTISE_100HALF;
4887 			tp->ups_info.speed_duplex = NWAY_100M_HALF;
4888 		}
4889 		if (advertising & RTL_ADVERTISED_100_FULL) {
4890 			tmp1 |= ADVERTISE_100FULL;
4891 			tp->ups_info.speed_duplex = NWAY_100M_FULL;
4892 		}
4893 
4894 		if (anar != tmp1) {
4895 			r8152_mdio_write(tp, MII_ADVERTISE, tmp1);
4896 			tp->mii.advertising = tmp1;
4897 		}
4898 
4899 		if (tp->mii.supports_gmii) {
4900 			u16 gbcr;
4901 
4902 			gbcr = r8152_mdio_read(tp, MII_CTRL1000);
4903 			tmp1 = gbcr & ~(ADVERTISE_1000FULL |
4904 					ADVERTISE_1000HALF);
4905 
4906 			if (advertising & RTL_ADVERTISED_1000_FULL) {
4907 				tmp1 |= ADVERTISE_1000FULL;
4908 				tp->ups_info.speed_duplex = NWAY_1000M_FULL;
4909 			}
4910 
4911 			if (gbcr != tmp1)
4912 				r8152_mdio_write(tp, MII_CTRL1000, tmp1);
4913 		}
4914 
4915 		bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
4916 
4917 		tp->mii.force_media = 0;
4918 	}
4919 
4920 	if (test_and_clear_bit(PHY_RESET, &tp->flags))
4921 		bmcr |= BMCR_RESET;
4922 
4923 	r8152_mdio_write(tp, MII_BMCR, bmcr);
4924 
4925 	if (bmcr & BMCR_RESET) {
4926 		int i;
4927 
4928 		for (i = 0; i < 50; i++) {
4929 			msleep(20);
4930 			if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0)
4931 				break;
4932 		}
4933 	}
4934 
4935 out:
4936 	return ret;
4937 }
4938 
4939 static void rtl8152_up(struct r8152 *tp)
4940 {
4941 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
4942 		return;
4943 
4944 	r8152_aldps_en(tp, false);
4945 	r8152b_exit_oob(tp);
4946 	r8152_aldps_en(tp, true);
4947 }
4948 
4949 static void rtl8152_down(struct r8152 *tp)
4950 {
4951 	if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
4952 		rtl_drop_queued_tx(tp);
4953 		return;
4954 	}
4955 
4956 	r8152_power_cut_en(tp, false);
4957 	r8152_aldps_en(tp, false);
4958 	r8152b_enter_oob(tp);
4959 	r8152_aldps_en(tp, true);
4960 }
4961 
4962 static void rtl8153_up(struct r8152 *tp)
4963 {
4964 	u32 ocp_data;
4965 
4966 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
4967 		return;
4968 
4969 	r8153_u1u2en(tp, false);
4970 	r8153_u2p3en(tp, false);
4971 	r8153_aldps_en(tp, false);
4972 	r8153_first_init(tp);
4973 
4974 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6);
4975 	ocp_data |= LANWAKE_CLR_EN;
4976 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data);
4977 
4978 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG);
4979 	ocp_data &= ~LANWAKE_PIN;
4980 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG, ocp_data);
4981 
4982 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK1);
4983 	ocp_data &= ~DELAY_PHY_PWR_CHG;
4984 	ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK1, ocp_data);
4985 
4986 	r8153_aldps_en(tp, true);
4987 
4988 	switch (tp->version) {
4989 	case RTL_VER_03:
4990 	case RTL_VER_04:
4991 		break;
4992 	case RTL_VER_05:
4993 	case RTL_VER_06:
4994 	default:
4995 		r8153_u2p3en(tp, true);
4996 		break;
4997 	}
4998 
4999 	r8153_u1u2en(tp, true);
5000 }
5001 
5002 static void rtl8153_down(struct r8152 *tp)
5003 {
5004 	u32 ocp_data;
5005 
5006 	if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
5007 		rtl_drop_queued_tx(tp);
5008 		return;
5009 	}
5010 
5011 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6);
5012 	ocp_data &= ~LANWAKE_CLR_EN;
5013 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data);
5014 
5015 	r8153_u1u2en(tp, false);
5016 	r8153_u2p3en(tp, false);
5017 	r8153_power_cut_en(tp, false);
5018 	r8153_aldps_en(tp, false);
5019 	r8153_enter_oob(tp);
5020 	r8153_aldps_en(tp, true);
5021 }
5022 
5023 static void rtl8153b_up(struct r8152 *tp)
5024 {
5025 	u32 ocp_data;
5026 
5027 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
5028 		return;
5029 
5030 	r8153b_u1u2en(tp, false);
5031 	r8153_u2p3en(tp, false);
5032 	r8153_aldps_en(tp, false);
5033 
5034 	r8153_first_init(tp);
5035 	ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_B);
5036 
5037 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3);
5038 	ocp_data &= ~PLA_MCU_SPDWN_EN;
5039 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data);
5040 
5041 	r8153_aldps_en(tp, true);
5042 
5043 	if (tp->udev->speed != USB_SPEED_HIGH)
5044 		r8153b_u1u2en(tp, true);
5045 }
5046 
5047 static void rtl8153b_down(struct r8152 *tp)
5048 {
5049 	u32 ocp_data;
5050 
5051 	if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
5052 		rtl_drop_queued_tx(tp);
5053 		return;
5054 	}
5055 
5056 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3);
5057 	ocp_data |= PLA_MCU_SPDWN_EN;
5058 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data);
5059 
5060 	r8153b_u1u2en(tp, false);
5061 	r8153_u2p3en(tp, false);
5062 	r8153b_power_cut_en(tp, false);
5063 	r8153_aldps_en(tp, false);
5064 	r8153_enter_oob(tp);
5065 	r8153_aldps_en(tp, true);
5066 }
5067 
5068 static bool rtl8152_in_nway(struct r8152 *tp)
5069 {
5070 	u16 nway_state;
5071 
5072 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, 0x2000);
5073 	tp->ocp_base = 0x2000;
5074 	ocp_write_byte(tp, MCU_TYPE_PLA, 0xb014, 0x4c);		/* phy state */
5075 	nway_state = ocp_read_word(tp, MCU_TYPE_PLA, 0xb01a);
5076 
5077 	/* bit 15: TXDIS_STATE, bit 14: ABD_STATE */
5078 	if (nway_state & 0xc000)
5079 		return false;
5080 	else
5081 		return true;
5082 }
5083 
5084 static bool rtl8153_in_nway(struct r8152 *tp)
5085 {
5086 	u16 phy_state = ocp_reg_read(tp, OCP_PHY_STATE) & 0xff;
5087 
5088 	if (phy_state == TXDIS_STATE || phy_state == ABD_STATE)
5089 		return false;
5090 	else
5091 		return true;
5092 }
5093 
5094 static void set_carrier(struct r8152 *tp)
5095 {
5096 	struct net_device *netdev = tp->netdev;
5097 	struct napi_struct *napi = &tp->napi;
5098 	u8 speed;
5099 
5100 	speed = rtl8152_get_speed(tp);
5101 
5102 	if (speed & LINK_STATUS) {
5103 		if (!netif_carrier_ok(netdev)) {
5104 			tp->rtl_ops.enable(tp);
5105 			netif_stop_queue(netdev);
5106 			napi_disable(napi);
5107 			netif_carrier_on(netdev);
5108 			rtl_start_rx(tp);
5109 			clear_bit(RTL8152_SET_RX_MODE, &tp->flags);
5110 			_rtl8152_set_rx_mode(netdev);
5111 			napi_enable(&tp->napi);
5112 			netif_wake_queue(netdev);
5113 			netif_info(tp, link, netdev, "carrier on\n");
5114 		} else if (netif_queue_stopped(netdev) &&
5115 			   skb_queue_len(&tp->tx_queue) < tp->tx_qlen) {
5116 			netif_wake_queue(netdev);
5117 		}
5118 	} else {
5119 		if (netif_carrier_ok(netdev)) {
5120 			netif_carrier_off(netdev);
5121 			tasklet_disable(&tp->tx_tl);
5122 			napi_disable(napi);
5123 			tp->rtl_ops.disable(tp);
5124 			napi_enable(napi);
5125 			tasklet_enable(&tp->tx_tl);
5126 			netif_info(tp, link, netdev, "carrier off\n");
5127 		}
5128 	}
5129 }
5130 
5131 static void rtl_work_func_t(struct work_struct *work)
5132 {
5133 	struct r8152 *tp = container_of(work, struct r8152, schedule.work);
5134 
5135 	/* If the device is unplugged or !netif_running(), the workqueue
5136 	 * doesn't need to wake the device, and could return directly.
5137 	 */
5138 	if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev))
5139 		return;
5140 
5141 	if (usb_autopm_get_interface(tp->intf) < 0)
5142 		return;
5143 
5144 	if (!test_bit(WORK_ENABLE, &tp->flags))
5145 		goto out1;
5146 
5147 	if (!mutex_trylock(&tp->control)) {
5148 		schedule_delayed_work(&tp->schedule, 0);
5149 		goto out1;
5150 	}
5151 
5152 	if (test_and_clear_bit(RTL8152_LINK_CHG, &tp->flags))
5153 		set_carrier(tp);
5154 
5155 	if (test_and_clear_bit(RTL8152_SET_RX_MODE, &tp->flags))
5156 		_rtl8152_set_rx_mode(tp->netdev);
5157 
5158 	/* don't schedule tasket before linking */
5159 	if (test_and_clear_bit(SCHEDULE_TASKLET, &tp->flags) &&
5160 	    netif_carrier_ok(tp->netdev))
5161 		tasklet_schedule(&tp->tx_tl);
5162 
5163 	mutex_unlock(&tp->control);
5164 
5165 out1:
5166 	usb_autopm_put_interface(tp->intf);
5167 }
5168 
5169 static void rtl_hw_phy_work_func_t(struct work_struct *work)
5170 {
5171 	struct r8152 *tp = container_of(work, struct r8152, hw_phy_work.work);
5172 
5173 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
5174 		return;
5175 
5176 	if (usb_autopm_get_interface(tp->intf) < 0)
5177 		return;
5178 
5179 	mutex_lock(&tp->control);
5180 
5181 	if (rtl8152_request_firmware(tp) == -ENODEV && tp->rtl_fw.retry) {
5182 		tp->rtl_fw.retry = false;
5183 		tp->rtl_fw.fw = NULL;
5184 
5185 		/* Delay execution in case request_firmware() is not ready yet.
5186 		 */
5187 		queue_delayed_work(system_long_wq, &tp->hw_phy_work, HZ * 10);
5188 		goto ignore_once;
5189 	}
5190 
5191 	tp->rtl_ops.hw_phy_cfg(tp);
5192 
5193 	rtl8152_set_speed(tp, tp->autoneg, tp->speed, tp->duplex,
5194 			  tp->advertising);
5195 
5196 ignore_once:
5197 	mutex_unlock(&tp->control);
5198 
5199 	usb_autopm_put_interface(tp->intf);
5200 }
5201 
5202 #ifdef CONFIG_PM_SLEEP
5203 static int rtl_notifier(struct notifier_block *nb, unsigned long action,
5204 			void *data)
5205 {
5206 	struct r8152 *tp = container_of(nb, struct r8152, pm_notifier);
5207 
5208 	switch (action) {
5209 	case PM_HIBERNATION_PREPARE:
5210 	case PM_SUSPEND_PREPARE:
5211 		usb_autopm_get_interface(tp->intf);
5212 		break;
5213 
5214 	case PM_POST_HIBERNATION:
5215 	case PM_POST_SUSPEND:
5216 		usb_autopm_put_interface(tp->intf);
5217 		break;
5218 
5219 	case PM_POST_RESTORE:
5220 	case PM_RESTORE_PREPARE:
5221 	default:
5222 		break;
5223 	}
5224 
5225 	return NOTIFY_DONE;
5226 }
5227 #endif
5228 
5229 static int rtl8152_open(struct net_device *netdev)
5230 {
5231 	struct r8152 *tp = netdev_priv(netdev);
5232 	int res = 0;
5233 
5234 	if (work_busy(&tp->hw_phy_work.work) & WORK_BUSY_PENDING) {
5235 		cancel_delayed_work_sync(&tp->hw_phy_work);
5236 		rtl_hw_phy_work_func_t(&tp->hw_phy_work.work);
5237 	}
5238 
5239 	res = alloc_all_mem(tp);
5240 	if (res)
5241 		goto out;
5242 
5243 	res = usb_autopm_get_interface(tp->intf);
5244 	if (res < 0)
5245 		goto out_free;
5246 
5247 	mutex_lock(&tp->control);
5248 
5249 	tp->rtl_ops.up(tp);
5250 
5251 	netif_carrier_off(netdev);
5252 	netif_start_queue(netdev);
5253 	set_bit(WORK_ENABLE, &tp->flags);
5254 
5255 	res = usb_submit_urb(tp->intr_urb, GFP_KERNEL);
5256 	if (res) {
5257 		if (res == -ENODEV)
5258 			netif_device_detach(tp->netdev);
5259 		netif_warn(tp, ifup, netdev, "intr_urb submit failed: %d\n",
5260 			   res);
5261 		goto out_unlock;
5262 	}
5263 	napi_enable(&tp->napi);
5264 	tasklet_enable(&tp->tx_tl);
5265 
5266 	mutex_unlock(&tp->control);
5267 
5268 	usb_autopm_put_interface(tp->intf);
5269 #ifdef CONFIG_PM_SLEEP
5270 	tp->pm_notifier.notifier_call = rtl_notifier;
5271 	register_pm_notifier(&tp->pm_notifier);
5272 #endif
5273 	return 0;
5274 
5275 out_unlock:
5276 	mutex_unlock(&tp->control);
5277 	usb_autopm_put_interface(tp->intf);
5278 out_free:
5279 	free_all_mem(tp);
5280 out:
5281 	return res;
5282 }
5283 
5284 static int rtl8152_close(struct net_device *netdev)
5285 {
5286 	struct r8152 *tp = netdev_priv(netdev);
5287 	int res = 0;
5288 
5289 #ifdef CONFIG_PM_SLEEP
5290 	unregister_pm_notifier(&tp->pm_notifier);
5291 #endif
5292 	tasklet_disable(&tp->tx_tl);
5293 	clear_bit(WORK_ENABLE, &tp->flags);
5294 	usb_kill_urb(tp->intr_urb);
5295 	cancel_delayed_work_sync(&tp->schedule);
5296 	napi_disable(&tp->napi);
5297 	netif_stop_queue(netdev);
5298 
5299 	res = usb_autopm_get_interface(tp->intf);
5300 	if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) {
5301 		rtl_drop_queued_tx(tp);
5302 		rtl_stop_rx(tp);
5303 	} else {
5304 		mutex_lock(&tp->control);
5305 
5306 		tp->rtl_ops.down(tp);
5307 
5308 		mutex_unlock(&tp->control);
5309 
5310 		usb_autopm_put_interface(tp->intf);
5311 	}
5312 
5313 	free_all_mem(tp);
5314 
5315 	return res;
5316 }
5317 
5318 static void rtl_tally_reset(struct r8152 *tp)
5319 {
5320 	u32 ocp_data;
5321 
5322 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY);
5323 	ocp_data |= TALLY_RESET;
5324 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data);
5325 }
5326 
5327 static void r8152b_init(struct r8152 *tp)
5328 {
5329 	u32 ocp_data;
5330 	u16 data;
5331 
5332 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
5333 		return;
5334 
5335 	data = r8152_mdio_read(tp, MII_BMCR);
5336 	if (data & BMCR_PDOWN) {
5337 		data &= ~BMCR_PDOWN;
5338 		r8152_mdio_write(tp, MII_BMCR, data);
5339 	}
5340 
5341 	r8152_aldps_en(tp, false);
5342 
5343 	if (tp->version == RTL_VER_01) {
5344 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
5345 		ocp_data &= ~LED_MODE_MASK;
5346 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
5347 	}
5348 
5349 	r8152_power_cut_en(tp, false);
5350 
5351 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
5352 	ocp_data |= TX_10M_IDLE_EN | PFM_PWM_SWITCH;
5353 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
5354 	ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL);
5355 	ocp_data &= ~MCU_CLK_RATIO_MASK;
5356 	ocp_data |= MCU_CLK_RATIO | D3_CLK_GATED_EN;
5357 	ocp_write_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ocp_data);
5358 	ocp_data = GPHY_STS_MSK | SPEED_DOWN_MSK |
5359 		   SPDWN_RXDV_MSK | SPDWN_LINKCHG_MSK;
5360 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_GPHY_INTR_IMR, ocp_data);
5361 
5362 	rtl_tally_reset(tp);
5363 
5364 	/* enable rx aggregation */
5365 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
5366 	ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
5367 	ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
5368 }
5369 
5370 static void r8153_init(struct r8152 *tp)
5371 {
5372 	u32 ocp_data;
5373 	u16 data;
5374 	int i;
5375 
5376 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
5377 		return;
5378 
5379 	r8153_u1u2en(tp, false);
5380 
5381 	for (i = 0; i < 500; i++) {
5382 		if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
5383 		    AUTOLOAD_DONE)
5384 			break;
5385 
5386 		msleep(20);
5387 		if (test_bit(RTL8152_UNPLUG, &tp->flags))
5388 			break;
5389 	}
5390 
5391 	data = r8153_phy_status(tp, 0);
5392 
5393 	if (tp->version == RTL_VER_03 || tp->version == RTL_VER_04 ||
5394 	    tp->version == RTL_VER_05)
5395 		ocp_reg_write(tp, OCP_ADC_CFG, CKADSEL_L | ADC_EN | EN_EMI_L);
5396 
5397 	data = r8152_mdio_read(tp, MII_BMCR);
5398 	if (data & BMCR_PDOWN) {
5399 		data &= ~BMCR_PDOWN;
5400 		r8152_mdio_write(tp, MII_BMCR, data);
5401 	}
5402 
5403 	data = r8153_phy_status(tp, PHY_STAT_LAN_ON);
5404 
5405 	r8153_u2p3en(tp, false);
5406 
5407 	if (tp->version == RTL_VER_04) {
5408 		ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2);
5409 		ocp_data &= ~pwd_dn_scale_mask;
5410 		ocp_data |= pwd_dn_scale(96);
5411 		ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2, ocp_data);
5412 
5413 		ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY);
5414 		ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND;
5415 		ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data);
5416 	} else if (tp->version == RTL_VER_05) {
5417 		ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0);
5418 		ocp_data &= ~ECM_ALDPS;
5419 		ocp_write_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0, ocp_data);
5420 
5421 		ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
5422 		if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
5423 			ocp_data &= ~DYNAMIC_BURST;
5424 		else
5425 			ocp_data |= DYNAMIC_BURST;
5426 		ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
5427 	} else if (tp->version == RTL_VER_06) {
5428 		ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1);
5429 		if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0)
5430 			ocp_data &= ~DYNAMIC_BURST;
5431 		else
5432 			ocp_data |= DYNAMIC_BURST;
5433 		ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data);
5434 
5435 		r8153_queue_wake(tp, false);
5436 
5437 		ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS);
5438 		if (rtl8152_get_speed(tp) & LINK_STATUS)
5439 			ocp_data |= CUR_LINK_OK;
5440 		else
5441 			ocp_data &= ~CUR_LINK_OK;
5442 		ocp_data |= POLL_LINK_CHG;
5443 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data);
5444 	}
5445 
5446 	ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2);
5447 	ocp_data |= EP4_FULL_FC;
5448 	ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2, ocp_data);
5449 
5450 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL);
5451 	ocp_data &= ~TIMER11_EN;
5452 	ocp_write_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL, ocp_data);
5453 
5454 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE);
5455 	ocp_data &= ~LED_MODE_MASK;
5456 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data);
5457 
5458 	ocp_data = FIFO_EMPTY_1FB | ROK_EXIT_LPM;
5459 	if (tp->version == RTL_VER_04 && tp->udev->speed < USB_SPEED_SUPER)
5460 		ocp_data |= LPM_TIMER_500MS;
5461 	else
5462 		ocp_data |= LPM_TIMER_500US;
5463 	ocp_write_byte(tp, MCU_TYPE_USB, USB_LPM_CTRL, ocp_data);
5464 
5465 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2);
5466 	ocp_data &= ~SEN_VAL_MASK;
5467 	ocp_data |= SEN_VAL_NORMAL | SEL_RXIDLE;
5468 	ocp_write_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2, ocp_data);
5469 
5470 	ocp_write_word(tp, MCU_TYPE_USB, USB_CONNECT_TIMER, 0x0001);
5471 
5472 	r8153_power_cut_en(tp, false);
5473 	rtl_runtime_suspend_enable(tp, false);
5474 	r8153_u1u2en(tp, true);
5475 	r8153_mac_clk_spd(tp, false);
5476 	usb_enable_lpm(tp->udev);
5477 
5478 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6);
5479 	ocp_data |= LANWAKE_CLR_EN;
5480 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data);
5481 
5482 	ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG);
5483 	ocp_data &= ~LANWAKE_PIN;
5484 	ocp_write_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG, ocp_data);
5485 
5486 	/* rx aggregation */
5487 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
5488 	ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
5489 	if (test_bit(DELL_TB_RX_AGG_BUG, &tp->flags))
5490 		ocp_data |= RX_AGG_DISABLE;
5491 
5492 	ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
5493 
5494 	rtl_tally_reset(tp);
5495 
5496 	switch (tp->udev->speed) {
5497 	case USB_SPEED_SUPER:
5498 	case USB_SPEED_SUPER_PLUS:
5499 		tp->coalesce = COALESCE_SUPER;
5500 		break;
5501 	case USB_SPEED_HIGH:
5502 		tp->coalesce = COALESCE_HIGH;
5503 		break;
5504 	default:
5505 		tp->coalesce = COALESCE_SLOW;
5506 		break;
5507 	}
5508 }
5509 
5510 static void r8153b_init(struct r8152 *tp)
5511 {
5512 	u32 ocp_data;
5513 	u16 data;
5514 	int i;
5515 
5516 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
5517 		return;
5518 
5519 	r8153b_u1u2en(tp, false);
5520 
5521 	for (i = 0; i < 500; i++) {
5522 		if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
5523 		    AUTOLOAD_DONE)
5524 			break;
5525 
5526 		msleep(20);
5527 		if (test_bit(RTL8152_UNPLUG, &tp->flags))
5528 			break;
5529 	}
5530 
5531 	data = r8153_phy_status(tp, 0);
5532 
5533 	data = r8152_mdio_read(tp, MII_BMCR);
5534 	if (data & BMCR_PDOWN) {
5535 		data &= ~BMCR_PDOWN;
5536 		r8152_mdio_write(tp, MII_BMCR, data);
5537 	}
5538 
5539 	data = r8153_phy_status(tp, PHY_STAT_LAN_ON);
5540 
5541 	r8153_u2p3en(tp, false);
5542 
5543 	/* MSC timer = 0xfff * 8ms = 32760 ms */
5544 	ocp_write_word(tp, MCU_TYPE_USB, USB_MSC_TIMER, 0x0fff);
5545 
5546 	/* U1/U2/L1 idle timer. 500 us */
5547 	ocp_write_word(tp, MCU_TYPE_USB, USB_U1U2_TIMER, 500);
5548 
5549 	r8153b_power_cut_en(tp, false);
5550 	r8153b_ups_en(tp, false);
5551 	r8153_queue_wake(tp, false);
5552 	rtl_runtime_suspend_enable(tp, false);
5553 
5554 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS);
5555 	if (rtl8152_get_speed(tp) & LINK_STATUS)
5556 		ocp_data |= CUR_LINK_OK;
5557 	else
5558 		ocp_data &= ~CUR_LINK_OK;
5559 	ocp_data |= POLL_LINK_CHG;
5560 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data);
5561 
5562 	if (tp->udev->speed != USB_SPEED_HIGH)
5563 		r8153b_u1u2en(tp, true);
5564 	usb_enable_lpm(tp->udev);
5565 
5566 	/* MAC clock speed down */
5567 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2);
5568 	ocp_data |= MAC_CLK_SPDWN_EN;
5569 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, ocp_data);
5570 
5571 	ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3);
5572 	ocp_data &= ~PLA_MCU_SPDWN_EN;
5573 	ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data);
5574 
5575 	if (tp->version == RTL_VER_09) {
5576 		/* Disable Test IO for 32QFN */
5577 		if (ocp_read_byte(tp, MCU_TYPE_PLA, 0xdc00) & BIT(5)) {
5578 			ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR);
5579 			ocp_data |= TEST_IO_OFF;
5580 			ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data);
5581 		}
5582 	}
5583 
5584 	set_bit(GREEN_ETHERNET, &tp->flags);
5585 
5586 	/* rx aggregation */
5587 	ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
5588 	ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
5589 	ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
5590 
5591 	rtl_tally_reset(tp);
5592 
5593 	tp->coalesce = 15000;	/* 15 us */
5594 }
5595 
5596 static int rtl8152_pre_reset(struct usb_interface *intf)
5597 {
5598 	struct r8152 *tp = usb_get_intfdata(intf);
5599 	struct net_device *netdev;
5600 
5601 	if (!tp)
5602 		return 0;
5603 
5604 	netdev = tp->netdev;
5605 	if (!netif_running(netdev))
5606 		return 0;
5607 
5608 	netif_stop_queue(netdev);
5609 	tasklet_disable(&tp->tx_tl);
5610 	clear_bit(WORK_ENABLE, &tp->flags);
5611 	usb_kill_urb(tp->intr_urb);
5612 	cancel_delayed_work_sync(&tp->schedule);
5613 	napi_disable(&tp->napi);
5614 	if (netif_carrier_ok(netdev)) {
5615 		mutex_lock(&tp->control);
5616 		tp->rtl_ops.disable(tp);
5617 		mutex_unlock(&tp->control);
5618 	}
5619 
5620 	return 0;
5621 }
5622 
5623 static int rtl8152_post_reset(struct usb_interface *intf)
5624 {
5625 	struct r8152 *tp = usb_get_intfdata(intf);
5626 	struct net_device *netdev;
5627 	struct sockaddr sa;
5628 
5629 	if (!tp)
5630 		return 0;
5631 
5632 	/* reset the MAC adddress in case of policy change */
5633 	if (determine_ethernet_addr(tp, &sa) >= 0) {
5634 		rtnl_lock();
5635 		dev_set_mac_address (tp->netdev, &sa, NULL);
5636 		rtnl_unlock();
5637 	}
5638 
5639 	netdev = tp->netdev;
5640 	if (!netif_running(netdev))
5641 		return 0;
5642 
5643 	set_bit(WORK_ENABLE, &tp->flags);
5644 	if (netif_carrier_ok(netdev)) {
5645 		mutex_lock(&tp->control);
5646 		tp->rtl_ops.enable(tp);
5647 		rtl_start_rx(tp);
5648 		_rtl8152_set_rx_mode(netdev);
5649 		mutex_unlock(&tp->control);
5650 	}
5651 
5652 	napi_enable(&tp->napi);
5653 	tasklet_enable(&tp->tx_tl);
5654 	netif_wake_queue(netdev);
5655 	usb_submit_urb(tp->intr_urb, GFP_KERNEL);
5656 
5657 	if (!list_empty(&tp->rx_done))
5658 		napi_schedule(&tp->napi);
5659 
5660 	return 0;
5661 }
5662 
5663 static bool delay_autosuspend(struct r8152 *tp)
5664 {
5665 	bool sw_linking = !!netif_carrier_ok(tp->netdev);
5666 	bool hw_linking = !!(rtl8152_get_speed(tp) & LINK_STATUS);
5667 
5668 	/* This means a linking change occurs and the driver doesn't detect it,
5669 	 * yet. If the driver has disabled tx/rx and hw is linking on, the
5670 	 * device wouldn't wake up by receiving any packet.
5671 	 */
5672 	if (work_busy(&tp->schedule.work) || sw_linking != hw_linking)
5673 		return true;
5674 
5675 	/* If the linking down is occurred by nway, the device may miss the
5676 	 * linking change event. And it wouldn't wake when linking on.
5677 	 */
5678 	if (!sw_linking && tp->rtl_ops.in_nway(tp))
5679 		return true;
5680 	else if (!skb_queue_empty(&tp->tx_queue))
5681 		return true;
5682 	else
5683 		return false;
5684 }
5685 
5686 static int rtl8152_runtime_resume(struct r8152 *tp)
5687 {
5688 	struct net_device *netdev = tp->netdev;
5689 
5690 	if (netif_running(netdev) && netdev->flags & IFF_UP) {
5691 		struct napi_struct *napi = &tp->napi;
5692 
5693 		tp->rtl_ops.autosuspend_en(tp, false);
5694 		napi_disable(napi);
5695 		set_bit(WORK_ENABLE, &tp->flags);
5696 
5697 		if (netif_carrier_ok(netdev)) {
5698 			if (rtl8152_get_speed(tp) & LINK_STATUS) {
5699 				rtl_start_rx(tp);
5700 			} else {
5701 				netif_carrier_off(netdev);
5702 				tp->rtl_ops.disable(tp);
5703 				netif_info(tp, link, netdev, "linking down\n");
5704 			}
5705 		}
5706 
5707 		napi_enable(napi);
5708 		clear_bit(SELECTIVE_SUSPEND, &tp->flags);
5709 		smp_mb__after_atomic();
5710 
5711 		if (!list_empty(&tp->rx_done))
5712 			napi_schedule(&tp->napi);
5713 
5714 		usb_submit_urb(tp->intr_urb, GFP_NOIO);
5715 	} else {
5716 		if (netdev->flags & IFF_UP)
5717 			tp->rtl_ops.autosuspend_en(tp, false);
5718 
5719 		clear_bit(SELECTIVE_SUSPEND, &tp->flags);
5720 	}
5721 
5722 	return 0;
5723 }
5724 
5725 static int rtl8152_system_resume(struct r8152 *tp)
5726 {
5727 	struct net_device *netdev = tp->netdev;
5728 
5729 	netif_device_attach(netdev);
5730 
5731 	if (netif_running(netdev) && (netdev->flags & IFF_UP)) {
5732 		tp->rtl_ops.up(tp);
5733 		netif_carrier_off(netdev);
5734 		set_bit(WORK_ENABLE, &tp->flags);
5735 		usb_submit_urb(tp->intr_urb, GFP_NOIO);
5736 	}
5737 
5738 	return 0;
5739 }
5740 
5741 static int rtl8152_runtime_suspend(struct r8152 *tp)
5742 {
5743 	struct net_device *netdev = tp->netdev;
5744 	int ret = 0;
5745 
5746 	set_bit(SELECTIVE_SUSPEND, &tp->flags);
5747 	smp_mb__after_atomic();
5748 
5749 	if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
5750 		u32 rcr = 0;
5751 
5752 		if (netif_carrier_ok(netdev)) {
5753 			u32 ocp_data;
5754 
5755 			rcr = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR);
5756 			ocp_data = rcr & ~RCR_ACPT_ALL;
5757 			ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data);
5758 			rxdy_gated_en(tp, true);
5759 			ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA,
5760 						 PLA_OOB_CTRL);
5761 			if (!(ocp_data & RXFIFO_EMPTY)) {
5762 				rxdy_gated_en(tp, false);
5763 				ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr);
5764 				clear_bit(SELECTIVE_SUSPEND, &tp->flags);
5765 				smp_mb__after_atomic();
5766 				ret = -EBUSY;
5767 				goto out1;
5768 			}
5769 		}
5770 
5771 		clear_bit(WORK_ENABLE, &tp->flags);
5772 		usb_kill_urb(tp->intr_urb);
5773 
5774 		tp->rtl_ops.autosuspend_en(tp, true);
5775 
5776 		if (netif_carrier_ok(netdev)) {
5777 			struct napi_struct *napi = &tp->napi;
5778 
5779 			napi_disable(napi);
5780 			rtl_stop_rx(tp);
5781 			rxdy_gated_en(tp, false);
5782 			ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr);
5783 			napi_enable(napi);
5784 		}
5785 
5786 		if (delay_autosuspend(tp)) {
5787 			rtl8152_runtime_resume(tp);
5788 			ret = -EBUSY;
5789 		}
5790 	}
5791 
5792 out1:
5793 	return ret;
5794 }
5795 
5796 static int rtl8152_system_suspend(struct r8152 *tp)
5797 {
5798 	struct net_device *netdev = tp->netdev;
5799 
5800 	netif_device_detach(netdev);
5801 
5802 	if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) {
5803 		struct napi_struct *napi = &tp->napi;
5804 
5805 		clear_bit(WORK_ENABLE, &tp->flags);
5806 		usb_kill_urb(tp->intr_urb);
5807 		tasklet_disable(&tp->tx_tl);
5808 		napi_disable(napi);
5809 		cancel_delayed_work_sync(&tp->schedule);
5810 		tp->rtl_ops.down(tp);
5811 		napi_enable(napi);
5812 		tasklet_enable(&tp->tx_tl);
5813 	}
5814 
5815 	return 0;
5816 }
5817 
5818 static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
5819 {
5820 	struct r8152 *tp = usb_get_intfdata(intf);
5821 	int ret;
5822 
5823 	mutex_lock(&tp->control);
5824 
5825 	if (PMSG_IS_AUTO(message))
5826 		ret = rtl8152_runtime_suspend(tp);
5827 	else
5828 		ret = rtl8152_system_suspend(tp);
5829 
5830 	mutex_unlock(&tp->control);
5831 
5832 	return ret;
5833 }
5834 
5835 static int rtl8152_resume(struct usb_interface *intf)
5836 {
5837 	struct r8152 *tp = usb_get_intfdata(intf);
5838 	int ret;
5839 
5840 	mutex_lock(&tp->control);
5841 
5842 	if (test_bit(SELECTIVE_SUSPEND, &tp->flags))
5843 		ret = rtl8152_runtime_resume(tp);
5844 	else
5845 		ret = rtl8152_system_resume(tp);
5846 
5847 	mutex_unlock(&tp->control);
5848 
5849 	return ret;
5850 }
5851 
5852 static int rtl8152_reset_resume(struct usb_interface *intf)
5853 {
5854 	struct r8152 *tp = usb_get_intfdata(intf);
5855 
5856 	clear_bit(SELECTIVE_SUSPEND, &tp->flags);
5857 	tp->rtl_ops.init(tp);
5858 	queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
5859 	set_ethernet_addr(tp);
5860 	return rtl8152_resume(intf);
5861 }
5862 
5863 static void rtl8152_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
5864 {
5865 	struct r8152 *tp = netdev_priv(dev);
5866 
5867 	if (usb_autopm_get_interface(tp->intf) < 0)
5868 		return;
5869 
5870 	if (!rtl_can_wakeup(tp)) {
5871 		wol->supported = 0;
5872 		wol->wolopts = 0;
5873 	} else {
5874 		mutex_lock(&tp->control);
5875 		wol->supported = WAKE_ANY;
5876 		wol->wolopts = __rtl_get_wol(tp);
5877 		mutex_unlock(&tp->control);
5878 	}
5879 
5880 	usb_autopm_put_interface(tp->intf);
5881 }
5882 
5883 static int rtl8152_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
5884 {
5885 	struct r8152 *tp = netdev_priv(dev);
5886 	int ret;
5887 
5888 	if (!rtl_can_wakeup(tp))
5889 		return -EOPNOTSUPP;
5890 
5891 	if (wol->wolopts & ~WAKE_ANY)
5892 		return -EINVAL;
5893 
5894 	ret = usb_autopm_get_interface(tp->intf);
5895 	if (ret < 0)
5896 		goto out_set_wol;
5897 
5898 	mutex_lock(&tp->control);
5899 
5900 	__rtl_set_wol(tp, wol->wolopts);
5901 	tp->saved_wolopts = wol->wolopts & WAKE_ANY;
5902 
5903 	mutex_unlock(&tp->control);
5904 
5905 	usb_autopm_put_interface(tp->intf);
5906 
5907 out_set_wol:
5908 	return ret;
5909 }
5910 
5911 static u32 rtl8152_get_msglevel(struct net_device *dev)
5912 {
5913 	struct r8152 *tp = netdev_priv(dev);
5914 
5915 	return tp->msg_enable;
5916 }
5917 
5918 static void rtl8152_set_msglevel(struct net_device *dev, u32 value)
5919 {
5920 	struct r8152 *tp = netdev_priv(dev);
5921 
5922 	tp->msg_enable = value;
5923 }
5924 
5925 static void rtl8152_get_drvinfo(struct net_device *netdev,
5926 				struct ethtool_drvinfo *info)
5927 {
5928 	struct r8152 *tp = netdev_priv(netdev);
5929 
5930 	strlcpy(info->driver, MODULENAME, sizeof(info->driver));
5931 	strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
5932 	usb_make_path(tp->udev, info->bus_info, sizeof(info->bus_info));
5933 	if (!IS_ERR_OR_NULL(tp->rtl_fw.fw))
5934 		strlcpy(info->fw_version, tp->rtl_fw.version,
5935 			sizeof(info->fw_version));
5936 }
5937 
5938 static
5939 int rtl8152_get_link_ksettings(struct net_device *netdev,
5940 			       struct ethtool_link_ksettings *cmd)
5941 {
5942 	struct r8152 *tp = netdev_priv(netdev);
5943 	int ret;
5944 
5945 	if (!tp->mii.mdio_read)
5946 		return -EOPNOTSUPP;
5947 
5948 	ret = usb_autopm_get_interface(tp->intf);
5949 	if (ret < 0)
5950 		goto out;
5951 
5952 	mutex_lock(&tp->control);
5953 
5954 	mii_ethtool_get_link_ksettings(&tp->mii, cmd);
5955 
5956 	mutex_unlock(&tp->control);
5957 
5958 	usb_autopm_put_interface(tp->intf);
5959 
5960 out:
5961 	return ret;
5962 }
5963 
5964 static int rtl8152_set_link_ksettings(struct net_device *dev,
5965 				      const struct ethtool_link_ksettings *cmd)
5966 {
5967 	struct r8152 *tp = netdev_priv(dev);
5968 	u32 advertising = 0;
5969 	int ret;
5970 
5971 	ret = usb_autopm_get_interface(tp->intf);
5972 	if (ret < 0)
5973 		goto out;
5974 
5975 	if (test_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT,
5976 		     cmd->link_modes.advertising))
5977 		advertising |= RTL_ADVERTISED_10_HALF;
5978 
5979 	if (test_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT,
5980 		     cmd->link_modes.advertising))
5981 		advertising |= RTL_ADVERTISED_10_FULL;
5982 
5983 	if (test_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT,
5984 		     cmd->link_modes.advertising))
5985 		advertising |= RTL_ADVERTISED_100_HALF;
5986 
5987 	if (test_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT,
5988 		     cmd->link_modes.advertising))
5989 		advertising |= RTL_ADVERTISED_100_FULL;
5990 
5991 	if (test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
5992 		     cmd->link_modes.advertising))
5993 		advertising |= RTL_ADVERTISED_1000_HALF;
5994 
5995 	if (test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
5996 		     cmd->link_modes.advertising))
5997 		advertising |= RTL_ADVERTISED_1000_FULL;
5998 
5999 	mutex_lock(&tp->control);
6000 
6001 	ret = rtl8152_set_speed(tp, cmd->base.autoneg, cmd->base.speed,
6002 				cmd->base.duplex, advertising);
6003 	if (!ret) {
6004 		tp->autoneg = cmd->base.autoneg;
6005 		tp->speed = cmd->base.speed;
6006 		tp->duplex = cmd->base.duplex;
6007 		tp->advertising = advertising;
6008 	}
6009 
6010 	mutex_unlock(&tp->control);
6011 
6012 	usb_autopm_put_interface(tp->intf);
6013 
6014 out:
6015 	return ret;
6016 }
6017 
6018 static const char rtl8152_gstrings[][ETH_GSTRING_LEN] = {
6019 	"tx_packets",
6020 	"rx_packets",
6021 	"tx_errors",
6022 	"rx_errors",
6023 	"rx_missed",
6024 	"align_errors",
6025 	"tx_single_collisions",
6026 	"tx_multi_collisions",
6027 	"rx_unicast",
6028 	"rx_broadcast",
6029 	"rx_multicast",
6030 	"tx_aborted",
6031 	"tx_underrun",
6032 };
6033 
6034 static int rtl8152_get_sset_count(struct net_device *dev, int sset)
6035 {
6036 	switch (sset) {
6037 	case ETH_SS_STATS:
6038 		return ARRAY_SIZE(rtl8152_gstrings);
6039 	default:
6040 		return -EOPNOTSUPP;
6041 	}
6042 }
6043 
6044 static void rtl8152_get_ethtool_stats(struct net_device *dev,
6045 				      struct ethtool_stats *stats, u64 *data)
6046 {
6047 	struct r8152 *tp = netdev_priv(dev);
6048 	struct tally_counter tally;
6049 
6050 	if (usb_autopm_get_interface(tp->intf) < 0)
6051 		return;
6052 
6053 	generic_ocp_read(tp, PLA_TALLYCNT, sizeof(tally), &tally, MCU_TYPE_PLA);
6054 
6055 	usb_autopm_put_interface(tp->intf);
6056 
6057 	data[0] = le64_to_cpu(tally.tx_packets);
6058 	data[1] = le64_to_cpu(tally.rx_packets);
6059 	data[2] = le64_to_cpu(tally.tx_errors);
6060 	data[3] = le32_to_cpu(tally.rx_errors);
6061 	data[4] = le16_to_cpu(tally.rx_missed);
6062 	data[5] = le16_to_cpu(tally.align_errors);
6063 	data[6] = le32_to_cpu(tally.tx_one_collision);
6064 	data[7] = le32_to_cpu(tally.tx_multi_collision);
6065 	data[8] = le64_to_cpu(tally.rx_unicast);
6066 	data[9] = le64_to_cpu(tally.rx_broadcast);
6067 	data[10] = le32_to_cpu(tally.rx_multicast);
6068 	data[11] = le16_to_cpu(tally.tx_aborted);
6069 	data[12] = le16_to_cpu(tally.tx_underrun);
6070 }
6071 
6072 static void rtl8152_get_strings(struct net_device *dev, u32 stringset, u8 *data)
6073 {
6074 	switch (stringset) {
6075 	case ETH_SS_STATS:
6076 		memcpy(data, *rtl8152_gstrings, sizeof(rtl8152_gstrings));
6077 		break;
6078 	}
6079 }
6080 
6081 static int r8152_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
6082 {
6083 	u32 lp, adv, supported = 0;
6084 	u16 val;
6085 
6086 	val = r8152_mmd_read(tp, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
6087 	supported = mmd_eee_cap_to_ethtool_sup_t(val);
6088 
6089 	val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
6090 	adv = mmd_eee_adv_to_ethtool_adv_t(val);
6091 
6092 	val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
6093 	lp = mmd_eee_adv_to_ethtool_adv_t(val);
6094 
6095 	eee->eee_enabled = tp->eee_en;
6096 	eee->eee_active = !!(supported & adv & lp);
6097 	eee->supported = supported;
6098 	eee->advertised = tp->eee_adv;
6099 	eee->lp_advertised = lp;
6100 
6101 	return 0;
6102 }
6103 
6104 static int r8152_set_eee(struct r8152 *tp, struct ethtool_eee *eee)
6105 {
6106 	u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised);
6107 
6108 	tp->eee_en = eee->eee_enabled;
6109 	tp->eee_adv = val;
6110 
6111 	rtl_eee_enable(tp, tp->eee_en);
6112 
6113 	return 0;
6114 }
6115 
6116 static int r8153_get_eee(struct r8152 *tp, struct ethtool_eee *eee)
6117 {
6118 	u32 lp, adv, supported = 0;
6119 	u16 val;
6120 
6121 	val = ocp_reg_read(tp, OCP_EEE_ABLE);
6122 	supported = mmd_eee_cap_to_ethtool_sup_t(val);
6123 
6124 	val = ocp_reg_read(tp, OCP_EEE_ADV);
6125 	adv = mmd_eee_adv_to_ethtool_adv_t(val);
6126 
6127 	val = ocp_reg_read(tp, OCP_EEE_LPABLE);
6128 	lp = mmd_eee_adv_to_ethtool_adv_t(val);
6129 
6130 	eee->eee_enabled = tp->eee_en;
6131 	eee->eee_active = !!(supported & adv & lp);
6132 	eee->supported = supported;
6133 	eee->advertised = tp->eee_adv;
6134 	eee->lp_advertised = lp;
6135 
6136 	return 0;
6137 }
6138 
6139 static int
6140 rtl_ethtool_get_eee(struct net_device *net, struct ethtool_eee *edata)
6141 {
6142 	struct r8152 *tp = netdev_priv(net);
6143 	int ret;
6144 
6145 	ret = usb_autopm_get_interface(tp->intf);
6146 	if (ret < 0)
6147 		goto out;
6148 
6149 	mutex_lock(&tp->control);
6150 
6151 	ret = tp->rtl_ops.eee_get(tp, edata);
6152 
6153 	mutex_unlock(&tp->control);
6154 
6155 	usb_autopm_put_interface(tp->intf);
6156 
6157 out:
6158 	return ret;
6159 }
6160 
6161 static int
6162 rtl_ethtool_set_eee(struct net_device *net, struct ethtool_eee *edata)
6163 {
6164 	struct r8152 *tp = netdev_priv(net);
6165 	int ret;
6166 
6167 	ret = usb_autopm_get_interface(tp->intf);
6168 	if (ret < 0)
6169 		goto out;
6170 
6171 	mutex_lock(&tp->control);
6172 
6173 	ret = tp->rtl_ops.eee_set(tp, edata);
6174 	if (!ret)
6175 		ret = mii_nway_restart(&tp->mii);
6176 
6177 	mutex_unlock(&tp->control);
6178 
6179 	usb_autopm_put_interface(tp->intf);
6180 
6181 out:
6182 	return ret;
6183 }
6184 
6185 static int rtl8152_nway_reset(struct net_device *dev)
6186 {
6187 	struct r8152 *tp = netdev_priv(dev);
6188 	int ret;
6189 
6190 	ret = usb_autopm_get_interface(tp->intf);
6191 	if (ret < 0)
6192 		goto out;
6193 
6194 	mutex_lock(&tp->control);
6195 
6196 	ret = mii_nway_restart(&tp->mii);
6197 
6198 	mutex_unlock(&tp->control);
6199 
6200 	usb_autopm_put_interface(tp->intf);
6201 
6202 out:
6203 	return ret;
6204 }
6205 
6206 static int rtl8152_get_coalesce(struct net_device *netdev,
6207 				struct ethtool_coalesce *coalesce)
6208 {
6209 	struct r8152 *tp = netdev_priv(netdev);
6210 
6211 	switch (tp->version) {
6212 	case RTL_VER_01:
6213 	case RTL_VER_02:
6214 	case RTL_VER_07:
6215 		return -EOPNOTSUPP;
6216 	default:
6217 		break;
6218 	}
6219 
6220 	coalesce->rx_coalesce_usecs = tp->coalesce;
6221 
6222 	return 0;
6223 }
6224 
6225 static int rtl8152_set_coalesce(struct net_device *netdev,
6226 				struct ethtool_coalesce *coalesce)
6227 {
6228 	struct r8152 *tp = netdev_priv(netdev);
6229 	int ret;
6230 
6231 	switch (tp->version) {
6232 	case RTL_VER_01:
6233 	case RTL_VER_02:
6234 	case RTL_VER_07:
6235 		return -EOPNOTSUPP;
6236 	default:
6237 		break;
6238 	}
6239 
6240 	if (coalesce->rx_coalesce_usecs > COALESCE_SLOW)
6241 		return -EINVAL;
6242 
6243 	ret = usb_autopm_get_interface(tp->intf);
6244 	if (ret < 0)
6245 		return ret;
6246 
6247 	mutex_lock(&tp->control);
6248 
6249 	if (tp->coalesce != coalesce->rx_coalesce_usecs) {
6250 		tp->coalesce = coalesce->rx_coalesce_usecs;
6251 
6252 		if (netif_running(netdev) && netif_carrier_ok(netdev)) {
6253 			netif_stop_queue(netdev);
6254 			napi_disable(&tp->napi);
6255 			tp->rtl_ops.disable(tp);
6256 			tp->rtl_ops.enable(tp);
6257 			rtl_start_rx(tp);
6258 			clear_bit(RTL8152_SET_RX_MODE, &tp->flags);
6259 			_rtl8152_set_rx_mode(netdev);
6260 			napi_enable(&tp->napi);
6261 			netif_wake_queue(netdev);
6262 		}
6263 	}
6264 
6265 	mutex_unlock(&tp->control);
6266 
6267 	usb_autopm_put_interface(tp->intf);
6268 
6269 	return ret;
6270 }
6271 
6272 static int rtl8152_get_tunable(struct net_device *netdev,
6273 			       const struct ethtool_tunable *tunable, void *d)
6274 {
6275 	struct r8152 *tp = netdev_priv(netdev);
6276 
6277 	switch (tunable->id) {
6278 	case ETHTOOL_RX_COPYBREAK:
6279 		*(u32 *)d = tp->rx_copybreak;
6280 		break;
6281 	default:
6282 		return -EOPNOTSUPP;
6283 	}
6284 
6285 	return 0;
6286 }
6287 
6288 static int rtl8152_set_tunable(struct net_device *netdev,
6289 			       const struct ethtool_tunable *tunable,
6290 			       const void *d)
6291 {
6292 	struct r8152 *tp = netdev_priv(netdev);
6293 	u32 val;
6294 
6295 	switch (tunable->id) {
6296 	case ETHTOOL_RX_COPYBREAK:
6297 		val = *(u32 *)d;
6298 		if (val < ETH_ZLEN) {
6299 			netif_err(tp, rx_err, netdev,
6300 				  "Invalid rx copy break value\n");
6301 			return -EINVAL;
6302 		}
6303 
6304 		if (tp->rx_copybreak != val) {
6305 			if (netdev->flags & IFF_UP) {
6306 				mutex_lock(&tp->control);
6307 				napi_disable(&tp->napi);
6308 				tp->rx_copybreak = val;
6309 				napi_enable(&tp->napi);
6310 				mutex_unlock(&tp->control);
6311 			} else {
6312 				tp->rx_copybreak = val;
6313 			}
6314 		}
6315 		break;
6316 	default:
6317 		return -EOPNOTSUPP;
6318 	}
6319 
6320 	return 0;
6321 }
6322 
6323 static void rtl8152_get_ringparam(struct net_device *netdev,
6324 				  struct ethtool_ringparam *ring)
6325 {
6326 	struct r8152 *tp = netdev_priv(netdev);
6327 
6328 	ring->rx_max_pending = RTL8152_RX_MAX_PENDING;
6329 	ring->rx_pending = tp->rx_pending;
6330 }
6331 
6332 static int rtl8152_set_ringparam(struct net_device *netdev,
6333 				 struct ethtool_ringparam *ring)
6334 {
6335 	struct r8152 *tp = netdev_priv(netdev);
6336 
6337 	if (ring->rx_pending < (RTL8152_MAX_RX * 2))
6338 		return -EINVAL;
6339 
6340 	if (tp->rx_pending != ring->rx_pending) {
6341 		if (netdev->flags & IFF_UP) {
6342 			mutex_lock(&tp->control);
6343 			napi_disable(&tp->napi);
6344 			tp->rx_pending = ring->rx_pending;
6345 			napi_enable(&tp->napi);
6346 			mutex_unlock(&tp->control);
6347 		} else {
6348 			tp->rx_pending = ring->rx_pending;
6349 		}
6350 	}
6351 
6352 	return 0;
6353 }
6354 
6355 static const struct ethtool_ops ops = {
6356 	.supported_coalesce_params = ETHTOOL_COALESCE_USECS,
6357 	.get_drvinfo = rtl8152_get_drvinfo,
6358 	.get_link = ethtool_op_get_link,
6359 	.nway_reset = rtl8152_nway_reset,
6360 	.get_msglevel = rtl8152_get_msglevel,
6361 	.set_msglevel = rtl8152_set_msglevel,
6362 	.get_wol = rtl8152_get_wol,
6363 	.set_wol = rtl8152_set_wol,
6364 	.get_strings = rtl8152_get_strings,
6365 	.get_sset_count = rtl8152_get_sset_count,
6366 	.get_ethtool_stats = rtl8152_get_ethtool_stats,
6367 	.get_coalesce = rtl8152_get_coalesce,
6368 	.set_coalesce = rtl8152_set_coalesce,
6369 	.get_eee = rtl_ethtool_get_eee,
6370 	.set_eee = rtl_ethtool_set_eee,
6371 	.get_link_ksettings = rtl8152_get_link_ksettings,
6372 	.set_link_ksettings = rtl8152_set_link_ksettings,
6373 	.get_tunable = rtl8152_get_tunable,
6374 	.set_tunable = rtl8152_set_tunable,
6375 	.get_ringparam = rtl8152_get_ringparam,
6376 	.set_ringparam = rtl8152_set_ringparam,
6377 };
6378 
6379 static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
6380 {
6381 	struct r8152 *tp = netdev_priv(netdev);
6382 	struct mii_ioctl_data *data = if_mii(rq);
6383 	int res;
6384 
6385 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
6386 		return -ENODEV;
6387 
6388 	res = usb_autopm_get_interface(tp->intf);
6389 	if (res < 0)
6390 		goto out;
6391 
6392 	switch (cmd) {
6393 	case SIOCGMIIPHY:
6394 		data->phy_id = R8152_PHY_ID; /* Internal PHY */
6395 		break;
6396 
6397 	case SIOCGMIIREG:
6398 		mutex_lock(&tp->control);
6399 		data->val_out = r8152_mdio_read(tp, data->reg_num);
6400 		mutex_unlock(&tp->control);
6401 		break;
6402 
6403 	case SIOCSMIIREG:
6404 		if (!capable(CAP_NET_ADMIN)) {
6405 			res = -EPERM;
6406 			break;
6407 		}
6408 		mutex_lock(&tp->control);
6409 		r8152_mdio_write(tp, data->reg_num, data->val_in);
6410 		mutex_unlock(&tp->control);
6411 		break;
6412 
6413 	default:
6414 		res = -EOPNOTSUPP;
6415 	}
6416 
6417 	usb_autopm_put_interface(tp->intf);
6418 
6419 out:
6420 	return res;
6421 }
6422 
6423 static int rtl8152_change_mtu(struct net_device *dev, int new_mtu)
6424 {
6425 	struct r8152 *tp = netdev_priv(dev);
6426 	int ret;
6427 
6428 	switch (tp->version) {
6429 	case RTL_VER_01:
6430 	case RTL_VER_02:
6431 	case RTL_VER_07:
6432 		dev->mtu = new_mtu;
6433 		return 0;
6434 	default:
6435 		break;
6436 	}
6437 
6438 	ret = usb_autopm_get_interface(tp->intf);
6439 	if (ret < 0)
6440 		return ret;
6441 
6442 	mutex_lock(&tp->control);
6443 
6444 	dev->mtu = new_mtu;
6445 
6446 	if (netif_running(dev)) {
6447 		u32 rms = new_mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
6448 
6449 		ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, rms);
6450 
6451 		if (netif_carrier_ok(dev))
6452 			r8153_set_rx_early_size(tp);
6453 	}
6454 
6455 	mutex_unlock(&tp->control);
6456 
6457 	usb_autopm_put_interface(tp->intf);
6458 
6459 	return ret;
6460 }
6461 
6462 static const struct net_device_ops rtl8152_netdev_ops = {
6463 	.ndo_open		= rtl8152_open,
6464 	.ndo_stop		= rtl8152_close,
6465 	.ndo_do_ioctl		= rtl8152_ioctl,
6466 	.ndo_start_xmit		= rtl8152_start_xmit,
6467 	.ndo_tx_timeout		= rtl8152_tx_timeout,
6468 	.ndo_set_features	= rtl8152_set_features,
6469 	.ndo_set_rx_mode	= rtl8152_set_rx_mode,
6470 	.ndo_set_mac_address	= rtl8152_set_mac_address,
6471 	.ndo_change_mtu		= rtl8152_change_mtu,
6472 	.ndo_validate_addr	= eth_validate_addr,
6473 	.ndo_features_check	= rtl8152_features_check,
6474 };
6475 
6476 static void rtl8152_unload(struct r8152 *tp)
6477 {
6478 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
6479 		return;
6480 
6481 	if (tp->version != RTL_VER_01)
6482 		r8152_power_cut_en(tp, true);
6483 }
6484 
6485 static void rtl8153_unload(struct r8152 *tp)
6486 {
6487 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
6488 		return;
6489 
6490 	r8153_power_cut_en(tp, false);
6491 }
6492 
6493 static void rtl8153b_unload(struct r8152 *tp)
6494 {
6495 	if (test_bit(RTL8152_UNPLUG, &tp->flags))
6496 		return;
6497 
6498 	r8153b_power_cut_en(tp, false);
6499 }
6500 
6501 static int rtl_ops_init(struct r8152 *tp)
6502 {
6503 	struct rtl_ops *ops = &tp->rtl_ops;
6504 	int ret = 0;
6505 
6506 	switch (tp->version) {
6507 	case RTL_VER_01:
6508 	case RTL_VER_02:
6509 	case RTL_VER_07:
6510 		ops->init		= r8152b_init;
6511 		ops->enable		= rtl8152_enable;
6512 		ops->disable		= rtl8152_disable;
6513 		ops->up			= rtl8152_up;
6514 		ops->down		= rtl8152_down;
6515 		ops->unload		= rtl8152_unload;
6516 		ops->eee_get		= r8152_get_eee;
6517 		ops->eee_set		= r8152_set_eee;
6518 		ops->in_nway		= rtl8152_in_nway;
6519 		ops->hw_phy_cfg		= r8152b_hw_phy_cfg;
6520 		ops->autosuspend_en	= rtl_runtime_suspend_enable;
6521 		tp->rx_buf_sz		= 16 * 1024;
6522 		tp->eee_en		= true;
6523 		tp->eee_adv		= MDIO_EEE_100TX;
6524 		break;
6525 
6526 	case RTL_VER_03:
6527 	case RTL_VER_04:
6528 	case RTL_VER_05:
6529 	case RTL_VER_06:
6530 		ops->init		= r8153_init;
6531 		ops->enable		= rtl8153_enable;
6532 		ops->disable		= rtl8153_disable;
6533 		ops->up			= rtl8153_up;
6534 		ops->down		= rtl8153_down;
6535 		ops->unload		= rtl8153_unload;
6536 		ops->eee_get		= r8153_get_eee;
6537 		ops->eee_set		= r8152_set_eee;
6538 		ops->in_nway		= rtl8153_in_nway;
6539 		ops->hw_phy_cfg		= r8153_hw_phy_cfg;
6540 		ops->autosuspend_en	= rtl8153_runtime_enable;
6541 		tp->rx_buf_sz		= 32 * 1024;
6542 		tp->eee_en		= true;
6543 		tp->eee_adv		= MDIO_EEE_1000T | MDIO_EEE_100TX;
6544 		break;
6545 
6546 	case RTL_VER_08:
6547 	case RTL_VER_09:
6548 		ops->init		= r8153b_init;
6549 		ops->enable		= rtl8153_enable;
6550 		ops->disable		= rtl8153_disable;
6551 		ops->up			= rtl8153b_up;
6552 		ops->down		= rtl8153b_down;
6553 		ops->unload		= rtl8153b_unload;
6554 		ops->eee_get		= r8153_get_eee;
6555 		ops->eee_set		= r8152_set_eee;
6556 		ops->in_nway		= rtl8153_in_nway;
6557 		ops->hw_phy_cfg		= r8153b_hw_phy_cfg;
6558 		ops->autosuspend_en	= rtl8153b_runtime_enable;
6559 		tp->rx_buf_sz		= 32 * 1024;
6560 		tp->eee_en		= true;
6561 		tp->eee_adv		= MDIO_EEE_1000T | MDIO_EEE_100TX;
6562 		break;
6563 
6564 	default:
6565 		ret = -ENODEV;
6566 		netif_err(tp, probe, tp->netdev, "Unknown Device\n");
6567 		break;
6568 	}
6569 
6570 	return ret;
6571 }
6572 
6573 #define FIRMWARE_8153A_2	"rtl_nic/rtl8153a-2.fw"
6574 #define FIRMWARE_8153A_3	"rtl_nic/rtl8153a-3.fw"
6575 #define FIRMWARE_8153A_4	"rtl_nic/rtl8153a-4.fw"
6576 #define FIRMWARE_8153B_2	"rtl_nic/rtl8153b-2.fw"
6577 
6578 MODULE_FIRMWARE(FIRMWARE_8153A_2);
6579 MODULE_FIRMWARE(FIRMWARE_8153A_3);
6580 MODULE_FIRMWARE(FIRMWARE_8153A_4);
6581 MODULE_FIRMWARE(FIRMWARE_8153B_2);
6582 
6583 static int rtl_fw_init(struct r8152 *tp)
6584 {
6585 	struct rtl_fw *rtl_fw = &tp->rtl_fw;
6586 
6587 	switch (tp->version) {
6588 	case RTL_VER_04:
6589 		rtl_fw->fw_name		= FIRMWARE_8153A_2;
6590 		rtl_fw->pre_fw		= r8153_pre_firmware_1;
6591 		rtl_fw->post_fw		= r8153_post_firmware_1;
6592 		break;
6593 	case RTL_VER_05:
6594 		rtl_fw->fw_name		= FIRMWARE_8153A_3;
6595 		rtl_fw->pre_fw		= r8153_pre_firmware_2;
6596 		rtl_fw->post_fw		= r8153_post_firmware_2;
6597 		break;
6598 	case RTL_VER_06:
6599 		rtl_fw->fw_name		= FIRMWARE_8153A_4;
6600 		rtl_fw->post_fw		= r8153_post_firmware_3;
6601 		break;
6602 	case RTL_VER_09:
6603 		rtl_fw->fw_name		= FIRMWARE_8153B_2;
6604 		rtl_fw->pre_fw		= r8153b_pre_firmware_1;
6605 		rtl_fw->post_fw		= r8153b_post_firmware_1;
6606 		break;
6607 	default:
6608 		break;
6609 	}
6610 
6611 	return 0;
6612 }
6613 
6614 static u8 rtl_get_version(struct usb_interface *intf)
6615 {
6616 	struct usb_device *udev = interface_to_usbdev(intf);
6617 	u32 ocp_data = 0;
6618 	__le32 *tmp;
6619 	u8 version;
6620 	int ret;
6621 
6622 	tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
6623 	if (!tmp)
6624 		return 0;
6625 
6626 	ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
6627 			      RTL8152_REQ_GET_REGS, RTL8152_REQT_READ,
6628 			      PLA_TCR0, MCU_TYPE_PLA, tmp, sizeof(*tmp), 500);
6629 	if (ret > 0)
6630 		ocp_data = (__le32_to_cpu(*tmp) >> 16) & VERSION_MASK;
6631 
6632 	kfree(tmp);
6633 
6634 	switch (ocp_data) {
6635 	case 0x4c00:
6636 		version = RTL_VER_01;
6637 		break;
6638 	case 0x4c10:
6639 		version = RTL_VER_02;
6640 		break;
6641 	case 0x5c00:
6642 		version = RTL_VER_03;
6643 		break;
6644 	case 0x5c10:
6645 		version = RTL_VER_04;
6646 		break;
6647 	case 0x5c20:
6648 		version = RTL_VER_05;
6649 		break;
6650 	case 0x5c30:
6651 		version = RTL_VER_06;
6652 		break;
6653 	case 0x4800:
6654 		version = RTL_VER_07;
6655 		break;
6656 	case 0x6000:
6657 		version = RTL_VER_08;
6658 		break;
6659 	case 0x6010:
6660 		version = RTL_VER_09;
6661 		break;
6662 	default:
6663 		version = RTL_VER_UNKNOWN;
6664 		dev_info(&intf->dev, "Unknown version 0x%04x\n", ocp_data);
6665 		break;
6666 	}
6667 
6668 	dev_dbg(&intf->dev, "Detected version 0x%04x\n", version);
6669 
6670 	return version;
6671 }
6672 
6673 static int rtl8152_probe(struct usb_interface *intf,
6674 			 const struct usb_device_id *id)
6675 {
6676 	struct usb_device *udev = interface_to_usbdev(intf);
6677 	u8 version = rtl_get_version(intf);
6678 	struct r8152 *tp;
6679 	struct net_device *netdev;
6680 	int ret;
6681 
6682 	if (version == RTL_VER_UNKNOWN)
6683 		return -ENODEV;
6684 
6685 	if (udev->actconfig->desc.bConfigurationValue != 1) {
6686 		usb_driver_set_configuration(udev, 1);
6687 		return -ENODEV;
6688 	}
6689 
6690 	if (intf->cur_altsetting->desc.bNumEndpoints < 3)
6691 		return -ENODEV;
6692 
6693 	usb_reset_device(udev);
6694 	netdev = alloc_etherdev(sizeof(struct r8152));
6695 	if (!netdev) {
6696 		dev_err(&intf->dev, "Out of memory\n");
6697 		return -ENOMEM;
6698 	}
6699 
6700 	SET_NETDEV_DEV(netdev, &intf->dev);
6701 	tp = netdev_priv(netdev);
6702 	tp->msg_enable = 0x7FFF;
6703 
6704 	tp->udev = udev;
6705 	tp->netdev = netdev;
6706 	tp->intf = intf;
6707 	tp->version = version;
6708 
6709 	switch (version) {
6710 	case RTL_VER_01:
6711 	case RTL_VER_02:
6712 	case RTL_VER_07:
6713 		tp->mii.supports_gmii = 0;
6714 		break;
6715 	default:
6716 		tp->mii.supports_gmii = 1;
6717 		break;
6718 	}
6719 
6720 	ret = rtl_ops_init(tp);
6721 	if (ret)
6722 		goto out;
6723 
6724 	rtl_fw_init(tp);
6725 
6726 	mutex_init(&tp->control);
6727 	INIT_DELAYED_WORK(&tp->schedule, rtl_work_func_t);
6728 	INIT_DELAYED_WORK(&tp->hw_phy_work, rtl_hw_phy_work_func_t);
6729 	tasklet_init(&tp->tx_tl, bottom_half, (unsigned long)tp);
6730 	tasklet_disable(&tp->tx_tl);
6731 
6732 	netdev->netdev_ops = &rtl8152_netdev_ops;
6733 	netdev->watchdog_timeo = RTL8152_TX_TIMEOUT;
6734 
6735 	netdev->features |= NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
6736 			    NETIF_F_TSO | NETIF_F_FRAGLIST | NETIF_F_IPV6_CSUM |
6737 			    NETIF_F_TSO6 | NETIF_F_HW_VLAN_CTAG_RX |
6738 			    NETIF_F_HW_VLAN_CTAG_TX;
6739 	netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
6740 			      NETIF_F_TSO | NETIF_F_FRAGLIST |
6741 			      NETIF_F_IPV6_CSUM | NETIF_F_TSO6 |
6742 			      NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX;
6743 	netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6744 				NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
6745 				NETIF_F_IPV6_CSUM | NETIF_F_TSO6;
6746 
6747 	if (tp->version == RTL_VER_01) {
6748 		netdev->features &= ~NETIF_F_RXCSUM;
6749 		netdev->hw_features &= ~NETIF_F_RXCSUM;
6750 	}
6751 
6752 	if (le16_to_cpu(udev->descriptor.idVendor) == VENDOR_ID_LENOVO) {
6753 		switch (le16_to_cpu(udev->descriptor.idProduct)) {
6754 		case DEVICE_ID_THINKPAD_THUNDERBOLT3_DOCK_GEN2:
6755 		case DEVICE_ID_THINKPAD_USB_C_DOCK_GEN2:
6756 			set_bit(LENOVO_MACPASSTHRU, &tp->flags);
6757 		}
6758 	}
6759 
6760 	if (le16_to_cpu(udev->descriptor.bcdDevice) == 0x3011 && udev->serial &&
6761 	    (!strcmp(udev->serial, "000001000000") ||
6762 	     !strcmp(udev->serial, "000002000000"))) {
6763 		dev_info(&udev->dev, "Dell TB16 Dock, disable RX aggregation");
6764 		set_bit(DELL_TB_RX_AGG_BUG, &tp->flags);
6765 	}
6766 
6767 	netdev->ethtool_ops = &ops;
6768 	netif_set_gso_max_size(netdev, RTL_LIMITED_TSO_SIZE);
6769 
6770 	/* MTU range: 68 - 1500 or 9194 */
6771 	netdev->min_mtu = ETH_MIN_MTU;
6772 	switch (tp->version) {
6773 	case RTL_VER_01:
6774 	case RTL_VER_02:
6775 		netdev->max_mtu = ETH_DATA_LEN;
6776 		break;
6777 	default:
6778 		netdev->max_mtu = RTL8153_MAX_MTU;
6779 		break;
6780 	}
6781 
6782 	tp->mii.dev = netdev;
6783 	tp->mii.mdio_read = read_mii_word;
6784 	tp->mii.mdio_write = write_mii_word;
6785 	tp->mii.phy_id_mask = 0x3f;
6786 	tp->mii.reg_num_mask = 0x1f;
6787 	tp->mii.phy_id = R8152_PHY_ID;
6788 
6789 	tp->autoneg = AUTONEG_ENABLE;
6790 	tp->speed = SPEED_100;
6791 	tp->advertising = RTL_ADVERTISED_10_HALF | RTL_ADVERTISED_10_FULL |
6792 			  RTL_ADVERTISED_100_HALF | RTL_ADVERTISED_100_FULL;
6793 	if (tp->mii.supports_gmii) {
6794 		tp->speed = SPEED_1000;
6795 		tp->advertising |= RTL_ADVERTISED_1000_FULL;
6796 	}
6797 	tp->duplex = DUPLEX_FULL;
6798 
6799 	tp->rx_copybreak = RTL8152_RXFG_HEADSZ;
6800 	tp->rx_pending = 10 * RTL8152_MAX_RX;
6801 
6802 	intf->needs_remote_wakeup = 1;
6803 
6804 	if (!rtl_can_wakeup(tp))
6805 		__rtl_set_wol(tp, 0);
6806 	else
6807 		tp->saved_wolopts = __rtl_get_wol(tp);
6808 
6809 	tp->rtl_ops.init(tp);
6810 #if IS_BUILTIN(CONFIG_USB_RTL8152)
6811 	/* Retry in case request_firmware() is not ready yet. */
6812 	tp->rtl_fw.retry = true;
6813 #endif
6814 	queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0);
6815 	set_ethernet_addr(tp);
6816 
6817 	usb_set_intfdata(intf, tp);
6818 	netif_napi_add(netdev, &tp->napi, r8152_poll, RTL8152_NAPI_WEIGHT);
6819 
6820 	ret = register_netdev(netdev);
6821 	if (ret != 0) {
6822 		netif_err(tp, probe, netdev, "couldn't register the device\n");
6823 		goto out1;
6824 	}
6825 
6826 	if (tp->saved_wolopts)
6827 		device_set_wakeup_enable(&udev->dev, true);
6828 	else
6829 		device_set_wakeup_enable(&udev->dev, false);
6830 
6831 	netif_info(tp, probe, netdev, "%s\n", DRIVER_VERSION);
6832 
6833 	return 0;
6834 
6835 out1:
6836 	tasklet_kill(&tp->tx_tl);
6837 	usb_set_intfdata(intf, NULL);
6838 out:
6839 	free_netdev(netdev);
6840 	return ret;
6841 }
6842 
6843 static void rtl8152_disconnect(struct usb_interface *intf)
6844 {
6845 	struct r8152 *tp = usb_get_intfdata(intf);
6846 
6847 	usb_set_intfdata(intf, NULL);
6848 	if (tp) {
6849 		rtl_set_unplug(tp);
6850 
6851 		unregister_netdev(tp->netdev);
6852 		tasklet_kill(&tp->tx_tl);
6853 		cancel_delayed_work_sync(&tp->hw_phy_work);
6854 		tp->rtl_ops.unload(tp);
6855 		rtl8152_release_firmware(tp);
6856 		free_netdev(tp->netdev);
6857 	}
6858 }
6859 
6860 #define REALTEK_USB_DEVICE(vend, prod)	\
6861 	.match_flags = USB_DEVICE_ID_MATCH_DEVICE | \
6862 		       USB_DEVICE_ID_MATCH_INT_CLASS, \
6863 	.idVendor = (vend), \
6864 	.idProduct = (prod), \
6865 	.bInterfaceClass = USB_CLASS_VENDOR_SPEC \
6866 }, \
6867 { \
6868 	.match_flags = USB_DEVICE_ID_MATCH_INT_INFO | \
6869 		       USB_DEVICE_ID_MATCH_DEVICE, \
6870 	.idVendor = (vend), \
6871 	.idProduct = (prod), \
6872 	.bInterfaceClass = USB_CLASS_COMM, \
6873 	.bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \
6874 	.bInterfaceProtocol = USB_CDC_PROTO_NONE
6875 
6876 /* table of devices that work with this driver */
6877 static const struct usb_device_id rtl8152_table[] = {
6878 	{REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8050)},
6879 	{REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8152)},
6880 	{REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8153)},
6881 	{REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07ab)},
6882 	{REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07c6)},
6883 	{REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101)},
6884 	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x304f)},
6885 	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x3062)},
6886 	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x3069)},
6887 	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x3082)},
6888 	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x7205)},
6889 	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x720c)},
6890 	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0x7214)},
6891 	{REALTEK_USB_DEVICE(VENDOR_ID_LENOVO,  0xa387)},
6892 	{REALTEK_USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041)},
6893 	{REALTEK_USB_DEVICE(VENDOR_ID_NVIDIA,  0x09ff)},
6894 	{REALTEK_USB_DEVICE(VENDOR_ID_TPLINK,  0x0601)},
6895 	{}
6896 };
6897 
6898 MODULE_DEVICE_TABLE(usb, rtl8152_table);
6899 
6900 static struct usb_driver rtl8152_driver = {
6901 	.name =		MODULENAME,
6902 	.id_table =	rtl8152_table,
6903 	.probe =	rtl8152_probe,
6904 	.disconnect =	rtl8152_disconnect,
6905 	.suspend =	rtl8152_suspend,
6906 	.resume =	rtl8152_resume,
6907 	.reset_resume =	rtl8152_reset_resume,
6908 	.pre_reset =	rtl8152_pre_reset,
6909 	.post_reset =	rtl8152_post_reset,
6910 	.supports_autosuspend = 1,
6911 	.disable_hub_initiated_lpm = 1,
6912 };
6913 
6914 module_usb_driver(rtl8152_driver);
6915 
6916 MODULE_AUTHOR(DRIVER_AUTHOR);
6917 MODULE_DESCRIPTION(DRIVER_DESC);
6918 MODULE_LICENSE("GPL");
6919 MODULE_VERSION(DRIVER_VERSION);
6920