Home | History | Annotate | Line # | Download | only in bonito
      1  1.12  msaitoh /*	$NetBSD: bonito_pci.c,v 1.12 2015/10/02 05:22:51 msaitoh Exp $	*/
      2   1.1  thorpej 
      3   1.1  thorpej /*-
      4   1.1  thorpej  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5   1.1  thorpej  * All rights reserved.
      6   1.1  thorpej  *
      7   1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1  thorpej  * by Jason R. Thorpe.
      9   1.1  thorpej  *
     10   1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     11   1.1  thorpej  * modification, are permitted provided that the following conditions
     12   1.1  thorpej  * are met:
     13   1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     14   1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     15   1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     18   1.1  thorpej  *
     19   1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1  thorpej  */
     31   1.1  thorpej 
     32   1.1  thorpej /*
     33   1.1  thorpej  * PCI configuration space support for the Algorithmics BONITO
     34   1.1  thorpej  * MIPS PCI and memory controller.
     35   1.1  thorpej  */
     36   1.3    lukem 
     37   1.3    lukem #include <sys/cdefs.h>
     38  1.12  msaitoh __KERNEL_RCSID(0, "$NetBSD: bonito_pci.c,v 1.12 2015/10/02 05:22:51 msaitoh Exp $");
     39   1.1  thorpej 
     40   1.1  thorpej #include <sys/param.h>
     41   1.9     matt #include <sys/bus.h>
     42   1.9     matt #include <sys/device.h>
     43   1.9     matt #include <sys/intr.h>
     44   1.1  thorpej #include <sys/systm.h>
     45   1.1  thorpej 
     46   1.9     matt #include <mips/locore.h>
     47   1.1  thorpej 
     48   1.1  thorpej #include <dev/pci/pcireg.h>
     49   1.1  thorpej #include <dev/pci/pcivar.h>
     50   1.1  thorpej 
     51   1.1  thorpej #include <mips/bonito/bonitoreg.h>
     52   1.1  thorpej #include <mips/bonito/bonitovar.h>
     53   1.1  thorpej 
     54   1.1  thorpej /*
     55   1.1  thorpej  * Bonito systems are always single-processor, so this is sufficient.
     56   1.1  thorpej  */
     57   1.1  thorpej #define	PCI_CONF_LOCK(s)	(s) = splhigh()
     58   1.1  thorpej #define	PCI_CONF_UNLOCK(s)	splx((s))
     59   1.1  thorpej 
     60   1.7     matt void		bonito_attach_hook(device_t, device_t,
     61   1.1  thorpej 		    struct pcibus_attach_args *);
     62   1.1  thorpej int		bonito_bus_maxdevs(void *, int);
     63   1.1  thorpej pcitag_t	bonito_make_tag(void *, int, int, int);
     64   1.1  thorpej void		bonito_decompose_tag(void *, pcitag_t, int *, int *, int *);
     65   1.1  thorpej pcireg_t	bonito_conf_read(void *, pcitag_t, int);
     66   1.1  thorpej void		bonito_conf_write(void *, pcitag_t, int, pcireg_t);
     67   1.1  thorpej 
     68   1.1  thorpej void
     69  1.10   bouyer bonito_pci_init(pci_chipset_tag_t pc, const struct bonito_config *bc)
     70   1.1  thorpej {
     71   1.1  thorpej 
     72  1.10   bouyer 	pc->pc_conf_v = __UNCONST(bc);
     73  1.10   bouyer 	if (bc->bc_attach_hook != NULL)
     74  1.10   bouyer 		pc->pc_attach_hook = bc->bc_attach_hook;
     75  1.10   bouyer 	else
     76  1.10   bouyer 		pc->pc_attach_hook = bonito_attach_hook;
     77   1.1  thorpej 	pc->pc_bus_maxdevs = bonito_bus_maxdevs;
     78   1.1  thorpej 	pc->pc_make_tag = bonito_make_tag;
     79   1.1  thorpej 	pc->pc_decompose_tag = bonito_decompose_tag;
     80   1.1  thorpej 	pc->pc_conf_read = bonito_conf_read;
     81   1.1  thorpej 	pc->pc_conf_write = bonito_conf_write;
     82   1.1  thorpej }
     83   1.1  thorpej 
     84   1.1  thorpej void
     85   1.7     matt bonito_attach_hook(device_t parent, device_t self,
     86   1.1  thorpej     struct pcibus_attach_args *pba)
     87   1.1  thorpej {
     88   1.1  thorpej }
     89   1.1  thorpej 
     90   1.1  thorpej int
     91   1.1  thorpej bonito_bus_maxdevs(void *v, int busno)
     92   1.1  thorpej {
     93   1.1  thorpej 
     94   1.1  thorpej 	return (32);
     95   1.1  thorpej }
     96   1.1  thorpej 
     97   1.1  thorpej pcitag_t
     98   1.1  thorpej bonito_make_tag(void *v, int b, int d, int f)
     99   1.1  thorpej {
    100   1.1  thorpej 
    101   1.1  thorpej 	return ((b << 16) | (d << 11) | (f << 8));
    102   1.1  thorpej }
    103   1.1  thorpej 
    104   1.1  thorpej void
    105   1.1  thorpej bonito_decompose_tag(void *v, pcitag_t tag, int *bp, int *dp, int *fp)
    106   1.1  thorpej {
    107   1.1  thorpej 
    108   1.1  thorpej 	if (bp != NULL)
    109   1.1  thorpej 		*bp = (tag >> 16) & 0xff;
    110   1.1  thorpej 	if (dp != NULL)
    111   1.1  thorpej 		*dp = (tag >> 11) & 0x1f;
    112   1.1  thorpej 	if (fp != NULL)
    113   1.1  thorpej 		*fp = (tag >> 8) & 0x7;
    114   1.1  thorpej }
    115   1.1  thorpej 
    116   1.6     matt static bool
    117   1.1  thorpej bonito_conf_addr(struct bonito_config *bc, pcitag_t tag, int offset,
    118   1.1  thorpej     u_int32_t *cfgoff, u_int32_t *pcimap_cfg)
    119   1.1  thorpej {
    120   1.1  thorpej 	int b, d, f;
    121   1.1  thorpej 
    122  1.12  msaitoh 	if ((unsigned int)offset >= PCI_CONF_SIZE)
    123  1.12  msaitoh 		return true;
    124  1.12  msaitoh 
    125   1.1  thorpej 	bonito_decompose_tag(bc, tag, &b, &d, &f);
    126   1.1  thorpej 
    127   1.1  thorpej 	if (b == 0) {
    128   1.1  thorpej 		if (d > (31 - bc->bc_adbase))
    129   1.6     matt 			return true;
    130   1.6     matt 		*cfgoff = (1UL << (d + bc->bc_adbase)) | (f << 8) | offset;
    131   1.1  thorpej 		*pcimap_cfg = 0;
    132   1.1  thorpej 	} else {
    133   1.1  thorpej 		*cfgoff = tag | offset;
    134   1.1  thorpej 		*pcimap_cfg = BONITO_PCIMAPCFG_TYPE1;
    135   1.1  thorpej 	}
    136   1.1  thorpej 
    137   1.6     matt 	return false;
    138   1.1  thorpej }
    139   1.1  thorpej 
    140   1.1  thorpej pcireg_t
    141   1.1  thorpej bonito_conf_read(void *v, pcitag_t tag, int offset)
    142   1.1  thorpej {
    143   1.1  thorpej 	struct bonito_config *bc = v;
    144   1.1  thorpej 	pcireg_t data;
    145  1.11      mrg 	u_int32_t cfgoff, pcimap_cfg;
    146   1.1  thorpej 	int s;
    147   1.1  thorpej 
    148   1.1  thorpej 	if (bonito_conf_addr(bc, tag, offset, &cfgoff, &pcimap_cfg))
    149   1.1  thorpej 		return ((pcireg_t) -1);
    150   1.1  thorpej 
    151   1.1  thorpej 	PCI_CONF_LOCK(s);
    152   1.1  thorpej 
    153   1.1  thorpej 	/* clear aborts */
    154   1.1  thorpej 	REGVAL(BONITO_PCICMD) |=
    155   1.1  thorpej 	    PCI_STATUS_MASTER_ABORT | PCI_STATUS_MASTER_TARGET_ABORT;
    156   1.1  thorpej 
    157   1.1  thorpej 	/* high 16 bits of address go into PciMapCfg register */
    158   1.1  thorpej 	REGVAL(BONITO_PCIMAP_CFG) = (cfgoff >> 16) | pcimap_cfg;
    159   1.1  thorpej 
    160   1.1  thorpej 	wbflush();
    161   1.2   simonb 	/* Issue a read to make sure the write is posted */
    162  1.11      mrg 	(void)REGVAL(BONITO_PCIMAP_CFG);
    163   1.1  thorpej 
    164   1.1  thorpej 	/* low 16 bits of address are offset into config space */
    165   1.1  thorpej 	data = REGVAL(BONITO_PCICFG_BASE + (cfgoff & 0xfffc));
    166   1.1  thorpej 
    167   1.1  thorpej 	/* check for error */
    168   1.1  thorpej 	if (REGVAL(BONITO_PCICMD) &
    169   1.1  thorpej 	    (PCI_STATUS_MASTER_ABORT | PCI_STATUS_MASTER_TARGET_ABORT))
    170   1.1  thorpej 		data = (pcireg_t) -1;
    171   1.1  thorpej 
    172   1.1  thorpej 	PCI_CONF_UNLOCK(s);
    173   1.1  thorpej 
    174   1.1  thorpej 	return (data);
    175   1.1  thorpej }
    176   1.1  thorpej 
    177   1.1  thorpej void
    178   1.1  thorpej bonito_conf_write(void *v, pcitag_t tag, int offset, pcireg_t data)
    179   1.1  thorpej {
    180   1.1  thorpej 	struct bonito_config *vt = v;
    181  1.11      mrg 	u_int32_t cfgoff, pcimap_cfg;
    182   1.1  thorpej 	int s;
    183   1.1  thorpej 
    184   1.1  thorpej 	if (bonito_conf_addr(vt, tag, offset, &cfgoff, &pcimap_cfg))
    185   1.1  thorpej 		panic("bonito_conf_write");
    186   1.1  thorpej 
    187   1.1  thorpej 	PCI_CONF_LOCK(s);
    188   1.1  thorpej 
    189   1.1  thorpej 	/* clear aborts */
    190   1.1  thorpej 	REGVAL(BONITO_PCICMD) |=
    191   1.1  thorpej 	    PCI_STATUS_MASTER_ABORT | PCI_STATUS_MASTER_TARGET_ABORT;
    192   1.1  thorpej 
    193   1.1  thorpej 	/* high 16 bits of address go into PciMapCfg register */
    194   1.1  thorpej 	REGVAL(BONITO_PCIMAP_CFG) = (cfgoff >> 16) | pcimap_cfg;
    195   1.1  thorpej 
    196   1.1  thorpej 	wbflush();
    197   1.2   simonb 	/* Issue a read to make sure the write is posted */
    198  1.11      mrg 	(void)REGVAL(BONITO_PCIMAP_CFG);
    199   1.1  thorpej 
    200   1.1  thorpej 	/* low 16 bits of address are offset into config space */
    201   1.1  thorpej 	REGVAL(BONITO_PCICFG_BASE + (cfgoff & 0xfffc)) = data;
    202   1.1  thorpej 
    203   1.1  thorpej 	PCI_CONF_UNLOCK(s);
    204   1.1  thorpej }
    205