diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-04-13 21:17:55 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-04-13 21:17:55 +0000 |
commit | 5a4ab77cd05371c9c73e0252ecb3d9b195c4cccc (patch) | |
tree | 1cb1261a2880f19e089601df90360c6e86693ff2 /sys/arch/sgi/include/bus.h | |
parent | 965d0314e696574208eb46763d7b45a3989da26e (diff) |
The start of Origin 200 support. Based on some code contributed by pefo@
some years ago for KL enumeration, building on the existing XBow support
to limit ourselves to a single node for now.
This is a work-in-progress; it currently lacks complete interrupt code,
as well as PCI resource management. And there are likely bugs creeping
inside.
Diffstat (limited to 'sys/arch/sgi/include/bus.h')
-rw-r--r-- | sys/arch/sgi/include/bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/include/bus.h b/sys/arch/sgi/include/bus.h index dfd9a7f615f..41fae205c06 100644 --- a/sys/arch/sgi/include/bus.h +++ b/sys/arch/sgi/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.11 2008/08/25 14:05:51 jsing Exp $ */ +/* $OpenBSD: bus.h,v 1.12 2009/04/13 21:17:54 miod Exp $ */ /* * Copyright (c) 2003-2004 Opsycon AB Sweden. All rights reserved. @@ -48,7 +48,7 @@ typedef struct mips_bus_space bus_space_t; struct mips_bus_space { struct extent *bus_extent; bus_addr_t bus_base; - bus_addr_t bus_base_dma; + void *bus_private; int32_t bus_reverse; u_int8_t (*_space_read_1)(bus_space_tag_t , bus_space_handle_t, bus_size_t); |