Home | History | Annotate | Line # | Download | only in xscale
ixp425_pci.c revision 1.4.10.1
      1  1.4.10.1    elad /*	$NetBSD: ixp425_pci.c,v 1.4.10.1 2006/04/19 02:32:15 elad Exp $ */
      2       1.1  ichiro 
      3       1.1  ichiro /*
      4       1.1  ichiro  * Copyright (c) 2003
      5       1.1  ichiro  *	Ichiro FUKUHARA <ichiro (at) ichiro.org>.
      6       1.1  ichiro  * All rights reserved.
      7       1.1  ichiro  *
      8       1.1  ichiro  * Redistribution and use in source and binary forms, with or without
      9       1.1  ichiro  * modification, are permitted provided that the following conditions
     10       1.1  ichiro  * are met:
     11       1.1  ichiro  * 1. Redistributions of source code must retain the above copyright
     12       1.1  ichiro  *    notice, this list of conditions and the following disclaimer.
     13       1.1  ichiro  * 2. Redistributions in binary form must reproduce the above copyright
     14       1.1  ichiro  *    notice, this list of conditions and the following disclaimer in the
     15       1.1  ichiro  *    documentation and/or other materials provided with the distribution.
     16       1.1  ichiro  * 3. All advertising materials mentioning features or use of this software
     17       1.1  ichiro  *    must display the following acknowledgement:
     18       1.1  ichiro  *	This product includes software developed by Ichiro FUKUHARA.
     19       1.1  ichiro  * 4. The name of the company nor the name of the author may be used to
     20       1.1  ichiro  *    endorse or promote products derived from this software without specific
     21       1.1  ichiro  *    prior written permission.
     22       1.1  ichiro  *
     23       1.1  ichiro  * THIS SOFTWARE IS PROVIDED BY ICHIRO FUKUHARA ``AS IS'' AND ANY EXPRESS OR
     24       1.1  ichiro  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25       1.1  ichiro  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26       1.1  ichiro  * IN NO EVENT SHALL ICHIRO FUKUHARA OR THE VOICES IN HIS HEAD BE LIABLE FOR
     27       1.1  ichiro  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28       1.1  ichiro  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29       1.1  ichiro  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30       1.1  ichiro  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31       1.1  ichiro  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32       1.1  ichiro  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33       1.1  ichiro  * SUCH DAMAGE.
     34       1.1  ichiro  */
     35       1.1  ichiro 
     36       1.1  ichiro #include <sys/cdefs.h>
     37  1.4.10.1    elad __KERNEL_RCSID(0, "$NetBSD: ixp425_pci.c,v 1.4.10.1 2006/04/19 02:32:15 elad Exp $");
     38       1.1  ichiro 
     39       1.1  ichiro #include <sys/param.h>
     40       1.1  ichiro #include <sys/systm.h>
     41       1.1  ichiro #include <sys/device.h>
     42       1.1  ichiro #include <sys/extent.h>
     43       1.1  ichiro #include <sys/malloc.h>
     44       1.1  ichiro 
     45       1.1  ichiro #include <uvm/uvm_extern.h>
     46       1.1  ichiro 
     47       1.1  ichiro #include <machine/bus.h>
     48       1.1  ichiro 
     49       1.1  ichiro #include <arm/xscale/ixp425reg.h>
     50       1.1  ichiro #include <arm/xscale/ixp425var.h>
     51       1.1  ichiro 
     52       1.1  ichiro #include <evbarm/ixdp425/ixdp425reg.h>
     53       1.1  ichiro 
     54       1.1  ichiro #include <dev/pci/pcireg.h>
     55       1.1  ichiro #include <dev/pci/pcivar.h>
     56       1.1  ichiro #include <dev/pci/pciconf.h>
     57       1.1  ichiro 
     58       1.1  ichiro #include "opt_pci.h"
     59       1.1  ichiro #include "pci.h"
     60       1.1  ichiro 
     61       1.1  ichiro void	ixp425_pci_attach_hook(struct device *, struct device *,
     62       1.1  ichiro 	    struct pcibus_attach_args *);
     63       1.1  ichiro int	ixp425_pci_bus_maxdevs(void *, int);
     64       1.1  ichiro void	ixp425_pci_decompose_tag(void *, pcitag_t, int *, int *, int *);
     65       1.1  ichiro void	ixp425_pci_conf_setup(void *, struct ixp425_softc *, pcitag_t, int);
     66       1.1  ichiro void	ixp425_pci_conf_write(void *, pcitag_t, int, pcireg_t);
     67       1.1  ichiro pcitag_t ixp425_pci_make_tag(void *, int, int, int);
     68       1.1  ichiro pcireg_t ixp425_pci_conf_read(void *, pcitag_t, int);
     69       1.1  ichiro 
     70       1.1  ichiro #define	MAX_PCI_DEVICES	32
     71       1.1  ichiro 
     72       1.1  ichiro void
     73       1.2     scw ixp425_pci_init(struct ixp425_softc *sc)
     74       1.1  ichiro {
     75       1.2     scw 	pci_chipset_tag_t pc = &sc->ia_pci_chipset;
     76       1.1  ichiro #if NPCI > 0 && defined(PCI_NETBSD_CONFIGURE)
     77       1.1  ichiro 	struct extent *ioext, *memext;
     78       1.1  ichiro #endif
     79       1.2     scw 	/*
     80       1.2     scw 	 * Initialise the PCI chipset tag
     81       1.2     scw 	 */
     82       1.2     scw 	pc->pc_conf_v = sc;
     83       1.1  ichiro 	pc->pc_attach_hook = ixp425_pci_attach_hook;
     84       1.1  ichiro 	pc->pc_bus_maxdevs = ixp425_pci_bus_maxdevs;
     85       1.1  ichiro 	pc->pc_make_tag = ixp425_pci_make_tag;
     86       1.1  ichiro 	pc->pc_decompose_tag = ixp425_pci_decompose_tag;
     87       1.1  ichiro 	pc->pc_conf_read = ixp425_pci_conf_read;
     88       1.1  ichiro 	pc->pc_conf_write = ixp425_pci_conf_write;
     89       1.2     scw 
     90       1.2     scw 	/*
     91       1.2     scw 	 * Initialize the bus space tags.
     92       1.2     scw 	 */
     93       1.2     scw 	ixp425_io_bs_init(&sc->sc_pci_iot, sc);
     94       1.2     scw 	ixp425_mem_bs_init(&sc->sc_pci_memt, sc);
     95       1.1  ichiro 
     96       1.1  ichiro #if NPCI > 0 && defined(PCI_NETBSD_CONFIGURE)
     97       1.1  ichiro 	ioext  = extent_create("pciio", 0, IXP425_PCI_IO_SIZE - 1,
     98       1.1  ichiro 				M_DEVBUF, NULL, 0, EX_NOWAIT);
     99       1.1  ichiro 	/* PCI MEM space is mapped same address as real memory */
    100       1.3     scw 	memext = extent_create("pcimem", IXP425_PCI_MEM_HWBASE,
    101       1.3     scw 				IXP425_PCI_MEM_HWBASE +
    102       1.1  ichiro 				IXP425_PCI_MEM_SIZE - 1,
    103       1.1  ichiro 				M_DEVBUF, NULL, 0, EX_NOWAIT);
    104       1.1  ichiro 	printf("%s: configuring PCI bus\n", sc->sc_dev.dv_xname);
    105       1.1  ichiro 	pci_configure_bus(pc, ioext, memext, NULL, 0 /* XXX bus = 0 */,
    106       1.1  ichiro 			  arm_dcache_align);
    107       1.1  ichiro 
    108       1.1  ichiro 	extent_destroy(ioext);
    109       1.1  ichiro 	extent_destroy(memext);
    110       1.1  ichiro #endif
    111       1.1  ichiro }
    112       1.1  ichiro 
    113       1.1  ichiro void
    114       1.1  ichiro pci_conf_interrupt(pci_chipset_tag_t pc, int a, int b, int c, int d, int *p)
    115       1.1  ichiro {
    116       1.1  ichiro }
    117       1.1  ichiro 
    118       1.1  ichiro void
    119       1.1  ichiro ixp425_pci_attach_hook(struct device *parent, struct device *self,
    120       1.1  ichiro 	struct pcibus_attach_args *pba)
    121       1.1  ichiro {
    122       1.1  ichiro 	/* Nothing to do. */
    123       1.1  ichiro }
    124       1.1  ichiro 
    125       1.1  ichiro int
    126       1.1  ichiro ixp425_pci_bus_maxdevs(void *v, int busno)
    127       1.1  ichiro {
    128       1.1  ichiro 	return(MAX_PCI_DEVICES);
    129       1.1  ichiro }
    130       1.1  ichiro 
    131       1.1  ichiro pcitag_t
    132       1.1  ichiro ixp425_pci_make_tag(void *v, int bus, int device, int function)
    133       1.1  ichiro {
    134       1.1  ichiro #ifdef PCI_DEBUG
    135       1.1  ichiro 	printf("ixp425_pci_make_tag(v=%p, bus=%d, device=%d, function=%d)\n",
    136       1.1  ichiro 		v, bus, device, function);
    137       1.1  ichiro #endif
    138       1.1  ichiro 	return ((bus << 16) | (device << 11) | (function << 8));
    139       1.1  ichiro }
    140       1.1  ichiro 
    141       1.1  ichiro void
    142       1.1  ichiro ixp425_pci_decompose_tag(void *v, pcitag_t tag, int *busp, int *devicep,
    143       1.1  ichiro 	int *functionp)
    144       1.1  ichiro {
    145       1.1  ichiro #ifdef PCI_DEBUG
    146       1.1  ichiro 	printf("ixp425_pci_decompose_tag(v=%p, tag=0x%08lx, bp=%x, dp=%x, fp=%x)\n",
    147       1.1  ichiro 		v, tag, (int)busp, (int)devicep, (int)functionp);
    148       1.1  ichiro #endif
    149       1.1  ichiro 	if (busp != NULL)
    150       1.1  ichiro 		*busp = (tag >> 16) & 0xff;
    151       1.1  ichiro 	if (devicep != NULL)
    152       1.1  ichiro 		*devicep = (tag >> 11) & 0x1f;
    153       1.1  ichiro 	if (functionp != NULL)
    154       1.1  ichiro 		*functionp = (tag >> 8) & 0x7;
    155       1.1  ichiro }
    156       1.1  ichiro 
    157       1.1  ichiro void
    158       1.1  ichiro ixp425_pci_conf_setup(void *v, struct ixp425_softc *sc, pcitag_t tag, int offset)
    159       1.1  ichiro {
    160       1.1  ichiro 	int bus, device, function;
    161       1.1  ichiro 
    162       1.1  ichiro 	ixp425_pci_decompose_tag(v, tag, &bus, &device, &function);
    163       1.1  ichiro 
    164  1.4.10.1    elad 	if (bus == 0) {
    165       1.1  ichiro 		if (device == 0 && function == 0) {
    166       1.1  ichiro 			PCI_CSR_WRITE_4(sc, PCI_NP_AD, (offset & ~3));
    167       1.1  ichiro 		} else {
    168       1.1  ichiro 			/* configuration type 0 */
    169       1.1  ichiro 			PCI_CSR_WRITE_4(sc, PCI_NP_AD, (1U << (32 - device)) |
    170       1.1  ichiro 				(function << 8) | (offset & ~3));
    171       1.1  ichiro 		}
    172       1.1  ichiro 	} else {
    173       1.1  ichiro 			/* configuration type 1 */
    174       1.1  ichiro 		PCI_CSR_WRITE_4(sc, PCI_NP_AD,
    175       1.1  ichiro 			(bus << 16) | (device << 11) |
    176       1.1  ichiro 			(function << 8) | (offset & ~3) | 1);
    177       1.1  ichiro 	}
    178       1.1  ichiro }
    179       1.1  ichiro 
    180       1.1  ichiro /* read/write PCI Non-Pre-fetch Data */
    181       1.1  ichiro 
    182       1.1  ichiro pcireg_t
    183       1.1  ichiro ixp425_pci_conf_read(void *v, pcitag_t tag, int offset)
    184       1.1  ichiro {
    185       1.1  ichiro 	struct ixp425_softc *sc = v;
    186       1.1  ichiro 	u_int32_t data;
    187       1.1  ichiro 	pcireg_t rv;
    188       1.1  ichiro 	int s;
    189       1.1  ichiro #define PCI_NP_HAVE_BUG
    190       1.1  ichiro #ifdef PCI_NP_HAVE_BUG
    191       1.1  ichiro 	int i;
    192       1.1  ichiro #endif
    193       1.1  ichiro 
    194       1.1  ichiro 	PCI_CONF_LOCK(s);
    195       1.1  ichiro 	ixp425_pci_conf_setup(v, sc, tag, offset);
    196       1.1  ichiro 
    197       1.1  ichiro #ifdef PCI_DEBUG
    198       1.1  ichiro 	printf("ixp425_pci_conf_read: tag=%lx,offset=%x\n",
    199  1.4.10.1    elad 		tag, offset);
    200       1.1  ichiro #endif
    201       1.1  ichiro 
    202       1.1  ichiro #ifdef PCI_NP_HAVE_BUG
    203       1.1  ichiro 	/* PCI NP Bug workaround */
    204       1.1  ichiro 	for (i = 0; i < 8; i++) {
    205       1.1  ichiro 		PCI_CSR_WRITE_4(sc, PCI_NP_CBE, COMMAND_NP_CONF_READ);
    206       1.1  ichiro 		rv = PCI_CSR_READ_4(sc, PCI_NP_RDATA);
    207       1.1  ichiro 		rv = PCI_CSR_READ_4(sc, PCI_NP_RDATA);
    208       1.1  ichiro 	}
    209       1.1  ichiro #else
    210       1.1  ichiro 	PCI_CSR_WRITE_4(sc, PCI_NP_CBE, COMMAND_NP_CONF_READ);
    211       1.1  ichiro 	rv = PCI_CSR_READ_4(sc, PCI_NP_RDATA);
    212       1.1  ichiro #endif
    213       1.1  ichiro 
    214       1.1  ichiro 	/* check&clear PCI abort */
    215       1.1  ichiro 	data = PCI_CSR_READ_4(sc, PCI_ISR);
    216       1.1  ichiro 	if (data & ISR_PFE) {
    217       1.1  ichiro 		PCI_CSR_WRITE_4(sc, PCI_ISR, ISR_PFE);
    218       1.1  ichiro 		PCI_CONF_UNLOCK(s);
    219       1.1  ichiro 		return -1;
    220       1.1  ichiro 	} else {
    221       1.1  ichiro 		PCI_CONF_UNLOCK(s);
    222       1.1  ichiro 		return rv;
    223       1.1  ichiro 	}
    224       1.1  ichiro }
    225       1.1  ichiro 
    226       1.1  ichiro void
    227       1.1  ichiro ixp425_pci_conf_write(void *v, pcitag_t tag, int offset, pcireg_t val)
    228       1.1  ichiro {
    229       1.1  ichiro 	struct ixp425_softc *sc = v;
    230       1.1  ichiro 	u_int32_t data;
    231       1.1  ichiro 	int s;
    232       1.1  ichiro 
    233       1.1  ichiro 	PCI_CONF_LOCK(s);
    234       1.1  ichiro 
    235       1.1  ichiro 	ixp425_pci_conf_setup(v, sc, tag, offset);
    236       1.1  ichiro #ifdef PCI_DEBUG
    237       1.1  ichiro 	printf("ixp425_pci_conf_write: tag=%lx offset=%x <- val=%x\n",
    238  1.4.10.1    elad 		tag, offset, val);
    239       1.1  ichiro #endif
    240       1.1  ichiro 	PCI_CSR_WRITE_4(sc, PCI_NP_CBE, COMMAND_NP_CONF_WRITE);
    241       1.1  ichiro 	PCI_CSR_WRITE_4(sc, PCI_NP_WDATA, val);
    242       1.1  ichiro 
    243       1.1  ichiro 	/* check&clear PCI abort */
    244       1.1  ichiro 	data = PCI_CSR_READ_4(sc, PCI_ISR);
    245       1.1  ichiro 	if (data & ISR_PFE)
    246       1.1  ichiro 		PCI_CSR_WRITE_4(sc, PCI_ISR, ISR_PFE);
    247       1.1  ichiro 
    248  1.4.10.1    elad 	PCI_CONF_UNLOCK(s);
    249       1.1  ichiro }
    250       1.1  ichiro 
    251       1.1  ichiro /* read/write pci configuration data */
    252       1.1  ichiro 
    253       1.1  ichiro uint32_t
    254       1.1  ichiro ixp425_pci_conf_reg_read(struct ixp425_softc *sc, uint32_t reg)
    255       1.1  ichiro {
    256       1.1  ichiro 	uint32_t data;
    257       1.1  ichiro 
    258       1.1  ichiro 	bus_space_write_4(sc->sc_iot, sc->sc_pci_ioh,
    259       1.1  ichiro 		PCI_CRP_AD_CBE, ((reg & ~3) | COMMAND_CRP_READ));
    260       1.1  ichiro 	data = bus_space_read_4(sc->sc_iot, sc->sc_pci_ioh,
    261       1.1  ichiro 		PCI_CRP_AD_RDATA);
    262       1.1  ichiro 
    263       1.1  ichiro 	return data;
    264       1.1  ichiro }
    265       1.1  ichiro 
    266       1.1  ichiro void
    267       1.1  ichiro ixp425_pci_conf_reg_write(struct ixp425_softc *sc, uint32_t reg,
    268       1.1  ichiro 	uint32_t data)
    269       1.1  ichiro {
    270       1.1  ichiro 	bus_space_write_4(sc->sc_iot, sc->sc_pci_ioh,
    271       1.1  ichiro 		PCI_CRP_AD_CBE, ((reg & ~3) | COMMAND_CRP_WRITE));
    272       1.1  ichiro 	bus_space_write_4(sc->sc_iot, sc->sc_pci_ioh,
    273       1.1  ichiro 		PCI_CRP_AD_WDATA, data);
    274       1.1  ichiro }
    275