From owner-svn-src-head@freebsd.org Fri Feb 26 03:34:34 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B98B3AB58F7; Fri, 26 Feb 2016 03:34:34 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 789821A06; Fri, 26 Feb 2016 03:34:34 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1Q3YXEh000861; Fri, 26 Feb 2016 03:34:33 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1Q3YWok000848; Fri, 26 Feb 2016 03:34:32 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201602260334.u1Q3YWok000848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Fri, 26 Feb 2016 03:34:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r296078 - in head/sys/modules/bhnd: . bcma bcma_bhndb bhndb bhndb_pci cores cores/bhnd_chipc cores/bhnd_pci cores/bhnd_pci_hostb cores/bhnd_pcib nvram siba siba_bhndb X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Feb 2016 03:34:34 -0000 Author: adrian Date: Fri Feb 26 03:34:32 2016 New Revision: 296078 URL: https://svnweb.freebsd.org/changeset/base/296078 Log: Add modules support for the bhnd code. Submitted by: Landon Fuller Obtained from: https://github.com/landonf/freebsd/compare/user/landonf/bcm4331-CURRENT Added: head/sys/modules/bhnd/ head/sys/modules/bhnd/Makefile (contents, props changed) head/sys/modules/bhnd/bcma/ head/sys/modules/bhnd/bcma/Makefile (contents, props changed) head/sys/modules/bhnd/bcma_bhndb/ head/sys/modules/bhnd/bcma_bhndb/Makefile (contents, props changed) head/sys/modules/bhnd/bhndb/ head/sys/modules/bhnd/bhndb/Makefile (contents, props changed) head/sys/modules/bhnd/bhndb_pci/ head/sys/modules/bhnd/bhndb_pci/Makefile (contents, props changed) head/sys/modules/bhnd/cores/ head/sys/modules/bhnd/cores/Makefile (contents, props changed) head/sys/modules/bhnd/cores/bhnd_chipc/ head/sys/modules/bhnd/cores/bhnd_chipc/Makefile (contents, props changed) head/sys/modules/bhnd/cores/bhnd_pci/ head/sys/modules/bhnd/cores/bhnd_pci/Makefile (contents, props changed) head/sys/modules/bhnd/cores/bhnd_pci_hostb/ head/sys/modules/bhnd/cores/bhnd_pci_hostb/Makefile (contents, props changed) head/sys/modules/bhnd/cores/bhnd_pcib/ head/sys/modules/bhnd/cores/bhnd_pcib/Makefile (contents, props changed) head/sys/modules/bhnd/nvram/ head/sys/modules/bhnd/nvram/Makefile (contents, props changed) head/sys/modules/bhnd/siba/ head/sys/modules/bhnd/siba/Makefile (contents, props changed) head/sys/modules/bhnd/siba_bhndb/ head/sys/modules/bhnd/siba_bhndb/Makefile (contents, props changed) Added: head/sys/modules/bhnd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/bhnd + +KMOD= bhnd +SRCS= bhnd.c bhnd_subr.c \ + bhnd_bus_if.c bhnd_bus_if.h + +SRCS+= device_if.h bus_if.h + +SUBDIR= bcma \ + bcma_bhndb \ + bhndb \ + bhndb_pci \ + cores \ + nvram \ + siba \ + siba_bhndb + +.include +.include Added: head/sys/modules/bhnd/bcma/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/bcma/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/bcma + +KMOD= bcma +SRCS= bcma.c bcma_subr.c bcma_erom.c + +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Added: head/sys/modules/bhnd/bcma_bhndb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/bcma_bhndb/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/bcma + +KMOD= bcma_bhndb +SRCS= bcma_bhndb.c + +SRCS+= bhnd_bus_if.h bhndb_if.h +SRCS+= device_if.h bus_if.h + +.include Added: head/sys/modules/bhnd/bhndb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/bhndb/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,12 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/bhndb + +KMOD= bhndb +SRCS= bhndb.c bhndb_subr.c bhndb_hwdata.c \ + bhndb_bus_if.c bhndb_bus_if.h \ + bhndb_if.c bhndb_if.h + +SRCS+= device_if.h bus_if.h + +.include Added: head/sys/modules/bhnd/bhndb_pci/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/bhndb_pci/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/bhndb + +KMOD= bhndb_pci +SRCS= bhndb_pci.c bhndb_pci_hwdata.c +SRCS+= bhnd_bus_if.h bhndb_bus_if.h bhndb_if.h + +SRCS+= device_if.h bus_if.h + +.include Added: head/sys/modules/bhnd/cores/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/cores/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +SUBDIR= bhnd_chipc \ + bhnd_pci \ + bhnd_pci_hostb \ + bhnd_pcib + +.include Added: head/sys/modules/bhnd/cores/bhnd_chipc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/cores/bhnd_chipc/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/bhnd/cores/chipc + +KMOD= bhnd_chipc +SRCS= chipc.c \ + bhnd_chipc_if.c bhnd_chipc_if.h +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Added: head/sys/modules/bhnd/cores/bhnd_pci/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/cores/bhnd_pci/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/bhnd/cores/pci + +KMOD= bhnd_pci +SRCS= bhnd_pci.c \ + mdio_pcie.c +SRCS+= device_if.h bus_if.h bhnd_bus_if.h \ + mdio_if.h + +.include Added: head/sys/modules/bhnd/cores/bhnd_pci_hostb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/cores/bhnd_pci_hostb/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/bhnd/cores/pci + +KMOD= bhnd_pci_hostb +SRCS= bhnd_pci_hostb.c +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Added: head/sys/modules/bhnd/cores/bhnd_pcib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/cores/bhnd_pcib/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/bhnd/cores/pci + +KMOD= bhnd_pcib +SRCS= bhnd_pcib.c +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Added: head/sys/modules/bhnd/nvram/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/nvram/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/nvram + +KMOD= bhnd_nvram +SRCS= bhnd_nvram_if.c bhnd_nvram_if.h + +SRCS+= device_if.h bus_if.h + +.include Added: head/sys/modules/bhnd/siba/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/siba/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/siba + +KMOD= siba +SRCS= siba.c siba_subr.c + +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Added: head/sys/modules/bhnd/siba_bhndb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/bhnd/siba_bhndb/Makefile Fri Feb 26 03:34:32 2016 (r296078) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/siba + +KMOD= siba_bhndb +SRCS= siba_bhndb.c + +SRCS+= bhnd_bus_if.h bhndb_if.h +SRCS+= device_if.h bus_if.h + +.include