1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
| /******************************************************************************
| *
| * Copyright(c) 2017 - 2019 Realtek Corporation. All rights reserved.
| *
| * This program is free software; you can redistribute it and/or modify it
| * under the terms of version 2 of the GNU General Public License as
| * published by the Free Software Foundation.
| *
| * This program is distributed in the hope that it will be useful, but WITHOUT
| * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
| * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
| * more details.
| *
| ******************************************************************************/
|
| #include "../../halmac_type.h"
| #if HALMAC_USB_SUPPORT
| #include "halmac_usb_8822c.h"
| #endif
| #if HALMAC_PCIE_SUPPORT
| #include "halmac_pcie_8822c.h"
| #endif
|
| /**
| * ============ip sel item list============
| * HALMAC_IP_INTF_PHY
| * USB2 : usb2 phy, 1byte value
| * USB3 : usb3 phy, 2byte value
| * PCIE1 : pcie gen1 mdio, 2byte value
| * PCIE2 : pcie gen2 mdio, 2byte value
| * HALMAC_IP_SEL_MAC
| * USB2, USB3, PCIE1, PCIE2 : mac ip, 1byte value
| * HALMAC_IP_PCIE_DBI
| * USB2 USB3 : none
| * PCIE1, PCIE2 : pcie dbi, 1byte value
| */
|
| #if HALMAC_8822C_SUPPORT
|
| struct halmac_intf_phy_para usb2_phy_param_8822c[] = {
| /* {offset, value, ip sel, cut mask, platform mask} */
| {0xE1, 0x0F,
| HALMAC_IP_INTF_PHY,
| HALMAC_INTF_PHY_CUT_ALL,
| HALMAC_INTF_PHY_PLATFORM_DHC},
| {0xFFFF, 0x00,
| HALMAC_IP_INTF_PHY,
| HALMAC_INTF_PHY_CUT_ALL,
| HALMAC_INTF_PHY_PLATFORM_FOR_ALL},
| };
|
| struct halmac_intf_phy_para usb3_phy_param_8822c[] = {
| /* {offset, value, ip sel, cut mask, platform mask} */
| {0xFFFF, 0x0000,
| HALMAC_IP_INTF_PHY,
| HALMAC_INTF_PHY_CUT_ALL,
| HALMAC_INTF_PHY_PLATFORM_FOR_ALL},
| };
|
| struct halmac_intf_phy_para pcie_gen1_phy_param_8822c[] = {
| /* {offset, value, ip sel, cut mask, platform mask} */
| {0x001B, 0x00A1,
| HALMAC_IP_INTF_PHY,
| HALMAC_INTF_PHY_CUT_ALL,
| HALMAC_INTF_PHY_PLATFORM_FOR_ALL},
| {0xFFFF, 0x0000,
| HALMAC_IP_INTF_PHY,
| HALMAC_INTF_PHY_CUT_ALL,
| HALMAC_INTF_PHY_PLATFORM_FOR_ALL},
| };
|
| struct halmac_intf_phy_para pcie_gen2_phy_param_8822c[] = {
| /* {offset, value, ip sel, cut mask, platform mask} */
| {0xFFFF, 0x0000,
| HALMAC_IP_INTF_PHY,
| HALMAC_INTF_PHY_CUT_ALL,
| HALMAC_INTF_PHY_PLATFORM_FOR_ALL},
| };
|
| #endif /* HALMAC_8822C_SUPPORT*/
|
|