Add MDIO PHY driver for NS2 ARM64 platform.

Obtained from:         Semihalf
Authored by:           Kornel Duleba <mindal@semihalf.com>
Approved by:           wma
Differential Revision: https://reviews.freebsd.org/D21335
This commit is contained in:
Wojciech Macek 2020-04-06 05:48:58 +00:00
parent a870eaa408
commit 36c1a37655
5 changed files with 830 additions and 0 deletions

View File

@ -0,0 +1,399 @@
/*-
* Copyright (c) 2019 Juniper Networks, Inc.
* Copyright (c) 2019 Semihalf.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/rman.h>
#include <sys/systm.h>
#include <dev/fdt/simplebus.h>
#include <dev/ofw/ofw_bus_subr.h>
#include <dev/ofw/ofw_bus.h>
#include <machine/bus.h>
#include <machine/resource.h>
#include "mdio_if.h"
#define REG_BASE_RID 0
#define MDIO_RATE_ADJ_EXT_OFFSET 0x000
#define MDIO_RATE_ADJ_INT_OFFSET 0x004
#define MDIO_RATE_ADJ_DIVIDENT_SHIFT 16
#define MDIO_SCAN_CTRL_OFFSET 0x008
#define MDIO_SCAN_CTRL_OVRIDE_EXT_MSTR 28
#define MDIO_PARAM_OFFSET 0x23c
#define MDIO_PARAM_MIIM_CYCLE 29
#define MDIO_PARAM_INTERNAL_SEL 25
#define MDIO_PARAM_BUS_ID 22
#define MDIO_PARAM_C45_SEL 21
#define MDIO_PARAM_PHY_ID 16
#define MDIO_PARAM_PHY_DATA 0
#define MDIO_READ_OFFSET 0x240
#define MDIO_READ_DATA_MASK 0xffff
#define MDIO_ADDR_OFFSET 0x244
#define MDIO_CTRL_OFFSET 0x248
#define MDIO_CTRL_WRITE_OP 0x1
#define MDIO_CTRL_READ_OP 0x2
#define MDIO_STAT_OFFSET 0x24c
#define MDIO_STAT_DONE 1
#define BUS_MAX_ADDR 32
#define EXT_BUS_START_ADDR 16
#define MDIO_REG_ADDR_SPACE_SIZE 0x250
#define MDIO_OPERATING_FREQUENCY 11000000
#define MDIO_RATE_ADJ_DIVIDENT 1
#define MII_ADDR_C45 (1<<30)
static int brcm_iproc_mdio_probe(device_t);
static int brcm_iproc_mdio_attach(device_t);
static int brcm_iproc_mdio_detach(device_t);
/* OFW bus interface */
struct brcm_mdio_ofw_devinfo {
struct ofw_bus_devinfo di_dinfo;
struct resource_list di_rl;
};
struct brcm_iproc_mdio_softc {
struct simplebus_softc sbus;
device_t dev;
struct resource * reg_base;
uint32_t clock_rate;
};
MALLOC_DEFINE(M_BRCM_IPROC_MDIO, "Broadcom IPROC MDIO",
"Broadcom IPROC MDIO dynamic memory");
static int brcm_iproc_config(struct brcm_iproc_mdio_softc*);
static const struct ofw_bus_devinfo *
brcm_iproc_mdio_get_devinfo(device_t, device_t);
static int brcm_iproc_mdio_write_mux(device_t, int, int, int, int);
static int brcm_iproc_mdio_read_mux(device_t, int, int, int);
static device_method_t brcm_iproc_mdio_fdt_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, brcm_iproc_mdio_probe),
DEVMETHOD(device_attach, brcm_iproc_mdio_attach),
DEVMETHOD(device_detach, brcm_iproc_mdio_detach),
/* Bus interface */
DEVMETHOD(bus_alloc_resource, bus_generic_alloc_resource),
DEVMETHOD(bus_release_resource, bus_generic_release_resource),
DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
/* ofw_bus interface */
DEVMETHOD(ofw_bus_get_devinfo, brcm_iproc_mdio_get_devinfo),
DEVMETHOD(ofw_bus_get_compat, ofw_bus_gen_get_compat),
DEVMETHOD(ofw_bus_get_model, ofw_bus_gen_get_model),
DEVMETHOD(ofw_bus_get_name, ofw_bus_gen_get_name),
DEVMETHOD(ofw_bus_get_node, ofw_bus_gen_get_node),
DEVMETHOD(ofw_bus_get_type, ofw_bus_gen_get_type),
/* MDIO interface */
DEVMETHOD(mdio_writereg_mux, brcm_iproc_mdio_write_mux),
DEVMETHOD(mdio_readreg_mux, brcm_iproc_mdio_read_mux),
/* End */
DEVMETHOD_END
};
DEFINE_CLASS_0(brcm_iproc_mdio, brcm_iproc_mdio_driver,
brcm_iproc_mdio_fdt_methods, sizeof(struct brcm_iproc_mdio_softc));
static devclass_t brcm_iproc_mdio_fdt_devclass;
EARLY_DRIVER_MODULE(brcm_iproc_mdio, ofwbus, brcm_iproc_mdio_driver,
brcm_iproc_mdio_fdt_devclass, 0, 0, BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
EARLY_DRIVER_MODULE(brcm_iproc_mdio, simplebus, brcm_iproc_mdio_driver,
brcm_iproc_mdio_fdt_devclass, 0, 0, BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
static struct ofw_compat_data mdio_compat_data[] = {
{"brcm,mdio-mux-iproc", true},
{NULL, false}
};
static int
brcm_iproc_switch(struct brcm_iproc_mdio_softc *sc, int child)
{
uint32_t param, bus_id;
uint32_t bus_dir;
/* select bus and its properties */
bus_dir = (child < EXT_BUS_START_ADDR);
bus_id = bus_dir ? child : (child - EXT_BUS_START_ADDR);
param = (bus_dir ? 1 : 0) << MDIO_PARAM_INTERNAL_SEL;
param |= (bus_id << MDIO_PARAM_BUS_ID);
bus_write_4(sc->reg_base, MDIO_PARAM_OFFSET, param);
return (0);
}
static int
iproc_mdio_wait_for_idle(struct brcm_iproc_mdio_softc *sc, uint32_t result)
{
unsigned int timeout = 1000; /* loop for 1s */
uint32_t val;
do {
val = bus_read_4(sc->reg_base, MDIO_STAT_OFFSET);
if ((val & MDIO_STAT_DONE) == result)
return (0);
pause("BRCM MDIO SLEEP", 1000 / hz);
} while (timeout--);
return (ETIMEDOUT);
}
/* start_miim_ops- Program and start MDIO transaction over mdio bus.
* @base: Base address
* @phyid: phyid of the selected bus.
* @reg: register offset to be read/written.
* @val :0 if read op else value to be written in @reg;
* @op: Operation that need to be carried out.
* MDIO_CTRL_READ_OP: Read transaction.
* MDIO_CTRL_WRITE_OP: Write transaction.
*
* Return value: Successful Read operation returns read reg values and write
* operation returns 0. Failure operation returns negative error code.
*/
static int
brcm_iproc_mdio_op(struct brcm_iproc_mdio_softc *sc,
uint16_t phyid, uint32_t reg, uint32_t val, uint32_t op)
{
uint32_t param;
int ret;
bus_write_4(sc->reg_base, MDIO_CTRL_OFFSET, 0);
bus_read_4(sc->reg_base, MDIO_STAT_OFFSET);
ret = iproc_mdio_wait_for_idle(sc, 0);
if (ret)
goto err;
param = bus_read_4(sc->reg_base, MDIO_PARAM_OFFSET);
param |= phyid << MDIO_PARAM_PHY_ID;
param |= val << MDIO_PARAM_PHY_DATA;
if (reg & MII_ADDR_C45)
param |= (1 << MDIO_PARAM_C45_SEL);
bus_write_4(sc->reg_base, MDIO_PARAM_OFFSET, param);
bus_write_4(sc->reg_base, MDIO_ADDR_OFFSET, reg);
bus_write_4(sc->reg_base, MDIO_CTRL_OFFSET, op);
ret = iproc_mdio_wait_for_idle(sc, 1);
if (ret)
goto err;
if (op == MDIO_CTRL_READ_OP)
ret = bus_read_4(sc->reg_base, MDIO_READ_OFFSET) & MDIO_READ_DATA_MASK;
err:
return ret;
}
static int
brcm_iproc_config(struct brcm_iproc_mdio_softc *sc)
{
uint32_t divisor;
uint32_t val;
/* Disable external mdio master access */
val = bus_read_4(sc->reg_base, MDIO_SCAN_CTRL_OFFSET);
val |= 1 << MDIO_SCAN_CTRL_OVRIDE_EXT_MSTR;
bus_write_4(sc->reg_base, MDIO_SCAN_CTRL_OFFSET, val);
if (sc->clock_rate) {
/* use rate adjust regs to derrive the mdio's operating
* frequency from the specified core clock
*/
divisor = sc->clock_rate / MDIO_OPERATING_FREQUENCY;
divisor = divisor / (MDIO_RATE_ADJ_DIVIDENT + 1);
val = divisor;
val |= MDIO_RATE_ADJ_DIVIDENT << MDIO_RATE_ADJ_DIVIDENT_SHIFT;
bus_write_4(sc->reg_base, MDIO_RATE_ADJ_EXT_OFFSET, val);
bus_write_4(sc->reg_base, MDIO_RATE_ADJ_INT_OFFSET, val);
}
return (0);
}
static int
brcm_iproc_mdio_write_mux(device_t dev, int bus, int phy, int reg, int val)
{
struct brcm_iproc_mdio_softc *sc;
sc = device_get_softc(dev);
if (brcm_iproc_switch(sc, bus) != 0) {
device_printf(dev, "Failed to set BUS MUX\n");
return (EINVAL);
}
return (brcm_iproc_mdio_op(sc, phy, reg, val, MDIO_CTRL_WRITE_OP));
}
static int
brcm_iproc_mdio_read_mux(device_t dev, int bus, int phy, int reg)
{
struct brcm_iproc_mdio_softc *sc;
sc = device_get_softc(dev);
if (brcm_iproc_switch(sc, bus) != 0) {
device_printf(dev, "Failed to set BUS MUX\n");
return (EINVAL);
}
return (brcm_iproc_mdio_op(sc, phy, reg, 0, MDIO_CTRL_READ_OP));
}
static int
brcm_iproc_mdio_probe(device_t dev)
{
if (!ofw_bus_status_okay(dev))
return (ENXIO);
if (!ofw_bus_search_compatible(dev, mdio_compat_data)->ocd_data)
return (ENXIO);
device_set_desc(dev, "Broadcom MDIO MUX driver");
return (BUS_PROBE_DEFAULT);
}
static int
brcm_iproc_mdio_attach(device_t dev)
{
struct brcm_iproc_mdio_softc *sc;
phandle_t node, parent;
struct brcm_mdio_ofw_devinfo *di;
int rid;
device_t child;
sc = device_get_softc(dev);
sc->dev = dev;
/* Allocate memory resources */
rid = REG_BASE_RID;
sc->reg_base = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
RF_ACTIVE);
if (sc->reg_base == NULL) {
device_printf(dev, "Could not allocate memory\n");
return (ENXIO);
}
/* Configure MDIO controlled */
if (brcm_iproc_config(sc) < 0) {
device_printf(dev, "Unable to initialize IPROC MDIO\n");
goto error;
}
parent = ofw_bus_get_node(dev);
simplebus_init(dev, parent);
/* Iterate through all bus subordinates */
for (node = OF_child(parent); node > 0; node = OF_peer(node)) {
/* Allocate and populate devinfo. */
di = malloc(sizeof(*di), M_BRCM_IPROC_MDIO, M_WAITOK | M_ZERO);
if (ofw_bus_gen_setup_devinfo(&di->di_dinfo, node) != 0) {
free(di, M_BRCM_IPROC_MDIO);
continue;
}
/* Initialize and populate resource list. */
resource_list_init(&di->di_rl);
ofw_bus_reg_to_rl(dev, node, sc->sbus.acells, sc->sbus.scells,
&di->di_rl);
ofw_bus_intr_to_rl(dev, node, &di->di_rl, NULL);
/* Add newbus device for this FDT node */
child = device_add_child(dev, NULL, -1);
if (child == NULL) {
printf("Failed to add child\n");
resource_list_free(&di->di_rl);
ofw_bus_gen_destroy_devinfo(&di->di_dinfo);
free(di, M_BRCM_IPROC_MDIO);
continue;
}
device_set_ivars(child, di);
}
/*
* Register device to this node/xref.
* Thanks to that we will be able to retrieve device_t structure
* while holding only node reference acquired from FDT.
*/
node = ofw_bus_get_node(dev);
OF_device_register_xref(OF_xref_from_node(node), dev);
return (bus_generic_attach(dev));
error:
brcm_iproc_mdio_detach(dev);
return (ENXIO);
}
static const struct ofw_bus_devinfo *
brcm_iproc_mdio_get_devinfo(device_t bus __unused, device_t child)
{
struct brcm_mdio_ofw_devinfo *di;
di = device_get_ivars(child);
return (&di->di_dinfo);
}
static int
brcm_iproc_mdio_detach(device_t dev)
{
struct brcm_iproc_mdio_softc *sc;
sc = device_get_softc(dev);
if (sc->reg_base != NULL) {
bus_release_resource(dev, SYS_RES_MEMORY, REG_BASE_RID,
sc->reg_base);
}
return (0);
}

View File

@ -0,0 +1,234 @@
/*-
* Copyright (c) 2019 Juniper Networks, Inc.
* Copyright (c) 2019 Semihalf.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/rman.h>
#include <sys/systm.h>
#include <dev/fdt/simplebus.h>
#include <dev/ofw/ofw_bus_subr.h>
#include <dev/ofw/ofw_bus.h>
#include <machine/bus.h>
#include <machine/resource.h>
#include "mdio_if.h"
MALLOC_DEFINE(M_BRCM_IPROC_NEXUS, "Broadcom IPROC MDIO NEXUS",
"Broadcom IPROC MDIO NEXUS dynamic memory");
struct brcm_mdionexus_softc {
struct simplebus_softc simplebus_sc;
uint32_t mux_id;
};
/* OFW bus interface */
struct brcm_mdionexus_ofw_devinfo {
struct ofw_bus_devinfo di_dinfo;
struct resource_list di_rl;
};
static device_probe_t brcm_mdionexus_fdt_probe;
static device_attach_t brcm_mdionexus_fdt_attach;
static const struct ofw_bus_devinfo * brcm_mdionexus_ofw_get_devinfo(device_t,
device_t);
static int brcm_mdionexus_mdio_readreg(device_t, int, int);
static int brcm_mdionexus_mdio_writereg(device_t, int, int, int);
static device_method_t brcm_mdionexus_fdt_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, brcm_mdionexus_fdt_probe),
DEVMETHOD(device_attach, brcm_mdionexus_fdt_attach),
/* Bus interface */
DEVMETHOD(bus_alloc_resource, bus_generic_alloc_resource),
DEVMETHOD(bus_release_resource, bus_generic_release_resource),
DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
/* ofw_bus interface */
DEVMETHOD(ofw_bus_get_devinfo, brcm_mdionexus_ofw_get_devinfo),
DEVMETHOD(ofw_bus_get_compat, ofw_bus_gen_get_compat),
DEVMETHOD(ofw_bus_get_model, ofw_bus_gen_get_model),
DEVMETHOD(ofw_bus_get_name, ofw_bus_gen_get_name),
DEVMETHOD(ofw_bus_get_node, ofw_bus_gen_get_node),
DEVMETHOD(ofw_bus_get_type, ofw_bus_gen_get_type),
/* MDIO interface */
/* MDIO interface */
DEVMETHOD(mdio_readreg, brcm_mdionexus_mdio_readreg),
DEVMETHOD(mdio_writereg, brcm_mdionexus_mdio_writereg),
DEVMETHOD_END
};
DEFINE_CLASS_0(brcm_mdionexus, brcm_mdionexus_fdt_driver, brcm_mdionexus_fdt_methods,
sizeof(struct brcm_mdionexus_softc));
static devclass_t brcm_mdionexus_fdt_devclass;
static driver_t brcm_mdionexus_driver = {
"brcm_mdionexus",
brcm_mdionexus_fdt_methods,
sizeof(struct brcm_mdionexus_softc)
};
EARLY_DRIVER_MODULE(brcm_mdionexus, brcm_iproc_mdio, brcm_mdionexus_driver,
brcm_mdionexus_fdt_devclass, NULL, NULL, BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
static int brcm_mdionexus_ofw_bus_attach(device_t);
static int
brcm_mdionexus_mdio_readreg(device_t dev, int phy, int reg)
{
struct brcm_mdionexus_softc *sc;
sc = device_get_softc(dev);
return (MDIO_READREG_MUX(device_get_parent(dev),
sc->mux_id, phy, reg));
}
static int
brcm_mdionexus_mdio_writereg(device_t dev, int phy, int reg, int val)
{
struct brcm_mdionexus_softc *sc;
sc = device_get_softc(dev);
return (MDIO_WRITEREG_MUX(device_get_parent(dev),
sc->mux_id, phy, reg, val));
}
static __inline void
get_addr_size_cells(phandle_t node, pcell_t *addr_cells, pcell_t *size_cells)
{
*addr_cells = 2;
/* Find address cells if present */
OF_getencprop(node, "#address-cells", addr_cells, sizeof(*addr_cells));
*size_cells = 2;
/* Find size cells if present */
OF_getencprop(node, "#size-cells", size_cells, sizeof(*size_cells));
}
static int
brcm_mdionexus_fdt_probe(device_t dev)
{
if (!ofw_bus_status_okay(dev))
return (ENXIO);
device_set_desc(dev, "Broadcom MDIO nexus");
return (BUS_PROBE_SPECIFIC);
}
static int
brcm_mdionexus_fdt_attach(device_t dev)
{
struct brcm_mdionexus_softc *sc;
int err;
pcell_t addr_cells, size_cells, buf[2];
phandle_t node;
sc = device_get_softc(dev);
node = ofw_bus_get_node(dev);
get_addr_size_cells(node, &addr_cells, &size_cells);
if ((addr_cells != 1) || (size_cells != 0)) {
device_printf(dev, "Only addr_cells=1 and size_cells=0 are supported\n");
return (EINVAL);
}
if (OF_getencprop(node, "reg", buf, sizeof(pcell_t)) < 0)
return (ENXIO);
sc->mux_id = buf[0];
err = brcm_mdionexus_ofw_bus_attach(dev);
if (err != 0)
return (err);
return (bus_generic_attach(dev));
}
static const struct ofw_bus_devinfo *
brcm_mdionexus_ofw_get_devinfo(device_t bus __unused, device_t child)
{
struct brcm_mdionexus_ofw_devinfo *di;
di = device_get_ivars(child);
return (&di->di_dinfo);
}
static int
brcm_mdionexus_ofw_bus_attach(device_t dev)
{
struct simplebus_softc *sc;
struct brcm_mdionexus_ofw_devinfo *di;
device_t child;
phandle_t parent, node;
parent = ofw_bus_get_node(dev);
simplebus_init(dev, parent);
sc = (struct simplebus_softc *)device_get_softc(dev);
/* Iterate through all bus subordinates */
for (node = OF_child(parent); node > 0; node = OF_peer(node)) {
/* Allocate and populate devinfo. */
di = malloc(sizeof(*di), M_BRCM_IPROC_NEXUS, M_WAITOK | M_ZERO);
if (ofw_bus_gen_setup_devinfo(&di->di_dinfo, node) != 0) {
free(di, M_BRCM_IPROC_NEXUS);
continue;
}
/* Initialize and populate resource list. */
resource_list_init(&di->di_rl);
ofw_bus_reg_to_rl(dev, node, sc->acells, sc->scells,
&di->di_rl);
ofw_bus_intr_to_rl(dev, node, &di->di_rl, NULL);
/* Add newbus device for this FDT node */
child = device_add_child(dev, NULL, -1);
if (child == NULL) {
resource_list_free(&di->di_rl);
ofw_bus_gen_destroy_devinfo(&di->di_dinfo);
free(di, M_BRCM_IPROC_NEXUS);
continue;
}
device_set_ivars(child, di);
}
return (0);
}

View File

@ -0,0 +1,162 @@
/*-
* Copyright (c) 2019 Juniper Networks, Inc.
* Copyright (c) 2019 Semihalf.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/rman.h>
#include <sys/systm.h>
#include <dev/fdt/simplebus.h>
#include <dev/ofw/ofw_bus_subr.h>
#include <dev/ofw/ofw_bus.h>
#include <machine/bus.h>
#include <machine/resource.h>
#include "mdio_if.h"
#define BLK_ADDR_REG_OFFSET 0x1f
#define PLL_AFE1_100MHZ_BLK 0x2100
#define PLL_CLK_AMP_OFFSET 0x03
#define PLL_CLK_AMP_2P05V 0x2b18
struct ns2_pcie_phy_softc {
uint32_t phy_id;
};
static device_probe_t ns2_pcie_phy_fdt_probe;
static device_attach_t ns2_pcie_phy_fdt_attach;
static int ns2_pci_phy_init(device_t dev);
static device_method_t ns2_pcie_phy_fdt_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, ns2_pcie_phy_fdt_probe),
DEVMETHOD(device_attach, ns2_pcie_phy_fdt_attach),
DEVMETHOD_END
};
DEFINE_CLASS_0(ns2_pcie_phy, ns2_pcie_phy_fdt_driver, ns2_pcie_phy_fdt_methods,
sizeof(struct ns2_pcie_phy_softc));
static devclass_t ns2_pcie_phy_fdt_devclass;
static driver_t ns2_pcie_phy_driver = {
"ns2_pcie_phy",
ns2_pcie_phy_fdt_methods,
sizeof(struct ns2_pcie_phy_softc)
};
EARLY_DRIVER_MODULE(ns2_pcie_phy, brcm_mdionexus, ns2_pcie_phy_driver,
ns2_pcie_phy_fdt_devclass, NULL, NULL, BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
static int
ns2_pci_phy_init(device_t dev)
{
struct ns2_pcie_phy_softc *sc;
int err;
sc = device_get_softc(dev);
/* select the AFE 100MHz block page */
err = MDIO_WRITEREG(device_get_parent(dev), sc->phy_id,
BLK_ADDR_REG_OFFSET, PLL_AFE1_100MHZ_BLK);
if (err)
goto err;
/* set the 100 MHz reference clock amplitude to 2.05 v */
err = MDIO_WRITEREG(device_get_parent(dev), sc->phy_id,
PLL_CLK_AMP_OFFSET, PLL_CLK_AMP_2P05V);
if (err)
goto err;
return 0;
err:
device_printf(dev, "Error %d writing to phy\n", err);
return (err);
}
static __inline void
get_addr_size_cells(phandle_t node, pcell_t *addr_cells, pcell_t *size_cells)
{
*addr_cells = 2;
/* Find address cells if present */
OF_getencprop(node, "#address-cells", addr_cells, sizeof(*addr_cells));
*size_cells = 2;
/* Find size cells if present */
OF_getencprop(node, "#size-cells", size_cells, sizeof(*size_cells));
}
static int
ns2_pcie_phy_fdt_probe(device_t dev)
{
if (!ofw_bus_status_okay(dev))
return (ENXIO);
if (!ofw_bus_is_compatible(dev, "brcm,ns2-pcie-phy"))
return (ENXIO);
device_set_desc(dev, "Broadcom NS2 PCIe PHY");
return (BUS_PROBE_SPECIFIC);
}
static int
ns2_pcie_phy_fdt_attach(device_t dev)
{
struct ns2_pcie_phy_softc *sc;
pcell_t addr_cells, size_cells, buf[2];
phandle_t node;
sc = device_get_softc(dev);
node = ofw_bus_get_node(dev);
get_addr_size_cells(OF_parent(node), &addr_cells, &size_cells);
if ((addr_cells != 1) || (size_cells != 0)) {
device_printf(dev,
"Only addr_cells=1 and size_cells=0 are supported\n");
return (EINVAL);
}
if (OF_getencprop(node, "reg", buf, sizeof(pcell_t)) < 0)
return (ENXIO);
sc->phy_id = buf[0];
if (ns2_pci_phy_init(dev) < 0)
return (EINVAL);
return (bus_generic_attach(dev));
}

