mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-06-06 12:48:56 +08:00
zy7_slcr: Import from FreeBSD
This commit is contained in:
parent
946611a1af
commit
dae9f66600
1
Makefile
1
Makefile
@ -403,6 +403,7 @@ LIB_C_FILES += freebsd/sys/dev/mii/e1000phy.c
|
||||
LIB_C_FILES += freebsd/sys/dev/mii/brgphy.c
|
||||
LIB_C_FILES += freebsd/sys/dev/tsec/if_tsec.c
|
||||
LIB_C_FILES += freebsd/sys/dev/cadence/if_cgem.c
|
||||
LIB_C_FILES += freebsd/sys/arm/xilinx/zy7_slcr.c
|
||||
LIB_C_FILES += freebsd/sys/dev/usb/usb_busdma.c
|
||||
LIB_C_FILES += freebsd/sys/dev/usb/usb_core.c
|
||||
LIB_C_FILES += freebsd/sys/dev/usb/usb_debug.c
|
||||
|
@ -1260,6 +1260,7 @@ devNet.addKernelSpaceHeaderFiles(
|
||||
'sys/dev/tsec/if_tsec.h',
|
||||
'sys/dev/tsec/if_tsecreg.h',
|
||||
'sys/dev/cadence/if_cgem_hw.h',
|
||||
'sys/arm/xilinx/zy7_slcr.h',
|
||||
]
|
||||
)
|
||||
devNet.addKernelSpaceSourceFiles(
|
||||
@ -1272,6 +1273,7 @@ devNet.addKernelSpaceSourceFiles(
|
||||
'sys/dev/mii/brgphy.c',
|
||||
'sys/dev/tsec/if_tsec.c',
|
||||
'sys/dev/cadence/if_cgem.c',
|
||||
'sys/arm/xilinx/zy7_slcr.c',
|
||||
]
|
||||
)
|
||||
|
||||
|
449
freebsd/sys/arm/xilinx/zy7_slcr.c
Normal file
449
freebsd/sys/arm/xilinx/zy7_slcr.c
Normal file
@ -0,0 +1,449 @@
|
||||
#include <machine/rtems-bsd-kernel-space.h>
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2013 Thomas Skibo
|
||||
* 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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
/*
|
||||
* Zynq-700 SLCR driver. Provides hooks for cpu_reset and PL control stuff.
|
||||
* In the future, maybe MIO control, clock control, etc. could go here.
|
||||
*
|
||||
* Reference: Zynq-7000 All Programmable SoC Technical Reference Manual.
|
||||
* (v1.4) November 16, 2012. Xilinx doc UG585.
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <rtems/bsd/sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#ifdef __rtems__
|
||||
#include <sys/bus.h>
|
||||
#endif /* __rtems__ */
|
||||
#include <sys/conf.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/module.h>
|
||||
#include <rtems/bsd/sys/lock.h>
|
||||
#include <sys/mutex.h>
|
||||
#include <rtems/bsd/sys/resource.h>
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/rman.h>
|
||||
|
||||
#include <machine/bus.h>
|
||||
#include <machine/resource.h>
|
||||
#include <machine/stdarg.h>
|
||||
|
||||
#ifndef __rtems__
|
||||
#include <dev/fdt/fdt_common.h>
|
||||
#include <dev/ofw/ofw_bus.h>
|
||||
#include <dev/ofw/ofw_bus_subr.h>
|
||||
#endif /* __rtems__ */
|
||||
|
||||
#include <arm/xilinx/zy7_slcr.h>
|
||||
|
||||
struct zy7_slcr_softc {
|
||||
device_t dev;
|
||||
struct mtx sc_mtx;
|
||||
struct resource *mem_res;
|
||||
};
|
||||
|
||||
static struct zy7_slcr_softc *zy7_slcr_softc_p;
|
||||
#ifndef __rtems__
|
||||
extern void (*zynq7_cpu_reset);
|
||||
#endif /* __rtems__ */
|
||||
|
||||
#define ZSLCR_LOCK(sc) mtx_lock(&(sc)->sc_mtx)
|
||||
#define ZSLCR_UNLOCK(sc) mtx_unlock(&(sc)->sc_mtx)
|
||||
#define ZSLCR_LOCK_INIT(sc) \
|
||||
mtx_init(&(sc)->sc_mtx, device_get_nameunit((sc)->dev), \
|
||||
"zy7_slcr", MTX_DEF)
|
||||
#define ZSLCR_LOCK_DESTROY(_sc) mtx_destroy(&_sc->sc_mtx);
|
||||
|
||||
#define RD4(sc, off) (bus_read_4((sc)->mem_res, (off)))
|
||||
#define WR4(sc, off, val) (bus_write_4((sc)->mem_res, (off), (val)))
|
||||
|
||||
#define ZYNQ_DEFAULT_PS_CLK_FREQUENCY 33333333 /* 33.3 Mhz */
|
||||
|
||||
|
||||
SYSCTL_NODE(_hw, OID_AUTO, zynq, CTLFLAG_RD, 0, "Xilinx Zynq-7000");
|
||||
|
||||
static char zynq_bootmode[64];
|
||||
SYSCTL_STRING(_hw_zynq, OID_AUTO, bootmode, CTLFLAG_RD, zynq_bootmode, 0,
|
||||
"Zynq boot mode");
|
||||
|
||||
static char zynq_pssid[100];
|
||||
SYSCTL_STRING(_hw_zynq, OID_AUTO, pssid, CTLFLAG_RD, zynq_pssid, 0,
|
||||
"Zynq PSS IDCODE");
|
||||
|
||||
static uint32_t zynq_reboot_status;
|
||||
SYSCTL_INT(_hw_zynq, OID_AUTO, reboot_status, CTLFLAG_RD, &zynq_reboot_status,
|
||||
0, "Zynq REBOOT_STATUS register");
|
||||
|
||||
static int ps_clk_frequency;
|
||||
SYSCTL_INT(_hw_zynq, OID_AUTO, ps_clk_frequency, CTLFLAG_RD, &ps_clk_frequency,
|
||||
0, "Zynq PS_CLK Frequency");
|
||||
|
||||
static int io_pll_frequency;
|
||||
SYSCTL_INT(_hw_zynq, OID_AUTO, io_pll_frequency, CTLFLAG_RD, &io_pll_frequency,
|
||||
0, "Zynq IO PLL Frequency");
|
||||
|
||||
static int arm_pll_frequency;
|
||||
SYSCTL_INT(_hw_zynq, OID_AUTO, arm_pll_frequency, CTLFLAG_RD,
|
||||
&arm_pll_frequency, 0, "Zynq ARM PLL Frequency");
|
||||
|
||||
static int ddr_pll_frequency;
|
||||
SYSCTL_INT(_hw_zynq, OID_AUTO, ddr_pll_frequency, CTLFLAG_RD,
|
||||
&ddr_pll_frequency, 0, "Zynq DDR PLL Frequency");
|
||||
|
||||
static void
|
||||
zy7_slcr_unlock(struct zy7_slcr_softc *sc)
|
||||
{
|
||||
|
||||
/* Unlock SLCR with magic number. */
|
||||
WR4(sc, ZY7_SLCR_UNLOCK, ZY7_SLCR_UNLOCK_MAGIC);
|
||||
}
|
||||
|
||||
static void
|
||||
zy7_slcr_lock(struct zy7_slcr_softc *sc)
|
||||
{
|
||||
|
||||
/* Lock SLCR with magic number. */
|
||||
WR4(sc, ZY7_SLCR_LOCK, ZY7_SLCR_LOCK_MAGIC);
|
||||
}
|
||||
|
||||
|
||||
#ifndef __rtems__
|
||||
static void
|
||||
zy7_slcr_cpu_reset(void)
|
||||
{
|
||||
struct zy7_slcr_softc *sc = zy7_slcr_softc_p;
|
||||
|
||||
/* Unlock SLCR registers. */
|
||||
zy7_slcr_unlock(sc);
|
||||
|
||||
/* This has something to do with a work-around so the fsbl will load
|
||||
* the bitstream after soft-reboot. It's very important.
|
||||
*/
|
||||
WR4(sc, ZY7_SLCR_REBOOT_STAT,
|
||||
RD4(sc, ZY7_SLCR_REBOOT_STAT) & 0xf0ffffff);
|
||||
|
||||
/* Soft reset */
|
||||
WR4(sc, ZY7_SLCR_PSS_RST_CTRL, ZY7_SLCR_PSS_RST_CTRL_SOFT_RESET);
|
||||
|
||||
for (;;)
|
||||
;
|
||||
}
|
||||
|
||||
/* Assert PL resets and disable level shifters in preparation of programming
|
||||
* the PL (FPGA) section. Called from zy7_devcfg.c.
|
||||
*/
|
||||
void
|
||||
zy7_slcr_preload_pl(void)
|
||||
{
|
||||
struct zy7_slcr_softc *sc = zy7_slcr_softc_p;
|
||||
|
||||
if (!sc)
|
||||
return;
|
||||
|
||||
ZSLCR_LOCK(sc);
|
||||
|
||||
/* Unlock SLCR registers. */
|
||||
zy7_slcr_unlock(sc);
|
||||
|
||||
/* Assert top level output resets. */
|
||||
WR4(sc, ZY7_SLCR_FPGA_RST_CTRL, ZY7_SLCR_FPGA_RST_CTRL_RST_ALL);
|
||||
|
||||
/* Disable all level shifters. */
|
||||
WR4(sc, ZY7_SLCR_LVL_SHFTR_EN, 0);
|
||||
|
||||
/* Lock SLCR registers. */
|
||||
zy7_slcr_lock(sc);
|
||||
|
||||
ZSLCR_UNLOCK(sc);
|
||||
}
|
||||
|
||||
/* After PL configuration, enable level shifters and deassert top-level
|
||||
* PL resets. Called from zy7_devcfg.c. Optionally, the level shifters
|
||||
* can be left disabled but that's rare of an FPGA application. That option
|
||||
* is controled by a sysctl in the devcfg driver.
|
||||
*/
|
||||
void
|
||||
zy7_slcr_postload_pl(int en_level_shifters)
|
||||
{
|
||||
struct zy7_slcr_softc *sc = zy7_slcr_softc_p;
|
||||
|
||||
if (!sc)
|
||||
return;
|
||||
|
||||
ZSLCR_LOCK(sc);
|
||||
|
||||
/* Unlock SLCR registers. */
|
||||
zy7_slcr_unlock(sc);
|
||||
|
||||
if (en_level_shifters)
|
||||
/* Enable level shifters. */
|
||||
WR4(sc, ZY7_SLCR_LVL_SHFTR_EN, ZY7_SLCR_LVL_SHFTR_EN_ALL);
|
||||
|
||||
/* Deassert top level output resets. */
|
||||
WR4(sc, ZY7_SLCR_FPGA_RST_CTRL, 0);
|
||||
|
||||
/* Lock SLCR registers. */
|
||||
zy7_slcr_lock(sc);
|
||||
|
||||
ZSLCR_UNLOCK(sc);
|
||||
}
|
||||
#endif /* __rtems__ */
|
||||
|
||||
/* Override cgem_set_refclk() in gigabit ethernet driver
|
||||
* (sys/dev/cadence/if_cgem.c). This function is called to
|
||||
* request a change in the gem's reference clock speed.
|
||||
*/
|
||||
int
|
||||
cgem_set_ref_clk(int unit, int frequency)
|
||||
{
|
||||
struct zy7_slcr_softc *sc = zy7_slcr_softc_p;
|
||||
int div0, div1;
|
||||
|
||||
if (!sc)
|
||||
return (-1);
|
||||
|
||||
/* Find suitable divisor pairs. Round result to nearest khz
|
||||
* to test for match.
|
||||
*/
|
||||
for (div1 = 1; div1 <= ZY7_SLCR_GEM_CLK_CTRL_DIVISOR1_MAX; div1++) {
|
||||
div0 = (io_pll_frequency + div1 * frequency / 2) /
|
||||
div1 / frequency;
|
||||
if (div0 > 0 && div0 <= ZY7_SLCR_GEM_CLK_CTRL_DIVISOR_MAX &&
|
||||
((io_pll_frequency / div0 / div1) + 500) / 1000 ==
|
||||
(frequency + 500) / 1000)
|
||||
break;
|
||||
}
|
||||
|
||||
if (div1 > ZY7_SLCR_GEM_CLK_CTRL_DIVISOR1_MAX)
|
||||
return (-1);
|
||||
|
||||
ZSLCR_LOCK(sc);
|
||||
|
||||
/* Unlock SLCR registers. */
|
||||
zy7_slcr_unlock(sc);
|
||||
|
||||
/* Modify GEM reference clock. */
|
||||
WR4(sc, unit ? ZY7_SLCR_GEM1_CLK_CTRL : ZY7_SLCR_GEM0_CLK_CTRL,
|
||||
(div1 << ZY7_SLCR_GEM_CLK_CTRL_DIVISOR1_SHIFT) |
|
||||
(div0 << ZY7_SLCR_GEM_CLK_CTRL_DIVISOR_SHIFT) |
|
||||
ZY7_SLCR_GEM_CLK_CTRL_SRCSEL_IO_PLL |
|
||||
ZY7_SLCR_GEM_CLK_CTRL_CLKACT);
|
||||
|
||||
/* Lock SLCR registers. */
|
||||
zy7_slcr_lock(sc);
|
||||
|
||||
ZSLCR_UNLOCK(sc);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
zy7_slcr_probe(device_t dev)
|
||||
{
|
||||
|
||||
#ifndef __rtems__
|
||||
if (!ofw_bus_status_okay(dev))
|
||||
return (ENXIO);
|
||||
|
||||
if (!ofw_bus_is_compatible(dev, "xlnx,zy7_slcr"))
|
||||
return (ENXIO);
|
||||
#endif /* __rtems__ */
|
||||
|
||||
device_set_desc(dev, "Zynq-7000 slcr block");
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
zy7_slcr_attach(device_t dev)
|
||||
{
|
||||
struct zy7_slcr_softc *sc = device_get_softc(dev);
|
||||
int rid;
|
||||
#ifndef __rtems__
|
||||
phandle_t node;
|
||||
pcell_t cell;
|
||||
#endif /* __rtems__ */
|
||||
uint32_t bootmode;
|
||||
uint32_t pss_idcode;
|
||||
uint32_t arm_pll_ctrl;
|
||||
uint32_t ddr_pll_ctrl;
|
||||
uint32_t io_pll_ctrl;
|
||||
static char *bootdev_names[] = {
|
||||
"JTAG", "Quad-SPI", "NOR", "(3?)",
|
||||
"NAND", "SD Card", "(6?)", "(7?)"
|
||||
};
|
||||
|
||||
/* Allow only one attach. */
|
||||
if (zy7_slcr_softc_p != NULL)
|
||||
return (ENXIO);
|
||||
|
||||
sc->dev = dev;
|
||||
|
||||
ZSLCR_LOCK_INIT(sc);
|
||||
|
||||
/* Get memory resource. */
|
||||
rid = 0;
|
||||
sc->mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
|
||||
RF_ACTIVE);
|
||||
if (sc->mem_res == NULL) {
|
||||
device_printf(dev, "could not allocate memory resources.\n");
|
||||
return (ENOMEM);
|
||||
}
|
||||
|
||||
/* Hook up cpu_reset. */
|
||||
zy7_slcr_softc_p = sc;
|
||||
#ifndef __rtems__
|
||||
zynq7_cpu_reset = zy7_slcr_cpu_reset;
|
||||
#endif /* __rtems__ */
|
||||
|
||||
/* Read info and set sysctls. */
|
||||
bootmode = RD4(sc, ZY7_SLCR_BOOT_MODE);
|
||||
snprintf(zynq_bootmode, sizeof(zynq_bootmode),
|
||||
"0x%x: boot device: %s", bootmode,
|
||||
bootdev_names[bootmode & ZY7_SLCR_BOOT_MODE_BOOTDEV_MASK]);
|
||||
|
||||
pss_idcode = RD4(sc, ZY7_SLCR_PSS_IDCODE);
|
||||
snprintf(zynq_pssid, sizeof(zynq_pssid),
|
||||
"0x%x: manufacturer: 0x%x device: 0x%x "
|
||||
"family: 0x%x sub-family: 0x%x rev: 0x%x",
|
||||
pss_idcode,
|
||||
(pss_idcode & ZY7_SLCR_PSS_IDCODE_MNFR_ID_MASK) >>
|
||||
ZY7_SLCR_PSS_IDCODE_MNFR_ID_SHIFT,
|
||||
(pss_idcode & ZY7_SLCR_PSS_IDCODE_DEVICE_MASK) >>
|
||||
ZY7_SLCR_PSS_IDCODE_DEVICE_SHIFT,
|
||||
(pss_idcode & ZY7_SLCR_PSS_IDCODE_FAMILY_MASK) >>
|
||||
ZY7_SLCR_PSS_IDCODE_FAMILY_SHIFT,
|
||||
(pss_idcode & ZY7_SLCR_PSS_IDCODE_SUB_FAMILY_MASK) >>
|
||||
ZY7_SLCR_PSS_IDCODE_SUB_FAMILY_SHIFT,
|
||||
(pss_idcode & ZY7_SLCR_PSS_IDCODE_REVISION_MASK) >>
|
||||
ZY7_SLCR_PSS_IDCODE_REVISION_SHIFT);
|
||||
|
||||
zynq_reboot_status = RD4(sc, ZY7_SLCR_REBOOT_STAT);
|
||||
|
||||
/* Derive PLL frequencies from PS_CLK. */
|
||||
#ifndef __rtems__
|
||||
node = ofw_bus_get_node(dev);
|
||||
if (OF_getprop(node, "clock-frequency", &cell, sizeof(cell)) > 0)
|
||||
ps_clk_frequency = fdt32_to_cpu(cell);
|
||||
else
|
||||
#endif /* __rtems__ */
|
||||
ps_clk_frequency = ZYNQ_DEFAULT_PS_CLK_FREQUENCY;
|
||||
|
||||
arm_pll_ctrl = RD4(sc, ZY7_SLCR_ARM_PLL_CTRL);
|
||||
ddr_pll_ctrl = RD4(sc, ZY7_SLCR_DDR_PLL_CTRL);
|
||||
io_pll_ctrl = RD4(sc, ZY7_SLCR_IO_PLL_CTRL);
|
||||
|
||||
/* Determine ARM PLL frequency. */
|
||||
if (((arm_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_QUAL) == 0 &&
|
||||
(arm_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_FORCE) != 0) ||
|
||||
((arm_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_QUAL) != 0 &&
|
||||
(bootmode & ZY7_SLCR_BOOT_MODE_PLL_BYPASS) != 0))
|
||||
/* PLL is bypassed. */
|
||||
arm_pll_frequency = ps_clk_frequency;
|
||||
else
|
||||
arm_pll_frequency = ps_clk_frequency *
|
||||
((arm_pll_ctrl & ZY7_SLCR_PLL_CTRL_FDIV_MASK) >>
|
||||
ZY7_SLCR_PLL_CTRL_FDIV_SHIFT);
|
||||
|
||||
/* Determine DDR PLL frequency. */
|
||||
if (((ddr_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_QUAL) == 0 &&
|
||||
(ddr_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_FORCE) != 0) ||
|
||||
((ddr_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_QUAL) != 0 &&
|
||||
(bootmode & ZY7_SLCR_BOOT_MODE_PLL_BYPASS) != 0))
|
||||
/* PLL is bypassed. */
|
||||
ddr_pll_frequency = ps_clk_frequency;
|
||||
else
|
||||
ddr_pll_frequency = ps_clk_frequency *
|
||||
((ddr_pll_ctrl & ZY7_SLCR_PLL_CTRL_FDIV_MASK) >>
|
||||
ZY7_SLCR_PLL_CTRL_FDIV_SHIFT);
|
||||
|
||||
/* Determine IO PLL frequency. */
|
||||
if (((io_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_QUAL) == 0 &&
|
||||
(io_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_FORCE) != 0) ||
|
||||
((io_pll_ctrl & ZY7_SLCR_PLL_CTRL_BYPASS_QUAL) != 0 &&
|
||||
(bootmode & ZY7_SLCR_BOOT_MODE_PLL_BYPASS) != 0))
|
||||
/* PLL is bypassed. */
|
||||
io_pll_frequency = ps_clk_frequency;
|
||||
else
|
||||
io_pll_frequency = ps_clk_frequency *
|
||||
((io_pll_ctrl & ZY7_SLCR_PLL_CTRL_FDIV_MASK) >>
|
||||
ZY7_SLCR_PLL_CTRL_FDIV_SHIFT);
|
||||
|
||||
/* Lock SLCR registers. */
|
||||
zy7_slcr_lock(sc);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
zy7_slcr_detach(device_t dev)
|
||||
{
|
||||
struct zy7_slcr_softc *sc = device_get_softc(dev);
|
||||
|
||||
bus_generic_detach(dev);
|
||||
|
||||
/* Release memory resource. */
|
||||
if (sc->mem_res != NULL)
|
||||
bus_release_resource(dev, SYS_RES_MEMORY,
|
||||
rman_get_rid(sc->mem_res), sc->mem_res);
|
||||
|
||||
zy7_slcr_softc_p = NULL;
|
||||
#ifndef __rtems__
|
||||
zynq7_cpu_reset = NULL;
|
||||
#endif /* __rtems__ */
|
||||
|
||||
ZSLCR_LOCK_DESTROY(sc);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static device_method_t zy7_slcr_methods[] = {
|
||||
/* device_if */
|
||||
DEVMETHOD(device_probe, zy7_slcr_probe),
|
||||
DEVMETHOD(device_attach, zy7_slcr_attach),
|
||||
DEVMETHOD(device_detach, zy7_slcr_detach),
|
||||
|
||||
DEVMETHOD_END
|
||||
};
|
||||
|
||||
static driver_t zy7_slcr_driver = {
|
||||
"zy7_slcr",
|
||||
zy7_slcr_methods,
|
||||
sizeof(struct zy7_slcr_softc),
|
||||
};
|
||||
static devclass_t zy7_slcr_devclass;
|
||||
|
||||
#ifndef __rtems__
|
||||
DRIVER_MODULE(zy7_slcr, simplebus, zy7_slcr_driver, zy7_slcr_devclass, 0, 0);
|
||||
#else /* __rtems__ */
|
||||
DRIVER_MODULE(zy7_slcr, nexus, zy7_slcr_driver, zy7_slcr_devclass, 0, 0);
|
||||
#endif /* __rtems__ */
|
||||
MODULE_VERSION(zy7_slcr, 1);
|
292
freebsd/sys/arm/xilinx/zy7_slcr.h
Normal file
292
freebsd/sys/arm/xilinx/zy7_slcr.h
Normal file
@ -0,0 +1,292 @@
|
||||
/*-
|
||||
* Copyright (c) 2013 Thomas Skibo
|
||||
* 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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
/*
|
||||
* Defines for Zynq-7000 SLCR registers.
|
||||
*
|
||||
* Most of these registers are initialized by the First Stage Boot
|
||||
* Loader and are not modified by the kernel.
|
||||
*
|
||||
* Reference: Zynq-7000 All Programmable SoC Technical Reference Manual.
|
||||
* (v1.4) November 16, 2012. Xilinx doc UG585. SLCR register definitions
|
||||
* are in appendix B.28.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _ZY7_SLCR_H_
|
||||
#define _ZY7_SLCR_H_
|
||||
|
||||
#define ZY7_SCLR_SCL 0x0000
|
||||
#define ZY7_SLCR_LOCK 0x0004
|
||||
#define ZY7_SLCR_LOCK_MAGIC 0x767b
|
||||
#define ZY7_SLCR_UNLOCK 0x0008
|
||||
#define ZY7_SLCR_UNLOCK_MAGIC 0xdf0d
|
||||
#define ZY7_SLCR_LOCKSTA 0x000c
|
||||
|
||||
/* PLL controls. */
|
||||
#define ZY7_SLCR_ARM_PLL_CTRL 0x0100
|
||||
#define ZY7_SLCR_DDR_PLL_CTRL 0x0104
|
||||
#define ZY7_SLCR_IO_PLL_CTRL 0x0108
|
||||
#define ZY7_SLCR_PLL_CTRL_RESET (1<<0)
|
||||
#define ZY7_SLCR_PLL_CTRL_PWRDWN (1<<1)
|
||||
#define ZY7_SLCR_PLL_CTRL_BYPASS_QUAL (1<<3)
|
||||
#define ZY7_SLCR_PLL_CTRL_BYPASS_FORCE (1<<4)
|
||||
#define ZY7_SLCR_PLL_CTRL_FDIV_SHIFT 12
|
||||
#define ZY7_SLCR_PLL_CTRL_FDIV_MASK (0x7f<<12)
|
||||
#define ZY7_SLCR_PLL_STATUS 0x010c
|
||||
#define ZY7_SLCR_PLL_STAT_ARM_PLL_LOCK (1<<0)
|
||||
#define ZY7_SLCR_PLL_STAT_DDR_PLL_LOCK (1<<1)
|
||||
#define ZY7_SLCR_PLL_STAT_IO_PLL_LOCK (1<<2)
|
||||
#define ZY7_SLCR_PLL_STAT_ARM_PLL_STABLE (1<<3)
|
||||
#define ZY7_SLCR_PLL_STAT_DDR_PLL_STABLE (1<<4)
|
||||
#define ZY7_SLCR_PLL_STAT_IO_PLL_STABLE (1<<5)
|
||||
#define ZY7_SLCR_ARM_PLL_CFG 0x0110
|
||||
#define ZY7_SLCR_DDR_PLL_CFG 0x0114
|
||||
#define ZY7_SLCR_IO_PLL_CFG 0x0118
|
||||
#define ZY7_SLCR_PLL_CFG_RES_SHIFT 4
|
||||
#define ZY7_SLCR_PLL_CFG_RES_MASK (0xf<<4)
|
||||
#define ZY7_SLCR_PLL_CFG_PLL_CP_SHIFT 8
|
||||
#define ZY7_SLCR_PLL_CFG_PLL_CP_MASK (0xf<<8)
|
||||
#define ZY7_SLCR_PLL_CFG_LOCK_CNT_SHIFT 12
|
||||
#define ZY7_SLCR_PLL_CFG_LOCK_CNT_MASK (0x3ff<<12)
|
||||
|
||||
/* Clock controls. */
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL 0x0120
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_CPU_PERI_CLKACT (1<<28)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_CPU_1XCLKACT (1<<27)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_CPU_2XCLKACT (1<<26)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_CPU_3OR2XCLKACT (1<<25)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_CPU_6OR4XCLKACT (1<<24)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_SRCSEL_MASK (3<<4)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_SRCSEL_ARM_PLL (0<<4)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_SRCSEL_DDR_PLL (2<<4)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_SRCSEL_IO_PLL (3<<4)
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_DIVISOR_SHIFT 8
|
||||
#define ZY7_SLCR_ARM_CLK_CTRL_DIVISOR_MASK (0x3f<<8)
|
||||
#define ZY7_SLCR_DDR_CLK_CTRL 0x0124
|
||||
#define ZY7_SLCR_DDR_CLK_CTRL_2XCLK_DIV_SHIFT 26
|
||||
#define ZY7_SLCR_DDR_CLK_CTRL_2XCLK_DIV_MASK (0x3f<<26)
|
||||
#define ZY7_SLCR_DDR_CLK_CTRL_3XCLK_DIV_SHIFT 20
|
||||
#define ZY7_SLCR_DDR_CLK_CTRL_3XCLK_DIV_MASK (0x3f<<20)
|
||||
#define ZY7_SLCR_DDR_CLK_CTRL_2XCLKACT (1<<1)
|
||||
#define ZY7_SLCR_DDR_CLK_CTRL_3XCLKACT (1<<0)
|
||||
#define ZY7_SLCR_DCI_CLK_CTRL 0x0128
|
||||
#define ZY7_SLCR_DCI_CLK_CTRL_DIVISOR1_SHIFT 20
|
||||
#define ZY7_SLCR_DCI_CLK_CTRL_DIVISOR1_MASK (0x3f<<20)
|
||||
#define ZY7_SLCR_DCI_CLK_CTRL_DIVISOR0_SHIFT 8
|
||||
#define ZY7_SLCR_DCI_CLK_CTRL_DIVISOR0_MASK (0x3f<<8)
|
||||
#define ZY7_SLCR_DCI_CLK_CTRL_CLKACT (1<<0)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL 0x012c /* amba periph clk ctrl */
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_SMC_CPU_1XCLKACT (1<<24)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_LQSPI_CPU_1XCLKACT (1<<23)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_GPIO_CPU_1XCLKACT (1<<22)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_UART1_CPU_1XCLKACT (1<<21)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_UART0_CPU_1XCLKACT (1<<20)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_I2C1_CPU_1XCLKACT (1<<19)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_I2C0_CPU_1XCLKACT (1<<18)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_CAN1_CPU_1XCLKACT (1<<17)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_CAN0_CPU_1XCLKACT (1<<16)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_SPI1_CPU_1XCLKACT (1<<15)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_SPI0_CPU_1XCLKACT (1<<14)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_SDI1_CPU_1XCLKACT (1<<11)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_SDI0_CPU_1XCLKACT (1<<10)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_GEM1_CPU_1XCLKACT (1<<7)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_GEM0_CPU_1XCLKACT (1<<6)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_USB1_CPU_1XCLKACT (1<<3)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_USB0_CPU_1XCLKACT (1<<2)
|
||||
#define ZY7_SLCR_APER_CLK_CTRL_DMA_CPU_1XCLKACT (1<<0)
|
||||
#define ZY7_SLCR_USB0_CLK_CTRL 0x0130
|
||||
#define ZY7_SLCR_USB1_CLK_CTRL 0x0134
|
||||
#define ZY7_SLCR_GEM0_RCLK_CTRL 0x0138
|
||||
#define ZY7_SLCR_GEM1_RCLK_CTRL 0x013c
|
||||
#define ZY7_SLCR_GEM0_CLK_CTRL 0x0140
|
||||
#define ZY7_SLCR_GEM1_CLK_CTRL 0x0144
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_DIVISOR1_MASK (0x3f<<20)
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_DIVISOR1_SHIFT 20
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_DIVISOR1_MAX 0x3f
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_DIVISOR_MASK (0x3f<<8)
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_DIVISOR_SHIFT 8
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_DIVISOR_MAX 0x3f
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_SRCSEL_MASK (7<<4)
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_SRCSEL_IO_PLL (0<<4)
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_SRCSEL_ARM_PLL (2<<4)
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_SRCSEL_DDR_PLL (3<<4)
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_SRCSEL_EMIO_CLK (4<<4)
|
||||
#define ZY7_SLCR_GEM_CLK_CTRL_CLKACT 1
|
||||
#define ZY7_SLCR_SMC_CLK_CTRL 0x0148
|
||||
#define ZY7_SLCR_LQSPI_CLK_CTRL 0x014c
|
||||
#define ZY7_SLCR_SDIO_CLK_CTRL 0x0150
|
||||
#define ZY7_SLCR_UART_CLK_CTRL 0x0154
|
||||
#define ZY7_SLCR_SPI_CLK_CTRL 0x0158
|
||||
#define ZY7_SLCR_CAN_CLK_CTRL 0x015c
|
||||
#define ZY7_SLCR_CAN_MIOCLK_CTRL 0x0160
|
||||
#define ZY7_SLCR_DBG_CLK_CTRL 0x0164
|
||||
#define ZY7_SLCR_PCAP_CLK_CTRL 0x0168
|
||||
#define ZY7_SLCR_TOPSW_CLK_CTRL 0x016c /* central intercnn clk ctrl */
|
||||
#define ZY7_SLCR_FPGA0_CLK_CTRL 0x0170
|
||||
#define ZY7_SLCR_FPGA1_CLK_CTRL 0x0180
|
||||
#define ZY7_SLCR_FPGA2_CLK_CTRL 0x0190
|
||||
#define ZY7_SLCR_FPGA3_CLK_CTRL 0x01a0
|
||||
#define ZY7_SLCR_CLK_621_TRUE 0x01c4 /* cpu clock ratio mode */
|
||||
|
||||
/* Reset controls. */
|
||||
#define ZY7_SLCR_PSS_RST_CTRL 0x0200
|
||||
#define ZY7_SLCR_PSS_RST_CTRL_SOFT_RESET (1<<0)
|
||||
#define ZY7_SLCR_DDR_RST_CTRL 0x0204
|
||||
#define ZY7_SLCR_TOPSW_RST_CTRL 0x0208
|
||||
#define ZY7_SLCR_DMAC_RST_CTRL 0x020c
|
||||
#define ZY7_SLCR_USB_RST_CTRL 0x0210
|
||||
#define ZY7_SLCR_GEM_RST_CTRL 0x0214
|
||||
#define ZY7_SLCR_SDIO_RST_CTRL 0x0218
|
||||
#define ZY7_SLCR_SPI_RST_CTRL 0x021c
|
||||
#define ZY7_SLCR_CAN_RST_CTRL 0x0220
|
||||
#define ZY7_SLCR_I2C_RST_CTRL 0x0224
|
||||
#define ZY7_SLCR_UART_RST_CTRL 0x0228
|
||||
#define ZY7_SLCR_GPIO_RST_CTRL 0x022c
|
||||
#define ZY7_SLCR_LQSPI_RST_CTRL 0x0230
|
||||
#define ZY7_SLCR_SMC_RST_CTRL 0x0234
|
||||
#define ZY7_SLCR_OCM_RST_CTRL 0x0238
|
||||
#define ZY7_SLCR_DEVCI_RST_CTRL 0x023c
|
||||
#define ZY7_SLCR_FPGA_RST_CTRL 0x0240
|
||||
#define ZY7_SLCR_FPGA_RST_CTRL_FPGA3_OUT_RST (1<<3)
|
||||
#define ZY7_SLCR_FPGA_RST_CTRL_FPGA2_OUT_RST (1<<2)
|
||||
#define ZY7_SLCR_FPGA_RST_CTRL_FPGA1_OUT_RST (1<<1)
|
||||
#define ZY7_SLCR_FPGA_RST_CTRL_FPGA0_OUT_RST (1<<0)
|
||||
#define ZY7_SLCR_FPGA_RST_CTRL_RST_ALL 0xf
|
||||
#define ZY7_SLCR_A9_CPU_RST_CTRL 0x0244
|
||||
#define ZY7_SLCR_RS_AWDT_CTRL 0x024c
|
||||
|
||||
#define ZY7_SLCR_REBOOT_STAT 0x0258
|
||||
#define ZY7_SLCR_REBOOT_STAT_STATE_MASK (0xff<<24)
|
||||
#define ZY7_SLCR_REBOOT_STAT_POR (1<<22)
|
||||
#define ZY7_SLCR_REBOOT_STAT_SRST_B (1<<21)
|
||||
#define ZY7_SLCR_REBOOT_STAT_DBG_RST (1<<20)
|
||||
#define ZY7_SLCR_REBOOT_STAT_SLC_RST (1<<19)
|
||||
#define ZY7_SLCR_REBOOT_STAT_AWDT1_RST (1<<18)
|
||||
#define ZY7_SLCR_REBOOT_STAT_AWDT0_RST (1<<17)
|
||||
#define ZY7_SLCR_REBOOT_STAT_SWDT_RST (1<<16)
|
||||
#define ZY7_SLCR_REBOOT_STAT_BOOTROM_ERR_CODE_MASK (0xffff)
|
||||
#define ZY7_SLCR_BOOT_MODE 0x025c
|
||||
#define ZY7_SLCR_BOOT_MODE_PLL_BYPASS (1<<4)
|
||||
#define ZY7_SLCR_BOOT_MODE_JTAG_INDEP (1<<3)
|
||||
#define ZY7_SLCR_BOOT_MODE_BOOTDEV_MASK 7
|
||||
#define ZY7_SLCR_BOOT_MODE_BOOTDEV_JTAG 0
|
||||
#define ZY7_SLCR_BOOT_MODE_BOOTDEV_QUAD_SPI 1
|
||||
#define ZY7_SLCR_BOOT_MODE_BOOTDEV_NOR 2
|
||||
#define ZY7_SLCR_BOOT_MODE_BOOTDEV_NAND 4
|
||||
#define ZY7_SLCR_BOOT_MODE_BOOTDEV_SD_CARD 5
|
||||
#define ZY7_SLCR_APU_CTRL 0x0300
|
||||
#define ZY7_SLCR_WDT_CLK_SEL 0x0304
|
||||
|
||||
#define ZY7_SLCR_PSS_IDCODE 0x0530
|
||||
#define ZY7_SLCR_PSS_IDCODE_REVISION_MASK (0xf<<28)
|
||||
#define ZY7_SLCR_PSS_IDCODE_REVISION_SHIFT 28
|
||||
#define ZY7_SLCR_PSS_IDCODE_FAMILY_MASK (0x7f<<21)
|
||||
#define ZY7_SLCR_PSS_IDCODE_FAMILY_SHIFT 21
|
||||
#define ZY7_SLCR_PSS_IDCODE_SUB_FAMILY_MASK (0xf<<17)
|
||||
#define ZY7_SLCR_PSS_IDCODE_SUB_FAMILY_SHIFT 17
|
||||
#define ZY7_SLCR_PSS_IDCODE_DEVICE_MASK (0x1f<<12)
|
||||
#define ZY7_SLCR_PSS_IDCODE_DEVICE_SHIFT 12
|
||||
#define ZY7_SLCR_PSS_IDCODE_MNFR_ID_MASK (0x7ff<<1)
|
||||
#define ZY7_SLCR_PSS_IDCODE_MNFR_ID_SHIFT 1
|
||||
|
||||
#define ZY7_SLCR_DDR_URGENT 0x0600
|
||||
#define ZY7_SLCR_DDR_CAL_START 0x060c
|
||||
#define ZY7_SLCR_DDR_REF_START 0x0614
|
||||
#define ZY7_SLCR_DDR_CMD_STA 0x0618
|
||||
#define ZY7_SLCR_DDR_URGENT_SEL 0x061c
|
||||
#define ZY7_SLCR_DDR_DFI_STATUS 0x0620
|
||||
|
||||
/* MIO Pin controls */
|
||||
#define ZY7_SLCR_MIO_PIN(n) (0x0700+(n)*4) /* 0-53 */
|
||||
#define ZY7_SLCR_MIO_PIN_RCVR_DIS (1<<13)
|
||||
#define ZY7_SLCR_MIO_PIN_PULLUP_EN (1<<12)
|
||||
#define ZY7_SLCR_MIO_PIN_IO_TYPE_MASK (7<<9)
|
||||
#define ZY7_SLCR_MIO_PIN_IO_TYPE_LVTTL (0<<9)
|
||||
#define ZY7_SLCR_MIO_PIN_IO_TYPE_LVCMOS18 (1<<9)
|
||||
#define ZY7_SLCR_MIO_PIN_IO_TYPE_LVCMOS25 (2<<9)
|
||||
#define ZY7_SLCR_MIO_PIN_IO_TYPE_LVCMOS33 (3<<9)
|
||||
#define ZY7_SLCR_MIO_PIN_IO_TYPE_HSTL (4<<9)
|
||||
#define ZY7_SLCR_MIO_PIN_L2_SEL_MASK (3<<3)
|
||||
#define ZY7_SLCR_MIO_PIN_L2_SEL_L3_MUX (0<<3)
|
||||
#define ZY7_SLCR_MIO_PIN_L2_SEL_SRAM_NOR_CS0 (1<<3)
|
||||
#define ZY7_SLCR_MIO_PIN_L2_SEL_NAND_CS (2<<3)
|
||||
#define ZY7_SLCR_MIO_PIN_L2_SEL_SDIO0_PC (3<<3)
|
||||
#define ZY7_SLCR_MIO_PIN_L1_SEL (1<<2)
|
||||
#define ZY7_SLCR_MIO_PIN_L0_SEL (1<<1)
|
||||
#define ZY7_SLCR_MIO_PIN_TRI_EN (1<<0)
|
||||
|
||||
#define ZY7_SLCR_MIO_LOOPBACK 0x0804
|
||||
#define ZY7_SLCR_MIO_LOOPBACK_I2C0_I2C1 (1<<3)
|
||||
#define ZY7_SLCR_MIO_LOOPBACK_CAN0_CAN1 (1<<2)
|
||||
#define ZY7_SLCR_MIO_LOOPBACK_UA0_UA1 (1<<1)
|
||||
#define ZY7_SLCR_MIO_LOOPBACK_SPI0_SPI1 (1<<0)
|
||||
#define ZY7_SLCR_MIO_MST_TRI0 0x080c
|
||||
#define ZY7_SLCR_MIO_MST_TRI1 0x0810
|
||||
#define ZY7_SLCR_SD0_WP_CD_SEL 0x0830
|
||||
#define ZY7_SLCR_SD1_WP_CD_SEL 0x0834
|
||||
|
||||
/* PS-PL level shifter control. */
|
||||
#define ZY7_SLCR_LVL_SHFTR_EN 0x900
|
||||
#define ZY7_SLCR_LVL_SHFTR_EN_USER_LVL_IN_EN_0 (1<<3) /* PL to PS */
|
||||
#define ZY7_SLCR_LVL_SHFTR_EN_USER_LVL_OUT_EN_0 (1<<2) /* PS to PL */
|
||||
#define ZY7_SLCR_LVL_SHFTR_EN_USER_LVL_IN_EN_1 (1<<1) /* PL to PS */
|
||||
#define ZY7_SLCR_LVL_SHFTR_EN_USER_LVL_OUT_EN_1 (1<<0) /* PS to PL */
|
||||
#define ZY7_SLCR_LVL_SHFTR_EN_ALL 0xf
|
||||
|
||||
#define ZY7_SLCR_OCM_CFG 0x0910
|
||||
|
||||
#define ZY7_SLCR_GPIOB_CTRL 0x0b00
|
||||
#define ZY7_SLCR_GPIOB_CFG_CMOS18 0x0b04
|
||||
#define ZY7_SLCR_GPIOB_CFG_CMOS25 0x0b08
|
||||
#define ZY7_SLCR_GPIOB_CFG_CMOS33 0x0b0c
|
||||
#define ZY7_SLCR_GPIOB_CFG_LVTTL 0x0b10
|
||||
#define ZY7_SLCR_GPIOB_CFG_HSTL 0x0b14
|
||||
#define ZY7_SLCR_GPIOB_DRVR_BIAS_CTRL 0x0b18
|
||||
|
||||
#define ZY7_SLCR_DDRIOB_ADDR0 0x0b40
|
||||
#define ZY7_SLCR_DDRIOB_ADDR1 0x0b44
|
||||
#define ZY7_SLCR_DDRIOB_DATA0 0x0b48
|
||||
#define ZY7_SLCR_DDRIOB_DATA1 0x0b4c
|
||||
#define ZY7_SLCR_DDRIOB_DIFF0 0x0b50
|
||||
#define ZY7_SLCR_DDRIOB_DIFF1 0x0b54
|
||||
#define ZY7_SLCR_DDRIOB_CLK 0x0b58
|
||||
#define ZY7_SLCR_DDRIOB_DRIVE_SLEW_ADDR 0x0b5c
|
||||
#define ZY7_SLCR_DDRIOB_DRIVE_SLEW_DATA 0x0b60
|
||||
#define ZY7_SLCR_DDRIOB_DRIVE_SLEW_DIFF 0x0b64
|
||||
#define ZY7_SLCR_DDRIOB_DRIVE_SLEW_CLK 0x0b68
|
||||
#define ZY7_SLCR_DDRIOB_DDR_CTRL 0x0b6c
|
||||
#define ZY7_SLCR_DDRIOB_DCI_CTRL 0x0b70
|
||||
#define ZY7_SLCR_DDRIOB_DCI_STATUS 0x0b74
|
||||
|
||||
#ifdef _KERNEL
|
||||
extern void zy7_slcr_preload_pl(void);
|
||||
extern void zy7_slcr_postload_pl(int en_level_shifters);
|
||||
extern int cgem_set_ref_clk(int unit, int frequency);
|
||||
#endif
|
||||
#endif /* _ZY7_SLCR_H_ */
|
Loading…
x
Reference in New Issue
Block a user