]> CyberLeo.Net >> Repos - FreeBSD/releng/10.1.git/blob - sys/arm/s3c2xx0/s3c2xx0_space.c
Copy stable/10@r272459 to releng/10.1 as part of
[FreeBSD/releng/10.1.git] / sys / arm / s3c2xx0 / s3c2xx0_space.c
1 /*      $NetBSD: s3c2xx0_space.c,v 1.7 2005/11/24 13:08:32 yamt Exp $ */
2
3 /*
4  * Copyright (c) 2002 Fujitsu Component Limited
5  * Copyright (c) 2002 Genetec Corporation
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of The Fujitsu Component Limited nor the name of
17  *    Genetec corporation may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY FUJITSU COMPONENT LIMITED AND GENETEC
21  * CORPORATION ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
22  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24  * DISCLAIMED.  IN NO EVENT SHALL FUJITSU COMPONENT LIMITED OR GENETEC
25  * CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 /* derived from sa11x0_io.c */
35
36 /*
37  * Copyright (c) 1997 Mark Brinicombe.
38  * Copyright (c) 1997 Causality Limited.
39  * All rights reserved.
40  *
41  * This code is derived from software contributed to The NetBSD Foundation
42  * by Ichiro FUKUHARA.
43  *
44  * Redistribution and use in source and binary forms, with or without
45  * modification, are permitted provided that the following conditions
46  * are met:
47  * 1. Redistributions of source code must retain the above copyright
48  *    notice, this list of conditions and the following disclaimer.
49  * 2. Redistributions in binary form must reproduce the above copyright
50  *    notice, this list of conditions and the following disclaimer in the
51  *    documentation and/or other materials provided with the distribution.
52  * 3. All advertising materials mentioning features or use of this software
53  *    must display the following acknowledgement:
54  *      This product includes software developed by Mark Brinicombe.
55  * 4. The name of the company nor the name of the author may be used to
56  *    endorse or promote products derived from this software without specific
57  *    prior written permission.
58  *
59  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
60  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
61  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
62  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
63  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
64  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
65  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69  * SUCH DAMAGE.
70  */
71
72 /*
73  * bus_space functions for Samsung S3C2800/2400/2410.
74  */
75
76 #include <sys/cdefs.h>
77 __FBSDID("$FreeBSD$");
78
79 #include <sys/param.h>
80 #include <sys/systm.h>
81 #include <sys/bus.h>
82
83 #include <vm/vm.h>
84 #include <vm/vm_kern.h>
85 #include <vm/pmap.h>
86 #include <vm/vm_page.h>
87 #include <vm/vm_extern.h>
88
89 #include <machine/bus.h>
90
91 /* Prototypes for all the bus_space structure functions */
92 bs_protos(generic);
93 bs_protos(generic_armv4);
94
95 struct bus_space s3c2xx0_bs_tag = {
96         /* cookie */
97         (void *) 0,
98
99         /* mapping/unmapping */
100         generic_bs_map,
101         generic_bs_unmap,
102         generic_bs_subregion,
103
104         /* allocation/deallocation */
105         generic_bs_alloc,       /* not implemented */
106         generic_bs_free,        /* not implemented */
107
108         /* barrier */
109         generic_bs_barrier,
110
111         /* read (single) */
112         generic_bs_r_1,
113         generic_armv4_bs_r_2,
114         generic_bs_r_4,
115         NULL,
116
117         /* read multiple */
118         generic_bs_rm_1,
119         generic_armv4_bs_rm_2,
120         generic_bs_rm_4,
121         NULL,
122
123         /* read region */
124         generic_bs_rr_1,
125         generic_armv4_bs_rr_2,
126         generic_bs_rr_4,
127         NULL,
128
129         /* write (single) */
130         generic_bs_w_1,
131         generic_armv4_bs_w_2,
132         generic_bs_w_4,
133         NULL,
134
135         /* write multiple */
136         generic_bs_wm_1,
137         generic_armv4_bs_wm_2,
138         generic_bs_wm_4,
139         NULL,
140
141         /* write region */
142         generic_bs_wr_1,
143         generic_armv4_bs_wr_2,
144         generic_bs_wr_4,
145         NULL,
146
147         /* set multiple */
148         NULL,
149         NULL,
150         NULL,
151         NULL,
152
153         /* set region */
154         generic_bs_sr_1,
155         generic_armv4_bs_sr_2,
156         NULL,
157         NULL,
158
159         /* copy */
160         NULL,
161         generic_armv4_bs_c_2,
162         NULL,
163         NULL,
164 };
165