summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-08-22 20:11:10 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-08-22 20:11:10 +0000
commitde238967d3038321c9c3959b40e1c4eca809ead0 (patch)
treed15c2c7272859654fa1cc50973ed8b4bebe612f6 /sys/arch
parent77eaee009014496bdbf1345275d1633fc0ce04ba (diff)
Some "raw" wrappers around "stream" methods.
Also, define __HAVE_NEW_BUS_DMAMAP_SYNC, we will have to start converting code to using the five-argument variant on bus_dmamap_sync.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc64/include/bus.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/bus.h b/sys/arch/sparc64/include/bus.h
index 5293106e51c..e4102bad7b1 100644
--- a/sys/arch/sparc64/include/bus.h
+++ b/sys/arch/sparc64/include/bus.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bus.h,v 1.2 2001/08/20 20:23:52 jason Exp $ */
+/* $OpenBSD: bus.h,v 1.3 2001/08/22 20:11:09 art Exp $ */
/* $NetBSD: bus.h,v 1.28 2001/07/19 15:32:19 thorpej Exp $ */
/*-
@@ -1368,6 +1368,16 @@ bus_space_copy_region_stream_8(t, h1, o1, h2, o2, c)
bus_space_write_stream_8(t, h1, o1, bus_space_read_8(t, h2, o2));
}
+/* OpenBSD "raw" wrappers around the NetBSD "stream" methods. */
+/* XXXART - I'm lazy so I'll only implement the ones I need. */
+#define bus_space_read_raw_multi_2(t, h, o, a, c) \
+ bus_space_read_multi_stream_2(t, h, o, (u_int8_t *)(a), c)
+#define bus_space_write_raw_multi_2(t, h, o, a, c) \
+ bus_space_write_multi_stream_2(t, h, o, (u_int8_t *)(a), c)
+#define bus_space_read_raw_multi_4(t, h, o, a, c) \
+ bus_space_read_multi_stream_4(t, h, o, (u_int8_t *)(a), c)
+#define bus_space_write_raw_multi_4(t, h, o, a, c) \
+ bus_space_write_multi_stream_4(t, h, o, (u_int8_t *)(a), c)
#define BUS_SPACE_ALIGNED_POINTER(p, t) ALIGNED_POINTER(p, t)
@@ -1403,6 +1413,8 @@ struct uio;
#define BUS_DMASYNC_PREWRITE 0x04 /* pre-write synchronization */
#define BUS_DMASYNC_POSTWRITE 0x08 /* post-write synchronization */
+#define __HAVE_NEW_BUS_DMAMAP_SYNC
+
typedef struct sparc_bus_dma_tag *bus_dma_tag_t;
typedef struct sparc_bus_dmamap *bus_dmamap_t;