1 1.6 ryo /* $NetBSD: becc_space.c,v 1.6 2018/03/16 17:56:32 ryo Exp $ */ 2 1.1 thorpej 3 1.1 thorpej /* 4 1.1 thorpej * Copyright (c) 2001, 2002 Wasabi Systems, Inc. 5 1.1 thorpej * All rights reserved. 6 1.1 thorpej * 7 1.1 thorpej * Written by Jason R. Thorpe for Wasabi Systems, Inc. 8 1.1 thorpej * 9 1.1 thorpej * Redistribution and use in source and binary forms, with or without 10 1.1 thorpej * modification, are permitted provided that the following conditions 11 1.1 thorpej * are met: 12 1.1 thorpej * 1. Redistributions of source code must retain the above copyright 13 1.1 thorpej * notice, this list of conditions and the following disclaimer. 14 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright 15 1.1 thorpej * notice, this list of conditions and the following disclaimer in the 16 1.1 thorpej * documentation and/or other materials provided with the distribution. 17 1.1 thorpej * 3. All advertising materials mentioning features or use of this software 18 1.1 thorpej * must display the following acknowledgement: 19 1.1 thorpej * This product includes software developed for the NetBSD Project by 20 1.1 thorpej * Wasabi Systems, Inc. 21 1.1 thorpej * 4. The name of Wasabi Systems, Inc. may not be used to endorse 22 1.1 thorpej * or promote products derived from this software without specific prior 23 1.1 thorpej * written permission. 24 1.1 thorpej * 25 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND 26 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 27 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 28 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC 29 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 30 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 31 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 32 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 33 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 34 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 35 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE. 36 1.1 thorpej */ 37 1.1 thorpej 38 1.1 thorpej /* 39 1.1 thorpej * bus_space functions for the ADI Engineering Big Endian Companion Chip. 40 1.1 thorpej */ 41 1.3 lukem 42 1.3 lukem #include <sys/cdefs.h> 43 1.6 ryo __KERNEL_RCSID(0, "$NetBSD: becc_space.c,v 1.6 2018/03/16 17:56:32 ryo Exp $"); 44 1.1 thorpej 45 1.1 thorpej #include <sys/param.h> 46 1.1 thorpej #include <sys/systm.h> 47 1.1 thorpej 48 1.1 thorpej #include <uvm/uvm_extern.h> 49 1.1 thorpej 50 1.5 dyoung #include <sys/bus.h> 51 1.1 thorpej 52 1.1 thorpej #include <arm/xscale/beccreg.h> 53 1.1 thorpej #include <arm/xscale/beccvar.h> 54 1.1 thorpej 55 1.1 thorpej /* Prototypes for all the bus_space structure functions */ 56 1.1 thorpej bs_protos(becc); 57 1.1 thorpej bs_protos(becc_io); 58 1.1 thorpej bs_protos(becc_mem); 59 1.2 thorpej bs_protos(becc_pci); 60 1.1 thorpej bs_protos(bs_notimpl); 61 1.1 thorpej 62 1.1 thorpej /* 63 1.1 thorpej * Template bus_space -- copied, and the bits that are NULL are 64 1.1 thorpej * filled in. 65 1.1 thorpej */ 66 1.1 thorpej const struct bus_space becc_bs_tag_template = { 67 1.1 thorpej /* cookie */ 68 1.6 ryo .bs_cookie = (void *) 0, 69 1.1 thorpej 70 1.1 thorpej /* mapping/unmapping */ 71 1.6 ryo .bs_map = NULL, 72 1.6 ryo .bs_unmap = NULL, 73 1.6 ryo .bs_subregion = becc_bs_subregion, 74 1.1 thorpej 75 1.1 thorpej /* allocation/deallocation */ 76 1.6 ryo .bs_alloc = NULL, 77 1.6 ryo .bs_free = NULL, 78 1.1 thorpej 79 1.1 thorpej /* get kernel virtual address */ 80 1.6 ryo .bs_vaddr = becc_bs_vaddr, 81 1.1 thorpej 82 1.1 thorpej /* mmap */ 83 1.6 ryo .bs_mmap = becc_bs_mmap, 84 1.1 thorpej 85 1.1 thorpej /* barrier */ 86 1.6 ryo .bs_barrier = becc_bs_barrier, 87 1.1 thorpej 88 1.1 thorpej /* read (single) */ 89 1.6 ryo .bs_r_1 = becc_pci_bs_r_1, 90 1.6 ryo .bs_r_2 = becc_pci_bs_r_2, 91 1.6 ryo .bs_r_4 = becc_pci_bs_r_4, 92 1.6 ryo .bs_r_8 = bs_notimpl_bs_r_8, 93 1.1 thorpej 94 1.1 thorpej /* read multiple */ 95 1.6 ryo .bs_rm_1 = bs_notimpl_bs_rm_1, 96 1.6 ryo .bs_rm_2 = bs_notimpl_bs_rm_2, 97 1.6 ryo .bs_rm_4 = bs_notimpl_bs_rm_4, 98 1.6 ryo .bs_rm_8 = bs_notimpl_bs_rm_8, 99 1.1 thorpej 100 1.1 thorpej /* read region */ 101 1.6 ryo .bs_rr_1 = bs_notimpl_bs_rr_1, 102 1.6 ryo .bs_rr_2 = bs_notimpl_bs_rr_2, 103 1.6 ryo .bs_rr_4 = bs_notimpl_bs_rr_4, 104 1.6 ryo .bs_rr_8 = bs_notimpl_bs_rr_8, 105 1.1 thorpej 106 1.1 thorpej /* write (single) */ 107 1.6 ryo .bs_w_1 = becc_pci_bs_w_1, 108 1.6 ryo .bs_w_2 = becc_pci_bs_w_2, 109 1.6 ryo .bs_w_4 = becc_pci_bs_w_4, 110 1.6 ryo .bs_w_8 = bs_notimpl_bs_w_8, 111 1.1 thorpej 112 1.1 thorpej /* write multiple */ 113 1.6 ryo .bs_wm_1 = bs_notimpl_bs_wm_1, 114 1.6 ryo .bs_wm_2 = bs_notimpl_bs_wm_2, 115 1.6 ryo .bs_wm_4 = bs_notimpl_bs_wm_4, 116 1.6 ryo .bs_wm_8 = bs_notimpl_bs_wm_8, 117 1.1 thorpej 118 1.1 thorpej /* write region */ 119 1.6 ryo .bs_wr_1 = bs_notimpl_bs_wr_1, 120 1.6 ryo .bs_wr_2 = bs_notimpl_bs_wr_2, 121 1.6 ryo .bs_wr_4 = bs_notimpl_bs_wr_4, 122 1.6 ryo .bs_wr_8 = bs_notimpl_bs_wr_8, 123 1.1 thorpej 124 1.1 thorpej /* set multiple */ 125 1.6 ryo .bs_sm_1 = bs_notimpl_bs_sm_1, 126 1.6 ryo .bs_sm_2 = bs_notimpl_bs_sm_2, 127 1.6 ryo .bs_sm_4 = bs_notimpl_bs_sm_4, 128 1.6 ryo .bs_sm_8 = bs_notimpl_bs_sm_8, 129 1.1 thorpej 130 1.1 thorpej /* set region */ 131 1.6 ryo .bs_sr_1 = bs_notimpl_bs_sr_1, 132 1.6 ryo .bs_sr_2 = bs_notimpl_bs_sr_2, 133 1.6 ryo .bs_sr_4 = bs_notimpl_bs_sr_4, 134 1.6 ryo .bs_sr_8 = bs_notimpl_bs_sr_8, 135 1.1 thorpej 136 1.1 thorpej /* copy */ 137 1.6 ryo .bs_c_1 = bs_notimpl_bs_c_1, 138 1.6 ryo .bs_c_2 = bs_notimpl_bs_c_2, 139 1.6 ryo .bs_c_4 = bs_notimpl_bs_c_4, 140 1.6 ryo .bs_c_8 = bs_notimpl_bs_c_8, 141 1.1 thorpej }; 142 1.1 thorpej 143 1.1 thorpej void 144 1.1 thorpej becc_io_bs_init(bus_space_tag_t bs, void *cookie) 145 1.1 thorpej { 146 1.1 thorpej 147 1.1 thorpej *bs = becc_bs_tag_template; 148 1.1 thorpej bs->bs_cookie = cookie; 149 1.1 thorpej 150 1.1 thorpej bs->bs_map = becc_io_bs_map; 151 1.1 thorpej bs->bs_unmap = becc_io_bs_unmap; 152 1.1 thorpej bs->bs_alloc = becc_io_bs_alloc; 153 1.1 thorpej bs->bs_free = becc_io_bs_free; 154 1.1 thorpej 155 1.1 thorpej bs->bs_vaddr = becc_io_bs_vaddr; 156 1.1 thorpej } 157 1.1 thorpej 158 1.1 thorpej void 159 1.1 thorpej becc_mem_bs_init(bus_space_tag_t bs, void *cookie) 160 1.1 thorpej { 161 1.1 thorpej 162 1.1 thorpej *bs = becc_bs_tag_template; 163 1.1 thorpej bs->bs_cookie = cookie; 164 1.1 thorpej 165 1.1 thorpej bs->bs_map = becc_mem_bs_map; 166 1.1 thorpej bs->bs_unmap = becc_mem_bs_unmap; 167 1.1 thorpej bs->bs_alloc = becc_mem_bs_alloc; 168 1.1 thorpej bs->bs_free = becc_mem_bs_free; 169 1.1 thorpej 170 1.1 thorpej bs->bs_mmap = becc_mem_bs_mmap; 171 1.1 thorpej } 172 1.1 thorpej 173 1.1 thorpej /* *** Routines shared by becc, PCI IO, and PCI MEM. *** */ 174 1.1 thorpej 175 1.1 thorpej int 176 1.1 thorpej becc_bs_subregion(void *t, bus_space_handle_t bsh, bus_size_t offset, 177 1.1 thorpej bus_size_t size, bus_space_handle_t *nbshp) 178 1.1 thorpej { 179 1.1 thorpej 180 1.1 thorpej *nbshp = bsh + offset; 181 1.1 thorpej return (0); 182 1.1 thorpej } 183 1.1 thorpej 184 1.1 thorpej void 185 1.1 thorpej becc_bs_barrier(void *t, bus_space_handle_t bsh, bus_size_t offset, 186 1.1 thorpej bus_size_t len, int flags) 187 1.1 thorpej { 188 1.1 thorpej 189 1.1 thorpej /* Nothing to do. */ 190 1.1 thorpej } 191 1.1 thorpej 192 1.1 thorpej void * 193 1.1 thorpej becc_bs_vaddr(void *t, bus_space_handle_t bsh) 194 1.1 thorpej { 195 1.1 thorpej 196 1.1 thorpej return ((void *)bsh); 197 1.1 thorpej } 198 1.1 thorpej 199 1.1 thorpej paddr_t 200 1.1 thorpej becc_bs_mmap(void *t, bus_addr_t addr, off_t off, int prot, int flags) 201 1.1 thorpej { 202 1.1 thorpej 203 1.1 thorpej /* Not supported. */ 204 1.1 thorpej return (-1); 205 1.1 thorpej } 206 1.1 thorpej 207 1.1 thorpej /* *** Routines for PCI IO. *** */ 208 1.1 thorpej 209 1.1 thorpej int 210 1.1 thorpej becc_io_bs_map(void *t, bus_addr_t bpa, bus_size_t size, int flags, 211 1.1 thorpej bus_space_handle_t *bshp) 212 1.1 thorpej { 213 1.1 thorpej struct becc_softc *sc = t; 214 1.1 thorpej vaddr_t winvaddr; 215 1.1 thorpej uint32_t busbase; 216 1.1 thorpej 217 1.1 thorpej if (bpa >= sc->sc_ioout_xlate && 218 1.1 thorpej bpa < (sc->sc_ioout_xlate + (64 * 1024))) { 219 1.1 thorpej busbase = sc->sc_ioout_xlate; 220 1.1 thorpej winvaddr = sc->sc_pci_io_base; 221 1.1 thorpej } else 222 1.1 thorpej return (EINVAL); 223 1.1 thorpej 224 1.1 thorpej if ((bpa + size) >= (busbase + (64 * 1024))) 225 1.1 thorpej return (EINVAL); 226 1.1 thorpej 227 1.1 thorpej /* 228 1.1 thorpej * Found the window -- PCI I/O space is mapped at a fixed 229 1.1 thorpej * virtual address by board-specific code. Translate the 230 1.1 thorpej * bus address to the virtual address. 231 1.1 thorpej */ 232 1.1 thorpej *bshp = winvaddr + (bpa - busbase); 233 1.1 thorpej 234 1.1 thorpej return (0); 235 1.1 thorpej } 236 1.1 thorpej 237 1.1 thorpej void 238 1.1 thorpej becc_io_bs_unmap(void *t, bus_space_handle_t bsh, bus_size_t size) 239 1.1 thorpej { 240 1.1 thorpej 241 1.1 thorpej /* Nothing to do. */ 242 1.1 thorpej } 243 1.1 thorpej 244 1.1 thorpej int 245 1.1 thorpej becc_io_bs_alloc(void *t, bus_addr_t rstart, bus_addr_t rend, 246 1.1 thorpej bus_size_t size, bus_size_t alignment, bus_size_t boundary, int flags, 247 1.1 thorpej bus_addr_t *bpap, bus_space_handle_t *bshp) 248 1.1 thorpej { 249 1.1 thorpej 250 1.1 thorpej panic("becc_io_bs_alloc(): not implemented\n"); 251 1.1 thorpej } 252 1.1 thorpej 253 1.1 thorpej void 254 1.1 thorpej becc_io_bs_free(void *t, bus_space_handle_t bsh, bus_size_t size) 255 1.1 thorpej { 256 1.1 thorpej 257 1.1 thorpej panic("becc_io_bs_free(): not implemented\n"); 258 1.1 thorpej } 259 1.1 thorpej 260 1.1 thorpej void * 261 1.1 thorpej becc_io_bs_vaddr(void *t, bus_space_handle_t bsh) 262 1.1 thorpej { 263 1.1 thorpej 264 1.1 thorpej /* Not supported. */ 265 1.1 thorpej return (NULL); 266 1.1 thorpej } 267 1.1 thorpej 268 1.1 thorpej /* *** Routines for PCI MEM. *** */ 269 1.1 thorpej 270 1.1 thorpej int 271 1.1 thorpej becc_mem_bs_map(void *t, bus_addr_t bpa, bus_size_t size, int flags, 272 1.1 thorpej bus_space_handle_t *bshp) 273 1.1 thorpej { 274 1.1 thorpej 275 1.1 thorpej struct becc_softc *sc = t; 276 1.1 thorpej vaddr_t winvaddr; 277 1.1 thorpej uint32_t busbase; 278 1.1 thorpej 279 1.1 thorpej /* 280 1.1 thorpej * The two memory windows have been configured to the same 281 1.1 thorpej * PCI base by board-specific code, so we only need to look 282 1.1 thorpej * at the first one. 283 1.1 thorpej */ 284 1.1 thorpej 285 1.1 thorpej if (bpa >= sc->sc_owin_xlate[0] && 286 1.1 thorpej bpa < (sc->sc_owin_xlate[0] + BECC_PCI_MEM1_SIZE)) { 287 1.1 thorpej busbase = sc->sc_owin_xlate[0]; 288 1.1 thorpej winvaddr = sc->sc_pci_mem_base[0]; 289 1.1 thorpej } else 290 1.1 thorpej return (EINVAL); 291 1.1 thorpej 292 1.1 thorpej if ((bpa + size) >= (busbase + BECC_PCI_MEM1_SIZE)) 293 1.1 thorpej return (EINVAL); 294 1.1 thorpej 295 1.1 thorpej /* 296 1.1 thorpej * Found the window -- PCI MEM space is mapped at a fixed 297 1.1 thorpej * virtual address by board-specific code. Translate the 298 1.1 thorpej * bus address to the virtual address. 299 1.1 thorpej */ 300 1.1 thorpej *bshp = winvaddr + (bpa - busbase); 301 1.1 thorpej 302 1.1 thorpej return (0); 303 1.1 thorpej } 304 1.1 thorpej 305 1.1 thorpej void 306 1.1 thorpej becc_mem_bs_unmap(void *t, bus_space_handle_t bsh, bus_size_t size) 307 1.1 thorpej { 308 1.1 thorpej 309 1.1 thorpej /* Nothing to do. */ 310 1.1 thorpej } 311 1.1 thorpej 312 1.1 thorpej int 313 1.1 thorpej becc_mem_bs_alloc(void *t, bus_addr_t rstart, bus_addr_t rend, 314 1.1 thorpej bus_size_t size, bus_size_t alignment, bus_size_t boundary, int flags, 315 1.1 thorpej bus_addr_t *bpap, bus_space_handle_t *bshp) 316 1.1 thorpej { 317 1.1 thorpej 318 1.1 thorpej panic("becc_mem_bs_alloc(): not implemented\n"); 319 1.1 thorpej } 320 1.1 thorpej 321 1.1 thorpej void 322 1.1 thorpej becc_mem_bs_free(void *t, bus_space_handle_t bsh, bus_size_t size) 323 1.1 thorpej { 324 1.1 thorpej 325 1.1 thorpej panic("becc_mem_bs_free(): not implemented\n"); 326 1.1 thorpej } 327 1.1 thorpej 328 1.1 thorpej paddr_t 329 1.1 thorpej becc_mem_bs_mmap(void *t, bus_addr_t addr, off_t off, int prot, int flags) 330 1.1 thorpej { 331 1.1 thorpej 332 1.1 thorpej /* XXX */ 333 1.1 thorpej return (-1); 334 1.1 thorpej } 335