Home | History | Annotate | Line # | Download | only in include
bus_space.h revision 1.19.18.1
      1  1.19.18.1    martin /*	$NetBSD: bus_space.h,v 1.19.18.1 2023/02/01 18:55:11 martin Exp $	*/
      2        1.1       dbj 
      3        1.1       dbj /*-
      4        1.1       dbj  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
      5        1.1       dbj  * All rights reserved.
      6        1.1       dbj  *
      7        1.1       dbj  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1       dbj  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9        1.1       dbj  * NASA Ames Research Center.
     10        1.1       dbj  *
     11        1.1       dbj  * Redistribution and use in source and binary forms, with or without
     12        1.1       dbj  * modification, are permitted provided that the following conditions
     13        1.1       dbj  * are met:
     14        1.1       dbj  * 1. Redistributions of source code must retain the above copyright
     15        1.1       dbj  *    notice, this list of conditions and the following disclaimer.
     16        1.1       dbj  * 2. Redistributions in binary form must reproduce the above copyright
     17        1.1       dbj  *    notice, this list of conditions and the following disclaimer in the
     18        1.1       dbj  *    documentation and/or other materials provided with the distribution.
     19        1.1       dbj  *
     20        1.1       dbj  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21        1.1       dbj  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22        1.1       dbj  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23        1.1       dbj  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24        1.1       dbj  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25        1.1       dbj  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26        1.1       dbj  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27        1.1       dbj  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28        1.1       dbj  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29        1.1       dbj  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30        1.1       dbj  * POSSIBILITY OF SUCH DAMAGE.
     31        1.1       dbj  */
     32        1.1       dbj 
     33        1.1       dbj /*
     34        1.1       dbj  * Copyright (C) 1997 Scott Reynolds.  All rights reserved.
     35        1.1       dbj  *
     36        1.1       dbj  * Redistribution and use in source and binary forms, with or without
     37        1.1       dbj  * modification, are permitted provided that the following conditions
     38        1.1       dbj  * are met:
     39        1.1       dbj  * 1. Redistributions of source code must retain the above copyright
     40        1.1       dbj  *    notice, this list of conditions and the following disclaimer.
     41        1.1       dbj  * 2. Redistributions in binary form must reproduce the above copyright
     42        1.1       dbj  *    notice, this list of conditions and the following disclaimer in the
     43        1.1       dbj  *    documentation and/or other materials provided with the distribution.
     44        1.1       dbj  * 3. The name of the author may not be used to endorse or promote products
     45        1.1       dbj  *    derived from this software without specific prior written permission
     46        1.1       dbj  *
     47        1.1       dbj  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     48        1.1       dbj  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     49        1.1       dbj  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     50        1.1       dbj  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     51        1.1       dbj  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     52        1.1       dbj  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     53        1.1       dbj  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     54        1.1       dbj  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     55        1.1       dbj  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     56        1.1       dbj  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     57        1.1       dbj  */
     58        1.1       dbj 
     59        1.1       dbj #ifndef _NEXT68K_BUS_SPACE_H_
     60        1.1       dbj #define	_NEXT68K_BUS_SPACE_H_
     61        1.1       dbj /*
     62        1.1       dbj  * Addresses (in bus space).
     63        1.1       dbj  */
     64        1.1       dbj typedef u_long bus_addr_t;
     65        1.1       dbj typedef u_long bus_size_t;
     66        1.1       dbj 
     67       1.17     skrll #define PRIxBUSADDR	"lx"
     68       1.17     skrll #define PRIxBUSSIZE	"lx"
     69       1.17     skrll #define PRIuBUSSIZE	"lu"
     70       1.17     skrll 
     71        1.1       dbj /*
     72        1.1       dbj  * Access methods for bus resources and address space.
     73        1.1       dbj  */
     74        1.1       dbj typedef volatile char *  bus_space_tag_t;
     75        1.1       dbj typedef u_long	bus_space_handle_t;
     76        1.1       dbj 
     77       1.17     skrll #define PRIxBSH		"lx"
     78       1.17     skrll 
     79        1.1       dbj /*
     80        1.1       dbj  * Value for the next68k bus space tag, not to be used directly by MI code.
     81        1.1       dbj  */
     82       1.10   mycroft #define NEXT68K_INTIO_BUS_SPACE		((bus_space_tag_t)intiobase)
     83        1.1       dbj 
     84        1.1       dbj /*
     85        1.6    deberg  * Values for the next68k video bus space tags, not to be used directly
     86        1.6    deberg  * by MI code.
     87        1.3       dbj  */
     88       1.10   mycroft #define NEXT68K_MONO_VIDEO_BUS_SPACE	((bus_space_tag_t)monobase)
     89       1.10   mycroft #define NEXT68K_COLOR_VIDEO_BUS_SPACE	((bus_space_tag_t)colorbase)
     90        1.3       dbj 
     91        1.3       dbj /*
     92        1.1       dbj  * Mapping and unmapping operations.
     93        1.1       dbj  */
     94        1.1       dbj #define	bus_space_map(t, a, s, f, hp)					\
     95        1.1       dbj     ((((a)>=INTIOBASE)&&((a)+(s)<INTIOTOP)) ?				\
     96        1.3       dbj      ((*(hp)=(bus_space_handle_t)((t)+((a)-INTIOBASE))),0) :            \
     97        1.4       dbj      ((((a)>=MONOBASE)&&((a)+(s)<MONOTOP)) ?                          \
     98        1.4       dbj       ((*(hp)=(bus_space_handle_t)((t)+((a)-MONOBASE))),0) :           \
     99        1.6    deberg       ((((a)>=COLORBASE)&&((a)+(s)<COLORTOP)) ?                         \
    100        1.6    deberg        ((*(hp)=(bus_space_handle_t)((t)+((a)-COLORBASE))),0) : (-1))))
    101        1.1       dbj 
    102        1.1       dbj #define	bus_space_unmap(t, h, s)
    103        1.1       dbj 
    104        1.1       dbj #define	bus_space_subregion(t, h, o, s, hp)				\
    105        1.1       dbj      (*(hp)=(h)+(o))
    106        1.1       dbj 
    107        1.1       dbj #define	BUS_SPACE_MAP_CACHEABLE		0x01
    108        1.1       dbj #define	BUS_SPACE_MAP_LINEAR		0x02
    109        1.1       dbj 
    110        1.1       dbj /*
    111        1.1       dbj  * Allocation and deallocation operations.
    112        1.1       dbj  */
    113        1.1       dbj #define	bus_space_alloc(t, rs, re, s, a, b, f, ap, hp)  		\
    114        1.1       dbj      (-1)
    115        1.1       dbj 
    116        1.1       dbj #define	bus_space_free(t, h, s)
    117        1.8    deberg 
    118        1.8    deberg /*
    119       1.11       chs  *	paddr_t bus_space_mmap(bus_space_tag_t t, bus_addr_t base,
    120       1.11       chs  *	    off_t offset, int prot, int flags);
    121        1.8    deberg  *
    122        1.8    deberg  * Mmap an area of bus space.
    123        1.8    deberg  */
    124        1.8    deberg 
    125        1.9   mycroft #define bus_space_mmap(t, a, s, prot, flags)				\
    126        1.9   mycroft 	((((a)>=INTIOBASE)&&((a)+(s)<INTIOTOP)) ?			\
    127        1.9   mycroft 		m68k_btop((t)+((a)-INTIOBASE)) :			\
    128        1.9   mycroft 	 ((((a)>=MONOBASE)&&((a)+(s)<MONOTOP)) ?			\
    129        1.9   mycroft 		m68k_btop((t)+((a)-MONOBASE)) :				\
    130        1.9   mycroft 	  ((((a)>=COLORBASE)&&((a)+(s)<COLORTOP)) ?			\
    131        1.9   mycroft 		m68k_btop((t)+((a)-COLORBASE)) : (-1))))
    132        1.1       dbj 
    133        1.1       dbj /*
    134       1.11       chs  *	u_intN_t bus_space_read_N(bus_space_tag_t tag,
    135       1.11       chs  *	    bus_space_handle_t bsh, bus_size_t offset);
    136        1.1       dbj  *
    137        1.1       dbj  * Read a 1, 2, 4, or 8 byte quantity from bus space
    138        1.1       dbj  * described by tag/handle/offset.
    139        1.1       dbj  */
    140        1.1       dbj 
    141        1.1       dbj #define	bus_space_read_1(t, h, o)					\
    142        1.1       dbj     ((void) t, (*(volatile u_int8_t *)((h) + (o))))
    143        1.1       dbj 
    144        1.1       dbj #define	bus_space_read_2(t, h, o)					\
    145        1.1       dbj     ((void) t, (*(volatile u_int16_t *)((h) + (o))))
    146        1.1       dbj 
    147        1.1       dbj #define	bus_space_read_4(t, h, o)					\
    148        1.1       dbj     ((void) t, (*(volatile u_int32_t *)((h) + (o))))
    149        1.1       dbj 
    150        1.1       dbj /*
    151       1.11       chs  *	void bus_space_read_multi_N(bus_space_tag_t tag,
    152        1.1       dbj  *	    bus_space_handle_t bsh, bus_size_t offset,
    153       1.11       chs  *	    u_intN_t *addr, size_t count);
    154        1.1       dbj  *
    155        1.1       dbj  * Read `count' 1, 2, 4, or 8 byte quantities from bus space
    156        1.1       dbj  * described by tag/handle/offset and copy into buffer provided.
    157        1.1       dbj  */
    158        1.1       dbj 
    159        1.1       dbj #define	bus_space_read_multi_1(t, h, o, a, c) do {			\
    160        1.1       dbj 	(void) t;							\
    161       1.13     perry 	__asm volatile ("						\
    162        1.7       chs 		movl	%0,%%a0					;	\
    163        1.7       chs 		movl	%1,%%a1					;	\
    164        1.7       chs 		movl	%2,%%d0					;	\
    165        1.7       chs 	1:	movb	%%a0@,%%a1@+				;	\
    166        1.7       chs 		subql	#1,%%d0					;	\
    167        1.1       dbj 		jne	1b"					:	\
    168        1.1       dbj 								:	\
    169        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    170  1.19.18.1    martin 		    "a0","a1","d0","memory");				\
    171        1.1       dbj } while (0);
    172        1.1       dbj 
    173        1.1       dbj #define	bus_space_read_multi_2(t, h, o, a, c) do {			\
    174        1.1       dbj 	(void) t;							\
    175       1.13     perry 	__asm volatile ("						\
    176        1.7       chs 		movl	%0,%%a0					;	\
    177        1.7       chs 		movl	%1,%%a1					;	\
    178        1.7       chs 		movl	%2,%%d0					;	\
    179        1.7       chs 	1:	movw	%%a0@,%%a1@+				;	\
    180        1.7       chs 		subql	#1,%%d0					;	\
    181        1.1       dbj 		jne	1b"					:	\
    182        1.1       dbj 								:	\
    183        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    184  1.19.18.1    martin 		    "a0","a1","d0","memory");				\
    185        1.1       dbj } while (0);
    186        1.1       dbj 
    187        1.1       dbj #define	bus_space_read_multi_4(t, h, o, a, c) do {			\
    188        1.1       dbj 	(void) t;							\
    189       1.13     perry 	__asm volatile ("						\
    190        1.7       chs 		movl	%0,%%a0					;	\
    191        1.7       chs 		movl	%1,%%a1					;	\
    192        1.7       chs 		movl	%2,%%d0					;	\
    193        1.7       chs 	1:	movl	%%a0@,%%a1@+				;	\
    194        1.7       chs 		subql	#1,%%d0					;	\
    195        1.1       dbj 		jne	1b"					:	\
    196        1.1       dbj 								:	\
    197        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    198  1.19.18.1    martin 		    "a0","a1","d0","memory");				\
    199        1.1       dbj } while (0);
    200        1.1       dbj 
    201        1.1       dbj /*
    202       1.11       chs  *	void bus_space_read_region_N(bus_space_tag_t tag,
    203        1.1       dbj  *	    bus_space_handle_t bsh, bus_size_t offset,
    204       1.11       chs  *	    u_intN_t *addr, size_t count);
    205        1.1       dbj  *
    206        1.1       dbj  * Read `count' 1, 2, 4, or 8 byte quantities from bus space
    207        1.1       dbj  * described by tag/handle and starting at `offset' and copy into
    208        1.1       dbj  * buffer provided.
    209        1.1       dbj  */
    210        1.1       dbj 
    211        1.1       dbj #define	bus_space_read_region_1(t, h, o, a, c) do {			\
    212        1.1       dbj 	(void) t;							\
    213       1.13     perry 	__asm volatile ("						\
    214        1.7       chs 		movl	%0,%%a0					;	\
    215        1.7       chs 		movl	%1,%%a1					;	\
    216        1.7       chs 		movl	%2,%%d0					;	\
    217        1.7       chs 	1:	movb	%%a0@+,%%a1@+				;	\
    218        1.7       chs 		subql	#1,%%d0					;	\
    219        1.1       dbj 		jne	1b"					:	\
    220        1.1       dbj 								:	\
    221        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    222  1.19.18.1    martin 		    "a0","a1","d0","memory");				\
    223        1.1       dbj } while (0);
    224        1.1       dbj 
    225        1.1       dbj #define	bus_space_read_region_2(t, h, o, a, c) do {			\
    226        1.1       dbj 	(void) t;							\
    227       1.13     perry 	__asm volatile ("						\
    228        1.7       chs 		movl	%0,%%a0					;	\
    229        1.7       chs 		movl	%1,%%a1					;	\
    230        1.7       chs 		movl	%2,%%d0					;	\
    231        1.7       chs 	1:	movw	%%a0@+,%%a1@+				;	\
    232        1.7       chs 		subql	#1,%%d0					;	\
    233        1.1       dbj 		jne	1b"					:	\
    234        1.1       dbj 								:	\
    235        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    236  1.19.18.1    martin 		    "a0","a1","d0","memory");					\
    237        1.1       dbj } while (0);
    238        1.1       dbj 
    239        1.1       dbj #define	bus_space_read_region_4(t, h, o, a, c) do {			\
    240        1.1       dbj 	(void) t;							\
    241       1.13     perry 	__asm volatile ("						\
    242        1.7       chs 		movl	%0,%%a0					;	\
    243        1.7       chs 		movl	%1,%%a1					;	\
    244        1.7       chs 		movl	%2,%%d0					;	\
    245        1.7       chs 	1:	movl	%%a0@+,%%a1@+				;	\
    246        1.7       chs 		subql	#1,%%d0					;	\
    247        1.1       dbj 		jne	1b"					:	\
    248        1.1       dbj 								:	\
    249        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    250  1.19.18.1    martin 		    "a0","a1","d0","memory");					\
    251        1.1       dbj } while (0);
    252        1.1       dbj 
    253        1.1       dbj /*
    254       1.11       chs  *	void bus_space_write_N(bus_space_tag_t tag,
    255        1.1       dbj  *	    bus_space_handle_t bsh, bus_size_t offset,
    256       1.11       chs  *	    u_intN_t value);
    257        1.1       dbj  *
    258        1.1       dbj  * Write the 1, 2, 4, or 8 byte value `value' to bus space
    259        1.1       dbj  * described by tag/handle/offset.
    260        1.1       dbj  */
    261        1.1       dbj 
    262        1.1       dbj #define	bus_space_write_1(t, h, o, v)					\
    263        1.1       dbj     ((void) t, ((void)(*(volatile u_int8_t *)((h) + (o)) = (v))))
    264        1.1       dbj 
    265        1.1       dbj #define	bus_space_write_2(t, h, o, v)					\
    266        1.1       dbj     ((void) t, ((void)(*(volatile u_int16_t *)((h) + (o)) = (v))))
    267        1.1       dbj 
    268        1.1       dbj #define	bus_space_write_4(t, h, o, v)					\
    269        1.1       dbj     ((void) t, ((void)(*(volatile u_int32_t *)((h) + (o)) = (v))))
    270        1.1       dbj 
    271        1.1       dbj /*
    272       1.11       chs  *	void bus_space_write_multi_N(bus_space_tag_t tag,
    273        1.1       dbj  *	    bus_space_handle_t bsh, bus_size_t offset,
    274       1.11       chs  *	    const u_intN_t *addr, size_t count);
    275        1.1       dbj  *
    276        1.1       dbj  * Write `count' 1, 2, 4, or 8 byte quantities from the buffer
    277        1.1       dbj  * provided to bus space described by tag/handle/offset.
    278        1.1       dbj  */
    279        1.1       dbj 
    280        1.1       dbj #define	bus_space_write_multi_1(t, h, o, a, c) do {			\
    281        1.1       dbj 	(void) t;							\
    282       1.13     perry 	__asm volatile ("						\
    283        1.7       chs 		movl	%0,%%a0					;	\
    284        1.7       chs 		movl	%1,%%a1					;	\
    285        1.7       chs 		movl	%2,%%d0					;	\
    286        1.7       chs 	1:	movb	%%a1@+,%%a0@				;	\
    287        1.7       chs 		subql	#1,%%d0					;	\
    288        1.1       dbj 		jne	1b"					:	\
    289        1.1       dbj 								:	\
    290        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    291        1.1       dbj 		    "a0","a1","d0");					\
    292        1.1       dbj } while (0);
    293        1.1       dbj 
    294        1.1       dbj #define	bus_space_write_multi_2(t, h, o, a, c) do {			\
    295        1.1       dbj 	(void) t;							\
    296       1.13     perry 	__asm volatile ("						\
    297        1.7       chs 		movl	%0,%%a0					;	\
    298        1.7       chs 		movl	%1,%%a1					;	\
    299        1.7       chs 		movl	%2,%%d0					;	\
    300        1.7       chs 	1:	movw	%%a1@+,%%a0@				;	\
    301        1.7       chs 		subql	#1,%%d0					;	\
    302        1.1       dbj 		jne	1b"					:	\
    303        1.1       dbj 								:	\
    304        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    305        1.1       dbj 		    "a0","a1","d0");					\
    306        1.1       dbj } while (0);
    307        1.1       dbj 
    308        1.1       dbj #define	bus_space_write_multi_4(t, h, o, a, c) do {			\
    309        1.1       dbj 	(void) t;							\
    310       1.13     perry 	__asm volatile ("						\
    311        1.7       chs 		movl	%0,%%a0					;	\
    312        1.7       chs 		movl	%1,%%a1					;	\
    313        1.7       chs 		movl	%2,%%d0					;	\
    314        1.7       chs 	1:	movl	%%a1@+,%%a0@				;	\
    315        1.7       chs 		subql	#1,%%d0					;	\
    316        1.1       dbj 		jne	1b"					:	\
    317        1.1       dbj 								:	\
    318        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    319        1.1       dbj 		    "a0","a1","d0");					\
    320        1.1       dbj } while (0);
    321        1.1       dbj 
    322        1.1       dbj /*
    323       1.11       chs  *	void bus_space_write_region_N(bus_space_tag_t tag,
    324        1.1       dbj  *	    bus_space_handle_t bsh, bus_size_t offset,
    325       1.11       chs  *	    const u_intN_t *addr, size_t count);
    326        1.1       dbj  *
    327        1.1       dbj  * Write `count' 1, 2, 4, or 8 byte quantities from the buffer provided
    328        1.1       dbj  * to bus space described by tag/handle starting at `offset'.
    329        1.1       dbj  */
    330        1.1       dbj 
    331        1.1       dbj #define	bus_space_write_region_1(t, h, o, a, c) do {			\
    332        1.1       dbj 	(void) t;							\
    333       1.13     perry 	__asm volatile ("						\
    334        1.7       chs 		movl	%0,%%a0					;	\
    335        1.7       chs 		movl	%1,%%a1					;	\
    336        1.7       chs 		movl	%2,%%d0					;	\
    337        1.7       chs 	1:	movb	%%a1@+,%%a0@+				;	\
    338        1.7       chs 		subql	#1,%%d0					;	\
    339        1.1       dbj 		jne	1b"					:	\
    340        1.1       dbj 								:	\
    341        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    342        1.1       dbj 		    "a0","a1","d0");					\
    343        1.1       dbj } while (0);
    344        1.1       dbj 
    345        1.1       dbj #define	bus_space_write_region_2(t, h, o, a, c) do {			\
    346        1.1       dbj 	(void) t;							\
    347       1.13     perry 	__asm volatile ("						\
    348        1.7       chs 		movl	%0,%%a0					;	\
    349        1.7       chs 		movl	%1,%%a1					;	\
    350        1.7       chs 		movl	%2,%%d0					;	\
    351        1.7       chs 	1:	movw	%%a1@+,%%a0@+				;	\
    352        1.7       chs 		subql	#1,%%d0					;	\
    353        1.1       dbj 		jne	1b"					:	\
    354        1.1       dbj 								:	\
    355        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    356        1.1       dbj 		    "a0","a1","d0");					\
    357        1.1       dbj } while (0);
    358        1.1       dbj 
    359        1.1       dbj #define	bus_space_write_region_4(t, h, o, a, c) do {			\
    360        1.1       dbj 	(void) t;							\
    361       1.13     perry 	__asm volatile ("						\
    362        1.7       chs 		movl	%0,%%a0					;	\
    363        1.7       chs 		movl	%1,%%a1					;	\
    364        1.7       chs 		movl	%2,%%d0					;	\
    365        1.7       chs 	1:	movl	%%a1@+,%%a0@+				;	\
    366        1.7       chs 		subql	#1,%%d0					;	\
    367        1.1       dbj 		jne	1b"					:	\
    368        1.1       dbj 								:	\
    369        1.1       dbj 		    "r" ((h) + (o)), "g" (a), "g" (c)		:	\
    370        1.1       dbj 		    "a0","a1","d0");					\
    371        1.1       dbj } while (0);
    372        1.1       dbj 
    373        1.1       dbj /*
    374       1.11       chs  *	void bus_space_set_multi_N(bus_space_tag_t tag,
    375        1.1       dbj  *	    bus_space_handle_t bsh, bus_size_t offset, u_intN_t val,
    376       1.11       chs  *	    size_t count);
    377        1.1       dbj  *
    378        1.1       dbj  * Write the 1, 2, 4, or 8 byte value `val' to bus space described
    379        1.1       dbj  * by tag/handle/offset `count' times.
    380        1.1       dbj  */
    381        1.1       dbj 
    382        1.1       dbj #define	bus_space_set_multi_1(t, h, o, val, c) do {			\
    383        1.1       dbj 	(void) t;							\
    384       1.13     perry 	__asm volatile ("						\
    385        1.7       chs 		movl	%0,%%a0					;	\
    386        1.7       chs 		movl	%1,%%d1					;	\
    387        1.7       chs 		movl	%2,%%d0					;	\
    388        1.7       chs 	1:	movb	%%d1,%%a0@				;	\
    389        1.7       chs 		subql	#1,%%d0					;	\
    390        1.1       dbj 		jne	1b"					:	\
    391        1.1       dbj 								:	\
    392        1.1       dbj 		    "r" ((h) + (o)), "g" (val), "g" (c)		:	\
    393        1.1       dbj 		    "a0","d0","d1");					\
    394        1.1       dbj } while (0);
    395        1.1       dbj 
    396        1.1       dbj #define	bus_space_set_multi_2(t, h, o, val, c) do {			\
    397        1.1       dbj 	(void) t;							\
    398       1.13     perry 	__asm volatile ("						\
    399        1.7       chs 		movl	%0,%%a0					;	\
    400        1.7       chs 		movl	%1,%%d1					;	\
    401        1.7       chs 		movl	%2,%%d0					;	\
    402        1.7       chs 	1:	movw	%%d1,%%a0@				;	\
    403        1.7       chs 		subql	#1,%%d0					;	\
    404        1.1       dbj 		jne	1b"					:	\
    405        1.1       dbj 								:	\
    406        1.1       dbj 		    "r" ((h) + (o)), "g" (val), "g" (c)		:	\
    407        1.1       dbj 		    "a0","d0","d1");					\
    408        1.1       dbj } while (0);
    409        1.1       dbj 
    410        1.1       dbj #define	bus_space_set_multi_4(t, h, o, val, c) do {			\
    411        1.1       dbj 	(void) t;							\
    412       1.13     perry 	__asm volatile ("						\
    413        1.7       chs 		movl	%0,%%a0					;	\
    414        1.7       chs 		movl	%1,%%d1					;	\
    415        1.7       chs 		movl	%2,%%d0					;	\
    416        1.7       chs 	1:	movl	%%d1,%%a0@				;	\
    417        1.7       chs 		subql	#1,%%d0					;	\
    418        1.1       dbj 		jne	1b"					:	\
    419        1.1       dbj 								:	\
    420        1.1       dbj 		    "r" ((h) + (o)), "g" (val), "g" (c)		:	\
    421        1.1       dbj 		    "a0","d0","d1");					\
    422        1.1       dbj } while (0);
    423        1.1       dbj 
    424        1.1       dbj /*
    425       1.11       chs  *	void bus_space_set_region_N(bus_space_tag_t tag,
    426        1.1       dbj  *	    bus_space_handle_t bsh, bus_size_t offset, u_intN_t val,
    427       1.11       chs  *	    size_t count);
    428        1.1       dbj  *
    429        1.1       dbj  * Write `count' 1, 2, 4, or 8 byte value `val' to bus space described
    430        1.1       dbj  * by tag/handle starting at `offset'.
    431        1.1       dbj  */
    432        1.1       dbj 
    433        1.1       dbj #define	bus_space_set_region_1(t, h, o, val, c) do {			\
    434        1.1       dbj 	(void) t;							\
    435       1.13     perry 	__asm volatile ("						\
    436        1.7       chs 		movl	%0,%%a0					;	\
    437        1.7       chs 		movl	%1,%%d1					;	\
    438        1.7       chs 		movl	%2,%%d0					;	\
    439        1.7       chs 	1:	movb	%%d1,%%a0@+				;	\
    440        1.7       chs 		subql	#1,%%d0					;	\
    441        1.1       dbj 		jne	1b"					:	\
    442        1.1       dbj 								:	\
    443        1.1       dbj 		    "r" ((h) + (o)), "g" (val), "g" (c)		:	\
    444        1.1       dbj 		    "a0","d0","d1");					\
    445        1.1       dbj } while (0);
    446        1.1       dbj 
    447        1.1       dbj #define	bus_space_set_region_2(t, h, o, val, c) do {			\
    448        1.1       dbj 	(void) t;							\
    449       1.13     perry 	__asm volatile ("						\
    450        1.7       chs 		movl	%0,%%a0					;	\
    451        1.7       chs 		movl	%1,%%d1					;	\
    452        1.7       chs 		movl	%2,%%d0					;	\
    453        1.7       chs 	1:	movw	%%d1,%%a0@+				;	\
    454        1.7       chs 		subql	#1,%%d0					;	\
    455        1.1       dbj 		jne	1b"					:	\
    456        1.1       dbj 								:	\
    457        1.1       dbj 		    "r" ((h) + (o)), "g" (val), "g" (c)		:	\
    458        1.1       dbj 		    "a0","d0","d1");					\
    459        1.1       dbj } while (0);
    460        1.1       dbj 
    461        1.1       dbj #define	bus_space_set_region_4(t, h, o, val, c) do {			\
    462        1.1       dbj 	(void) t;							\
    463       1.13     perry 	__asm volatile ("						\
    464        1.7       chs 		movl	%0,%%a0					;	\
    465        1.7       chs 		movl	%1,%%d1					;	\
    466        1.7       chs 		movl	%2,%%d0					;	\
    467        1.7       chs 	1:	movl	%%d1,%%a0@+				;	\
    468        1.7       chs 		subql	#1,%%d0					;	\
    469        1.1       dbj 		jne	1b"					:	\
    470        1.1       dbj 								:	\
    471        1.1       dbj 		    "r" ((h) + (o)), "g" (val), "g" (c)		:	\
    472        1.1       dbj 		    "a0","d0","d1");					\
    473        1.1       dbj } while (0);
    474        1.1       dbj 
    475        1.1       dbj /*
    476       1.11       chs  *	void bus_space_copy_N(bus_space_tag_t tag,
    477        1.1       dbj  *	    bus_space_handle_t bsh1, bus_size_t off1,
    478        1.1       dbj  *	    bus_space_handle_t bsh2, bus_size_t off2,
    479       1.11       chs  *	    size_t count);
    480        1.1       dbj  *
    481        1.1       dbj  * Copy `count' 1, 2, 4, or 8 byte values from bus space starting
    482        1.1       dbj  * at tag/bsh1/off1 to bus space starting at tag/bsh2/off2.
    483        1.1       dbj  */
    484        1.1       dbj 
    485        1.1       dbj #define	__NEXT68K_copy_region_N(BYTES)					\
    486       1.14     perry static __inline void __CONCAT(bus_space_copy_region_,BYTES)		\
    487       1.11       chs 	(bus_space_tag_t,						\
    488       1.11       chs 	 bus_space_handle_t, bus_size_t,				\
    489       1.11       chs 	 bus_space_handle_t, bus_size_t,				\
    490       1.11       chs 	 bus_size_t);							\
    491        1.1       dbj 									\
    492       1.14     perry static __inline void							\
    493       1.16      matt __CONCAT(bus_space_copy_region_,BYTES)(					\
    494       1.16      matt 	bus_space_tag_t t,						\
    495       1.16      matt 	bus_space_handle_t h1,						\
    496       1.16      matt 	bus_size_t o1,							\
    497       1.16      matt 	bus_space_handle_t h2,						\
    498       1.16      matt 	bus_size_t o2,							\
    499       1.16      matt 	bus_size_t c)							\
    500        1.1       dbj {									\
    501        1.1       dbj 	bus_size_t o;							\
    502        1.1       dbj 									\
    503        1.1       dbj 	if ((h1 + o1) >= (h2 + o2)) {					\
    504        1.1       dbj 		/* src after dest: copy forward */			\
    505        1.1       dbj 		for (o = 0; c != 0; c--, o += BYTES)			\
    506        1.1       dbj 			__CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o,	\
    507        1.1       dbj 			    __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
    508        1.1       dbj 	} else {							\
    509        1.1       dbj 		/* dest after src: copy backwards */			\
    510        1.1       dbj 		for (o = (c - 1) * BYTES; c != 0; c--, o -= BYTES)	\
    511        1.1       dbj 			__CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o,	\
    512        1.1       dbj 			    __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
    513        1.1       dbj 	}								\
    514        1.1       dbj }
    515        1.1       dbj __NEXT68K_copy_region_N(1)
    516        1.1       dbj __NEXT68K_copy_region_N(2)
    517        1.1       dbj __NEXT68K_copy_region_N(4)
    518        1.1       dbj 
    519        1.1       dbj #undef __NEXT68K_copy_region_N
    520        1.1       dbj 
    521        1.1       dbj /*
    522        1.1       dbj  * Bus read/write barrier methods.
    523        1.1       dbj  *
    524       1.11       chs  *	void bus_space_barrier(bus_space_tag_t tag,
    525        1.1       dbj  *	    bus_space_handle_t bsh, bus_size_t offset,
    526       1.11       chs  *	    bus_size_t len, int flags);
    527        1.1       dbj  *
    528        1.1       dbj  * Note: the 680x0 does not currently require barriers, but we must
    529        1.1       dbj  * provide the flags to MI code.
    530        1.1       dbj  */
    531        1.1       dbj #define	bus_space_barrier(t, h, o, l, f)	\
    532        1.1       dbj 	((void)((void)(t), (void)(h), (void)(o), (void)(l), (void)(f)))
    533        1.1       dbj #define	BUS_SPACE_BARRIER_READ	0x01		/* force read barrier */
    534        1.1       dbj #define	BUS_SPACE_BARRIER_WRITE	0x02		/* force write barrier */
    535        1.5  drochner 
    536        1.5  drochner #define BUS_SPACE_ALIGNED_POINTER(p, t) ALIGNED_POINTER(p, t)
    537        1.1       dbj 
    538        1.1       dbj #endif /* _NEXT68K_BUS_SPACE_H_ */
    539