View File

@ -176,6 +176,9 @@ arm64/arm64/undefined.c standard
arm64/arm64/unwind.c optional ddb | kdtrace_hooks | stack
arm64/arm64/vfp.c standard
arm64/arm64/vm_machdep.c standard
arm64/broadcom/brcmmdio/mdio_mux_iproc.c optional fdt
arm64/broadcom/brcmmdio/mdio_nexus_iproc.c optional fdt
arm64/broadcom/brcmmdio/mdio_ns2_pcie_phy.c optional fdt pci
arm64/cavium/thunder_pcie_fdt.c optional soc_cavm_thunderx pci fdt
arm64/cavium/thunder_pcie_pem.c optional soc_cavm_thunderx pci
arm64/cavium/thunder_pcie_pem_fdt.c optional soc_cavm_thunderx pci fdt

View File

@ -39,6 +39,21 @@ METHOD int readreg {
int reg;
};
/**
* @brief Read register from device on MDIO muxed bus.
*
* @param dev MDIO bus device.
* @param bus MDIO bus mux position
* @param phy PHY address.
* @param reg The PHY register offset.
*/
METHOD int readreg_mux {
device_t dev;
int bus;
int phy;
int reg;
};
/**
* @brief Write register to device on MDIO bus.
*
@ -54,6 +69,23 @@ METHOD int writereg {
int val;
};
/**
* @brief Write register to device on MDIO muxed bus.
*
* @param dev MDIO bus device.
* @param bus MDIO bus mux position
* @param phy PHY address.
* @param reg The PHY register offset.
* @param val The value to write at offset @p reg.
*/
METHOD int writereg_mux {
device_t dev;
int bus;
int phy;
int reg;
int val;
};
/**
* @brief Read extended register from device on MDIO bus.