summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormacallan <macallan@NetBSD.org>2006-08-29 17:09:33 +0000
committermacallan <macallan@NetBSD.org>2006-08-29 17:09:33 +0000
commiteda93ea91baba38ce0115200f43e74dca6de7e2c (patch)
tree36c7ea0a0c1db99be22a23da12b2ee3ff3b8aabc /sys/dev
parent505c9ab4bfcab2758d5ab2e8953ab1a7d04194a7 (diff)
those should have been committed along with radeonfb.c
doh
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/radeonfbreg.h3
-rw-r--r--sys/dev/pci/radeonfbvar.h7
2 files changed, 8 insertions, 2 deletions
diff --git a/sys/dev/pci/radeonfbreg.h b/sys/dev/pci/radeonfbreg.h
index 63a7dd81af3..55d4a6b3c41 100644
--- a/sys/dev/pci/radeonfbreg.h
+++ b/sys/dev/pci/radeonfbreg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: radeonfbreg.h,v 1.1 2006/08/16 22:46:45 gdamore Exp $ */
+/* $NetBSD: radeonfbreg.h,v 1.2 2006/08/29 17:09:33 macallan Exp $ */
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/ati/radeon_reg.h,v 1.31 2003/11/10 18:41:23 tsi Exp $ */
/*
@@ -65,6 +65,7 @@
/* PCI configuration space */
#define RADEON_MAPREG_MMIO 0x18
+#define RADEON_MAPREG_IO 0x14
#define RADEON_MAPREG_VRAM 0x10
/* Registers for 2D/Video/Overlay */
diff --git a/sys/dev/pci/radeonfbvar.h b/sys/dev/pci/radeonfbvar.h
index 87fd4d4ea0d..87dcdec8cf9 100644
--- a/sys/dev/pci/radeonfbvar.h
+++ b/sys/dev/pci/radeonfbvar.h
@@ -1,4 +1,4 @@
-/* $NetBSD: radeonfbvar.h,v 1.1 2006/08/16 22:46:45 gdamore Exp $ */
+/* $NetBSD: radeonfbvar.h,v 1.2 2006/08/29 17:09:33 macallan Exp $ */
/*-
* Copyright (c) 2006 Itronix Inc.
@@ -226,6 +226,11 @@ struct radeonfb_softc {
bus_size_t sc_memsz;
bus_addr_t sc_memaddr;
+ bus_space_tag_t sc_iot;
+ bus_space_handle_t sc_ioh;
+ bus_size_t sc_iosz;
+ bus_addr_t sc_ioaddr;
+
/* size of a single display */
int sc_maxx;
int sc_maxy;