Webserver+3d print
Dependents:
Nucleo
« Back to documentation index
lan9303.h File Reference
LAN9303 Ethernet switch.
More...
Go to the source code of this file.
Functions
error_t lan9303Init (NetInterface *interface)
LAN9303 Ethernet switch initialization.
bool_t lan9303GetLinkState (NetInterface *interface, uint8_t port)
Get link state.
void lan9303Tick (NetInterface *interface)
LAN9303 timer handler.
void lan9303EnableIrq (NetInterface *interface)
Enable interrupts.
void lan9303DisableIrq (NetInterface *interface)
Disable interrupts.
void lan9303EventHandler (NetInterface *interface)
LAN9303 event handler.
void lan9303WritePhyReg (NetInterface *interface, uint8_t port, uint8_t address, uint16_t data)
Write PHY register.
uint16_t lan9303ReadPhyReg (NetInterface *interface, uint8_t port, uint8_t address)
Read PHY register.
void lan9303DumpPhyReg (NetInterface *interface, uint8_t port)
Dump PHY registers for debugging purpose.
void lan9303WriteSmiReg (NetInterface *interface, uint16_t address, uint32_t data)
Write SMI register.
uint32_t lan9303ReadSmiReg (NetInterface *interface, uint16_t address)
Read SMI register.
void lan9303DumpSmiReg (NetInterface *interface)
Dump SMI registers for debugging purpose.
Variables
const PhyDriver lan9303PhyDriver
LAN9303 Ethernet switch driver.
Detailed Description
LAN9303 Ethernet switch.
License
Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved.
This file is part of CycloneTCP Open.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
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.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Author: Oryx Embedded SARL (www.oryx-embedded.com)
Version: 1.7.6
Definition in file lan9303.h .
Function Documentation
void lan9303DisableIrq
(
NetInterface *
interface )
Disable interrupts.
Parameters:
[in] interface Underlying network interface
Definition at line 185 of file lan9303.c .
void lan9303DumpPhyReg
(
NetInterface *
interface ,
uint8_t
port
)
Dump PHY registers for debugging purpose.
Parameters:
[in] interface Underlying network interface
[in] port Port number
Definition at line 278 of file lan9303.c .
void lan9303DumpSmiReg
(
NetInterface *
interface )
Dump SMI registers for debugging purpose.
Parameters:
[in] interface Underlying network interface
Definition at line 369 of file lan9303.c .
void lan9303EnableIrq
(
NetInterface *
interface )
Enable interrupts.
Parameters:
[in] interface Underlying network interface
Definition at line 175 of file lan9303.c .
void lan9303EventHandler
(
NetInterface *
interface )
LAN9303 event handler.
Parameters:
[in] interface Underlying network interface
Definition at line 195 of file lan9303.c .
bool_t lan9303GetLinkState
(
NetInterface *
interface ,
uint8_t
port
)
Get link state.
Parameters:
[in] interface Underlying network interface
[in] port Port number
Returns: Link state
Definition at line 91 of file lan9303.c .
error_t lan9303Init
(
NetInterface *
interface )
LAN9303 Ethernet switch initialization.
Parameters:
[in] interface Underlying network interface
Returns: Error code
Definition at line 58 of file lan9303.c .
uint16_t lan9303ReadPhyReg
(
NetInterface *
interface ,
uint8_t
port ,
uint8_t
address
)
Read PHY register.
Parameters:
[in] interface Underlying network interface
[in] port Port number
[in] address PHY register address
Returns: Register value
Definition at line 264 of file lan9303.c .
uint32_t lan9303ReadSmiReg
(
NetInterface *
interface ,
uint16_t
address
)
Read SMI register.
Parameters:
[in] interface Underlying network interface
[in] address System register address
Returns: Register value
Definition at line 335 of file lan9303.c .
void lan9303Tick
(
NetInterface *
interface )
LAN9303 timer handler.
Parameters:
[in] interface Underlying network interface
Definition at line 125 of file lan9303.c .
void lan9303WritePhyReg
(
NetInterface *
interface ,
uint8_t
port ,
uint8_t
address ,
uint16_t
data
)
Write PHY register.
Parameters:
[in] interface Underlying network interface
[in] port Port number
[in] address PHY register address
[in] data Register value
Definition at line 248 of file lan9303.c .
void lan9303WriteSmiReg
(
NetInterface *
interface ,
uint16_t
address ,
uint32_t
data
)
Write SMI register.
Parameters:
[in] interface Underlying network interface
[in] address System register address
[in] data Register value
Definition at line 302 of file lan9303.c .
Variable Documentation
LAN9303 Ethernet switch driver.
Definition at line 42 of file lan9303.c .