Home | History | Annotate | Line # | Download | only in ifpga
ifpga_pci.c revision 1.20.10.1
      1 /*	$NetBSD: ifpga_pci.c,v 1.20.10.1 2018/11/26 01:52:22 pgoyette Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2001 ARM Ltd
      5  * All rights reserved.
      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. The name of the company may not be used to endorse or promote
     16  *    products derived from this software without specific prior written
     17  *    permission.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     20  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     21  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     22  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
     23  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     24  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     25  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  * SUCH DAMAGE.
     30  *
     31  * Copyright (c) 1997,1998 Mark Brinicombe.
     32  * Copyright (c) 1997,1998 Causality Limited
     33  * All rights reserved.
     34  *
     35  * Redistribution and use in source and binary forms, with or without
     36  * modification, are permitted provided that the following conditions
     37  * are met:
     38  * 1. Redistributions of source code must retain the above copyright
     39  *    notice, this list of conditions and the following disclaimer.
     40  * 2. Redistributions in binary form must reproduce the above copyright
     41  *    notice, this list of conditions and the following disclaimer in the
     42  *    documentation and/or other materials provided with the distribution.
     43  * 3. All advertising materials mentioning features or use of this software
     44  *    must display the following acknowledgement:
     45  *	This product includes software developed by Mark Brinicombe
     46  *	for the NetBSD Project.
     47  * 4. The name of the company nor the name of the author may be used to
     48  *    endorse or promote products derived from this software without specific
     49  *    prior written permission.
     50  *
     51  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     52  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     53  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     54  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
     55  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     56  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     57  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     58  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     59  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     60  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     61  * SUCH DAMAGE.
     62  */
     63 
     64 #define _ARM32_BUS_DMA_PRIVATE
     65 
     66 #include <sys/cdefs.h>
     67 __KERNEL_RCSID(0, "$NetBSD: ifpga_pci.c,v 1.20.10.1 2018/11/26 01:52:22 pgoyette Exp $");
     68 
     69 #include <sys/param.h>
     70 #include <sys/systm.h>
     71 #include <sys/conf.h>
     72 #include <sys/malloc.h>
     73 #include <sys/device.h>
     74 
     75 #include <evbarm/integrator/int_bus_dma.h>
     76 
     77 #include <machine/intr.h>
     78 
     79 #include <dev/pci/pcireg.h>
     80 #include <dev/pci/pcivar.h>
     81 
     82 #include <evbarm/ifpga/ifpgareg.h>
     83 #include <evbarm/ifpga/ifpgamem.h>
     84 #include <evbarm/ifpga/ifpga_pcivar.h>
     85 #include <evbarm/dev/v360reg.h>
     86 
     87 
     88 void		ifpga_pci_attach_hook (device_t, device_t,
     89 		    struct pcibus_attach_args *);
     90 int		ifpga_pci_bus_maxdevs (void *, int);
     91 pcitag_t	ifpga_pci_make_tag (void *, int, int, int);
     92 void		ifpga_pci_decompose_tag (void *, pcitag_t, int *, int *,
     93 		    int *);
     94 pcireg_t	ifpga_pci_conf_read (void *, pcitag_t, int);
     95 void		ifpga_pci_conf_write (void *, pcitag_t, int, pcireg_t);
     96 int		ifpga_pci_intr_map (const struct pci_attach_args *,
     97 		    pci_intr_handle_t *);
     98 const char	*ifpga_pci_intr_string (void *, pci_intr_handle_t, char *, size_t);
     99 const struct evcnt *ifpga_pci_intr_evcnt (void *, pci_intr_handle_t);
    100 void		*ifpga_pci_intr_establish (void *, pci_intr_handle_t, int,
    101 		    int (*)(void *), void *, const char *);
    102 void		ifpga_pci_intr_disestablish (void *, void *);
    103 
    104 struct arm32_pci_chipset ifpga_pci_chipset = {
    105 	NULL,	/* conf_v */
    106 	ifpga_pci_attach_hook,
    107 	ifpga_pci_bus_maxdevs,
    108 	ifpga_pci_make_tag,
    109 	ifpga_pci_decompose_tag,
    110 	NULL,
    111 	ifpga_pci_conf_read,
    112 	ifpga_pci_conf_write,
    113 	NULL,	/* intr_v */
    114 	ifpga_pci_intr_map,
    115 	ifpga_pci_intr_string,
    116 	ifpga_pci_intr_evcnt,
    117 	NULL,	/* intr_setattr */
    118 	ifpga_pci_intr_establish,
    119 	ifpga_pci_intr_disestablish,
    120 #ifdef __HAVE_PCI_CONF_HOOK
    121 	NULL,
    122 #endif
    123 	ifpga_pci_conf_interrupt,
    124 };
    125 
    126 /*
    127  * Use the integrator-specific bus_dma routines.
    128  */
    129 struct arm32_bus_dma_tag ifpga_pci_bus_dma_tag = {
    130 	0,
    131 	0,
    132 	NULL,
    133 	_bus_dmamap_create,
    134 	_bus_dmamap_destroy,
    135 	_bus_dmamap_load,
    136 	_bus_dmamap_load_mbuf,
    137 	_bus_dmamap_load_uio,
    138 	_bus_dmamap_load_raw,
    139 	_bus_dmamap_unload,
    140 	_bus_dmamap_sync,	/* pre */
    141 	NULL,			/* post */
    142 	_bus_dmamem_alloc,
    143 	_bus_dmamem_free,
    144 	_bus_dmamem_map,
    145 	_bus_dmamem_unmap,
    146 	_bus_dmamem_mmap,
    147 };
    148 
    149 /*
    150  * Currently we only support 12 devices as we select directly in the
    151  * type 0 config cycle
    152  * (See conf_{read,write} for more detail
    153  */
    154 #define MAX_PCI_DEVICES	21
    155 
    156 /*static int
    157 pci_intr(void *arg)
    158 {
    159 	printf("pci int %x\n", (int)arg);
    160 	return 0;
    161 }*/
    162 
    163 
    164 void
    165 ifpga_pci_attach_hook(device_t parent, device_t self,
    166     struct pcibus_attach_args *pba)
    167 {
    168 #ifdef PCI_DEBUG
    169 	printf("ifpga_pci_attach_hook()\n");
    170 #endif
    171 }
    172 
    173 int
    174 ifpga_pci_bus_maxdevs(void *pcv, int busno)
    175 {
    176 #ifdef PCI_DEBUG
    177 	printf("ifpga_pci_bus_maxdevs(pcv=%p, busno=%d)\n", pcv, busno);
    178 #endif
    179 	return MAX_PCI_DEVICES;
    180 }
    181 
    182 pcitag_t
    183 ifpga_pci_make_tag(void *pcv, int bus, int device, int function)
    184 {
    185 #ifdef PCI_DEBUG
    186 	printf("ifpga_pci_make_tag(pcv=%p, bus=%d, device=%d, function=%d)\n",
    187 	    pcv, bus, device, function);
    188 #endif
    189 	return (bus << 16) | (device << 11) | (function << 8);
    190 }
    191 
    192 void
    193 ifpga_pci_decompose_tag(void *pcv, pcitag_t tag, int *busp, int *devicep,
    194     int *functionp)
    195 {
    196 #ifdef PCI_DEBUG
    197 	printf("ifpga_pci_decompose_tag(pcv=%p, tag=0x%08lx, bp=%p, dp=%p, "
    198 	    "fp=%p)\n", pcv, tag, busp, devicep, functionp);
    199 #endif
    200 
    201 	if (busp != NULL)
    202 		*busp = (tag >> 16) & 0xff;
    203 	if (devicep != NULL)
    204 		*devicep = (tag >> 11) & 0x1f;
    205 	if (functionp != NULL)
    206 		*functionp = (tag >> 8) & 0x7;
    207 }
    208 
    209 pcireg_t
    210 ifpga_pci_conf_read(void *pcv, pcitag_t tag, int reg)
    211 {
    212 	pcireg_t data;
    213 	struct ifpga_pci_softc *sc = (struct ifpga_pci_softc *)pcv;
    214 	int bus, device, function;
    215 	u_int address;
    216 
    217 	if ((unsigned int)reg >= PCI_CONF_SIZE)
    218 		return (pcireg_t) -1;
    219 
    220 	ifpga_pci_decompose_tag(pcv, tag, &bus, &device, &function);
    221 
    222 	/* Reset the appertures so that we can talk to the register space.  */
    223 	bus_space_write_4(sc->sc_memt, sc->sc_reg_ioh, V360_LB_BASE0,
    224 	    IFPGA_PCI_APP0_512MB_BASE);
    225 	bus_space_write_4(sc->sc_memt, sc->sc_reg_ioh, V360_LB_BASE1,
    226 	    IFPGA_PCI_APP1_CONF_BASE);
    227 
    228 	if (bus == 0) {
    229 		address = (1 << (device + 11)) | reg;
    230 		bus_space_write_2(sc->sc_memt, sc->sc_reg_ioh, V360_LB_MAP1,
    231 		    IFPGA_PCI_APP1_CONF_T0_MAP | ((address >> 16) & 0xff00));
    232 
    233 		/* Read the value from the bus...  */
    234 		data = bus_space_read_4(sc->sc_iot, sc->sc_conf_ioh,
    235 		    address & 0x00ffffff);
    236 
    237 	} else {
    238 		bus_space_write_2(sc->sc_memt, sc->sc_reg_ioh, V360_LB_MAP1,
    239 		    IFPGA_PCI_APP1_CONF_T1_MAP);
    240 
    241 		/* Read the value from the bus... */
    242 		data = bus_space_read_4(sc->sc_iot, sc->sc_conf_ioh,
    243 		    tag | reg);
    244 	}
    245 	/* ... and put the memory spaces back again.  */
    246 
    247 	bus_space_write_4(sc->sc_memt, sc->sc_reg_ioh, V360_LB_BASE1,
    248 	    IFPGA_PCI_APP1_256MB_BASE);
    249 	bus_space_write_2(sc->sc_memt, sc->sc_reg_ioh, V360_LB_MAP1,
    250 	    IFPGA_PCI_APP1_256MB_MAP);
    251 	bus_space_write_4(sc->sc_memt, sc->sc_reg_ioh, V360_LB_BASE0,
    252 	    IFPGA_PCI_APP0_256MB_BASE);
    253 #ifdef PCI_DEBUG
    254 	printf("ifpga_pci_conf_read(pcv=%p tag=0x%08lx reg=0x%02x)=0x%08x\n",
    255 	    pcv, tag, reg, data);
    256 #endif
    257 	return data;
    258 }
    259 
    260 void
    261 ifpga_pci_conf_write(void *pcv, pcitag_t tag, int reg, pcireg_t data)
    262 {
    263 	struct ifpga_pci_softc *sc = (struct ifpga_pci_softc *)pcv;
    264 	int bus, device, function;
    265 	u_int address;
    266 
    267 #ifdef PCI_DEBUG
    268 	printf("ifpga_pci_conf_write(pcv=%p tag=0x%08lx reg=0x%02x, 0x%08x)\n",
    269 	    pcv, tag, reg, data);
    270 #endif
    271 
    272 	if ((unsigned int)reg >= PCI_CONF_SIZE)
    273 		return;
    274 
    275 	ifpga_pci_decompose_tag(pcv, tag, &bus, &device, &function);
    276 
    277 	/* Reset the appertures so that we can talk to the register space.  */
    278 	bus_space_write_4(sc->sc_memt, sc->sc_reg_ioh, V360_LB_BASE0,
    279 	    IFPGA_PCI_APP0_512MB_BASE);
    280 	bus_space_write_4(sc->sc_memt, sc->sc_reg_ioh, V360_LB_BASE1,
    281 	    IFPGA_PCI_APP1_CONF_BASE);
    282 
    283 	if (bus == 0) {
    284 		address = (1 << (device + 11)) | reg;
    285 		bus_space_write_2(sc->sc_memt, sc->sc_reg_ioh, V360_LB_MAP1,
    286 		    IFPGA_PCI_APP1_CONF_T0_MAP | ((address >> 16) & 0xff00));
    287 
    288 		/* Write the value to the bus...  */
    289 		bus_space_write_4(sc->sc_iot, sc->sc_conf_ioh,
    290 		    address & 0x00ffffff, data);
    291 
    292 	} else {
    293 		bus_space_write_2(sc->sc_memt, sc->sc_reg_ioh, V360_LB_MAP1,
    294 		    IFPGA_PCI_APP1_CONF_T1_MAP);
    295 
    296 		/* Write the value to the bus... */
    297 		bus_space_write_4(sc->sc_iot, sc->sc_conf_ioh, tag | reg,
    298 		    data);
    299 	}
    300 	/* ... and put the memory spaces back again.  */
    301 
    302 	bus_space_write_4(sc->sc_memt, sc->sc_reg_ioh, V360_LB_BASE1,
    303 	    IFPGA_PCI_APP1_256MB_BASE);
    304 	bus_space_write_2(sc->sc_memt, sc->sc_reg_ioh, V360_LB_MAP1,
    305 	    IFPGA_PCI_APP1_256MB_MAP);
    306 	bus_space_write_4(sc->sc_memt, sc->sc_reg_ioh, V360_LB_BASE0,
    307 	    IFPGA_PCI_APP0_256MB_BASE);
    308 }
    309 
    310 int
    311 ifpga_pci_intr_map(const struct pci_attach_args *pa, pci_intr_handle_t *ihp)
    312 {
    313 	int line = pa->pa_intrline;
    314 
    315 #ifdef PCI_DEBUG
    316 	int pin = pa->pa_intrpin;
    317 	void *pcv = pa->pa_pc;
    318 	pcitag_t intrtag = pa->pa_intrtag;
    319 	int bus, device, function;
    320 
    321 	ifpga_pci_decompose_tag(pcv, intrtag, &bus, &device, &function);
    322 	printf("ifpga_pci_intr_map: pcv=%p, tag=%08lx pin=%d line=%d "
    323 	    "dev=%d\n", pcv, intrtag, pin, line, device);
    324 #endif
    325 
    326 
    327 #ifdef PCI_DEBUG
    328 	printf("pin %d, line %d mapped to int %d\n", pin, line, line);
    329 #endif
    330 
    331 	*ihp = line;
    332 	return 0;
    333 }
    334 
    335 const char *
    336 ifpga_pci_intr_string(void *pcv, pci_intr_handle_t ih, char *buf, size_t len)
    337 {
    338 #ifdef PCI_DEBUG
    339 	printf("ifpga_pci_intr_string(pcv=%p, ih=0x%" PRIu64 ")\n", pcv, ih);
    340 #endif
    341 	if (ih == 0)
    342 		panic("ifpga_pci_intr_string: bogus handle 0x%" PRIu64, ih);
    343 
    344 	snprintf(buf, len, "pciint%" PRIu64, ih - IFPGA_INTRNUM_PCIINT0);
    345 	return buf;
    346 }
    347 
    348 const struct evcnt *
    349 ifpga_pci_intr_evcnt(void *pcv, pci_intr_handle_t ih)
    350 {
    351 
    352 	/* XXX for now, no evcnt parent reported */
    353 	return NULL;
    354 }
    355 
    356 void *
    357 ifpga_pci_intr_establish(void *pcv, pci_intr_handle_t ih, int level,
    358     int (*func) (void *), void *arg, const char *xname)
    359 {
    360 	void *intr;
    361 
    362 #ifdef PCI_DEBUG
    363 	printf("ifpga_pci_intr_establish(pcv=%p, ih=0x%" PRIu64 ", level=%d, "
    364 	    "func=%p, arg=%p, xname=%s)\n", pcv, ih, level, func, arg, xname);
    365 #endif
    366 
    367 	intr = ifpga_intr_establish(ih, level, func, arg);
    368 
    369 	return intr;
    370 }
    371 
    372 void
    373 ifpga_pci_intr_disestablish(void *pcv, void *cookie)
    374 {
    375 #ifdef PCI_DEBUG
    376 	printf("ifpga_pci_intr_disestablish(pcv=%p, cookie=%p)\n",
    377 	    pcv, cookie);
    378 #endif
    379 	ifpga_intr_disestablish(cookie);
    380 }
    381