Webserver+3d print

Dependents:   Nucleo

Committer:
Sergunb
Date:
Sat Feb 04 18:15:49 2017 +0000
Revision:
0:8918a71cdbe9
nothing else

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Sergunb 0:8918a71cdbe9 1 /**
Sergunb 0:8918a71cdbe9 2 * @file ksz8061.h
Sergunb 0:8918a71cdbe9 3 * @brief KSZ8061 Ethernet PHY transceiver
Sergunb 0:8918a71cdbe9 4 *
Sergunb 0:8918a71cdbe9 5 * @section License
Sergunb 0:8918a71cdbe9 6 *
Sergunb 0:8918a71cdbe9 7 * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved.
Sergunb 0:8918a71cdbe9 8 *
Sergunb 0:8918a71cdbe9 9 * This file is part of CycloneTCP Open.
Sergunb 0:8918a71cdbe9 10 *
Sergunb 0:8918a71cdbe9 11 * This program is free software; you can redistribute it and/or
Sergunb 0:8918a71cdbe9 12 * modify it under the terms of the GNU General Public License
Sergunb 0:8918a71cdbe9 13 * as published by the Free Software Foundation; either version 2
Sergunb 0:8918a71cdbe9 14 * of the License, or (at your option) any later version.
Sergunb 0:8918a71cdbe9 15 *
Sergunb 0:8918a71cdbe9 16 * This program is distributed in the hope that it will be useful,
Sergunb 0:8918a71cdbe9 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Sergunb 0:8918a71cdbe9 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Sergunb 0:8918a71cdbe9 19 * GNU General Public License for more details.
Sergunb 0:8918a71cdbe9 20 *
Sergunb 0:8918a71cdbe9 21 * You should have received a copy of the GNU General Public License
Sergunb 0:8918a71cdbe9 22 * along with this program; if not, write to the Free Software Foundation,
Sergunb 0:8918a71cdbe9 23 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Sergunb 0:8918a71cdbe9 24 *
Sergunb 0:8918a71cdbe9 25 * @author Oryx Embedded SARL (www.oryx-embedded.com)
Sergunb 0:8918a71cdbe9 26 * @version 1.7.6
Sergunb 0:8918a71cdbe9 27 **/
Sergunb 0:8918a71cdbe9 28
Sergunb 0:8918a71cdbe9 29 #ifndef _KSZ8061_H
Sergunb 0:8918a71cdbe9 30 #define _KSZ8061_H
Sergunb 0:8918a71cdbe9 31
Sergunb 0:8918a71cdbe9 32 //Dependencies
Sergunb 0:8918a71cdbe9 33 #include "core/nic.h"
Sergunb 0:8918a71cdbe9 34
Sergunb 0:8918a71cdbe9 35 //PHY address
Sergunb 0:8918a71cdbe9 36 #ifndef KSZ8061_PHY_ADDR
Sergunb 0:8918a71cdbe9 37 #define KSZ8061_PHY_ADDR 1
Sergunb 0:8918a71cdbe9 38 #elif (KSZ8061_PHY_ADDR < 0 || KSZ8061_PHY_ADDR > 31)
Sergunb 0:8918a71cdbe9 39 #error KSZ8061_PHY_ADDR parameter is not valid
Sergunb 0:8918a71cdbe9 40 #endif
Sergunb 0:8918a71cdbe9 41
Sergunb 0:8918a71cdbe9 42 //KSZ8061 registers
Sergunb 0:8918a71cdbe9 43 #define KSZ8061_PHY_REG_BMCR 0x00
Sergunb 0:8918a71cdbe9 44 #define KSZ8061_PHY_REG_BMSR 0x01
Sergunb 0:8918a71cdbe9 45 #define KSZ8061_PHY_REG_PHYIDR1 0x02
Sergunb 0:8918a71cdbe9 46 #define KSZ8061_PHY_REG_PHYIDR2 0x03
Sergunb 0:8918a71cdbe9 47 #define KSZ8061_PHY_REG_ANAR 0x04
Sergunb 0:8918a71cdbe9 48 #define KSZ8061_PHY_REG_ANLPAR 0x05
Sergunb 0:8918a71cdbe9 49 #define KSZ8061_PHY_REG_ANER 0x06
Sergunb 0:8918a71cdbe9 50 #define KSZ8061_PHY_REG_ANNPTR 0x07
Sergunb 0:8918a71cdbe9 51 #define KSZ8061_PHY_REG_LPNPAR 0x08
Sergunb 0:8918a71cdbe9 52 #define KSZ8061_PHY_REG_AFECON1 0x11
Sergunb 0:8918a71cdbe9 53 #define KSZ8061_PHY_REG_RXERCTR 0x15
Sergunb 0:8918a71cdbe9 54 #define KSZ8061_PHY_REG_OMSO 0x16
Sergunb 0:8918a71cdbe9 55 #define KSZ8061_PHY_REG_OMSS 0x17
Sergunb 0:8918a71cdbe9 56 #define KSZ8061_PHY_REG_EXCON 0x18
Sergunb 0:8918a71cdbe9 57 #define KSZ8061_PHY_REG_ICSR 0x1B
Sergunb 0:8918a71cdbe9 58 #define KSZ8061_PHY_REG_LINKMDCS 0x1D
Sergunb 0:8918a71cdbe9 59 #define KSZ8061_PHY_REG_PHYCON1 0x1E
Sergunb 0:8918a71cdbe9 60 #define KSZ8061_PHY_REG_PHYCON2 0x1F
Sergunb 0:8918a71cdbe9 61
Sergunb 0:8918a71cdbe9 62 //BMCR register
Sergunb 0:8918a71cdbe9 63 #define BMCR_RESET (1 << 15)
Sergunb 0:8918a71cdbe9 64 #define BMCR_LOOPBACK (1 << 14)
Sergunb 0:8918a71cdbe9 65 #define BMCR_SPEED_SEL (1 << 13)
Sergunb 0:8918a71cdbe9 66 #define BMCR_AN_EN (1 << 12)
Sergunb 0:8918a71cdbe9 67 #define BMCR_POWER_DOWN (1 << 11)
Sergunb 0:8918a71cdbe9 68 #define BMCR_ISOLATE (1 << 10)
Sergunb 0:8918a71cdbe9 69 #define BMCR_RESTART_AN (1 << 9)
Sergunb 0:8918a71cdbe9 70 #define BMCR_DUPLEX_MODE (1 << 8)
Sergunb 0:8918a71cdbe9 71 #define BMCR_COL_TEST (1 << 7)
Sergunb 0:8918a71cdbe9 72
Sergunb 0:8918a71cdbe9 73 //BMSR register
Sergunb 0:8918a71cdbe9 74 #define BMSR_100BT4 (1 << 15)
Sergunb 0:8918a71cdbe9 75 #define BMSR_100BTX_FD (1 << 14)
Sergunb 0:8918a71cdbe9 76 #define BMSR_100BTX (1 << 13)
Sergunb 0:8918a71cdbe9 77 #define BMSR_10BT_FD (1 << 12)
Sergunb 0:8918a71cdbe9 78 #define BMSR_10BT (1 << 11)
Sergunb 0:8918a71cdbe9 79 #define BMSR_NO_PREAMBLE (1 << 6)
Sergunb 0:8918a71cdbe9 80 #define BMSR_AN_COMPLETE (1 << 5)
Sergunb 0:8918a71cdbe9 81 #define BMSR_REMOTE_FAULT (1 << 4)
Sergunb 0:8918a71cdbe9 82 #define BMSR_AN_ABLE (1 << 3)
Sergunb 0:8918a71cdbe9 83 #define BMSR_LINK_STATUS (1 << 2)
Sergunb 0:8918a71cdbe9 84 #define BMSR_JABBER_DETECT (1 << 1)
Sergunb 0:8918a71cdbe9 85 #define BMSR_EXTENDED_CAP (1 << 0)
Sergunb 0:8918a71cdbe9 86
Sergunb 0:8918a71cdbe9 87 //ANAR register
Sergunb 0:8918a71cdbe9 88 #define ANAR_NEXT_PAGE (1 << 15)
Sergunb 0:8918a71cdbe9 89 #define ANAR_REMOTE_FAULT (1 << 13)
Sergunb 0:8918a71cdbe9 90 #define ANAR_PAUSE1 (1 << 11)
Sergunb 0:8918a71cdbe9 91 #define ANAR_PAUSE0 (1 << 10)
Sergunb 0:8918a71cdbe9 92 #define ANAR_100BT4 (1 << 9)
Sergunb 0:8918a71cdbe9 93 #define ANAR_100BTX_FD (1 << 8)
Sergunb 0:8918a71cdbe9 94 #define ANAR_100BTX (1 << 7)
Sergunb 0:8918a71cdbe9 95 #define ANAR_10BT_FD (1 << 6)
Sergunb 0:8918a71cdbe9 96 #define ANAR_10BT (1 << 5)
Sergunb 0:8918a71cdbe9 97 #define ANAR_SELECTOR4 (1 << 4)
Sergunb 0:8918a71cdbe9 98 #define ANAR_SELECTOR3 (1 << 3)
Sergunb 0:8918a71cdbe9 99 #define ANAR_SELECTOR2 (1 << 2)
Sergunb 0:8918a71cdbe9 100 #define ANAR_SELECTOR1 (1 << 1)
Sergunb 0:8918a71cdbe9 101 #define ANAR_SELECTOR0 (1 << 0)
Sergunb 0:8918a71cdbe9 102
Sergunb 0:8918a71cdbe9 103 //ANLPAR register
Sergunb 0:8918a71cdbe9 104 #define ANLPAR_NEXT_PAGE (1 << 15)
Sergunb 0:8918a71cdbe9 105 #define ANLPAR_LP_ACK (1 << 14)
Sergunb 0:8918a71cdbe9 106 #define ANLPAR_REMOTE_FAULT (1 << 13)
Sergunb 0:8918a71cdbe9 107 #define ANLPAR_PAUSE1 (1 << 11)
Sergunb 0:8918a71cdbe9 108 #define ANLPAR_PAUSE0 (1 << 10)
Sergunb 0:8918a71cdbe9 109 #define ANLPAR_100BT4 (1 << 9)
Sergunb 0:8918a71cdbe9 110 #define ANLPAR_100BTX_FD (1 << 8)
Sergunb 0:8918a71cdbe9 111 #define ANLPAR_100BTX (1 << 7)
Sergunb 0:8918a71cdbe9 112 #define ANLPAR_10BT_FD (1 << 6)
Sergunb 0:8918a71cdbe9 113 #define ANLPAR_10BT (1 << 5)
Sergunb 0:8918a71cdbe9 114 #define ANLPAR_SELECTOR4 (1 << 4)
Sergunb 0:8918a71cdbe9 115 #define ANLPAR_SELECTOR3 (1 << 3)
Sergunb 0:8918a71cdbe9 116 #define ANLPAR_SELECTOR2 (1 << 2)
Sergunb 0:8918a71cdbe9 117 #define ANLPAR_SELECTOR1 (1 << 1)
Sergunb 0:8918a71cdbe9 118 #define ANLPAR_SELECTOR0 (1 << 0)
Sergunb 0:8918a71cdbe9 119
Sergunb 0:8918a71cdbe9 120 //ANER register
Sergunb 0:8918a71cdbe9 121 #define ANER_PAR_DET_FAULT (1 << 4)
Sergunb 0:8918a71cdbe9 122 #define ANER_LP_NEXT_PAGE_ABLE (1 << 3)
Sergunb 0:8918a71cdbe9 123 #define ANER_NEXT_PAGE_ABLE (1 << 2)
Sergunb 0:8918a71cdbe9 124 #define ANER_PAGE_RECEIVED (1 << 1)
Sergunb 0:8918a71cdbe9 125 #define ANER_LP_AN_ABLE (1 << 0)
Sergunb 0:8918a71cdbe9 126
Sergunb 0:8918a71cdbe9 127 //ANNPTR register
Sergunb 0:8918a71cdbe9 128 #define ANNPTR_NEXT_PAGE (1 << 15)
Sergunb 0:8918a71cdbe9 129 #define ANNPTR_MSG_PAGE (1 << 13)
Sergunb 0:8918a71cdbe9 130 #define ANNPTR_ACK2 (1 << 12)
Sergunb 0:8918a71cdbe9 131 #define ANNPTR_TOGGLE (1 << 11)
Sergunb 0:8918a71cdbe9 132 #define ANNPTR_MESSAGE10 (1 << 10)
Sergunb 0:8918a71cdbe9 133 #define ANNPTR_MESSAGE9 (1 << 9)
Sergunb 0:8918a71cdbe9 134 #define ANNPTR_MESSAGE8 (1 << 8)
Sergunb 0:8918a71cdbe9 135 #define ANNPTR_MESSAGE7 (1 << 7)
Sergunb 0:8918a71cdbe9 136 #define ANNPTR_MESSAGE6 (1 << 6)
Sergunb 0:8918a71cdbe9 137 #define ANNPTR_MESSAGE5 (1 << 5)
Sergunb 0:8918a71cdbe9 138 #define ANNPTR_MESSAGE4 (1 << 4)
Sergunb 0:8918a71cdbe9 139 #define ANNPTR_MESSAGE3 (1 << 3)
Sergunb 0:8918a71cdbe9 140 #define ANNPTR_MESSAGE2 (1 << 2)
Sergunb 0:8918a71cdbe9 141 #define ANNPTR_MESSAGE1 (1 << 1)
Sergunb 0:8918a71cdbe9 142 #define ANNPTR_MESSAGE0 (1 << 0)
Sergunb 0:8918a71cdbe9 143
Sergunb 0:8918a71cdbe9 144 //LPNPAR register
Sergunb 0:8918a71cdbe9 145 #define LPNPAR_NEXT_PAGE (1 << 15)
Sergunb 0:8918a71cdbe9 146 #define LPNPAR_ACK (1 << 14)
Sergunb 0:8918a71cdbe9 147 #define LPNPAR_MSG_PAGE (1 << 13)
Sergunb 0:8918a71cdbe9 148 #define LPNPAR_ACK2 (1 << 12)
Sergunb 0:8918a71cdbe9 149 #define LPNPAR_TOGGLE (1 << 11)
Sergunb 0:8918a71cdbe9 150 #define LPNPAR_MESSAGE10 (1 << 10)
Sergunb 0:8918a71cdbe9 151 #define LPNPAR_MESSAGE9 (1 << 9)
Sergunb 0:8918a71cdbe9 152 #define LPNPAR_MESSAGE8 (1 << 8)
Sergunb 0:8918a71cdbe9 153 #define LPNPAR_MESSAGE7 (1 << 7)
Sergunb 0:8918a71cdbe9 154 #define LPNPAR_MESSAGE6 (1 << 6)
Sergunb 0:8918a71cdbe9 155 #define LPNPAR_MESSAGE5 (1 << 5)
Sergunb 0:8918a71cdbe9 156 #define LPNPAR_MESSAGE4 (1 << 4)
Sergunb 0:8918a71cdbe9 157 #define LPNPAR_MESSAGE3 (1 << 3)
Sergunb 0:8918a71cdbe9 158 #define LPNPAR_MESSAGE2 (1 << 2)
Sergunb 0:8918a71cdbe9 159 #define LPNPAR_MESSAGE1 (1 << 1)
Sergunb 0:8918a71cdbe9 160 #define LPNPAR_MESSAGE0 (1 << 0)
Sergunb 0:8918a71cdbe9 161
Sergunb 0:8918a71cdbe9 162 //AFECON1 register
Sergunb 0:8918a71cdbe9 163 #define AFECON1_SLOW_OSC_MODE_EN (1 << 5)
Sergunb 0:8918a71cdbe9 164
Sergunb 0:8918a71cdbe9 165 //OMSO register
Sergunb 0:8918a71cdbe9 166 #define OMSO_BCAST_OFF_OVERRIDE (1 << 9)
Sergunb 0:8918a71cdbe9 167 #define OMSO_MII_BTB_OVERRIDE (1 << 7)
Sergunb 0:8918a71cdbe9 168 #define OMSO_RMII_BTB_OVERRIDE (1 << 6)
Sergunb 0:8918a71cdbe9 169 #define OMSO_NAND_TREE_OVERRIDE (1 << 5)
Sergunb 0:8918a71cdbe9 170 #define OMSO_RMII_OVERRIDE (1 << 1)
Sergunb 0:8918a71cdbe9 171 #define OMSO_MII_OVERRIDE (1 << 0)
Sergunb 0:8918a71cdbe9 172
Sergunb 0:8918a71cdbe9 173 //OMSS register
Sergunb 0:8918a71cdbe9 174 #define OMSS_PHYAD2 (1 << 15)
Sergunb 0:8918a71cdbe9 175 #define OMSS_PHYAD1 (1 << 14)
Sergunb 0:8918a71cdbe9 176 #define OMSS_PHYAD0 (1 << 13)
Sergunb 0:8918a71cdbe9 177 #define OMSS_BCAST_OFF_STATUS (1 << 9)
Sergunb 0:8918a71cdbe9 178 #define OMSS_MII_BTB_STATUS (1 << 7)
Sergunb 0:8918a71cdbe9 179 #define OMSS_RMII_BTB_STATUS (1 << 6)
Sergunb 0:8918a71cdbe9 180 #define OMSS_NAND_TREE_STATUS (1 << 5)
Sergunb 0:8918a71cdbe9 181 #define OMSS_RMII_STATUS (1 << 1)
Sergunb 0:8918a71cdbe9 182 #define OMSS_MII_STATUS (1 << 0)
Sergunb 0:8918a71cdbe9 183
Sergunb 0:8918a71cdbe9 184 //EXCON register
Sergunb 0:8918a71cdbe9 185 #define EXCON_EDPD_DIS (1 << 11)
Sergunb 0:8918a71cdbe9 186 #define EXCON_100BTX_PREAMBLE_RES (1 << 10)
Sergunb 0:8918a71cdbe9 187 #define EXCON_10BT_PREAMBLE_RES (1 << 6)
Sergunb 0:8918a71cdbe9 188
Sergunb 0:8918a71cdbe9 189 //ICSR register
Sergunb 0:8918a71cdbe9 190 #define ICSR_JABBER_IE (1 << 15)
Sergunb 0:8918a71cdbe9 191 #define ICSR_RECEIVE_ERROR_IE (1 << 14)
Sergunb 0:8918a71cdbe9 192 #define ICSR_PAGE_RECEIVED_IE (1 << 13)
Sergunb 0:8918a71cdbe9 193 #define ICSR_PAR_DET_FAULT_IE (1 << 12)
Sergunb 0:8918a71cdbe9 194 #define ICSR_LP_ACK_IE (1 << 11)
Sergunb 0:8918a71cdbe9 195 #define ICSR_LINK_DOWN_IE (1 << 10)
Sergunb 0:8918a71cdbe9 196 #define ICSR_REMOTE_FAULT_IE (1 << 9)
Sergunb 0:8918a71cdbe9 197 #define ICSR_LINK_UP_IE (1 << 8)
Sergunb 0:8918a71cdbe9 198 #define ICSR_JABBER_IF (1 << 7)
Sergunb 0:8918a71cdbe9 199 #define ICSR_RECEIVE_ERROR_IF (1 << 6)
Sergunb 0:8918a71cdbe9 200 #define ICSR_PAGE_RECEIVED_IF (1 << 5)
Sergunb 0:8918a71cdbe9 201 #define ICSR_PAR_DET_FAULT_IF (1 << 4)
Sergunb 0:8918a71cdbe9 202 #define ICSR_LP_ACK_IF (1 << 3)
Sergunb 0:8918a71cdbe9 203 #define ICSR_LINK_DOWN_IF (1 << 2)
Sergunb 0:8918a71cdbe9 204 #define ICSR_REMOTE_FAULT_IF (1 << 1)
Sergunb 0:8918a71cdbe9 205 #define ICSR_LINK_UP_IF (1 << 0)
Sergunb 0:8918a71cdbe9 206
Sergunb 0:8918a71cdbe9 207 //LINKMDCS register
Sergunb 0:8918a71cdbe9 208 #define LINKMDCS_CABLE_DIAG_EN (1 << 15)
Sergunb 0:8918a71cdbe9 209 #define LINKMDCS_CABLE_DIAG_RES1 (1 << 14)
Sergunb 0:8918a71cdbe9 210 #define LINKMDCS_CABLE_DIAG_RES0 (1 << 13)
Sergunb 0:8918a71cdbe9 211 #define LINKMDCS_SHORT_CABLE (1 << 12)
Sergunb 0:8918a71cdbe9 212 #define LINKMDCS_CABLE_FAULT_CNT8 (1 << 8)
Sergunb 0:8918a71cdbe9 213 #define LINKMDCS_CABLE_FAULT_CNT7 (1 << 7)
Sergunb 0:8918a71cdbe9 214 #define LINKMDCS_CABLE_FAULT_CNT6 (1 << 6)
Sergunb 0:8918a71cdbe9 215 #define LINKMDCS_CABLE_FAULT_CNT5 (1 << 5)
Sergunb 0:8918a71cdbe9 216 #define LINKMDCS_CABLE_FAULT_CNT4 (1 << 4)
Sergunb 0:8918a71cdbe9 217 #define LINKMDCS_CABLE_FAULT_CNT3 (1 << 3)
Sergunb 0:8918a71cdbe9 218 #define LINKMDCS_CABLE_FAULT_CNT2 (1 << 2)
Sergunb 0:8918a71cdbe9 219 #define LINKMDCS_CABLE_FAULT_CNT1 (1 << 1)
Sergunb 0:8918a71cdbe9 220 #define LINKMDCS_CABLE_FAULT_CNT0 (1 << 0)
Sergunb 0:8918a71cdbe9 221
Sergunb 0:8918a71cdbe9 222 //PHYCON1 register
Sergunb 0:8918a71cdbe9 223 #define PHYCON1_PAUSE_EN (1 << 9)
Sergunb 0:8918a71cdbe9 224 #define PHYCON1_LINK_STATUS (1 << 8)
Sergunb 0:8918a71cdbe9 225 #define PHYCON1_POL_STATUS (1 << 7)
Sergunb 0:8918a71cdbe9 226 #define PHYCON1_MDIX_STATE (1 << 5)
Sergunb 0:8918a71cdbe9 227 #define PHYCON1_ENERGY_DETECT (1 << 4)
Sergunb 0:8918a71cdbe9 228 #define PHYCON1_ISOLATE (1 << 3)
Sergunb 0:8918a71cdbe9 229 #define PHYCON1_OP_MODE2 (1 << 2)
Sergunb 0:8918a71cdbe9 230 #define PHYCON1_OP_MODE1 (1 << 1)
Sergunb 0:8918a71cdbe9 231 #define PHYCON1_OP_MODE0 (1 << 0)
Sergunb 0:8918a71cdbe9 232
Sergunb 0:8918a71cdbe9 233 //Operation mode indication
Sergunb 0:8918a71cdbe9 234 #define PHYCON1_OP_MODE_MASK (7 << 0)
Sergunb 0:8918a71cdbe9 235 #define PHYCON1_OP_MODE_AN (0 << 0)
Sergunb 0:8918a71cdbe9 236 #define PHYCON1_OP_MODE_10BT (1 << 0)
Sergunb 0:8918a71cdbe9 237 #define PHYCON1_OP_MODE_100BTX (2 << 0)
Sergunb 0:8918a71cdbe9 238 #define PHYCON1_OP_MODE_10BT_FD (5 << 0)
Sergunb 0:8918a71cdbe9 239 #define PHYCON1_OP_MODE_100BTX_FD (6 << 0)
Sergunb 0:8918a71cdbe9 240
Sergunb 0:8918a71cdbe9 241 //PHYCON2 register
Sergunb 0:8918a71cdbe9 242 #define PHYCON2_HP_MDIX (1 << 15)
Sergunb 0:8918a71cdbe9 243 #define PHYCON2_MDIX_SEL (1 << 14)
Sergunb 0:8918a71cdbe9 244 #define PHYCON2_PAIR_SWAP_DIS (1 << 13)
Sergunb 0:8918a71cdbe9 245 #define PHYCON2_FORCE_LINK (1 << 11)
Sergunb 0:8918a71cdbe9 246 #define PHYCON2_POWER_SAVING (1 << 10)
Sergunb 0:8918a71cdbe9 247 #define PHYCON2_INT_LEVEL (1 << 9)
Sergunb 0:8918a71cdbe9 248 #define PHYCON2_JABBER_EN (1 << 8)
Sergunb 0:8918a71cdbe9 249 #define PHYCON2_RMII_REF_CLK_SEL (1 << 7)
Sergunb 0:8918a71cdbe9 250 #define PHYCON2_LED_MODE1 (1 << 5)
Sergunb 0:8918a71cdbe9 251 #define PHYCON2_LED_MODE0 (1 << 4)
Sergunb 0:8918a71cdbe9 252 #define PHYCON2_TX_DIS (1 << 3)
Sergunb 0:8918a71cdbe9 253 #define PHYCON2_REMOTE_LOOPBACK (1 << 2)
Sergunb 0:8918a71cdbe9 254 #define PHYCON2_SQE_TEST_EN (1 << 1)
Sergunb 0:8918a71cdbe9 255 #define PHYCON2_SCRAMBLER_DIS (1 << 0)
Sergunb 0:8918a71cdbe9 256
Sergunb 0:8918a71cdbe9 257 //KSZ8061 Ethernet PHY driver
Sergunb 0:8918a71cdbe9 258 extern const PhyDriver ksz8061PhyDriver;
Sergunb 0:8918a71cdbe9 259
Sergunb 0:8918a71cdbe9 260 //KSZ8061 related functions
Sergunb 0:8918a71cdbe9 261 error_t ksz8061Init(NetInterface *interface);
Sergunb 0:8918a71cdbe9 262
Sergunb 0:8918a71cdbe9 263 void ksz8061Tick(NetInterface *interface);
Sergunb 0:8918a71cdbe9 264
Sergunb 0:8918a71cdbe9 265 void ksz8061EnableIrq(NetInterface *interface);
Sergunb 0:8918a71cdbe9 266 void ksz8061DisableIrq(NetInterface *interface);
Sergunb 0:8918a71cdbe9 267
Sergunb 0:8918a71cdbe9 268 void ksz8061EventHandler(NetInterface *interface);
Sergunb 0:8918a71cdbe9 269
Sergunb 0:8918a71cdbe9 270 void ksz8061WritePhyReg(NetInterface *interface, uint8_t address, uint16_t data);
Sergunb 0:8918a71cdbe9 271 uint16_t ksz8061ReadPhyReg(NetInterface *interface, uint8_t address);
Sergunb 0:8918a71cdbe9 272
Sergunb 0:8918a71cdbe9 273 void ksz8061DumpPhyReg(NetInterface *interface);
Sergunb 0:8918a71cdbe9 274
Sergunb 0:8918a71cdbe9 275 #endif
Sergunb 0:8918a71cdbe9 276