1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../dev/bhnd 4.PATH: ${.CURDIR}/../../dev/bhnd/cores/chipc 5.PATH: ${.CURDIR}/../../dev/bhnd/cores/chipc/pwrctl 6.PATH: ${.CURDIR}/../../dev/bhnd/cores/pmu 7.PATH: ${.CURDIR}/../../dev/bhnd/nvram 8 9KMOD= bhnd 10SRCS= bhnd.c bhnd_subr.c 11SRCS+= bhnd_bus_if.c bhnd_bus_if.h 12 13SRCS+= bhnd_erom.c 14SRCS+= bhnd_erom_if.c bhnd_erom_if.h 15 16# ChipCommon 17SRCS+= chipc.c chipc_subr.c 18SRCS+= bhnd_sprom_chipc.c \ 19 bhnd_pmu_chipc.c \ 20 bhnd_pwrctl.c bhnd_pwrctl_subr.c 21SRCS+= bhnd_chipc_if.c bhnd_chipc_if.h 22 23# PMU 24SRCS+= bhnd_pmu.c \ 25 bhnd_pmu_core.c \ 26 bhnd_pmu_subr.c 27SRCS+= bhnd_pmu_if.c bhnd_pmu_if.h 28 29# NVRAM/SPROM 30SRCS+= bhnd_nvram.c \ 31 bhnd_nvram_parser.c \ 32 bhnd_sprom.c \ 33 bhnd_sprom_parser.c 34SRCS+= bhnd_nvram_common.c 35SRCS+= bhnd_nvram_map.h bhnd_nvram_map_data.h 36SRCS+= bhnd_nvram_if.c bhnd_nvram_if.h 37 38SRCS+= device_if.h bus_if.h 39 40SUBDIR= bcma \ 41 bcma_bhndb \ 42 bhndb \ 43 bhndb_pci \ 44 cores \ 45 siba \ 46 siba_bhndb 47 48.include <bsd.kmod.mk> 49.include <bsd.subdir.mk> 50