ksz8031_driver.h
Go to the documentation of this file.
1 /**
2  * @file ksz8031_driver.h
3  * @brief KSZ8031 Ethernet PHY driver
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneTCP Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.4.0
29  **/
30 
31 #ifndef _KSZ8031_DRIVER_H
32 #define _KSZ8031_DRIVER_H
33 
34 //Dependencies
35 #include "core/nic.h"
36 
37 //PHY address
38 #ifndef KSZ8031_PHY_ADDR
39  #define KSZ8031_PHY_ADDR 0
40 #elif (KSZ8031_PHY_ADDR < 0 || KSZ8031_PHY_ADDR > 31)
41  #error KSZ8031_PHY_ADDR parameter is not valid
42 #endif
43 
44 //KSZ8031 PHY registers
45 #define KSZ8031_BMCR 0x00
46 #define KSZ8031_BMSR 0x01
47 #define KSZ8031_PHYID1 0x02
48 #define KSZ8031_PHYID2 0x03
49 #define KSZ8031_ANAR 0x04
50 #define KSZ8031_ANLPAR 0x05
51 #define KSZ8031_ANER 0x06
52 #define KSZ8031_ANNPR 0x07
53 #define KSZ8031_ANLPNPR 0x08
54 #define KSZ8031_DRCON 0x10
55 #define KSZ8031_AFECON1 0x11
56 #define KSZ8031_RXERCTR 0x15
57 #define KSZ8031_OMSO 0x16
58 #define KSZ8031_OMSS 0x17
59 #define KSZ8031_EXCON 0x18
60 #define KSZ8031_ICSR 0x1B
61 #define KSZ8031_LINKMD 0x1D
62 #define KSZ8031_PHYCON1 0x1E
63 #define KSZ8031_PHYCON2 0x1F
64 
65 //Basic Control register
66 #define KSZ8031_BMCR_RESET 0x8000
67 #define KSZ8031_BMCR_LOOPBACK 0x4000
68 #define KSZ8031_BMCR_SPEED_SEL 0x2000
69 #define KSZ8031_BMCR_AN_EN 0x1000
70 #define KSZ8031_BMCR_POWER_DOWN 0x0800
71 #define KSZ8031_BMCR_ISOLATE 0x0400
72 #define KSZ8031_BMCR_RESTART_AN 0x0200
73 #define KSZ8031_BMCR_DUPLEX_MODE 0x0100
74 #define KSZ8031_BMCR_COL_TEST 0x0080
75 
76 //Basic Status register
77 #define KSZ8031_BMSR_100BT4 0x8000
78 #define KSZ8031_BMSR_100BTX_FD 0x4000
79 #define KSZ8031_BMSR_100BTX_HD 0x2000
80 #define KSZ8031_BMSR_10BT_FD 0x1000
81 #define KSZ8031_BMSR_10BT_HD 0x0800
82 #define KSZ8031_BMSR_NO_PREAMBLE 0x0040
83 #define KSZ8031_BMSR_AN_COMPLETE 0x0020
84 #define KSZ8031_BMSR_REMOTE_FAULT 0x0010
85 #define KSZ8031_BMSR_AN_CAPABLE 0x0008
86 #define KSZ8031_BMSR_LINK_STATUS 0x0004
87 #define KSZ8031_BMSR_JABBER_DETECT 0x0002
88 #define KSZ8031_BMSR_EXTENDED_CAPABLE 0x0001
89 
90 //PHY Identifier 1 register
91 #define KSZ8031_PHYID1_PHY_ID_MSB 0xFFFF
92 #define KSZ8031_PHYID1_PHY_ID_MSB_DEFAULT 0x0022
93 
94 //PHY Identifier 2 register
95 #define KSZ8031_PHYID2_PHY_ID_LSB 0xFC00
96 #define KSZ8031_PHYID2_PHY_ID_LSB_DEFAULT 0x1400
97 #define KSZ8031_PHYID2_MODEL_NUM 0x03F0
98 #define KSZ8031_PHYID2_MODEL_NUM_DEFAULT 0x0150
99 #define KSZ8031_PHYID2_REVISION_NUM 0x000F
100 
101 //Auto-Negotiation Advertisement register
102 #define KSZ8031_ANAR_NEXT_PAGE 0x8000
103 #define KSZ8031_ANAR_REMOTE_FAULT 0x2000
104 #define KSZ8031_ANAR_PAUSE 0x0C00
105 #define KSZ8031_ANAR_100BT4 0x0200
106 #define KSZ8031_ANAR_100BTX_FD 0x0100
107 #define KSZ8031_ANAR_100BTX_HD 0x0080
108 #define KSZ8031_ANAR_10BT_FD 0x0040
109 #define KSZ8031_ANAR_10BT_HD 0x0020
110 #define KSZ8031_ANAR_SELECTOR 0x001F
111 #define KSZ8031_ANAR_SELECTOR_DEFAULT 0x0001
112 
113 //Auto-Negotiation Link Partner Ability register
114 #define KSZ8031_ANLPAR_NEXT_PAGE 0x8000
115 #define KSZ8031_ANLPAR_ACK 0x4000
116 #define KSZ8031_ANLPAR_REMOTE_FAULT 0x2000
117 #define KSZ8031_ANLPAR_PAUSE 0x0C00
118 #define KSZ8031_ANLPAR_100BT4 0x0200
119 #define KSZ8031_ANLPAR_100BTX_FD 0x0100
120 #define KSZ8031_ANLPAR_100BTX_HD 0x0080
121 #define KSZ8031_ANLPAR_10BT_FD 0x0040
122 #define KSZ8031_ANLPAR_10BT_HD 0x0020
123 #define KSZ8031_ANLPAR_SELECTOR 0x001F
124 #define KSZ8031_ANLPAR_SELECTOR_DEFAULT 0x0001
125 
126 //Auto-Negotiation Expansion register
127 #define KSZ8031_ANER_PAR_DETECT_FAULT 0x0010
128 #define KSZ8031_ANER_LP_NEXT_PAGE_ABLE 0x0008
129 #define KSZ8031_ANER_NEXT_PAGE_ABLE 0x0004
130 #define KSZ8031_ANER_PAGE_RECEIVED 0x0002
131 #define KSZ8031_ANER_LP_AN_ABLE 0x0001
132 
133 //Auto-Negotiation Next Page register
134 #define KSZ8031_ANNPR_NEXT_PAGE 0x8000
135 #define KSZ8031_ANNPR_MSG_PAGE 0x2000
136 #define KSZ8031_ANNPR_ACK2 0x1000
137 #define KSZ8031_ANNPR_TOGGLE 0x0800
138 #define KSZ8031_ANNPR_MESSAGE 0x07FF
139 
140 //Link Partner Next Page Ability register
141 #define KSZ8031_ANLPNPR_NEXT_PAGE 0x8000
142 #define KSZ8031_ANLPNPR_ACK 0x4000
143 #define KSZ8031_ANLPNPR_MSG_PAGE 0x2000
144 #define KSZ8031_ANLPNPR_ACK2 0x1000
145 #define KSZ8031_ANLPNPR_TOGGLE 0x0800
146 #define KSZ8031_ANLPNPR_MESSAGE 0x07FF
147 
148 //Digital Reserved Control register
149 #define KSZ8031_DRCON_PLL_OFF 0x0010
150 
151 //AFE Control 1 register
152 #define KSZ8031_AFECON1_SLOW_OSC_MODE_EN 0x0020
153 
154 //Operation Mode Strap Override register
155 #define KSZ8031_OMSO_RMII_BTB_OVERRIDE 0x0040
156 #define KSZ8031_OMSO_NAND_TREE_OVERRIDE 0x0020
157 #define KSZ8031_OMSO_RMII_OVERRIDE 0x0002
158 
159 //Operation Mode Strap Status register
160 #define KSZ8031_OMSS_PHYAD 0xE000
161 #define KSZ8031_OMSS_RMII_STRAP_STATUS 0x0002
162 
163 //Expanded Control register
164 #define KSZ8031_EXCON_EDPD_DIS 0x0800
165 
166 //Interrupt Control/Status register
167 #define KSZ8031_ICSR_JABBER_IE 0x8000
168 #define KSZ8031_ICSR_RECEIVE_ERROR_IE 0x4000
169 #define KSZ8031_ICSR_PAGE_RECEIVED_IE 0x2000
170 #define KSZ8031_ICSR_PAR_DETECT_FAULT_IE 0x1000
171 #define KSZ8031_ICSR_LP_ACK_IE 0x0800
172 #define KSZ8031_ICSR_LINK_DOWN_IE 0x0400
173 #define KSZ8031_ICSR_REMOTE_FAULT_IE 0x0200
174 #define KSZ8031_ICSR_LINK_UP_IE 0x0100
175 #define KSZ8031_ICSR_JABBER_IF 0x0080
176 #define KSZ8031_ICSR_RECEIVE_ERROR_IF 0x0040
177 #define KSZ8031_ICSR_PAGE_RECEIVED_IF 0x0020
178 #define KSZ8031_ICSR_PAR_DETECT_FAULT_IF 0x0010
179 #define KSZ8031_ICSR_LP_ACK_IF 0x0008
180 #define KSZ8031_ICSR_LINK_DOWN_IF 0x0004
181 #define KSZ8031_ICSR_REMOTE_FAULT_IF 0x0002
182 #define KSZ8031_ICSR_LINK_UP_IF 0x0001
183 
184 //LinkMD Control/Status register
185 #define KSZ8031_LINKMD_TEST_EN 0x8000
186 #define KSZ8031_LINKMD_RESULT 0x6000
187 #define KSZ8031_LINKMD_SHORT 0x1000
188 #define KSZ8031_LINKMD_FAULT_COUNT 0x01FF
189 
190 //PHY Control 1 register
191 #define KSZ8031_PHYCON1_PAUSE_EN 0x0200
192 #define KSZ8031_PHYCON1_LINK_STATUS 0x0100
193 #define KSZ8031_PHYCON1_POL_STATUS 0x0080
194 #define KSZ8031_PHYCON1_MDIX_STATE 0x0020
195 #define KSZ8031_PHYCON1_ENERGY_DETECT 0x0010
196 #define KSZ8031_PHYCON1_PHY_ISOLATE 0x0008
197 #define KSZ8031_PHYCON1_OP_MODE 0x0007
198 #define KSZ8031_PHYCON1_OP_MODE_AN 0x0000
199 #define KSZ8031_PHYCON1_OP_MODE_10BT_HD 0x0001
200 #define KSZ8031_PHYCON1_OP_MODE_100BTX_HD 0x0002
201 #define KSZ8031_PHYCON1_OP_MODE_10BT_FD 0x0005
202 #define KSZ8031_PHYCON1_OP_MODE_100BTX_FD 0x0006
203 
204 //PHY Control 2 register
205 #define KSZ8031_PHYCON2_HP_MDIX 0x8000
206 #define KSZ8031_PHYCON2_MDIX_SEL 0x4000
207 #define KSZ8031_PHYCON2_PAIR_SWAP_DIS 0x2000
208 #define KSZ8031_PHYCON2_FORCE_LINK 0x0800
209 #define KSZ8031_PHYCON2_POWER_SAVING 0x0400
210 #define KSZ8031_PHYCON2_INT_LEVEL 0x0200
211 #define KSZ8031_PHYCON2_JABBER_EN 0x0100
212 #define KSZ8031_PHYCON2_RMII_REF_CLK_SEL 0x0080
213 #define KSZ8031_PHYCON2_LED_MODE 0x0030
214 #define KSZ8031_PHYCON2_TX_DIS 0x0008
215 #define KSZ8031_PHYCON2_REMOTE_LOOPBACK 0x0004
216 #define KSZ8031_PHYCON2_DATA_SCRAMBLING_DIS 0x0001
217 
218 //C++ guard
219 #ifdef __cplusplus
220 extern "C" {
221 #endif
222 
223 //KSZ8031 Ethernet PHY driver
224 extern const PhyDriver ksz8031PhyDriver;
225 
226 //KSZ8031 related functions
227 error_t ksz8031Init(NetInterface *interface);
228 void ksz8031InitHook(NetInterface *interface);
229 
230 void ksz8031Tick(NetInterface *interface);
231 
232 void ksz8031EnableIrq(NetInterface *interface);
233 void ksz8031DisableIrq(NetInterface *interface);
234 
235 void ksz8031EventHandler(NetInterface *interface);
236 
237 void ksz8031WritePhyReg(NetInterface *interface, uint8_t address,
238  uint16_t data);
239 
240 uint16_t ksz8031ReadPhyReg(NetInterface *interface, uint8_t address);
241 
242 void ksz8031DumpPhyReg(NetInterface *interface);
243 
244 //C++ guard
245 #ifdef __cplusplus
246 }
247 #endif
248 
249 #endif
error_t
Error codes.
Definition: error.h:43
uint8_t data[]
Definition: ethernet.h:222
Ipv6Addr address[]
Definition: ipv6.h:316
void ksz8031Tick(NetInterface *interface)
KSZ8031 timer handler.
void ksz8031DisableIrq(NetInterface *interface)
Disable interrupts.
void ksz8031WritePhyReg(NetInterface *interface, uint8_t address, uint16_t data)
Write PHY register.
void ksz8031EnableIrq(NetInterface *interface)
Enable interrupts.
void ksz8031EventHandler(NetInterface *interface)
KSZ8031 event handler.
error_t ksz8031Init(NetInterface *interface)
KSZ8031 PHY transceiver initialization.
uint16_t ksz8031ReadPhyReg(NetInterface *interface, uint8_t address)
Read PHY register.
void ksz8031DumpPhyReg(NetInterface *interface)
Dump PHY registers for debugging purpose.
void ksz8031InitHook(NetInterface *interface)
KSZ8031 custom configuration.
const PhyDriver ksz8031PhyDriver
KSZ8031 Ethernet PHY driver.
#define NetInterface
Definition: net.h:36
Network interface controller abstraction layer.
Ethernet PHY driver.
Definition: nic.h:308