summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>1998-06-28 02:39:26 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>1998-06-28 02:39:26 +0000
commit2d00a0a9ecd2de8435e73158d51b0f207e9dee89 (patch)
tree804368988c2ccbd174d0abddf21b8064996b4e9c /sys/arch/alpha
parentb4f9d53cbf4d31c5dbfbef544319b092e68fabd4 (diff)
Extend struct cia_config, needed for the EB164LX/SX support (and other
things to come), from NetBSD.
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r--sys/arch/alpha/pci/ciavar.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/arch/alpha/pci/ciavar.h b/sys/arch/alpha/pci/ciavar.h
index 0a5aea714a8..fba8d413408 100644
--- a/sys/arch/alpha/pci/ciavar.h
+++ b/sys/arch/alpha/pci/ciavar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ciavar.h,v 1.6 1997/01/24 19:57:40 niklas Exp $ */
+/* $OpenBSD: ciavar.h,v 1.7 1998/06/28 02:39:25 angelos Exp $ */
/* $NetBSD: ciavar.h,v 1.6 1996/11/25 03:49:11 cgd Exp $ */
/*
@@ -46,6 +46,17 @@ struct cia_config {
u_int32_t cc_hae_mem;
u_int32_t cc_hae_io;
+ u_int32_t cc_hae_mem;
+ u_int32_t cc_hae_io;
+
+ u_int32_t cc_rev;
+ u_int32_t cc_cnfg;
+
+ int cc_flags;
+
+#define CCF_ISPYXIS 0x01 /* chip is a 21174 Pyxis */
+#define CCF_USEBWX 0x02 /* use BWX when possible */
+
struct extent *cc_io_ex, *cc_d_mem_ex, *cc_s_mem_ex;
int cc_mallocsafe;
};