svn commit: r297047 - head/sys/conf

Michal Meloun mmel at FreeBSD.org
Tue Mar 22 09:44:52 UTC 2016


Dne 19.03.2016 v 0:55 Bjoern A. Zeeb napsal(a):
> Author: bz
> Date: Fri Mar 18 23:55:25 2016
> New Revision: 297047
> URL: https://svnweb.freebsd.org/changeset/base/297047
> 
> Log:
>   Allow pci_host_generic to be compiled into ARM kernels, used, e.g., in
>   simulators.
>   
>   Sponsored by:	DARPA/AFRL
> 
> Modified:
>   head/sys/conf/files.arm
> 
> Modified: head/sys/conf/files.arm
> ==============================================================================
> --- head/sys/conf/files.arm	Fri Mar 18 22:52:11 2016	(r297046)
> +++ head/sys/conf/files.arm	Fri Mar 18 23:55:25 2016	(r297047)
> @@ -103,6 +103,7 @@ dev/hwpmc/hwpmc_arm.c		optional	hwpmc
>  dev/hwpmc/hwpmc_armv7.c		optional	hwpmc armv6
>  dev/iicbus/twsi/twsi.c		optional	twsi
>  dev/ofw/ofw_cpu.c		optional	fdt
> +dev/pci/pci_host_generic.c	optional	pci fdt
>  dev/psci/psci.c			optional	psci
>  dev/psci/psci_arm.S		optional	psci
>  dev/syscons/scgfbrndr.c		optional	sc
> 

This commit broke Tegra and all others boards with PCI(e) interface.
The pci_host_generic.c driver is unconditionally build into all
kernels with PCI and FDT defined. But, for now, we don't support
multiple different pcib in one kernel (all pcib drivers must have same
driver name 'pcib', because pci bus binding).
Please, convert this driver to standard device form (e.g.'device
pci_host_generic').
Michal



More information about the svn-src-head mailing list