no-OS
|
Header file for MDIO interface driver. More...
Go to the source code of this file.
Classes | |
struct | no_os_mdio_init_param |
Parameters for an MDIO slave. More... | |
struct | no_os_mdio_desc |
MDIO device descriptor created with no_os_mdio_init(). More... | |
struct | no_os_mdio_ops |
Collection of MDIO ops that point to specific implementations. More... | |
Macros | |
#define | NO_OS_MDIO_C22_REGS 32 |
#define | NO_OS_MDIO_C45_START 0 |
#define | NO_OS_MDIO_C22_START 1 |
#define | NO_OS_MDIO_START_MASK NO_OS_GENMASK(31, 30) |
#define | NO_OS_MDIO_OP_ADDRESS 0 |
#define | NO_OS_MDIO_OP_WRITE 1 |
#define | NO_OS_MDIO_OP_READ 2 |
#define | NO_OS_MDIO_OP_MASK NO_OS_GENMASK(29, 28) |
#define | NO_OS_MDIO_PHYADDR_MASK NO_OS_GENMASK(27, 23) |
#define | NO_OS_MDIO_REGADDR_MASK NO_OS_GENMASK(22, 18) |
#define | NO_OS_MDIO_TURNAROUND 2 |
#define | NO_OS_MDIO_TURNAROUND_MASK NO_OS_GENMASK(17, 16) |
#define | NO_OS_MDIO_DATA_MASK NO_OS_GENMASK(15, 0) |
#define | NO_OS_MDIO_C45_DEVADDR_MASK NO_OS_GENMASK(20, 16) |
#define | NO_OS_MDIO_C45_ADDR(dev, reg) (NO_OS_BIT(31) | no_os_field_prep(NO_OS_MDIO_C45_DEVADDR_MASK, dev) | (uint16_t)reg) |
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... | |
Header file for MDIO interface driver.
Copyright 2023(c) Analog Devices, Inc.
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, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 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.
#define NO_OS_MDIO_C22_REGS 32 |
#define NO_OS_MDIO_C22_START 1 |
#define NO_OS_MDIO_C45_ADDR | ( | dev, | |
reg | |||
) | (NO_OS_BIT(31) | no_os_field_prep(NO_OS_MDIO_C45_DEVADDR_MASK, dev) | (uint16_t)reg) |
#define NO_OS_MDIO_C45_DEVADDR_MASK NO_OS_GENMASK(20, 16) |
#define NO_OS_MDIO_C45_START 0 |
#define NO_OS_MDIO_DATA_MASK NO_OS_GENMASK(15, 0) |
#define NO_OS_MDIO_OP_ADDRESS 0 |
#define NO_OS_MDIO_OP_MASK NO_OS_GENMASK(29, 28) |
#define NO_OS_MDIO_OP_READ 2 |
#define NO_OS_MDIO_OP_WRITE 1 |
#define NO_OS_MDIO_PHYADDR_MASK NO_OS_GENMASK(27, 23) |
#define NO_OS_MDIO_REGADDR_MASK NO_OS_GENMASK(22, 18) |
#define NO_OS_MDIO_START_MASK NO_OS_GENMASK(31, 30) |
#define NO_OS_MDIO_TURNAROUND 2 |
#define NO_OS_MDIO_TURNAROUND_MASK NO_OS_GENMASK(17, 16) |
int no_os_mdio_init | ( | struct no_os_mdio_desc ** | desc, |
struct no_os_mdio_init_param * | param | ||
) |
Initialize the MDIO interface.
desc | - The MDIO descriptor. |
param | - MDIO parameters. |
int no_os_mdio_read | ( | struct no_os_mdio_desc * | desc, |
uint32_t | reg, | ||
uint16_t * | val | ||
) |
Read a register using MDIO.
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. |
int no_os_mdio_remove | ( | struct no_os_mdio_desc * | desc | ) |
Free the resources allocated by no_os_mdio_init().
desc | - The MDIO descriptor. |
int no_os_mdio_write | ( | struct no_os_mdio_desc * | desc, |
uint32_t | reg, | ||
uint16_t | val | ||
) |
Write a register using MDIO.
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. |