summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlandonf <landonf@FreeBSD.org>2016-06-04 19:58:01 +0000
committerlandonf <landonf@FreeBSD.org>2016-06-04 19:58:01 +0000
commite62e1c44622d4598d700c7a031e1b7d7feeb5a5a (patch)
tree6002f4835ea932547ba68daf77cf7c8a79d020e4
parent8c895dab58ab61d3ed5ab876c7254df5894523fe (diff)
downloadFreeBSD-src-e62e1c44622d4598d700c7a031e1b7d7feeb5a5a.zip
FreeBSD-src-e62e1c44622d4598d700c7a031e1b7d7feeb5a5a.tar.gz
bhnd(4): support IPX OTP NVRAM/SPROM data source
Add support for fetching SPROM data from OTP on chipsets with an IPX OTP controller (including the BCM43225). This integrates the NVRAM data source into the chipc_caps capability structure, and adds a sprom_offset field that can be used with OTP to locate the SPROM image data (found within the general use region, H/W subregion). This also removes one of two duplicate parse error messages reported by both the bhnd_sprom driver and the underlying SPROM parsing API. Approved by: adrian (mentor) Differential Revision: https://reviews.freebsd.org/D6729
-rw-r--r--sys/dev/bhnd/cores/chipc/bhnd_chipc_if.m13
-rw-r--r--sys/dev/bhnd/cores/chipc/bhnd_sprom_chipc.c32
-rw-r--r--sys/dev/bhnd/cores/chipc/chipc.c133
-rw-r--r--sys/dev/bhnd/cores/chipc/chipc.h11
-rw-r--r--sys/dev/bhnd/cores/chipc/chipcreg.h8
-rw-r--r--sys/dev/bhnd/cores/chipc/chipcvar.h27
-rw-r--r--sys/dev/bhnd/nvram/bhnd_nvram.h2
-rw-r--r--sys/dev/bhnd/nvram/bhnd_sprom.c32
-rw-r--r--sys/dev/bhnd/nvram/bhnd_sprom_subr.c2
-rw-r--r--sys/dev/bhnd/nvram/bhnd_spromvar.h2
10 files changed, 159 insertions, 103 deletions
diff --git a/sys/dev/bhnd/cores/chipc/bhnd_chipc_if.m b/sys/dev/bhnd/cores/chipc/bhnd_chipc_if.m
index abb4f11..1cd7d80 100644
--- a/sys/dev/bhnd/cores/chipc/bhnd_chipc_if.m
+++ b/sys/dev/bhnd/cores/chipc/bhnd_chipc_if.m
@@ -65,15 +65,6 @@ CODE {
}
/**
- * Return the preferred NVRAM data source.
- *
- * @param dev A bhnd(4) ChipCommon device.
- */
-METHOD bhnd_nvram_src_t nvram_src {
- device_t dev;
-}
-
-/**
* Write @p value with @p mask directly to the chipctrl register.
*
* @param dev A bhnd(4) ChipCommon device.
@@ -103,7 +94,7 @@ METHOD struct chipc_caps * get_caps {
} DEFAULT bhnd_chipc_generic_get_caps;
/**
- * Enable hardware access to the SPROM.
+ * Enable hardware access to the SPROM/OTP source.
*
* @param sc chipc driver state.
*
@@ -116,7 +107,7 @@ METHOD int enable_sprom {
}
/**
- * Release hardware access to the SPROM.
+ * Release hardware access to the SPROM/OTP source.
*
* @param sc chipc driver state.
*/
diff --git a/sys/dev/bhnd/cores/chipc/bhnd_sprom_chipc.c b/sys/dev/bhnd/cores/chipc/bhnd_sprom_chipc.c
index 6e895e4..0d8cda6 100644
--- a/sys/dev/bhnd/cores/chipc/bhnd_sprom_chipc.c
+++ b/sys/dev/bhnd/cores/chipc/bhnd_sprom_chipc.c
@@ -48,12 +48,19 @@ __FBSDID("$FreeBSD$");
#include "bhnd_nvram_if.h"
-#include "chipc.h"
+#include "chipcvar.h"
+#include "chipc_private.h"
+
+#define CHIPC_VALID_SPROM_SRC(_src) \
+ ((_src) == BHND_NVRAM_SRC_SPROM || (_src) == BHND_NVRAM_SRC_OTP)
static void
chipc_sprom_identify(driver_t *driver, device_t parent)
{
- if (bhnd_chipc_nvram_src(parent) != BHND_NVRAM_SRC_SPROM)
+ struct chipc_caps *caps;
+
+ caps = BHND_CHIPC_GET_CAPS(parent);
+ if (!CHIPC_VALID_SPROM_SRC(caps->nvram_src))
return;
if (device_find_child(parent, "bhnd_nvram", 0) != NULL)
@@ -66,13 +73,15 @@ chipc_sprom_identify(driver_t *driver, device_t parent)
static int
chipc_sprom_probe(device_t dev)
{
- device_t chipc;
- int error;
+ struct chipc_caps *caps;
+ device_t chipc;
+ int error;
chipc = device_get_parent(dev);
+ caps = BHND_CHIPC_GET_CAPS(chipc);
- /* Only match on SPROM devices */
- if (BHND_CHIPC_NVRAM_SRC(chipc) != BHND_NVRAM_SRC_SPROM)
+ /* Only match on SPROM/OTP devices */
+ if (!CHIPC_VALID_SPROM_SRC(caps->nvram_src))
return (ENXIO);
/* Defer to default driver implementation */
@@ -85,16 +94,19 @@ chipc_sprom_probe(device_t dev)
static int
chipc_sprom_attach(device_t dev)
{
- device_t chipc;
- int error;
+ struct chipc_caps *caps;
+ device_t chipc;
+ int error;
+
+ chipc = device_get_parent(dev);
+ caps = BHND_CHIPC_GET_CAPS(chipc);
/* Request that ChipCommon enable access to SPROM hardware before
* delegating attachment (and SPROM parsing) to the common driver */
- chipc = device_get_parent(dev);
if ((error = BHND_CHIPC_ENABLE_SPROM(chipc)))
return (error);
- error = bhnd_sprom_attach(dev);
+ error = bhnd_sprom_attach(dev, caps->sprom_offset);
BHND_CHIPC_DISABLE_SPROM(chipc);
return (error);
}
diff --git a/sys/dev/bhnd/cores/chipc/chipc.c b/sys/dev/bhnd/cores/chipc/chipc.c
index 2de0dc8..b30cec1 100644
--- a/sys/dev/bhnd/cores/chipc/chipc.c
+++ b/sys/dev/bhnd/cores/chipc/chipc.c
@@ -91,10 +91,18 @@ static const struct bhnd_device chipc_devices[] = {
/* Device quirks table */
static struct bhnd_device_quirk chipc_quirks[] = {
- /* core revision quirks */
+ /* HND OTP controller revisions */
+ BHND_CORE_QUIRK (HWREV_EQ (12), CHIPC_QUIRK_OTP_HND), /* (?) */
+ BHND_CORE_QUIRK (HWREV_EQ (17), CHIPC_QUIRK_OTP_HND), /* BCM4311 */
+ BHND_CORE_QUIRK (HWREV_EQ (22), CHIPC_QUIRK_OTP_HND), /* BCM4312 */
+
+ /* IPX OTP controller revisions */
+ BHND_CORE_QUIRK (HWREV_EQ (21), CHIPC_QUIRK_OTP_IPX),
+ BHND_CORE_QUIRK (HWREV_GTE(23), CHIPC_QUIRK_OTP_IPX),
+
BHND_CORE_QUIRK (HWREV_GTE(32), CHIPC_QUIRK_SUPPORTS_SPROM),
BHND_CORE_QUIRK (HWREV_GTE(35), CHIPC_QUIRK_SUPPORTS_CAP_EXT),
- BHND_CORE_QUIRK (HWREV_GTE(49), CHIPC_QUIRK_IPX_OTPLAYOUT_SIZE),
+ BHND_CORE_QUIRK (HWREV_GTE(49), CHIPC_QUIRK_IPX_OTPL_SIZE),
/* 4706 variant quirks */
BHND_CORE_QUIRK (HWREV_EQ (38), CHIPC_QUIRK_4706_NFLASH), /* BCM5357? */
@@ -159,10 +167,11 @@ static int chipc_try_activate_resource(
int type, int rid, struct resource *r,
bool req_direct);
+static bhnd_nvram_src chipc_find_nvram_src(struct chipc_softc *sc,
+ struct chipc_caps *caps);
static int chipc_read_caps(struct chipc_softc *sc,
struct chipc_caps *caps);
-static bhnd_nvram_src_t chipc_nvram_identify(struct chipc_softc *sc);
static bool chipc_should_enable_sprom(
struct chipc_softc *sc);
@@ -265,9 +274,6 @@ chipc_attach(device_t dev)
if (bootverbose)
chipc_print_caps(sc->dev, &sc->caps);
- /* Identify NVRAM source */
- sc->nvram_src = chipc_nvram_identify(sc);
-
/* Probe and attach children */
bus_generic_probe(dev);
if ((error = bus_generic_attach(dev)))
@@ -305,6 +311,60 @@ chipc_detach(device_t dev)
return (0);
}
+/**
+ * Determine the NVRAM data source for this device.
+ *
+ * The SPROM, OTP, and flash capability flags must be fully populated in
+ * @p caps.
+ *
+ * @param sc chipc driver state.
+ * @param caps capability flags to be used to derive NVRAM configuration.
+ */
+static bhnd_nvram_src
+chipc_find_nvram_src(struct chipc_softc *sc, struct chipc_caps *caps)
+{
+ uint32_t otp_st, srom_ctrl;
+
+ /* Very early devices vend SPROM/OTP/CIS (if at all) via the
+ * host bridge interface instead of ChipCommon. */
+ if (!CHIPC_QUIRK(sc, SUPPORTS_SPROM))
+ return (BHND_NVRAM_SRC_UNKNOWN);
+
+ /*
+ * Later chipset revisions standardized the SPROM capability flags and
+ * register interfaces.
+ *
+ * We check for hardware presence in order of precedence. For example,
+ * SPROM is is always used in preference to internal OTP if found.
+ */
+ if (caps->sprom) {
+ srom_ctrl = bhnd_bus_read_4(sc->core, CHIPC_SPROM_CTRL);
+ if (srom_ctrl & CHIPC_SRC_PRESENT)
+ return (BHND_NVRAM_SRC_SPROM);
+ }
+
+ /* Check for programmed OTP H/W subregion (contains SROM data) */
+ if (CHIPC_QUIRK(sc, SUPPORTS_OTP) && caps->otp_size > 0) {
+ /* TODO: need access to HND-OTP device */
+ if (!CHIPC_QUIRK(sc, OTP_HND)) {
+ device_printf(sc->dev,
+ "NVRAM unavailable: unsupported OTP controller.\n");
+ return (BHND_NVRAM_SRC_UNKNOWN);
+ }
+
+ otp_st = bhnd_bus_read_4(sc->core, CHIPC_OTPST);
+ if (otp_st & CHIPC_OTPS_GUP_HW)
+ return (BHND_NVRAM_SRC_OTP);
+ }
+
+ /* Check for flash */
+ if (caps->flash_type != CHIPC_FLASH_NONE)
+ return (BHND_NVRAM_SRC_FLASH);
+
+ /* No NVRAM hardware capability declared */
+ return (BHND_NVRAM_SRC_UNKNOWN);
+}
+
/* Read and parse chipc capabilities */
static int
chipc_read_caps(struct chipc_softc *sc, struct chipc_caps *caps)
@@ -342,7 +402,7 @@ chipc_read_caps(struct chipc_softc *sc, struct chipc_caps *caps)
caps->aob = CHIPC_GET_FLAG(cap_ext_reg, CHIPC_CAP2_AOB);
/* Fetch OTP size for later IPX controller revisions */
- if (CHIPC_QUIRK(sc, IPX_OTPLAYOUT_SIZE)) {
+ if (CHIPC_QUIRK(sc, IPX_OTPL_SIZE)) {
regval = bhnd_bus_read_4(sc->core, CHIPC_OTPLAYOUT);
caps->otp_size = CHIPC_GET_BITS(regval, CHIPC_OTPL_SIZE);
}
@@ -384,47 +444,26 @@ chipc_read_caps(struct chipc_softc *sc, struct chipc_caps *caps)
caps->flash_type = CHIPC_NFLASH_4706;
}
- return (0);
-}
-
-/**
- * Determine the NVRAM data source for this device.
- *
- * @param sc chipc driver state.
- */
-static bhnd_nvram_src_t
-chipc_nvram_identify(struct chipc_softc *sc)
-{
- uint32_t srom_ctrl;
- /* Very early devices vend SPROM/OTP/CIS (if at all) via the
- * host bridge interface instead of ChipCommon. */
- if (!CHIPC_QUIRK(sc, SUPPORTS_SPROM))
- return (BHND_NVRAM_SRC_UNKNOWN);
+ /* Determine NVRAM source. Must occur after the SPROM/OTP/flash
+ * capability flags have been populated. */
+ caps->nvram_src = chipc_find_nvram_src(sc, caps);
- /*
- * Later chipset revisions standardized the SPROM capability flags and
- * register interfaces.
- *
- * We check for hardware presence in order of precedence. For example,
- * SPROM is is always used in preference to internal OTP if found.
- */
- if (CHIPC_CAP(sc, sprom)) {
- srom_ctrl = bhnd_bus_read_4(sc->core, CHIPC_SPROM_CTRL);
- if (srom_ctrl & CHIPC_SRC_PRESENT)
- return (BHND_NVRAM_SRC_SPROM);
- }
+ /* Determine the SPROM offset within OTP (if any). SPROM-formatted
+ * data is placed within the OTP general use region. */
+ caps->sprom_offset = 0;
+ if (caps->nvram_src == BHND_NVRAM_SRC_OTP) {
+ CHIPC_ASSERT_QUIRK(sc, OTP_IPX);
- /* Check for OTP */
- if (CHIPC_CAP(sc, otp_size) != 0)
- return (BHND_NVRAM_SRC_OTP);
+ /* Bit offset to GUP HW subregion containing SPROM data */
+ regval = bhnd_bus_read_4(sc->core, CHIPC_OTPLAYOUT);
+ caps->sprom_offset = CHIPC_GET_BITS(regval, CHIPC_OTPL_GUP);
- /* Check for flash */
- if (CHIPC_CAP(sc, flash_type) != CHIPC_FLASH_NONE)
- return (BHND_NVRAM_SRC_FLASH);
+ /* Convert to bytes */
+ caps->sprom_offset /= 8;
+ }
- /* No NVRAM hardware capability declared */
- return (BHND_NVRAM_SRC_UNKNOWN);
+ return (0);
}
static int
@@ -1284,13 +1323,6 @@ finished:
CHIPC_UNLOCK(sc);
}
-static bhnd_nvram_src_t
-chipc_nvram_src(device_t dev)
-{
- struct chipc_softc *sc = device_get_softc(dev);
- return (sc->nvram_src);
-}
-
static void
chipc_write_chipctrl(device_t dev, uint32_t value, uint32_t mask)
{
@@ -1363,7 +1395,6 @@ static device_method_t chipc_methods[] = {
DEVMETHOD(bhnd_bus_activate_resource, chipc_activate_bhnd_resource),
/* ChipCommon interface */
- DEVMETHOD(bhnd_chipc_nvram_src, chipc_nvram_src),
DEVMETHOD(bhnd_chipc_write_chipctrl, chipc_write_chipctrl),
DEVMETHOD(bhnd_chipc_enable_sprom, chipc_enable_sprom_pins),
DEVMETHOD(bhnd_chipc_disable_sprom, chipc_disable_sprom_pins),
diff --git a/sys/dev/bhnd/cores/chipc/chipc.h b/sys/dev/bhnd/cores/chipc/chipc.h
index 7a37aaa..1036e67 100644
--- a/sys/dev/bhnd/cores/chipc/chipc.h
+++ b/sys/dev/bhnd/cores/chipc/chipc.h
@@ -37,15 +37,4 @@
#include "bhnd_chipc_if.h"
-/**
- * Query a ChipCommon device and return the preferred NVRAM data source.
- *
- * @param dev A bhnd(4) ChipCommon device.
- */
-static inline bhnd_nvram_src_t
-bhnd_chipc_nvram_src(device_t dev)
-{
- return (BHND_CHIPC_NVRAM_SRC(dev));
-}
-
#endif /* _BHND_CORES_CHIPC_CHIPC_H_ */
diff --git a/sys/dev/bhnd/cores/chipc/chipcreg.h b/sys/dev/bhnd/cores/chipc/chipcreg.h
index 26c693e..611ed9c 100644
--- a/sys/dev/bhnd/cores/chipc/chipcreg.h
+++ b/sys/dev/bhnd/cores/chipc/chipcreg.h
@@ -48,7 +48,7 @@
#define CHIPC_OTPST 0x10 /**< otp status */
#define CHIPC_OTPCTRL 0x14 /**< otp control */
#define CHIPC_OTPPROG 0x18
-#define CHIPC_OTPLAYOUT 0x1C /**< otp layout (rev >= 23) */
+#define CHIPC_OTPLAYOUT 0x1C /**< otp layout (IPX OTP) */
#define CHIPC_INTST 0x20 /**< interrupt status */
#define CHIPC_INTM 0x24 /**< interrupt mask */
@@ -339,7 +339,7 @@ enum {
#define CHIPC_OTPS_RV(x) (1 << (16 + (x))) /* redundancy entry valid */
#define CHIPC_OTPS_RV_MASK 0x0fff0000
-/* Fields in the otpcontrol register in rev >= 21 */
+/* IPX OTP fields in the otpcontrol register */
#define CHIPC_OTPC_PROGSEL 0x00000001
#define CHIPC_OTPC_PCOUNT_MASK 0x0000000e
#define CHIPC_OTPC_PCOUNT_SHIFT 1
@@ -350,7 +350,7 @@ enum {
#define CHIPC_OTPC_ODM 0x00000800
#define CHIPC_OTPC_PROGEN 0x80000000
-/* Fields in otpprog in rev >= 21 and HND OTP */
+/* Fields in otpprog in IPX OTP and HND OTP */
#define CHIPC_OTPP_COL_MASK 0x000000ff
#define CHIPC_OTPP_COL_SHIFT 0
#define CHIPC_OTPP_ROW_MASK 0x0000ff00
@@ -366,6 +366,8 @@ enum {
/* otplayout */
#define CHIPC_OTPL_SIZE_MASK 0x0000f000 /* rev >= 49 */
#define CHIPC_OTPL_SIZE_SHIFT 12
+#define CHIPC_OTPL_GUP_MASK 0x00000FFF /* bit offset to general use region */
+#define CHIPC_OTPL_GUP_SHIFT 0
#define CHIPC_OTPL_CISFORMAT_NEW 0x80000000 /* rev >= 36 */
/* Opcodes for OTPP_OC field */
diff --git a/sys/dev/bhnd/cores/chipc/chipcvar.h b/sys/dev/bhnd/cores/chipc/chipcvar.h
index 785b7e7..df3a15e 100644
--- a/sys/dev/bhnd/cores/chipc/chipcvar.h
+++ b/sys/dev/bhnd/cores/chipc/chipcvar.h
@@ -32,6 +32,9 @@
#ifndef _BHND_CORES_CHIPC_CHIPCVAR_H_
#define _BHND_CORES_CHIPC_CHIPCVAR_H_
+#include <sys/types.h>
+#include <sys/rman.h>
+
#include <dev/bhnd/nvram/bhnd_spromvar.h>
#include "chipc.h"
@@ -67,8 +70,14 @@ struct chipc_caps {
uint8_t extbus_type; /**< ExtBus type (CHIPC_CAP_EXTBUS_*) */
chipc_flash flash_type; /**< Flash type */
+ bhnd_nvram_src nvram_src; /**< identified NVRAM source */
+
+ bus_size_t sprom_offset; /**< Offset to SPROM data within
+ SPROM/OTP, 0 if unknown or not
+ present */
uint8_t otp_size; /**< OTP (row?) size, 0 if not present */
- uint8_t cfi_width; /**< CFI bus width, 0 if unknown or CFI not present */
+ uint8_t cfi_width; /**< CFI bus width, 0 if unknown or CFI
+ not present */
uint8_t pll_type; /**< PLL type */
bool power_control; /**< Power control available */
@@ -158,9 +167,21 @@ enum {
/** Supports CHIPC_CAPABILITIES_EXT register */
CHIPC_QUIRK_SUPPORTS_CAP_EXT = (1<<6),
+ /** Supports HND or IPX OTP registers (CHIPC_OTPST, CHIPC_OTPCTRL,
+ * CHIPC_OTPPROG) */
+ CHIPC_QUIRK_SUPPORTS_OTP = (1<<7),
+
+ /** Supports HND OTP registers. */
+ CHIPC_QUIRK_OTP_HND = (1<<8) |
+ CHIPC_QUIRK_SUPPORTS_OTP,
+
+ /** Supports IPX OTP registers. */
+ CHIPC_QUIRK_OTP_IPX = (1<<9) |
+ CHIPC_QUIRK_SUPPORTS_OTP,
+
/** OTP size is defined via CHIPC_OTPLAYOUT register in later
* ChipCommon revisions using the 'IPX' OTP controller. */
- CHIPC_QUIRK_IPX_OTPLAYOUT_SIZE = (1<<7),
+ CHIPC_QUIRK_IPX_OTPL_SIZE = (1<<10)
};
/**
@@ -183,8 +204,6 @@ struct chipc_softc {
uint32_t quirks; /**< chipc quirk flags */
struct chipc_caps caps; /**< chipc capabilities */
- bhnd_nvram_src_t nvram_src; /**< identified NVRAM source */
-
struct mtx mtx; /**< state mutex. */
size_t sprom_refcnt; /**< SPROM pin enable refcount */
struct rman mem_rman; /**< port memory manager */
diff --git a/sys/dev/bhnd/nvram/bhnd_nvram.h b/sys/dev/bhnd/nvram/bhnd_nvram.h
index 5b61538..2fce5c6 100644
--- a/sys/dev/bhnd/nvram/bhnd_nvram.h
+++ b/sys/dev/bhnd/nvram/bhnd_nvram.h
@@ -65,6 +65,6 @@ typedef enum {
* is provided by a common platform NVRAM
* device.
*/
-} bhnd_nvram_src_t;
+} bhnd_nvram_src;
#endif /* _BHND_NVRAM_BHND_NVRAM_H_ */
diff --git a/sys/dev/bhnd/nvram/bhnd_sprom.c b/sys/dev/bhnd/nvram/bhnd_sprom.c
index 9b4855f..038aaf0 100644
--- a/sys/dev/bhnd/nvram/bhnd_sprom.c
+++ b/sys/dev/bhnd/nvram/bhnd_sprom.c
@@ -71,19 +71,33 @@ bhnd_sprom_probe(device_t dev)
/* Quiet by default */
if (!bootverbose)
device_quiet(dev);
- device_set_desc(dev, "Broadcom SPROM/OTP");
+ device_set_desc(dev, "SPROM/OTP");
/* Refuse wildcard attachments */
return (BUS_PROBE_NOWILDCARD);
}
+/* Default DEVICE_ATTACH() implementation; assumes a zero offset to the
+ * SPROM data */
+static int
+bhnd_sprom_attach_meth(device_t dev)
+{
+ return (bhnd_sprom_attach(dev, 0));
+}
+
/**
- * Default bhnd sprom driver implementation of DEVICE_ATTACH().
+ * BHND SPROM device attach.
+ *
+ * This should be called from DEVICE_ATTACH() with the @p offset to the
+ * SPROM data.
*
- * Assumes sprom is mapped via YS_RES_MEMORY resource with RID 0.
+ * Assumes SPROM is mapped via SYS_RES_MEMORY resource with RID 0.
+ *
+ * @param dev BHND SPROM device.
+ * @param offset Offset to the SPROM data.
*/
int
-bhnd_sprom_attach(device_t dev)
+bhnd_sprom_attach(device_t dev, bus_size_t offset)
{
struct bhnd_sprom_softc *sc;
int error;
@@ -101,10 +115,8 @@ bhnd_sprom_attach(device_t dev)
}
/* Initialize SPROM shadow */
- if ((error = bhnd_sprom_init(&sc->shadow, sc->sprom_res, 0))) {
- device_printf(dev, "unrecognized SPROM format\n");
+ if ((error = bhnd_sprom_init(&sc->shadow, sc->sprom_res, offset)))
goto failed;
- }
/* Initialize mutex */
SPROM_LOCK_INIT(sc);
@@ -118,7 +130,7 @@ failed:
}
/**
- * Default bhnd sprom driver implementation of DEVICE_DETACH().
+ * Default bhnd_sprom implementation of DEVICE_RESUME().
*/
int
bhnd_sprom_resume(device_t dev)
@@ -127,7 +139,7 @@ bhnd_sprom_resume(device_t dev)
}
/**
- * Default bhnd sprom driver implementation of DEVICE_DETACH().
+ * Default bhnd sprom driver implementation of DEVICE_SUSPEND().
*/
int
bhnd_sprom_suspend(device_t dev)
@@ -193,7 +205,7 @@ bhnd_sprom_setvar_meth(device_t dev, const char *name, const void *buf,
static device_method_t bhnd_sprom_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, bhnd_sprom_probe),
- DEVMETHOD(device_attach, bhnd_sprom_attach),
+ DEVMETHOD(device_attach, bhnd_sprom_attach_meth),
DEVMETHOD(device_resume, bhnd_sprom_resume),
DEVMETHOD(device_suspend, bhnd_sprom_suspend),
DEVMETHOD(device_detach, bhnd_sprom_detach),
diff --git a/sys/dev/bhnd/nvram/bhnd_sprom_subr.c b/sys/dev/bhnd/nvram/bhnd_sprom_subr.c
index dee0941..96afc93 100644
--- a/sys/dev/bhnd/nvram/bhnd_sprom_subr.c
+++ b/sys/dev/bhnd/nvram/bhnd_sprom_subr.c
@@ -465,7 +465,7 @@ sprom_populate_shadow(struct bhnd_sprom *sc)
}
/* identification failed */
- device_printf(sc->dev, "unrecognized sprom format\n");
+ device_printf(sc->dev, "unrecognized SPROM format\n");
return (EINVAL);
}
diff --git a/sys/dev/bhnd/nvram/bhnd_spromvar.h b/sys/dev/bhnd/nvram/bhnd_spromvar.h
index 9abc8af..865493d 100644
--- a/sys/dev/bhnd/nvram/bhnd_spromvar.h
+++ b/sys/dev/bhnd/nvram/bhnd_spromvar.h
@@ -38,7 +38,7 @@ DECLARE_CLASS(bhnd_sprom_driver);
struct bhnd_sprom;
int bhnd_sprom_probe(device_t dev);
-int bhnd_sprom_attach(device_t dev);
+int bhnd_sprom_attach(device_t dev, bus_size_t offset);
int bhnd_sprom_resume(device_t dev);
int bhnd_sprom_suspend(device_t dev);
int bhnd_sprom_detach(device_t dev);
OpenPOWER on IntegriCloud