e83ce34035
This adds support for the NVRAM handling and the basic SPROM hardware used on siba(4) and bcma(4) devices, including: * SPROM directly attached to the PCI core, accessible via PCI configuration space. * SPROM attached to later ChipCommon cores. * SPROM variables vended from the parent SoC bus (e.g. via a directly-attached flash device). Additional improvements to the NVRAM/SPROM interface will be required, but this changeset stands alone as working checkpoint. Submitted by: Landon Fuller <landonf@landonf.org> Reviewed by: Michael Zhilin <mizkha@gmail.com> (Broadcom MIPS support) Differential Revision: https://reviews.freebsd.org/D6196
27 lines
458 B
Makefile
27 lines
458 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/bhnd
|
|
.PATH: ${.CURDIR}/../../dev/bhnd/nvram
|
|
|
|
KMOD= bhnd
|
|
SRCS= bhnd.c bhnd_subr.c \
|
|
bhnd_sprom.c nvram_subr.c \
|
|
bhnd_nvram_map.h bhnd_nvram_map_data.h
|
|
|
|
SRCS+= bhnd_bus_if.c bhnd_bus_if.h \
|
|
bhnd_chipc_if.c bhnd_chipc_if.h \
|
|
bhnd_nvram_if.c bhnd_nvram_if.h
|
|
|
|
SRCS+= device_if.h bus_if.h
|
|
|
|
SUBDIR= bcma \
|
|
bcma_bhndb \
|
|
bhndb \
|
|
bhndb_pci \
|
|
cores \
|
|
siba \
|
|
siba_bhndb
|
|
|
|
.include <bsd.kmod.mk>
|
|
.include <bsd.subdir.mk>
|