Home | History | Annotate | Line # | Download | only in pci
tsp_pci.c revision 1.1.6.1
      1  1.1.6.1  bouyer /* $NetBSD: tsp_pci.c,v 1.1.6.1 2000/11/20 19:57:19 bouyer Exp $ */
      2      1.1    ross 
      3      1.1    ross /*-
      4      1.1    ross  * Copyright (c) 1999 by Ross Harvey.  All rights reserved.
      5      1.1    ross  *
      6      1.1    ross  * Redistribution and use in source and binary forms, with or without
      7      1.1    ross  * modification, are permitted provided that the following conditions
      8      1.1    ross  * are met:
      9      1.1    ross  * 1. Redistributions of source code must retain the above copyright
     10      1.1    ross  *    notice, this list of conditions and the following disclaimer.
     11      1.1    ross  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1    ross  *    notice, this list of conditions and the following disclaimer in the
     13      1.1    ross  *    documentation and/or other materials provided with the distribution.
     14      1.1    ross  * 3. All advertising materials mentioning features or use of this software
     15      1.1    ross  *    must display the following acknowledgement:
     16      1.1    ross  *	This product includes software developed by Ross Harvey.
     17      1.1    ross  * 4. The name of Ross Harvey may not be used to endorse or promote products
     18      1.1    ross  *    derived from this software without specific prior written permission.
     19      1.1    ross  *
     20      1.1    ross  * THIS SOFTWARE IS PROVIDED BY ROSS HARVEY ``AS IS'' AND ANY EXPRESS
     21      1.1    ross  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     22      1.1    ross  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURP0SE
     23      1.1    ross  * ARE DISCLAIMED.  IN NO EVENT SHALL ROSS HARVEY BE LIABLE FOR ANY
     24      1.1    ross  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25      1.1    ross  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26      1.1    ross  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27      1.1    ross  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28      1.1    ross  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29      1.1    ross  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30      1.1    ross  * SUCH DAMAGE.
     31      1.1    ross  *
     32      1.1    ross  */
     33      1.1    ross 
     34      1.1    ross #include <sys/cdefs.h>
     35      1.1    ross 
     36      1.1    ross __KERNEL_RCSID(0, "$NetBSD");
     37      1.1    ross 
     38      1.1    ross #include <sys/param.h>
     39      1.1    ross #include <sys/systm.h>
     40      1.1    ross #include <sys/kernel.h>
     41      1.1    ross #include <sys/device.h>
     42  1.1.6.1  bouyer 
     43  1.1.6.1  bouyer #include <uvm/uvm_extern.h>
     44  1.1.6.1  bouyer 
     45      1.1    ross #include <dev/pci/pcireg.h>
     46      1.1    ross #include <dev/pci/pcivar.h>
     47      1.1    ross 
     48      1.1    ross #include <machine/autoconf.h>
     49      1.1    ross #include <machine/rpb.h>
     50      1.1    ross 
     51      1.1    ross #include <alpha/pci/tsreg.h>
     52      1.1    ross #include <alpha/pci/tsvar.h>
     53      1.1    ross 
     54      1.1    ross #define tsp_pci() { Generate ctags(1) key. }
     55      1.1    ross 
     56      1.1    ross void		tsp_attach_hook __P((struct device *, struct device *,
     57      1.1    ross 		    struct pcibus_attach_args *));
     58      1.1    ross int		tsp_bus_maxdevs __P((void *, int));
     59      1.1    ross pcitag_t	tsp_make_tag __P((void *, int, int, int));
     60      1.1    ross void		tsp_decompose_tag __P((void *, pcitag_t, int *, int *,
     61      1.1    ross 		    int *));
     62      1.1    ross pcireg_t	tsp_conf_read __P((void *, pcitag_t, int));
     63      1.1    ross void		tsp_conf_write __P((void *, pcitag_t, int, pcireg_t));
     64      1.1    ross 
     65      1.1    ross void
     66      1.1    ross tsp_pci_init(pc, v)
     67      1.1    ross 	pci_chipset_tag_t pc;
     68      1.1    ross 	void *v;
     69      1.1    ross {
     70      1.1    ross 	pc->pc_conf_v = v;
     71      1.1    ross 	pc->pc_attach_hook = tsp_attach_hook;
     72      1.1    ross 	pc->pc_bus_maxdevs = tsp_bus_maxdevs;
     73      1.1    ross 	pc->pc_make_tag = tsp_make_tag;
     74      1.1    ross 	pc->pc_decompose_tag = tsp_decompose_tag;
     75      1.1    ross 	pc->pc_conf_read = tsp_conf_read;
     76      1.1    ross 	pc->pc_conf_write = tsp_conf_write;
     77      1.1    ross }
     78      1.1    ross 
     79      1.1    ross void
     80      1.1    ross tsp_attach_hook(parent, self, pba)
     81      1.1    ross 	struct device *parent, *self;
     82      1.1    ross 	struct pcibus_attach_args *pba;
     83      1.1    ross {
     84      1.1    ross }
     85      1.1    ross 
     86      1.1    ross int
     87      1.1    ross tsp_bus_maxdevs(cpv, busno)
     88      1.1    ross 	void *cpv;
     89      1.1    ross 	int busno;
     90      1.1    ross {
     91      1.1    ross 	return 32;
     92      1.1    ross }
     93      1.1    ross 
     94      1.1    ross pcitag_t
     95      1.1    ross tsp_make_tag(cpv, b, d, f)
     96      1.1    ross 	void *cpv;
     97      1.1    ross 	int b, d, f;
     98      1.1    ross {
     99      1.1    ross 	return b << 16 | d << 11 | f << 8;
    100      1.1    ross }
    101      1.1    ross 
    102      1.1    ross void
    103      1.1    ross tsp_decompose_tag(cpv, tag, bp, dp, fp)
    104      1.1    ross 	void *cpv;
    105      1.1    ross 	pcitag_t tag;
    106      1.1    ross 	int *bp, *dp, *fp;
    107      1.1    ross {
    108      1.1    ross 	if (bp != NULL)
    109      1.1    ross 		*bp = (tag >> 16) & 0xff;
    110      1.1    ross 	if (dp != NULL)
    111      1.1    ross 		*dp = (tag >> 11) & 0x1f;
    112      1.1    ross 	if (fp != NULL)
    113      1.1    ross 		*fp = (tag >> 8) & 0x7;
    114      1.1    ross }
    115      1.1    ross /*
    116      1.1    ross  * Tsunami makes this a lot easier than it used to be, automatically
    117      1.1    ross  * generating type 0 or type 1 cycles, and quietly returning -1 with
    118      1.1    ross  * no errors on unanswered probes.
    119      1.1    ross  */
    120      1.1    ross pcireg_t
    121      1.1    ross tsp_conf_read(cpv, tag, offset)
    122      1.1    ross 	void *cpv;
    123      1.1    ross 	pcitag_t tag;
    124      1.1    ross 	int offset;
    125      1.1    ross {
    126      1.1    ross 	pcireg_t *datap, data;
    127      1.1    ross 	struct tsp_config *pcp = cpv;
    128      1.1    ross 
    129      1.1    ross 	datap = S_PAGE(pcp->pc_iobase | P_PCI_CONFIG | tag | (offset & ~3));
    130      1.1    ross 	alpha_mb();
    131      1.1    ross 	data = *datap;
    132      1.1    ross 	alpha_mb();
    133      1.1    ross 	return data;
    134      1.1    ross }
    135      1.1    ross 
    136      1.1    ross void
    137      1.1    ross tsp_conf_write(cpv, tag, offset, data)
    138      1.1    ross 	void *cpv;
    139      1.1    ross 	pcitag_t tag;
    140      1.1    ross 	int offset;
    141      1.1    ross 	pcireg_t data;
    142      1.1    ross {
    143      1.1    ross 	pcireg_t *datap;
    144      1.1    ross 	struct tsp_config *pcp = cpv;
    145      1.1    ross 
    146      1.1    ross 	datap = S_PAGE(pcp->pc_iobase | P_PCI_CONFIG | tag | (offset & ~3));
    147      1.1    ross 	alpha_mb();
    148      1.1    ross 	*datap = data;
    149      1.1    ross 	alpha_mb();
    150      1.1    ross }
    151