diff options
author | dfr <dfr@FreeBSD.org> | 2000-08-28 21:48:13 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2000-08-28 21:48:13 +0000 |
commit | dd8b44b3958fa67d802cbbec7c7d82f7fb476229 (patch) | |
tree | 61496c144b3ecd15192a2e07e755754e18346bc9 /sys/dev/syscons | |
parent | 9ed8ded4d312c58a27de9402fd9802e78a591cb9 (diff) | |
download | FreeBSD-src-dd8b44b3958fa67d802cbbec7c7d82f7fb476229.zip FreeBSD-src-dd8b44b3958fa67d802cbbec7c7d82f7fb476229.tar.gz |
* Completely rewrite the alpha busspace to hide the implementation from
the drivers.
* Remove legacy inx/outx support from chipset and replace with macros
which call busspace.
* Rework pci config accesses to route through the pcib device instead of
calling a MD function directly.
With these changes it is possible to cleanly support machines which have
more than one independantly numbered PCI busses. As a bonus, the new
busspace implementation should be measurably faster than the old one.
Diffstat (limited to 'sys/dev/syscons')
-rw-r--r-- | sys/dev/syscons/scgfbrndr.c | 1 | ||||
-rw-r--r-- | sys/dev/syscons/scvgarndr.c | 1 | ||||
-rw-r--r-- | sys/dev/syscons/scvtb.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/syscons/scgfbrndr.c b/sys/dev/syscons/scgfbrndr.c index 462de90..7461525 100644 --- a/sys/dev/syscons/scgfbrndr.c +++ b/sys/dev/syscons/scgfbrndr.c @@ -34,6 +34,7 @@ #include <sys/kernel.h> #include <machine/console.h> +#include <machine/bus.h> #include <dev/fb/fbreg.h> #include <dev/fb/vgareg.h> diff --git a/sys/dev/syscons/scvgarndr.c b/sys/dev/syscons/scvgarndr.c index 462de90..7461525 100644 --- a/sys/dev/syscons/scvgarndr.c +++ b/sys/dev/syscons/scvgarndr.c @@ -34,6 +34,7 @@ #include <sys/kernel.h> #include <machine/console.h> +#include <machine/bus.h> #include <dev/fb/fbreg.h> #include <dev/fb/vgareg.h> diff --git a/sys/dev/syscons/scvtb.c b/sys/dev/syscons/scvtb.c index dc5155b..de9dfca 100644 --- a/sys/dev/syscons/scvtb.c +++ b/sys/dev/syscons/scvtb.c @@ -34,6 +34,7 @@ #include <machine/console.h> #include <machine/md_var.h> +#include <machine/bus.h> #include <dev/fb/fbreg.h> #include <dev/syscons/syscons.h> |