no-OS
Functions
no_os_mdio.c File Reference

Source file for MDIO interface driver. More...

#include <errno.h>
#include "no_os_mdio.h"
Include dependency graph for no_os_mdio.c:

Functions

int no_os_mdio_init (struct no_os_mdio_desc **desc, struct no_os_mdio_init_param *param)
 Initialize the MDIO interface. More...
 
int no_os_mdio_remove (struct no_os_mdio_desc *desc)
 Free the resources allocated by no_os_mdio_init(). More...
 
int no_os_mdio_write (struct no_os_mdio_desc *desc, uint32_t reg, uint16_t val)
 Write a register using MDIO. More...
 
int no_os_mdio_read (struct no_os_mdio_desc *desc, uint32_t reg, uint16_t *val)
 Read a register using MDIO. More...
 

Detailed Description

Source file for MDIO interface driver.

Author
Darius Berghe (dariu.nosp@m.s.be.nosp@m.rghe@.nosp@m.anal.nosp@m.og.co.nosp@m.m)

Copyright 2023(c) Analog Devices, Inc.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Function Documentation

◆ no_os_mdio_init()

int no_os_mdio_init ( struct no_os_mdio_desc **  desc,
struct no_os_mdio_init_param param 
)

Initialize the MDIO interface.

Parameters
desc- The MDIO descriptor.
param- MDIO parameters.
Returns
0 in case of success, error code otherwise.
Here is the caller graph for this function:

◆ no_os_mdio_read()

int no_os_mdio_read ( struct no_os_mdio_desc desc,
uint32_t  reg,
uint16_t *  val 
)

Read a register using MDIO.

Parameters
desc- The MDIO descriptor.
reg- Register address. For clause 45 reg is constructed using NO_OS_MDIO_C45_ADDR macro. It is otherwise the plain clause 22 address (0...31).
val- Value read from register.
Returns
0 in case of success, error code otherwise.
Here is the caller graph for this function:

◆ no_os_mdio_remove()

int no_os_mdio_remove ( struct no_os_mdio_desc desc)

Free the resources allocated by no_os_mdio_init().

Parameters
desc- The MDIO descriptor.
Returns
0 in case of success, error code otherwise.
Here is the caller graph for this function:

◆ no_os_mdio_write()

int no_os_mdio_write ( struct no_os_mdio_desc desc,
uint32_t  reg,
uint16_t  val 
)

Write a register using MDIO.

Parameters
desc- The MDIO descriptor.
reg- Register address. For clause 45 reg is constructed using NO_OS_MDIO_C45_ADDR macro. It is otherwise the plain clause 22 address (0...31).
val- Value to write into register.
Returns
0 in case of success, error code otherwise.
Here is the caller graph for this function: