No empty .Rs/.Re
[netbsd-mini2440.git] / sys / arch / arm / xscale / pxa2x0_a4x_io.S
blobc0a95c2eeed73ba1943ccf2fce4923451d52e8df
1 /*      $NetBSD$ */
3 /*
4  * Copyright (c) 2002  Genetec Corporation.  All rights reserved.
5  * Written by Hiroyuki Bessho for Genetec Corporation.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed for the NetBSD Project by
18  *      Genetec Corporation.
19  * 4. The name of Genetec Corporation may not be used to endorse or 
20  *    promote products derived from this software without specific prior
21  *    written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORPORATION
27  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  */
36 /*      
37  * There are simple bus space functions for IO registers mapped at
38  * 32-bit aligned positions.  offset is multiplied by 4.  
39  */
41 #include <machine/asm.h>
44  * bus_space I/O functions with offset*4
45  */
48  * read single
49  */
51 ENTRY(a4x_bs_r_1)
52         ldrb    r0, [r1, r2, LSL #2]
53         mov     pc, lr
55 ENTRY(a4x_bs_r_2)
56         mov     r2, r2, LSL #2
57         ldrh    r0, [r1, r2]
58         mov     pc, lr
60 ENTRY(a4x_bs_r_4)
61         ldr     r0, [r1, r2, LSL #2]
62         mov     pc, lr
65  * write single
66  */
68 ENTRY(a4x_bs_w_1)
69         strb    r3, [r1, r2, LSL #2]
70         mov     pc, lr
72 ENTRY(a4x_bs_w_2)
73         mov     r2, r2, LSL #2
74         strh    r3, [r1, r2]
75         mov     pc, lr
77 ENTRY(a4x_bs_w_4)
78         str     r3, [r1, r2, LSL #2]
79         mov     pc, lr
82  * read multiple
83  */
84 ENTRY(a4x_bs_rm_1)
85         mov r2, r2, LSL #2
86         b generic_bs_rm_1
87         
88 ENTRY(a4x_bs_rm_2)
89         mov r2, r2, LSL #2
90         b generic_armv4_bs_rm_2
95  * write multiple
96  */
97 ENTRY(a4x_bs_wm_1)
98         mov r2, r2, LSL #2
99         b generic_bs_wm_1
100         
101 ENTRY(a4x_bs_wm_2)
102         mov r2, r2, LSL #2
103         b generic_armv4_bs_wm_2