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 13# ChipCommon 14SRCS+= chipc.c chipc_subr.c 15SRCS+= bhnd_sprom_chipc.c \ 16 bhnd_pmu_chipc.c \ 17 bhnd_pwrctl.c bhnd_pwrctl_subr.c 18SRCS+= bhnd_chipc_if.c bhnd_chipc_if.h 19 20# PMU 21SRCS+= bhnd_pmu.c \ 22 bhnd_pmu_core.c \ 23 bhnd_pmu_subr.c 24SRCS+= bhnd_pmu_if.c bhnd_pmu_if.h 25 26# NVRAM/SPROM 27SRCS+= bhnd_nvram.c \ 28 bhnd_nvram_parser.c \ 29 bhnd_sprom.c \ 30 bhnd_sprom_parser.c 31SRCS+= bhnd_nvram_common.c 32SRCS+= bhnd_nvram_map.h bhnd_nvram_map_data.h 33SRCS+= bhnd_nvram_if.c bhnd_nvram_if.h 34 35SRCS+= device_if.h bus_if.h 36 37SUBDIR= bcma \ 38 bcma_bhndb \ 39 bhndb \ 40 bhndb_pci \ 41 cores \ 42 siba \ 43 siba_bhndb 44 45.include <bsd.kmod.mk> 46.include <bsd.subdir.mk> 47