1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Add compatible strings for all the hardware this driver works with.

Also, move the READ/WRITE bus space access macros from the header into the
source file, and rename them to RD2/WR2 to make it clear they're 16-bit
accessors.  (READ/WRITE just don't seem like good names to be in a public
header file.)
This commit is contained in:
Ian Lepore 2015-08-19 20:31:35 +00:00
parent 89cead337a
commit 398c183874
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=286942
2 changed files with 26 additions and 13 deletions

View File

@ -65,6 +65,20 @@ static struct resource_spec imx_wdog_spec[] = {
{ -1, 0 }
};
static struct ofw_compat_data compat_data[] = {
{"fsl,imx6sx-wdt", 1},
{"fsl,imx6sl-wdt", 1},
{"fsl,imx6q-wdt", 1},
{"fsl,imx53-wdt", 1},
{"fsl,imx51-wdt", 1},
{"fsl,imx50-wdt", 1},
{"fsl,imx35-wdt", 1},
{"fsl,imx27-wdt", 1},
{"fsl,imx25-wdt", 1},
{"fsl,imx21-wdt", 1},
{NULL, 0}
};
static void imx_watchdog(void *, u_int, int *);
static int imx_wdog_probe(device_t);
static int imx_wdog_attach(device_t);
@ -83,6 +97,10 @@ static driver_t imx_wdog_driver = {
static devclass_t imx_wdog_devclass;
DRIVER_MODULE(imx_wdog, simplebus, imx_wdog_driver, imx_wdog_devclass, 0, 0);
#define RD2(_sc, _r) \
bus_space_read_2((_sc)->sc_bst, (_sc)->sc_bsh, (_r))
#define WR2(_sc, _r, _v) \
bus_space_write_2((_sc)->sc_bst, (_sc)->sc_bsh, (_r), (_v))
static void
imx_watchdog(void *arg, u_int cmd, int *error)
@ -95,8 +113,8 @@ imx_watchdog(void *arg, u_int cmd, int *error)
mtx_lock(&sc->sc_mtx);
/* Refresh counter, since we feels good */
WRITE(sc, WDOG_SR_REG, WDOG_SR_STEP1);
WRITE(sc, WDOG_SR_REG, WDOG_SR_STEP2);
WR2(sc, WDOG_SR_REG, WDOG_SR_STEP1);
WR2(sc, WDOG_SR_REG, WDOG_SR_STEP2);
/* We don't require precession, so "-10" (/1024) is ok */
timeout = (1 << ((cmd & WD_INTERVAL) - 10)) / 1000000;
@ -105,14 +123,14 @@ imx_watchdog(void *arg, u_int cmd, int *error)
device_printf(sc->sc_dev,
"WARNING: watchdog can't be disabled!!!");
sc->sc_timeout = timeout;
reg = READ(sc, WDOG_CR_REG);
reg = RD2(sc, WDOG_CR_REG);
reg &= ~WDOG_CR_WT_MASK;
reg |= (timeout << (WDOG_CR_WT_SHIFT + 1)) &
WDOG_CR_WT_MASK;
WRITE(sc, WDOG_CR_REG, reg);
WR2(sc, WDOG_CR_REG, reg);
/* Refresh counter */
WRITE(sc, WDOG_SR_REG, WDOG_SR_STEP1);
WRITE(sc, WDOG_SR_REG, WDOG_SR_STEP2);
WR2(sc, WDOG_SR_REG, WDOG_SR_STEP1);
WR2(sc, WDOG_SR_REG, WDOG_SR_STEP2);
*error = 0;
} else {
*error = EOPNOTSUPP;
@ -132,11 +150,10 @@ imx_wdog_probe(device_t dev)
if (!ofw_bus_status_okay(dev))
return (ENXIO);
if (!ofw_bus_is_compatible(dev, "fsl,imx51-wdt") &&
!ofw_bus_is_compatible(dev, "fsl,imx53-wdt"))
if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
return (ENXIO);
device_set_desc(dev, "Freescale i.MX5xx Watchdog Timer");
device_set_desc(dev, "Freescale i.MX Watchdog");
return (0);
}

View File

@ -59,7 +59,3 @@
#define WDOG_MCR_REG 0x08 /* Miscellaneous Control Register */
#define WDOG_MCR_PDE (1 << 0)
#define READ(_sc, _r) \
bus_space_read_2((_sc)->sc_bst, (_sc)->sc_bsh, (_r))
#define WRITE(_sc, _r, _v) \
bus_space_write_2((_sc)->sc_bst, (_sc)->sc_bsh, (_r), (_v))