Home | History | Annotate | Line # | Download | only in rmi
rmixl_pcie.c revision 1.1.2.17
      1  1.1.2.17   matt /*	$NetBSD: rmixl_pcie.c,v 1.1.2.17 2011/04/29 08:26:33 matt Exp $	*/
      2   1.1.2.1  cliff 
      3   1.1.2.1  cliff /*
      4   1.1.2.1  cliff  * Copyright (c) 2001 Wasabi Systems, Inc.
      5   1.1.2.1  cliff  * All rights reserved.
      6   1.1.2.1  cliff  *
      7   1.1.2.1  cliff  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8   1.1.2.1  cliff  *
      9   1.1.2.1  cliff  * Redistribution and use in source and binary forms, with or without
     10   1.1.2.1  cliff  * modification, are permitted provided that the following conditions
     11   1.1.2.1  cliff  * are met:
     12   1.1.2.1  cliff  * 1. Redistributions of source code must retain the above copyright
     13   1.1.2.1  cliff  *    notice, this list of conditions and the following disclaimer.
     14   1.1.2.1  cliff  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1.2.1  cliff  *    notice, this list of conditions and the following disclaimer in the
     16   1.1.2.1  cliff  *    documentation and/or other materials provided with the distribution.
     17   1.1.2.1  cliff  * 3. All advertising materials mentioning features or use of this software
     18   1.1.2.1  cliff  *    must display the following acknowledgement:
     19   1.1.2.1  cliff  *	This product includes software developed for the NetBSD Project by
     20   1.1.2.1  cliff  *	Wasabi Systems, Inc.
     21   1.1.2.1  cliff  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22   1.1.2.1  cliff  *    or promote products derived from this software without specific prior
     23   1.1.2.1  cliff  *    written permission.
     24   1.1.2.1  cliff  *
     25   1.1.2.1  cliff  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26   1.1.2.1  cliff  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27   1.1.2.1  cliff  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28   1.1.2.1  cliff  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29   1.1.2.1  cliff  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30   1.1.2.1  cliff  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31   1.1.2.1  cliff  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32   1.1.2.1  cliff  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33   1.1.2.1  cliff  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34   1.1.2.1  cliff  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35   1.1.2.1  cliff  * POSSIBILITY OF SUCH DAMAGE.
     36   1.1.2.1  cliff  */
     37   1.1.2.1  cliff 
     38   1.1.2.1  cliff /*
     39   1.1.2.1  cliff  * PCI configuration support for RMI XLS SoC
     40   1.1.2.1  cliff  */
     41   1.1.2.1  cliff 
     42   1.1.2.1  cliff #include <sys/cdefs.h>
     43  1.1.2.17   matt __KERNEL_RCSID(0, "$NetBSD: rmixl_pcie.c,v 1.1.2.17 2011/04/29 08:26:33 matt Exp $");
     44   1.1.2.1  cliff 
     45   1.1.2.1  cliff #include "opt_pci.h"
     46   1.1.2.1  cliff #include "pci.h"
     47   1.1.2.1  cliff 
     48   1.1.2.1  cliff #include <sys/cdefs.h>
     49   1.1.2.1  cliff 
     50   1.1.2.1  cliff #include <sys/param.h>
     51   1.1.2.1  cliff #include <sys/systm.h>
     52   1.1.2.1  cliff #include <sys/device.h>
     53   1.1.2.1  cliff #include <sys/extent.h>
     54   1.1.2.1  cliff #include <sys/malloc.h>
     55  1.1.2.16  cliff #include <sys/kernel.h>		/* for 'hz' */
     56  1.1.2.16  cliff #include <sys/cpu.h>
     57   1.1.2.1  cliff 
     58   1.1.2.1  cliff #include <uvm/uvm_extern.h>
     59   1.1.2.1  cliff 
     60   1.1.2.1  cliff #include <machine/bus.h>
     61   1.1.2.1  cliff #include <machine/intr.h>
     62   1.1.2.1  cliff 
     63   1.1.2.1  cliff #include <mips/rmi/rmixlreg.h>
     64   1.1.2.1  cliff #include <mips/rmi/rmixlvar.h>
     65   1.1.2.9  cliff #include <mips/rmi/rmixl_intr.h>
     66   1.1.2.1  cliff #include <mips/rmi/rmixl_pcievar.h>
     67   1.1.2.1  cliff 
     68   1.1.2.1  cliff #include <mips/rmi/rmixl_obiovar.h>
     69   1.1.2.1  cliff 
     70   1.1.2.1  cliff #include <dev/pci/pcivar.h>
     71   1.1.2.1  cliff #include <dev/pci/pcidevs.h>
     72   1.1.2.1  cliff #include <dev/pci/pciconf.h>
     73   1.1.2.1  cliff 
     74   1.1.2.1  cliff #ifdef	PCI_NETBSD_CONFIGURE
     75   1.1.2.1  cliff #include <mips/cache.h>
     76   1.1.2.1  cliff #endif
     77   1.1.2.1  cliff 
     78   1.1.2.1  cliff #include <machine/pci_machdep.h>
     79   1.1.2.1  cliff 
     80   1.1.2.1  cliff #ifdef PCI_DEBUG
     81   1.1.2.1  cliff int rmixl_pcie_debug = PCI_DEBUG;
     82   1.1.2.1  cliff # define DPRINTF(x)	do { if (rmixl_pcie_debug) printf x ; } while (0)
     83   1.1.2.1  cliff #else
     84   1.1.2.1  cliff # define DPRINTF(x)
     85   1.1.2.1  cliff #endif
     86   1.1.2.1  cliff 
     87   1.1.2.1  cliff #ifndef DDB
     88   1.1.2.1  cliff # define STATIC static
     89   1.1.2.1  cliff #else
     90   1.1.2.1  cliff # define STATIC
     91   1.1.2.1  cliff #endif
     92   1.1.2.1  cliff 
     93   1.1.2.1  cliff 
     94   1.1.2.1  cliff /*
     95   1.1.2.1  cliff  * XLS PCIe Extended Configuration Registers
     96   1.1.2.1  cliff  */
     97   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_UESR	0x104	/* Uncorrectable Error Status Reg */
     98   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_UEMR	0x108	/* Uncorrectable Error Mask Reg */
     99   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_UEVR	0x10c	/* Uncorrectable Error seVerity Reg */
    100   1.1.2.1  cliff #define  PCIE_ECFG_UEVR_DFLT	\
    101   1.1.2.1  cliff 		(__BITS(18,17) | __BIT(31) | __BITS(5,4) | __BIT(0))
    102   1.1.2.1  cliff #define  PCIE_ECFG_UExR_RESV	(__BITS(31,21) | __BITS(11,6) | __BITS(3,1))
    103   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_CESR	0x110	/* Correctable Error Status Reg */
    104   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_CEMR	0x114	/* Correctable Error Mask Reg */
    105   1.1.2.1  cliff #define  PCIE_ECFG_CExR_RESV	(__BITS(31,14) | __BITS(11,9) | __BITS(5,1))
    106   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_ACCR	0x118	/* Adv. Capabilities Control Reg */
    107   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_HLRn(n)	(0x11c + ((n) * 4))	/* Header Log Regs */
    108   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_RECR	0x12c	/* Root Error Command Reg */
    109   1.1.2.1  cliff #define  PCIE_ECFG_RECR_RESV	__BITS(31,3)
    110   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_RESR	0x130	/* Root Error Status Reg */
    111   1.1.2.1  cliff #define  PCIE_ECFG_RESR_RESV	__BITS(26,7)
    112   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_ESI	0x134	/* Error Source Identification Reg */
    113   1.1.2.1  cliff #define RMIXL_PCIE_ECFG_DSNCR	0x140	/* Dev Serial Number Capability Regs */
    114   1.1.2.1  cliff 
    115   1.1.2.1  cliff static const struct {
    116   1.1.2.1  cliff 	u_int offset;
    117   1.1.2.1  cliff 	u_int32_t rw1c;
    118   1.1.2.1  cliff } pcie_ecfg_errs_tab[] = {
    119   1.1.2.1  cliff 	{ RMIXL_PCIE_ECFG_UESR,		(__BITS(20,12) | __BIT(4)) },
    120   1.1.2.1  cliff 	{ RMIXL_PCIE_ECFG_CESR,		(__BITS(20,12) | __BIT(4)) },
    121   1.1.2.1  cliff 	{ RMIXL_PCIE_ECFG_HLRn(0),	0 },
    122   1.1.2.1  cliff 	{ RMIXL_PCIE_ECFG_HLRn(1),	0 },
    123   1.1.2.1  cliff 	{ RMIXL_PCIE_ECFG_HLRn(2),	0 },
    124   1.1.2.1  cliff 	{ RMIXL_PCIE_ECFG_HLRn(3),	0 },
    125   1.1.2.1  cliff 	{ RMIXL_PCIE_ECFG_RESR,		__BITS(6,0) },
    126   1.1.2.1  cliff 	{ RMIXL_PCIE_ECFG_ESI,		0 },
    127   1.1.2.1  cliff };
    128   1.1.2.1  cliff #define PCIE_ECFG_ERRS_OFFTAB_NENTRIES \
    129   1.1.2.1  cliff 	(sizeof(pcie_ecfg_errs_tab)/sizeof(pcie_ecfg_errs_tab[0]))
    130   1.1.2.1  cliff 
    131   1.1.2.8  cliff typedef struct rmixl_pcie_int_csr {
    132   1.1.2.8  cliff 	uint r0;
    133   1.1.2.8  cliff 	uint r1;
    134   1.1.2.8  cliff } rmixl_pcie_int_csr_t;
    135   1.1.2.8  cliff 
    136   1.1.2.8  cliff static const rmixl_pcie_int_csr_t int_enb_offset[4] = {
    137   1.1.2.8  cliff 	{ RMIXL_PCIE_LINK0_INT_ENABLE0, RMIXL_PCIE_LINK0_INT_ENABLE1 },
    138   1.1.2.8  cliff 	{ RMIXL_PCIE_LINK1_INT_ENABLE0, RMIXL_PCIE_LINK1_INT_ENABLE1 },
    139   1.1.2.8  cliff 	{ RMIXL_PCIE_LINK2_INT_ENABLE0, RMIXL_PCIE_LINK2_INT_ENABLE1 },
    140   1.1.2.8  cliff 	{ RMIXL_PCIE_LINK3_INT_ENABLE0, RMIXL_PCIE_LINK3_INT_ENABLE1 },
    141   1.1.2.8  cliff };
    142   1.1.2.8  cliff 
    143   1.1.2.8  cliff static const rmixl_pcie_int_csr_t int_sts_offset[4] = {
    144   1.1.2.8  cliff 	{ RMIXL_PCIE_LINK0_INT_STATUS0, RMIXL_PCIE_LINK0_INT_STATUS1 },
    145   1.1.2.8  cliff 	{ RMIXL_PCIE_LINK1_INT_STATUS0, RMIXL_PCIE_LINK1_INT_STATUS1 },
    146   1.1.2.8  cliff 	{ RMIXL_PCIE_LINK2_INT_STATUS0, RMIXL_PCIE_LINK2_INT_STATUS1 },
    147   1.1.2.8  cliff 	{ RMIXL_PCIE_LINK3_INT_STATUS0, RMIXL_PCIE_LINK3_INT_STATUS1 },
    148   1.1.2.8  cliff };
    149   1.1.2.8  cliff 
    150   1.1.2.8  cliff static const u_int msi_enb_offset[4] = {
    151   1.1.2.8  cliff 	RMIXL_PCIE_LINK0_MSI_ENABLE,
    152   1.1.2.8  cliff 	RMIXL_PCIE_LINK1_MSI_ENABLE,
    153   1.1.2.8  cliff 	RMIXL_PCIE_LINK2_MSI_ENABLE,
    154   1.1.2.8  cliff 	RMIXL_PCIE_LINK3_MSI_ENABLE
    155   1.1.2.8  cliff };
    156   1.1.2.8  cliff 
    157   1.1.2.8  cliff #define RMIXL_PCIE_LINK_STATUS0_ERRORS	__BITS(6,4)
    158   1.1.2.8  cliff #define RMIXL_PCIE_LINK_STATUS1_ERRORS	__BITS(10,0)
    159   1.1.2.8  cliff #define RMIXL_PCIE_LINK_STATUS_ERRORS					\
    160   1.1.2.8  cliff 		((((uint64_t)RMIXL_PCIE_LINK_STATUS1_ERRORS) << 32) |	\
    161   1.1.2.8  cliff 		   (uint64_t)RMIXL_PCIE_LINK_STATUS0_ERRORS)
    162   1.1.2.8  cliff 
    163  1.1.2.16  cliff #define RMIXL_PCIE_EVCNT(sc, link, bitno, cpu)	\
    164  1.1.2.16  cliff 		&(sc)->sc_evcnts[link][(bitno) * (ncpu) + (cpu)]
    165  1.1.2.16  cliff 
    166   1.1.2.1  cliff static int	rmixl_pcie_match(device_t, cfdata_t, void *);
    167   1.1.2.1  cliff static void	rmixl_pcie_attach(device_t, device_t, void *);
    168   1.1.2.1  cliff static void	rmixl_pcie_init(struct rmixl_pcie_softc *);
    169   1.1.2.1  cliff static void	rmixl_pcie_init_ecfg(struct rmixl_pcie_softc *);
    170   1.1.2.1  cliff static void	rmixl_pcie_attach_hook(struct device *, struct device *,
    171   1.1.2.1  cliff 		    struct pcibus_attach_args *);
    172   1.1.2.1  cliff static void	rmixl_pcie_lnkcfg_4xx(rmixl_pcie_lnktab_t *, uint32_t);
    173   1.1.2.1  cliff static void	rmixl_pcie_lnkcfg_408Lite(rmixl_pcie_lnktab_t *, uint32_t);
    174   1.1.2.1  cliff static void	rmixl_pcie_lnkcfg_2xx(rmixl_pcie_lnktab_t *, uint32_t);
    175   1.1.2.1  cliff static void	rmixl_pcie_lnkcfg_1xx(rmixl_pcie_lnktab_t *, uint32_t);
    176   1.1.2.1  cliff static void	rmixl_pcie_lnkcfg(struct rmixl_pcie_softc *);
    177   1.1.2.8  cliff static void	rmixl_pcie_intcfg(struct rmixl_pcie_softc *);
    178   1.1.2.1  cliff static void	rmixl_pcie_errata(struct rmixl_pcie_softc *);
    179   1.1.2.1  cliff static void	rmixl_conf_interrupt(void *, int, int, int, int, int *);
    180   1.1.2.1  cliff static int	rmixl_pcie_bus_maxdevs(void *, int);
    181   1.1.2.3  cliff static pcitag_t	rmixl_tag_to_ecfg(pcitag_t);
    182   1.1.2.1  cliff static pcitag_t	rmixl_pcie_make_tag(void *, int, int, int);
    183   1.1.2.1  cliff static void	rmixl_pcie_decompose_tag(void *, pcitag_t, int *, int *, int *);
    184   1.1.2.1  cliff void		rmixl_pcie_tag_print(const char *restrict, void *, pcitag_t,				int, vaddr_t, u_long);
    185   1.1.2.3  cliff static int	rmixl_pcie_conf_setup(struct rmixl_pcie_softc *,
    186   1.1.2.3  cliff 			pcitag_t, int *, bus_space_tag_t *,
    187   1.1.2.3  cliff 			bus_space_handle_t *);
    188   1.1.2.1  cliff static pcireg_t	rmixl_pcie_conf_read(void *, pcitag_t, int);
    189   1.1.2.1  cliff static void	rmixl_pcie_conf_write(void *, pcitag_t, int, pcireg_t);
    190   1.1.2.1  cliff 
    191   1.1.2.1  cliff static int	rmixl_pcie_intr_map(struct pci_attach_args *,
    192   1.1.2.1  cliff 		    pci_intr_handle_t *);
    193   1.1.2.1  cliff static const char *
    194   1.1.2.1  cliff 		rmixl_pcie_intr_string(void *, pci_intr_handle_t);
    195   1.1.2.1  cliff static const struct evcnt *
    196   1.1.2.1  cliff 		rmixl_pcie_intr_evcnt(void *, pci_intr_handle_t);
    197   1.1.2.8  cliff static pci_intr_handle_t
    198   1.1.2.8  cliff 		rmixl_pcie_make_pih(u_int, u_int, u_int);
    199   1.1.2.8  cliff static void	rmixl_pcie_decompose_pih(pci_intr_handle_t, u_int *, u_int *, u_int *);
    200   1.1.2.8  cliff static void	rmixl_pcie_intr_disestablish(void *, void *);
    201   1.1.2.1  cliff static void	*rmixl_pcie_intr_establish(void *, pci_intr_handle_t,
    202   1.1.2.1  cliff 		    int, int (*)(void *), void *);
    203  1.1.2.16  cliff static rmixl_pcie_link_intr_t *
    204  1.1.2.16  cliff 		rmixl_pcie_lip_add_1(rmixl_pcie_softc_t *, u_int, int, int);
    205  1.1.2.16  cliff static void	rmixl_pcie_lip_free_callout(rmixl_pcie_link_intr_t *);
    206  1.1.2.16  cliff static void	rmixl_pcie_lip_free(void *);
    207   1.1.2.8  cliff static int	rmixl_pcie_intr(void *);
    208   1.1.2.8  cliff static void	rmixl_pcie_link_error_intr(u_int, uint32_t, uint32_t);
    209   1.1.2.1  cliff #if defined(DEBUG) || defined(DDB)
    210   1.1.2.1  cliff int		rmixl_pcie_error_check(void);
    211   1.1.2.1  cliff #endif
    212   1.1.2.1  cliff static int	_rmixl_pcie_error_check(void *);
    213   1.1.2.1  cliff static int	rmixl_pcie_error_intr(void *);
    214   1.1.2.1  cliff 
    215   1.1.2.1  cliff 
    216   1.1.2.1  cliff #define RMIXL_PCIE_CONCAT3(a,b,c) a ## b ## c
    217   1.1.2.1  cliff #define RMIXL_PCIE_BAR_INIT(reg, bar, size, align) {			\
    218   1.1.2.1  cliff 	struct extent *ext = rmixl_configuration.rc_phys_ex;		\
    219   1.1.2.1  cliff 	u_long region_start;						\
    220   1.1.2.1  cliff 	uint64_t ba;							\
    221   1.1.2.1  cliff 	int err;							\
    222   1.1.2.1  cliff 									\
    223   1.1.2.1  cliff 	err = extent_alloc(ext, (size), (align), 0UL, EX_NOWAIT,	\
    224   1.1.2.1  cliff 		&region_start);						\
    225   1.1.2.1  cliff 	if (err != 0)							\
    226   1.1.2.1  cliff 		panic("%s: extent_alloc(%p, %#lx, %#lx, %#lx, %#x, %p)",\
    227   1.1.2.1  cliff 			__func__, ext, size, align, 0UL, EX_NOWAIT,	\
    228   1.1.2.1  cliff 			&region_start);					\
    229   1.1.2.1  cliff 	ba = (uint64_t)region_start;					\
    230   1.1.2.1  cliff 	ba *= (1024 * 1024);						\
    231   1.1.2.1  cliff 	bar = RMIXL_PCIE_CONCAT3(RMIXL_PCIE_,reg,_BAR)(ba, 1);		\
    232   1.1.2.1  cliff 	DPRINTF(("PCIE %s BAR was not enabled by firmware\n"		\
    233   1.1.2.4  cliff 		"enabling %s at phys %#" PRIxBUSADDR ", size %lu MB\n",	\
    234   1.1.2.1  cliff 		__STRING(reg), __STRING(reg), ba, size));		\
    235   1.1.2.1  cliff 	RMIXL_IOREG_WRITE(RMIXL_IO_DEV_BRIDGE + 			\
    236  1.1.2.11  cliff 		RMIXL_PCIE_CONCAT3(RMIXLS_SBC_PCIE_,reg,_BAR), bar);	\
    237   1.1.2.1  cliff 	bar = RMIXL_IOREG_READ(RMIXL_IO_DEV_BRIDGE +			\
    238  1.1.2.11  cliff 		RMIXL_PCIE_CONCAT3(RMIXLS_SBC_PCIE_,reg,_BAR));		\
    239   1.1.2.1  cliff 	DPRINTF(("%s: %s BAR %#x\n", __func__, __STRING(reg), bar));	\
    240   1.1.2.1  cliff }
    241   1.1.2.1  cliff 
    242   1.1.2.1  cliff 
    243   1.1.2.1  cliff #if defined(DEBUG) || defined(DDB)
    244   1.1.2.1  cliff static void *rmixl_pcie_v;
    245   1.1.2.1  cliff #endif
    246   1.1.2.1  cliff 
    247   1.1.2.1  cliff CFATTACH_DECL_NEW(rmixl_pcie, sizeof(struct rmixl_pcie_softc),
    248   1.1.2.1  cliff     rmixl_pcie_match, rmixl_pcie_attach, NULL, NULL);
    249   1.1.2.1  cliff 
    250   1.1.2.1  cliff static int rmixl_pcie_found;
    251   1.1.2.1  cliff 
    252   1.1.2.1  cliff static int
    253   1.1.2.1  cliff rmixl_pcie_match(device_t parent, cfdata_t cf, void *aux)
    254   1.1.2.1  cliff {
    255   1.1.2.1  cliff 	uint32_t r;
    256   1.1.2.1  cliff 
    257  1.1.2.11  cliff 	/*
    258  1.1.2.11  cliff 	 * PCIe interface exists on XLS chips only
    259  1.1.2.11  cliff 	 */
    260  1.1.2.11  cliff 	if (! cpu_rmixls(mips_options.mips_cpu))
    261  1.1.2.11  cliff 		return 0;
    262  1.1.2.11  cliff 
    263   1.1.2.1  cliff 	/* XXX
    264   1.1.2.1  cliff 	 * for now there is only one PCIe Interface on chip
    265   1.1.2.1  cliff 	 * this could change with furture RMI XL family designs
    266   1.1.2.1  cliff 	 */
    267   1.1.2.1  cliff 	if (rmixl_pcie_found)
    268   1.1.2.1  cliff 		return 0;
    269   1.1.2.1  cliff 
    270   1.1.2.1  cliff 	/* read GPIO Reset Configuration register */
    271   1.1.2.1  cliff 	r = RMIXL_IOREG_READ(RMIXL_IO_DEV_GPIO + RMIXL_GPIO_RESET_CFG);
    272   1.1.2.1  cliff 	r >>= 26;
    273   1.1.2.1  cliff 	r &= 3;
    274   1.1.2.1  cliff 	if (r != 0)
    275   1.1.2.1  cliff 		return 0;	/* strapped for SRIO */
    276   1.1.2.1  cliff 
    277   1.1.2.1  cliff 	return 1;
    278   1.1.2.1  cliff }
    279   1.1.2.1  cliff 
    280   1.1.2.1  cliff static void
    281   1.1.2.1  cliff rmixl_pcie_attach(device_t parent, device_t self, void *aux)
    282   1.1.2.1  cliff {
    283   1.1.2.1  cliff 	struct rmixl_pcie_softc *sc = device_private(self);
    284   1.1.2.1  cliff 	struct obio_attach_args *obio = aux;
    285   1.1.2.1  cliff 	struct rmixl_config *rcp = &rmixl_configuration;
    286   1.1.2.1  cliff         struct pcibus_attach_args pba;
    287   1.1.2.1  cliff 	uint32_t bar;
    288   1.1.2.1  cliff 
    289   1.1.2.1  cliff 	rmixl_pcie_found = 1;
    290   1.1.2.1  cliff 	sc->sc_dev = self;
    291   1.1.2.1  cliff 
    292   1.1.2.1  cliff 	aprint_normal(" RMI XLS PCIe Interface\n");
    293   1.1.2.1  cliff 
    294  1.1.2.16  cliff 	mutex_init(&sc->sc_mutex, MUTEX_DEFAULT, IPL_HIGH);
    295  1.1.2.16  cliff 
    296   1.1.2.1  cliff 	rmixl_pcie_lnkcfg(sc);
    297   1.1.2.1  cliff 
    298   1.1.2.8  cliff 	rmixl_pcie_intcfg(sc);
    299   1.1.2.8  cliff 
    300   1.1.2.1  cliff 	rmixl_pcie_errata(sc);
    301   1.1.2.1  cliff 
    302   1.1.2.1  cliff 	sc->sc_29bit_dmat = obio->obio_29bit_dmat;
    303   1.1.2.1  cliff 	sc->sc_32bit_dmat = obio->obio_32bit_dmat;
    304   1.1.2.1  cliff 	sc->sc_64bit_dmat = obio->obio_64bit_dmat;
    305   1.1.2.1  cliff 
    306   1.1.2.9  cliff 	sc->sc_tmsk = obio->obio_tmsk;
    307   1.1.2.9  cliff 
    308   1.1.2.1  cliff 	/*
    309   1.1.2.1  cliff 	 * get PCI config space base addr from SBC PCIe CFG BAR
    310   1.1.2.1  cliff 	 * initialize it if necessary
    311   1.1.2.1  cliff  	 */
    312  1.1.2.11  cliff 	bar = RMIXL_IOREG_READ(RMIXL_IO_DEV_BRIDGE + RMIXLS_SBC_PCIE_CFG_BAR);
    313   1.1.2.1  cliff 	DPRINTF(("%s: PCIE_CFG_BAR %#x\n", __func__, bar));
    314   1.1.2.1  cliff 	if ((bar & RMIXL_PCIE_CFG_BAR_ENB) == 0) {
    315   1.1.2.1  cliff 		u_long n = RMIXL_PCIE_CFG_SIZE / (1024 * 1024);
    316   1.1.2.1  cliff 		RMIXL_PCIE_BAR_INIT(CFG, bar, n, n);
    317   1.1.2.1  cliff 	}
    318  1.1.2.11  cliff 	rcp->rc_pci_cfg_pbase = (bus_addr_t)RMIXL_PCIE_CFG_BAR_TO_BA(bar);
    319  1.1.2.11  cliff 	rcp->rc_pci_cfg_size  = (bus_size_t)RMIXL_PCIE_CFG_SIZE;
    320   1.1.2.1  cliff 
    321   1.1.2.1  cliff 	/*
    322   1.1.2.1  cliff 	 * get PCIE Extended config space base addr from SBC PCIe ECFG BAR
    323   1.1.2.1  cliff 	 * initialize it if necessary
    324   1.1.2.1  cliff  	 */
    325  1.1.2.11  cliff 	bar = RMIXL_IOREG_READ(RMIXL_IO_DEV_BRIDGE + RMIXLS_SBC_PCIE_ECFG_BAR);
    326   1.1.2.1  cliff 	DPRINTF(("%s: PCIE_ECFG_BAR %#x\n", __func__, bar));
    327   1.1.2.1  cliff 	if ((bar & RMIXL_PCIE_ECFG_BAR_ENB) == 0) {
    328   1.1.2.1  cliff 		u_long n = RMIXL_PCIE_ECFG_SIZE / (1024 * 1024);
    329   1.1.2.1  cliff 		RMIXL_PCIE_BAR_INIT(ECFG, bar, n, n);
    330   1.1.2.1  cliff 	}
    331  1.1.2.11  cliff 	rcp->rc_pci_ecfg_pbase = (bus_addr_t)RMIXL_PCIE_ECFG_BAR_TO_BA(bar);
    332  1.1.2.11  cliff 	rcp->rc_pci_ecfg_size  = (bus_size_t)RMIXL_PCIE_ECFG_SIZE;
    333   1.1.2.1  cliff 
    334   1.1.2.1  cliff 	/*
    335   1.1.2.1  cliff 	 * get PCI MEM space base [addr, size] from SBC PCIe MEM BAR
    336   1.1.2.1  cliff 	 * initialize it if necessary
    337   1.1.2.1  cliff  	 */
    338  1.1.2.11  cliff 	bar = RMIXL_IOREG_READ(RMIXL_IO_DEV_BRIDGE + RMIXLS_SBC_PCIE_MEM_BAR);
    339   1.1.2.1  cliff 	DPRINTF(("%s: PCIE_MEM_BAR %#x\n", __func__, bar));
    340   1.1.2.1  cliff 	if ((bar & RMIXL_PCIE_MEM_BAR_ENB) == 0) {
    341   1.1.2.1  cliff 		u_long n = 256;				/* 256 MB */
    342   1.1.2.1  cliff 		RMIXL_PCIE_BAR_INIT(MEM, bar, n, n);
    343   1.1.2.1  cliff 	}
    344   1.1.2.1  cliff 	rcp->rc_pci_mem_pbase = (bus_addr_t)RMIXL_PCIE_MEM_BAR_TO_BA(bar);
    345   1.1.2.1  cliff 	rcp->rc_pci_mem_size  = (bus_size_t)RMIXL_PCIE_MEM_BAR_TO_SIZE(bar);
    346   1.1.2.1  cliff 
    347   1.1.2.1  cliff 	/*
    348   1.1.2.1  cliff 	 * get PCI IO space base [addr, size] from SBC PCIe IO BAR
    349   1.1.2.1  cliff 	 * initialize it if necessary
    350   1.1.2.1  cliff  	 */
    351  1.1.2.11  cliff 	bar = RMIXL_IOREG_READ(RMIXL_IO_DEV_BRIDGE + RMIXLS_SBC_PCIE_IO_BAR);
    352   1.1.2.1  cliff 	DPRINTF(("%s: PCIE_IO_BAR %#x\n", __func__, bar));
    353   1.1.2.1  cliff 	if ((bar & RMIXL_PCIE_IO_BAR_ENB) == 0) {
    354   1.1.2.1  cliff 		u_long n = 32;				/* 32 MB */
    355   1.1.2.1  cliff 		RMIXL_PCIE_BAR_INIT(IO, bar, n, n);
    356   1.1.2.1  cliff 	}
    357   1.1.2.1  cliff 	rcp->rc_pci_io_pbase = (bus_addr_t)RMIXL_PCIE_IO_BAR_TO_BA(bar);
    358   1.1.2.1  cliff 	rcp->rc_pci_io_size  = (bus_size_t)RMIXL_PCIE_IO_BAR_TO_SIZE(bar);
    359   1.1.2.1  cliff 
    360   1.1.2.1  cliff 	/*
    361   1.1.2.3  cliff 	 * initialize the PCI CFG, ECFG bus space tags
    362   1.1.2.3  cliff 	 */
    363  1.1.2.11  cliff 	rmixl_pci_cfg_bus_mem_init(&rcp->rc_pci_cfg_memt, rcp);
    364  1.1.2.11  cliff 	sc->sc_pci_cfg_memt = &rcp->rc_pci_cfg_memt;
    365   1.1.2.3  cliff 
    366  1.1.2.11  cliff 	rmixl_pci_ecfg_bus_mem_init(&rcp->rc_pci_ecfg_memt, rcp);
    367  1.1.2.11  cliff 	sc->sc_pci_ecfg_memt = &rcp->rc_pci_ecfg_memt;
    368   1.1.2.3  cliff 
    369   1.1.2.3  cliff 	/*
    370   1.1.2.3  cliff 	 * initialize the PCI MEM and IO bus space tags
    371   1.1.2.1  cliff 	 */
    372  1.1.2.11  cliff 	rmixl_pci_bus_mem_init(&rcp->rc_pci_memt, rcp);
    373  1.1.2.11  cliff 	rmixl_pci_bus_io_init(&rcp->rc_pci_iot, rcp);
    374   1.1.2.1  cliff 
    375   1.1.2.1  cliff 	/*
    376   1.1.2.1  cliff 	 * initialize the extended configuration regs
    377   1.1.2.1  cliff 	 */
    378   1.1.2.1  cliff 	rmixl_pcie_init_ecfg(sc);
    379   1.1.2.1  cliff 
    380   1.1.2.1  cliff 	/*
    381   1.1.2.1  cliff 	 * initialize the PCI chipset tag
    382   1.1.2.1  cliff 	 */
    383   1.1.2.1  cliff 	rmixl_pcie_init(sc);
    384   1.1.2.1  cliff 
    385   1.1.2.1  cliff 	/*
    386   1.1.2.1  cliff 	 * attach the PCI bus
    387   1.1.2.1  cliff 	 */
    388   1.1.2.1  cliff 	memset(&pba, 0, sizeof(pba));
    389   1.1.2.1  cliff 	pba.pba_memt = &rcp->rc_pci_memt;
    390   1.1.2.1  cliff 	pba.pba_iot =  &rcp->rc_pci_iot;
    391   1.1.2.6   matt 	pba.pba_dmat = sc->sc_32bit_dmat;
    392   1.1.2.6   matt 	pba.pba_dmat64 = sc->sc_64bit_dmat;
    393   1.1.2.1  cliff 	pba.pba_pc = &sc->sc_pci_chipset;
    394   1.1.2.1  cliff 	pba.pba_bus = 0;
    395   1.1.2.1  cliff 	pba.pba_bridgetag = NULL;
    396   1.1.2.1  cliff 	pba.pba_intrswiz = 0;
    397   1.1.2.1  cliff 	pba.pba_intrtag = 0;
    398   1.1.2.1  cliff 	pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED |
    399   1.1.2.1  cliff 		PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY | PCI_FLAGS_MWI_OKAY;
    400   1.1.2.1  cliff 
    401   1.1.2.1  cliff 	(void) config_found_ia(self, "pcibus", &pba, pcibusprint);
    402   1.1.2.1  cliff }
    403   1.1.2.1  cliff 
    404   1.1.2.1  cliff /*
    405   1.1.2.1  cliff  * rmixl_pcie_lnkcfg_4xx - link configs for XLS4xx and XLS6xx
    406   1.1.2.1  cliff  *	use IO_AD[11] and IO_AD[10], observable in
    407   1.1.2.1  cliff  *	Bits[21:20] of the GPIO Reset Configuration register
    408   1.1.2.1  cliff  */
    409   1.1.2.1  cliff static void
    410   1.1.2.1  cliff rmixl_pcie_lnkcfg_4xx(rmixl_pcie_lnktab_t *ltp, uint32_t grcr)
    411   1.1.2.1  cliff {
    412   1.1.2.1  cliff 	u_int index;
    413   1.1.2.1  cliff 	static const rmixl_pcie_lnkcfg_t lnktab_4xx[4][4] = {
    414   1.1.2.1  cliff 		{{ LCFG_EP, 4}, {LCFG_NO, 0}, {LCFG_NO, 0}, {LCFG_NO, 0}},
    415   1.1.2.1  cliff 		{{ LCFG_RC, 4}, {LCFG_NO, 0}, {LCFG_NO, 0}, {LCFG_NO, 0}},
    416   1.1.2.1  cliff 		{{ LCFG_EP, 1}, {LCFG_RC, 1}, {LCFG_RC, 1}, {LCFG_RC, 1}},
    417   1.1.2.1  cliff 		{{ LCFG_RC, 1}, {LCFG_RC, 1}, {LCFG_RC, 1}, {LCFG_RC, 1}},
    418   1.1.2.1  cliff 	};
    419   1.1.2.1  cliff 	static const char *lnkstr_4xx[4] = {
    420   1.1.2.8  cliff 		"1EPx4",
    421   1.1.2.8  cliff 		"1RCx4",
    422   1.1.2.8  cliff 		"1EPx1, 3RCx1",
    423   1.1.2.8  cliff 		"4RCx1"
    424   1.1.2.1  cliff 	};
    425   1.1.2.1  cliff 	index = (grcr >> 20) & 3;
    426   1.1.2.1  cliff 	ltp->ncfgs = 4;
    427   1.1.2.1  cliff 	ltp->cfg = lnktab_4xx[index];
    428   1.1.2.1  cliff 	ltp->str = lnkstr_4xx[index];
    429   1.1.2.1  cliff }
    430   1.1.2.1  cliff 
    431   1.1.2.1  cliff /*
    432   1.1.2.1  cliff  * rmixl_pcie_lnkcfg_408Lite - link configs for XLS408Lite and XLS04A
    433   1.1.2.1  cliff  *	use IO_AD[11] and IO_AD[10], observable in
    434   1.1.2.1  cliff  *	Bits[21:20] of the GPIO Reset Configuration register
    435   1.1.2.1  cliff  */
    436   1.1.2.1  cliff static void
    437   1.1.2.1  cliff rmixl_pcie_lnkcfg_408Lite(rmixl_pcie_lnktab_t *ltp, uint32_t grcr)
    438   1.1.2.1  cliff {
    439   1.1.2.1  cliff 	u_int index;
    440   1.1.2.1  cliff 	static const rmixl_pcie_lnkcfg_t lnktab_408Lite[4][2] = {
    441   1.1.2.1  cliff 		{{ LCFG_EP, 4}, {LCFG_NO, 0}},
    442   1.1.2.1  cliff 		{{ LCFG_RC, 4}, {LCFG_NO, 0}},
    443   1.1.2.1  cliff 		{{ LCFG_EP, 1}, {LCFG_RC, 1}},
    444   1.1.2.1  cliff 		{{ LCFG_RC, 1}, {LCFG_RC, 1}},
    445   1.1.2.1  cliff 	};
    446   1.1.2.1  cliff 	static const char *lnkstr_408Lite[4] = {
    447   1.1.2.8  cliff 		"4EPx4",
    448   1.1.2.8  cliff 		"1RCx4",
    449   1.1.2.8  cliff 		"1EPx1, 1RCx1",
    450   1.1.2.8  cliff 		"2RCx1"
    451   1.1.2.1  cliff 	};
    452   1.1.2.1  cliff 
    453   1.1.2.1  cliff 	index = (grcr >> 20) & 3;
    454   1.1.2.1  cliff 	ltp->ncfgs = 2;
    455   1.1.2.1  cliff 	ltp->cfg = lnktab_408Lite[index];
    456   1.1.2.1  cliff 	ltp->str = lnkstr_408Lite[index];
    457   1.1.2.1  cliff }
    458   1.1.2.1  cliff 
    459   1.1.2.1  cliff /*
    460   1.1.2.1  cliff  * rmixl_pcie_lnkcfg_2xx - link configs for XLS2xx
    461   1.1.2.1  cliff  *	use IO_AD[10], observable in Bit[20] of the
    462   1.1.2.1  cliff  *	GPIO Reset Configuration register
    463   1.1.2.1  cliff  */
    464   1.1.2.1  cliff static void
    465   1.1.2.1  cliff rmixl_pcie_lnkcfg_2xx(rmixl_pcie_lnktab_t *ltp, uint32_t grcr)
    466   1.1.2.1  cliff {
    467   1.1.2.1  cliff 	u_int index;
    468   1.1.2.1  cliff 	static const rmixl_pcie_lnkcfg_t lnktab_2xx[2][4] = {
    469   1.1.2.1  cliff 		{{ LCFG_EP, 1}, {LCFG_RC, 1}, {LCFG_RC, 1}, {LCFG_RC, 1}},
    470   1.1.2.1  cliff 		{{ LCFG_RC, 1}, {LCFG_RC, 1}, {LCFG_RC, 1}, {LCFG_RC, 1}}
    471   1.1.2.1  cliff 	};
    472   1.1.2.1  cliff 	static const char *lnkstr_2xx[2] = {
    473   1.1.2.8  cliff 		"1EPx1, 3RCx1",
    474   1.1.2.8  cliff 		"4RCx1",
    475   1.1.2.1  cliff 	};
    476   1.1.2.1  cliff 
    477   1.1.2.1  cliff 	index = (grcr >> 20) & 1;
    478   1.1.2.1  cliff 	ltp->ncfgs = 4;
    479   1.1.2.1  cliff 	ltp->cfg = lnktab_2xx[index];
    480   1.1.2.1  cliff 	ltp->str = lnkstr_2xx[index];
    481   1.1.2.1  cliff }
    482   1.1.2.1  cliff 
    483   1.1.2.1  cliff /*
    484   1.1.2.1  cliff  * rmixl_pcie_lnkcfg_1xx - link configs for XLS1xx
    485   1.1.2.1  cliff  *	use IO_AD[10], observable in Bit[20] of the
    486   1.1.2.1  cliff  *	GPIO Reset Configuration register
    487   1.1.2.1  cliff  */
    488   1.1.2.1  cliff static void
    489   1.1.2.1  cliff rmixl_pcie_lnkcfg_1xx(rmixl_pcie_lnktab_t *ltp, uint32_t grcr)
    490   1.1.2.1  cliff {
    491   1.1.2.1  cliff 	u_int index;
    492   1.1.2.1  cliff 	static const rmixl_pcie_lnkcfg_t lnktab_1xx[2][2] = {
    493   1.1.2.1  cliff 		{{ LCFG_EP, 1}, {LCFG_RC, 1}},
    494   1.1.2.1  cliff 		{{ LCFG_RC, 1}, {LCFG_RC, 1}}
    495   1.1.2.1  cliff 	};
    496   1.1.2.1  cliff 	static const char *lnkstr_1xx[2] = {
    497   1.1.2.8  cliff 		"1EPx1, 1RCx1",
    498   1.1.2.8  cliff 		"2RCx1",
    499   1.1.2.1  cliff 	};
    500   1.1.2.1  cliff 
    501   1.1.2.1  cliff 	index = (grcr >> 20) & 1;
    502   1.1.2.1  cliff 	ltp->ncfgs = 2;
    503   1.1.2.1  cliff 	ltp->cfg = lnktab_1xx[index];
    504   1.1.2.1  cliff 	ltp->str = lnkstr_1xx[index];
    505   1.1.2.1  cliff }
    506   1.1.2.1  cliff 
    507   1.1.2.1  cliff /*
    508   1.1.2.1  cliff  * rmixl_pcie_lnkcfg - determine PCI Express Link Configuration
    509   1.1.2.1  cliff  */
    510   1.1.2.1  cliff static void
    511   1.1.2.1  cliff rmixl_pcie_lnkcfg(struct rmixl_pcie_softc *sc)
    512   1.1.2.1  cliff {
    513   1.1.2.1  cliff 	uint32_t r;
    514   1.1.2.1  cliff 
    515   1.1.2.1  cliff 	/* read GPIO Reset Configuration register */
    516   1.1.2.1  cliff 	r = RMIXL_IOREG_READ(RMIXL_IO_DEV_GPIO + RMIXL_GPIO_RESET_CFG);
    517   1.1.2.1  cliff 	DPRINTF(("%s: GPIO RCR %#x\n", __func__, r));
    518   1.1.2.1  cliff 
    519   1.1.2.7   matt 	switch (MIPS_PRID_IMPL(mips_options.mips_cpu_id)) {
    520   1.1.2.1  cliff 	case MIPS_XLS104:
    521   1.1.2.1  cliff 	case MIPS_XLS108:
    522   1.1.2.1  cliff 		rmixl_pcie_lnkcfg_1xx(&sc->sc_pcie_lnktab, r);
    523   1.1.2.1  cliff 		break;
    524   1.1.2.1  cliff 	case MIPS_XLS204:
    525   1.1.2.1  cliff 	case MIPS_XLS208:
    526   1.1.2.1  cliff 		rmixl_pcie_lnkcfg_2xx(&sc->sc_pcie_lnktab, r);
    527   1.1.2.1  cliff 		break;
    528   1.1.2.1  cliff 	case MIPS_XLS404LITE:
    529   1.1.2.1  cliff 	case MIPS_XLS408LITE:
    530   1.1.2.1  cliff 		rmixl_pcie_lnkcfg_408Lite(&sc->sc_pcie_lnktab, r);
    531   1.1.2.1  cliff 		break;
    532   1.1.2.1  cliff 	case MIPS_XLS404:
    533   1.1.2.1  cliff 	case MIPS_XLS408:
    534   1.1.2.1  cliff 	case MIPS_XLS416:
    535   1.1.2.1  cliff 	case MIPS_XLS608:
    536   1.1.2.1  cliff 	case MIPS_XLS616:
    537   1.1.2.1  cliff 		/* 6xx uses same table as 4xx */
    538   1.1.2.1  cliff 		rmixl_pcie_lnkcfg_4xx(&sc->sc_pcie_lnktab, r);
    539   1.1.2.1  cliff 		break;
    540   1.1.2.1  cliff 	default:
    541   1.1.2.1  cliff 		panic("%s: unknown RMI PRID IMPL", __func__);
    542   1.1.2.1  cliff 	}
    543   1.1.2.1  cliff 
    544   1.1.2.1  cliff 	aprint_normal("%s: link config %s\n",
    545   1.1.2.1  cliff 		device_xname(sc->sc_dev), sc->sc_pcie_lnktab.str);
    546   1.1.2.1  cliff }
    547   1.1.2.1  cliff 
    548   1.1.2.8  cliff /*
    549   1.1.2.8  cliff  * rmixl_pcie_intcfg - init PCIe Link interrupt enables
    550   1.1.2.8  cliff  */
    551   1.1.2.8  cliff static void
    552   1.1.2.8  cliff rmixl_pcie_intcfg(struct rmixl_pcie_softc *sc)
    553   1.1.2.8  cliff {
    554   1.1.2.8  cliff 	int link;
    555  1.1.2.16  cliff 	size_t size;
    556  1.1.2.16  cliff 	rmixl_pcie_evcnt_t *ev;
    557   1.1.2.8  cliff 
    558   1.1.2.8  cliff 	DPRINTF(("%s: disable all link interrupts\n", __func__));
    559   1.1.2.8  cliff 	for (link=0; link < sc->sc_pcie_lnktab.ncfgs; link++) {
    560   1.1.2.8  cliff 		RMIXL_IOREG_WRITE(RMIXL_IO_DEV_PCIE_LE + int_enb_offset[link].r0,
    561   1.1.2.8  cliff 			RMIXL_PCIE_LINK_STATUS0_ERRORS);
    562   1.1.2.8  cliff 		RMIXL_IOREG_WRITE(RMIXL_IO_DEV_PCIE_LE + int_enb_offset[link].r1,
    563   1.1.2.8  cliff 			RMIXL_PCIE_LINK_STATUS1_ERRORS);
    564   1.1.2.8  cliff 		RMIXL_IOREG_WRITE(RMIXL_IO_DEV_PCIE_LE + msi_enb_offset[link], 0);
    565  1.1.2.16  cliff 		sc->sc_link_intr[link] = NULL;
    566  1.1.2.16  cliff 
    567  1.1.2.16  cliff 		/*
    568  1.1.2.16  cliff 		 * allocate per-cpu, per-pin interrupt event counters
    569  1.1.2.16  cliff 		 */
    570  1.1.2.16  cliff 		size = ncpu * PCI_INTERRUPT_PIN_MAX * sizeof(rmixl_pcie_evcnt_t);
    571  1.1.2.16  cliff 		ev = malloc(size, M_DEVBUF, M_NOWAIT);
    572  1.1.2.16  cliff 		if (ev == NULL)
    573  1.1.2.16  cliff 			panic("%s: cannot malloc evcnts\n", __func__);
    574  1.1.2.16  cliff 		sc->sc_evcnts[link] = ev;
    575  1.1.2.16  cliff 		for (int pin=PCI_INTERRUPT_PIN_A; pin <= PCI_INTERRUPT_PIN_MAX; pin++) {
    576  1.1.2.16  cliff 			for (int cpu=0; cpu < ncpu; cpu++) {
    577  1.1.2.16  cliff 				ev = RMIXL_PCIE_EVCNT(sc, link, pin - 1, cpu);
    578  1.1.2.16  cliff 				snprintf(ev->name, sizeof(ev->name),
    579  1.1.2.16  cliff 					"cpu%d, link %d, pin %d", cpu, link, pin);
    580  1.1.2.16  cliff 				evcnt_attach_dynamic(&ev->evcnt, EVCNT_TYPE_INTR,
    581  1.1.2.16  cliff 					NULL, "rmixl_pcie", ev->name);
    582  1.1.2.16  cliff 			}
    583  1.1.2.16  cliff 		}
    584   1.1.2.8  cliff 	}
    585   1.1.2.8  cliff }
    586   1.1.2.8  cliff 
    587   1.1.2.1  cliff static void
    588   1.1.2.1  cliff rmixl_pcie_errata(struct rmixl_pcie_softc *sc)
    589   1.1.2.1  cliff {
    590   1.1.2.7   matt 	const mips_prid_t cpu_id = mips_options.mips_cpu_id;
    591   1.1.2.1  cliff 	u_int rev;
    592   1.1.2.1  cliff 	u_int lanes;
    593   1.1.2.1  cliff 	bool e391 = false;
    594   1.1.2.1  cliff 
    595   1.1.2.1  cliff 	/*
    596   1.1.2.1  cliff 	 * 3.9.1 PCIe Link-0 Registers Reset to Incorrect Values
    597   1.1.2.1  cliff 	 * check if it allies to this CPU implementation and revision
    598   1.1.2.1  cliff 	 */
    599   1.1.2.1  cliff 	rev = MIPS_PRID_REV(cpu_id);
    600   1.1.2.1  cliff 	switch (MIPS_PRID_IMPL(cpu_id)) {
    601   1.1.2.1  cliff 	case MIPS_XLS104:
    602   1.1.2.1  cliff 	case MIPS_XLS108:
    603   1.1.2.1  cliff 		break;
    604   1.1.2.1  cliff 	case MIPS_XLS204:
    605   1.1.2.1  cliff 	case MIPS_XLS208:
    606   1.1.2.1  cliff 		/* stepping A0 is affected */
    607   1.1.2.1  cliff 		if (rev == 0)
    608   1.1.2.1  cliff 			e391 = true;
    609   1.1.2.1  cliff 		break;
    610   1.1.2.1  cliff 	case MIPS_XLS404LITE:
    611   1.1.2.1  cliff 	case MIPS_XLS408LITE:
    612   1.1.2.1  cliff 		break;
    613   1.1.2.1  cliff 	case MIPS_XLS404:
    614   1.1.2.1  cliff 	case MIPS_XLS408:
    615   1.1.2.1  cliff 	case MIPS_XLS416:
    616   1.1.2.1  cliff 		/* steppings A0 and A1 are affected */
    617   1.1.2.1  cliff 		if ((rev == 0) || (rev == 1))
    618   1.1.2.1  cliff 			e391 = true;
    619   1.1.2.1  cliff 		break;
    620   1.1.2.1  cliff 	case MIPS_XLS608:
    621   1.1.2.1  cliff 	case MIPS_XLS616:
    622   1.1.2.1  cliff 		break;
    623   1.1.2.1  cliff 	default:
    624   1.1.2.1  cliff 		panic("unknown RMI PRID IMPL");
    625   1.1.2.1  cliff         }
    626   1.1.2.1  cliff 
    627   1.1.2.1  cliff 	/*
    628   1.1.2.1  cliff 	 * for XLS we only need to check entry #0
    629   1.1.2.1  cliff 	 * this may need to change for later XL family chips
    630   1.1.2.1  cliff 	 */
    631   1.1.2.1  cliff 	lanes = sc->sc_pcie_lnktab.cfg[0].lanes;
    632   1.1.2.1  cliff 
    633   1.1.2.1  cliff 	if ((e391 != false) && ((lanes == 2) || (lanes == 4))) {
    634   1.1.2.1  cliff 		/*
    635   1.1.2.1  cliff 		 * attempt work around for errata 3.9.1
    636   1.1.2.1  cliff 		 * "PCIe Link-0 Registers Reset to Incorrect Values"
    637   1.1.2.1  cliff 		 * the registers are write-once: if the firmware already wrote,
    638   1.1.2.1  cliff 		 * then our writes are ignored;  hope they did it right.
    639   1.1.2.1  cliff 		 */
    640   1.1.2.1  cliff 		uint32_t queuectrl;
    641   1.1.2.1  cliff 		uint32_t bufdepth;
    642   1.1.2.1  cliff #ifdef DIAGNOSTIC
    643   1.1.2.1  cliff 		uint32_t r;
    644   1.1.2.1  cliff #endif
    645   1.1.2.1  cliff 
    646   1.1.2.1  cliff 		aprint_normal("%s: attempt work around for errata 3.9.1",
    647   1.1.2.1  cliff 			device_xname(sc->sc_dev));
    648   1.1.2.1  cliff 		if (lanes == 4) {
    649   1.1.2.1  cliff 			queuectrl = 0x00018074;
    650   1.1.2.1  cliff 			bufdepth  = 0x001901D1;
    651   1.1.2.1  cliff 		} else {
    652   1.1.2.1  cliff 			queuectrl = 0x00018036;
    653   1.1.2.1  cliff 			bufdepth  = 0x001900D9;
    654   1.1.2.1  cliff 		}
    655   1.1.2.1  cliff 
    656   1.1.2.1  cliff 		RMIXL_IOREG_WRITE(RMIXL_IO_DEV_PCIE_BE +
    657   1.1.2.1  cliff 			RMIXL_VC0_POSTED_RX_QUEUE_CTRL, queuectrl);
    658   1.1.2.1  cliff 		RMIXL_IOREG_WRITE(RMIXL_IO_DEV_PCIE_BE +
    659   1.1.2.1  cliff 			RMIXL_VC0_POSTED_BUFFER_DEPTH, bufdepth);
    660   1.1.2.1  cliff 
    661   1.1.2.1  cliff #ifdef DIAGNOSTIC
    662   1.1.2.1  cliff 		r = RMIXL_IOREG_READ(RMIXL_IO_DEV_PCIE_BE +
    663   1.1.2.1  cliff 			RMIXL_VC0_POSTED_RX_QUEUE_CTRL);
    664   1.1.2.1  cliff 		printf("\nVC0_POSTED_RX_QUEUE_CTRL %#x\n", r);
    665   1.1.2.1  cliff 
    666   1.1.2.1  cliff 		r = RMIXL_IOREG_READ(RMIXL_IO_DEV_PCIE_BE +
    667   1.1.2.1  cliff 			RMIXL_VC0_POSTED_BUFFER_DEPTH);
    668   1.1.2.1  cliff 		printf("VC0_POSTED_BUFFER_DEPTH %#x\n", r);
    669   1.1.2.1  cliff #endif
    670   1.1.2.1  cliff 	}
    671   1.1.2.1  cliff }
    672   1.1.2.1  cliff 
    673   1.1.2.1  cliff static void
    674   1.1.2.1  cliff rmixl_pcie_init(struct rmixl_pcie_softc *sc)
    675   1.1.2.1  cliff {
    676   1.1.2.1  cliff 	pci_chipset_tag_t pc = &sc->sc_pci_chipset;
    677   1.1.2.1  cliff #if NPCI > 0 && defined(PCI_NETBSD_CONFIGURE)
    678   1.1.2.1  cliff 	struct extent *ioext, *memext;
    679   1.1.2.1  cliff #endif
    680   1.1.2.1  cliff 
    681   1.1.2.1  cliff 	pc->pc_conf_v = (void *)sc;
    682   1.1.2.1  cliff 	pc->pc_attach_hook = rmixl_pcie_attach_hook;
    683   1.1.2.1  cliff 	pc->pc_bus_maxdevs = rmixl_pcie_bus_maxdevs;
    684   1.1.2.1  cliff 	pc->pc_make_tag = rmixl_pcie_make_tag;
    685   1.1.2.1  cliff 	pc->pc_decompose_tag = rmixl_pcie_decompose_tag;
    686   1.1.2.1  cliff 	pc->pc_conf_read = rmixl_pcie_conf_read;
    687   1.1.2.1  cliff 	pc->pc_conf_write = rmixl_pcie_conf_write;
    688   1.1.2.1  cliff 
    689   1.1.2.1  cliff 	pc->pc_intr_v = (void *)sc;
    690   1.1.2.1  cliff 	pc->pc_intr_map = rmixl_pcie_intr_map;
    691   1.1.2.1  cliff 	pc->pc_intr_string = rmixl_pcie_intr_string;
    692   1.1.2.1  cliff 	pc->pc_intr_evcnt = rmixl_pcie_intr_evcnt;
    693   1.1.2.1  cliff 	pc->pc_intr_establish = rmixl_pcie_intr_establish;
    694   1.1.2.1  cliff 	pc->pc_intr_disestablish = rmixl_pcie_intr_disestablish;
    695   1.1.2.1  cliff 	pc->pc_conf_interrupt = rmixl_conf_interrupt;
    696   1.1.2.1  cliff 
    697   1.1.2.1  cliff #if NPCI > 0 && defined(PCI_NETBSD_CONFIGURE)
    698   1.1.2.1  cliff 	/*
    699   1.1.2.1  cliff 	 * Configure the PCI bus.
    700   1.1.2.1  cliff 	 */
    701   1.1.2.1  cliff 	struct rmixl_config *rcp = &rmixl_configuration;
    702   1.1.2.1  cliff 
    703   1.1.2.1  cliff 	aprint_normal("%s: configuring PCI bus\n",
    704   1.1.2.1  cliff 		device_xname(sc->sc_dev));
    705   1.1.2.1  cliff 
    706   1.1.2.1  cliff 	ioext  = extent_create("pciio",
    707   1.1.2.1  cliff 		rcp->rc_pci_io_pbase,
    708   1.1.2.1  cliff 		rcp->rc_pci_io_pbase + rcp->rc_pci_io_size - 1,
    709   1.1.2.1  cliff 		M_DEVBUF, NULL, 0, EX_NOWAIT);
    710   1.1.2.1  cliff 
    711   1.1.2.1  cliff 	memext = extent_create("pcimem",
    712   1.1.2.1  cliff 		rcp->rc_pci_mem_pbase,
    713   1.1.2.1  cliff 		rcp->rc_pci_mem_pbase + rcp->rc_pci_mem_size - 1,
    714   1.1.2.1  cliff 		M_DEVBUF, NULL, 0, EX_NOWAIT);
    715   1.1.2.1  cliff 
    716   1.1.2.7   matt 	pci_configure_bus(pc, ioext, memext, NULL, 0,
    717   1.1.2.7   matt 	    mips_cache_info.mci_dcache_align);
    718   1.1.2.1  cliff 
    719   1.1.2.1  cliff 	extent_destroy(ioext);
    720   1.1.2.1  cliff 	extent_destroy(memext);
    721   1.1.2.1  cliff #endif
    722   1.1.2.1  cliff }
    723   1.1.2.1  cliff 
    724   1.1.2.1  cliff static void
    725   1.1.2.1  cliff rmixl_pcie_init_ecfg(struct rmixl_pcie_softc *sc)
    726   1.1.2.1  cliff {
    727   1.1.2.1  cliff 	void *v;
    728   1.1.2.1  cliff 	pcitag_t tag;
    729   1.1.2.1  cliff 	pcireg_t r;
    730   1.1.2.1  cliff 
    731   1.1.2.1  cliff 	v = sc;
    732   1.1.2.1  cliff 	tag = rmixl_pcie_make_tag(v, 0, 0, 0);
    733   1.1.2.1  cliff 
    734   1.1.2.1  cliff #ifdef PCI_DEBUG
    735   1.1.2.1  cliff 	int i, offset;
    736   1.1.2.1  cliff 	static const int offtab[] =
    737   1.1.2.1  cliff 		{ 0, 4, 8, 0xc, 0x10, 0x14, 0x18, 0x1c,
    738   1.1.2.1  cliff 		  0x2c, 0x30, 0x34 };
    739   1.1.2.1  cliff 	for (i=0; i < sizeof(offtab)/sizeof(offtab[0]); i++) {
    740   1.1.2.1  cliff 		offset = 0x100 + offtab[i];
    741   1.1.2.1  cliff 		r = rmixl_pcie_conf_read(v, tag, offset);
    742   1.1.2.1  cliff 		printf("%s: %#x: %#x\n", __func__, offset, r);
    743   1.1.2.1  cliff 	}
    744   1.1.2.1  cliff #endif
    745   1.1.2.1  cliff 	r = rmixl_pcie_conf_read(v, tag, 0x100);
    746   1.1.2.1  cliff 	if (r == -1)
    747   1.1.2.1  cliff 		return;	/* cannot access */
    748   1.1.2.1  cliff 
    749   1.1.2.1  cliff 	/* check pre-existing uncorrectable errs */
    750   1.1.2.1  cliff 	r = rmixl_pcie_conf_read(v, tag, RMIXL_PCIE_ECFG_UESR);
    751   1.1.2.1  cliff 	r &= ~PCIE_ECFG_UExR_RESV;
    752   1.1.2.1  cliff 	if (r != 0)
    753   1.1.2.1  cliff 		panic("%s: Uncorrectable Error Status: %#x\n",
    754   1.1.2.1  cliff 			__func__, r);
    755   1.1.2.1  cliff 
    756   1.1.2.1  cliff 	/* unmask all uncorrectable errs */
    757   1.1.2.1  cliff 	r = rmixl_pcie_conf_read(v, tag, RMIXL_PCIE_ECFG_UEMR);
    758   1.1.2.1  cliff 	r &= ~PCIE_ECFG_UExR_RESV;
    759   1.1.2.1  cliff 	rmixl_pcie_conf_write(v, tag, RMIXL_PCIE_ECFG_UEMR, r);
    760   1.1.2.1  cliff 
    761   1.1.2.1  cliff 	/* ensure default uncorrectable err severity confniguration */
    762   1.1.2.1  cliff 	r = rmixl_pcie_conf_read(v, tag, RMIXL_PCIE_ECFG_UEVR);
    763   1.1.2.1  cliff 	r &= ~PCIE_ECFG_UExR_RESV;
    764   1.1.2.1  cliff 	r |= PCIE_ECFG_UEVR_DFLT;
    765   1.1.2.1  cliff 	rmixl_pcie_conf_write(v, tag, RMIXL_PCIE_ECFG_UEVR, r);
    766   1.1.2.1  cliff 
    767   1.1.2.1  cliff 	/* check pre-existing correctable errs */
    768   1.1.2.1  cliff 	r = rmixl_pcie_conf_read(v, tag, RMIXL_PCIE_ECFG_CESR);
    769   1.1.2.1  cliff 	r &= ~PCIE_ECFG_CExR_RESV;
    770   1.1.2.1  cliff #ifdef DIAGNOSTIC
    771   1.1.2.1  cliff 	if (r != 0)
    772   1.1.2.1  cliff 		aprint_normal("%s: Correctable Error Status: %#x\n",
    773   1.1.2.1  cliff 			device_xname(sc->sc_dev), r);
    774   1.1.2.1  cliff #endif
    775   1.1.2.1  cliff 
    776   1.1.2.1  cliff 	/* unmask all correctable errs */
    777   1.1.2.1  cliff 	r = rmixl_pcie_conf_read(v, tag, RMIXL_PCIE_ECFG_CEMR);
    778   1.1.2.1  cliff 	r &= ~PCIE_ECFG_CExR_RESV;
    779   1.1.2.1  cliff 	rmixl_pcie_conf_write(v, tag, RMIXL_PCIE_ECFG_UEMR, r);
    780   1.1.2.1  cliff 
    781   1.1.2.1  cliff 	/* check pre-existing Root Error Status */
    782   1.1.2.1  cliff 	r = rmixl_pcie_conf_read(v, tag, RMIXL_PCIE_ECFG_RESR);
    783   1.1.2.1  cliff 	r &= ~PCIE_ECFG_RESR_RESV;
    784   1.1.2.1  cliff 	if (r != 0)
    785   1.1.2.1  cliff 		panic("%s: Root Error Status: %#x\n", __func__, r);
    786   1.1.2.1  cliff 			/* XXX TMP FIXME */
    787   1.1.2.1  cliff 
    788   1.1.2.1  cliff 	/* enable all Root errs */
    789   1.1.2.1  cliff 	r = (pcireg_t)(~PCIE_ECFG_RECR_RESV);
    790   1.1.2.1  cliff 	rmixl_pcie_conf_write(v, tag, RMIXL_PCIE_ECFG_RECR, r);
    791   1.1.2.1  cliff 
    792   1.1.2.8  cliff 	/*
    793   1.1.2.8  cliff 	 * establish ISR for PCIE Fatal Error interrupt
    794   1.1.2.8  cliff 	 * - for XLS4xxLite, XLS2xx, XLS1xx only
    795   1.1.2.8  cliff 	 */
    796   1.1.2.8  cliff 	switch (MIPS_PRID_IMPL(mips_options.mips_cpu_id)) {
    797   1.1.2.8  cliff 	case MIPS_XLS104:
    798   1.1.2.8  cliff 	case MIPS_XLS108:
    799   1.1.2.8  cliff 	case MIPS_XLS204:
    800   1.1.2.8  cliff 	case MIPS_XLS208:
    801   1.1.2.8  cliff 	case MIPS_XLS404LITE:
    802   1.1.2.8  cliff 	case MIPS_XLS408LITE:
    803   1.1.2.9  cliff 		sc->sc_fatal_ih = rmixl_intr_establish(29, sc->sc_tmsk,
    804   1.1.2.9  cliff 			IPL_HIGH, RMIXL_TRIG_LEVEL, RMIXL_POLR_HIGH,
    805  1.1.2.12  cliff 			rmixl_pcie_error_intr, v, false);
    806   1.1.2.8  cliff 		break;
    807   1.1.2.8  cliff 	default:
    808   1.1.2.8  cliff 		break;
    809   1.1.2.1  cliff 	}
    810   1.1.2.8  cliff 
    811   1.1.2.1  cliff #if defined(DEBUG) || defined(DDB)
    812   1.1.2.1  cliff 	rmixl_pcie_v = v;
    813   1.1.2.1  cliff #endif
    814   1.1.2.1  cliff }
    815   1.1.2.1  cliff 
    816   1.1.2.1  cliff void
    817   1.1.2.1  cliff rmixl_conf_interrupt(void *v, int bus, int dev, int ipin, int swiz, int *iline)
    818   1.1.2.1  cliff {
    819   1.1.2.1  cliff 	DPRINTF(("%s: %p, %d, %d, %d, %d, %p\n",
    820   1.1.2.1  cliff 		__func__, v, bus, dev, ipin, swiz, iline));
    821   1.1.2.1  cliff }
    822   1.1.2.1  cliff 
    823   1.1.2.1  cliff void
    824   1.1.2.1  cliff rmixl_pcie_attach_hook(struct device *parent, struct device *self,
    825   1.1.2.1  cliff 	struct pcibus_attach_args *pba)
    826   1.1.2.1  cliff {
    827   1.1.2.1  cliff 	DPRINTF(("%s: pba_bus %d, pba_bridgetag %p, pc_conf_v %p\n",
    828   1.1.2.1  cliff 		__func__, pba->pba_bus, pba->pba_bridgetag,
    829   1.1.2.1  cliff 		pba->pba_pc->pc_conf_v));
    830   1.1.2.1  cliff }
    831   1.1.2.1  cliff 
    832   1.1.2.1  cliff int
    833   1.1.2.1  cliff rmixl_pcie_bus_maxdevs(void *v, int busno)
    834   1.1.2.1  cliff {
    835   1.1.2.1  cliff 	return (32);	/* XXX depends on the family of XLS SoC */
    836   1.1.2.1  cliff }
    837   1.1.2.1  cliff 
    838   1.1.2.1  cliff /*
    839   1.1.2.3  cliff  * rmixl_tag_to_ecfg - convert cfg address (generic tag) to ecfg address
    840   1.1.2.3  cliff  *
    841   1.1.2.3  cliff  *	39:29   (reserved)
    842   1.1.2.3  cliff  *	28      Swap (0=little, 1=big endian)
    843   1.1.2.3  cliff  *	27:20   Bus number
    844   1.1.2.3  cliff  *	19:15   Device number
    845   1.1.2.3  cliff  *	14:12   Function number
    846   1.1.2.3  cliff  *	11:8    Extended Register number
    847   1.1.2.3  cliff  *	7:0     Register number
    848   1.1.2.3  cliff  */
    849   1.1.2.3  cliff static pcitag_t
    850   1.1.2.3  cliff rmixl_tag_to_ecfg(pcitag_t tag)
    851   1.1.2.3  cliff {
    852   1.1.2.3  cliff 	KASSERT((tag & __BITS(7,0)) == 0);
    853   1.1.2.3  cliff 	return (tag << 4);
    854   1.1.2.3  cliff }
    855   1.1.2.3  cliff 
    856   1.1.2.3  cliff /*
    857   1.1.2.1  cliff  * XLS pci tag is a 40 bit address composed thusly:
    858   1.1.2.1  cliff  *	39:25   (reserved)
    859   1.1.2.1  cliff  *	24      Swap (0=little, 1=big endian)
    860   1.1.2.1  cliff  *	23:16   Bus number
    861   1.1.2.1  cliff  *	15:11   Device number
    862   1.1.2.1  cliff  *	10:8    Function number
    863   1.1.2.3  cliff  *	7:0     Register number
    864   1.1.2.3  cliff  *
    865   1.1.2.3  cliff  * Note: this is the "native" composition for addressing CFG space, but not for ECFG space.
    866   1.1.2.1  cliff  */
    867   1.1.2.1  cliff pcitag_t
    868   1.1.2.3  cliff rmixl_pcie_make_tag(void *v, int bus, int dev, int fun)
    869   1.1.2.1  cliff {
    870   1.1.2.3  cliff 	return ((bus << 16) | (dev << 11) | (fun << 8));
    871   1.1.2.1  cliff }
    872   1.1.2.1  cliff 
    873   1.1.2.1  cliff void
    874   1.1.2.1  cliff rmixl_pcie_decompose_tag(void *v, pcitag_t tag, int *bp, int *dp, int *fp)
    875   1.1.2.1  cliff {
    876   1.1.2.1  cliff 	if (bp != NULL)
    877   1.1.2.1  cliff 		*bp = (tag >> 16) & 0xff;
    878   1.1.2.1  cliff 	if (dp != NULL)
    879   1.1.2.1  cliff 		*dp = (tag >> 11) & 0x1f;
    880   1.1.2.1  cliff 	if (fp != NULL)
    881   1.1.2.1  cliff 		*fp = (tag >> 8) & 0x7;
    882   1.1.2.1  cliff }
    883   1.1.2.1  cliff 
    884   1.1.2.1  cliff void
    885   1.1.2.1  cliff rmixl_pcie_tag_print(const char *restrict s, void *v, pcitag_t tag, int offset,
    886   1.1.2.1  cliff 	vaddr_t va, u_long r)
    887   1.1.2.1  cliff {
    888   1.1.2.1  cliff 	int bus, dev, fun;
    889   1.1.2.1  cliff 
    890   1.1.2.1  cliff 	rmixl_pcie_decompose_tag(v, tag, &bus, &dev, &fun);
    891   1.1.2.3  cliff 	printf("%s: %d/%d/%d/%d - %#" PRIxVADDR ":%#lx\n",
    892   1.1.2.1  cliff 		s, bus, dev, fun, offset, va, r);
    893   1.1.2.1  cliff }
    894   1.1.2.1  cliff 
    895   1.1.2.3  cliff static int
    896   1.1.2.3  cliff rmixl_pcie_conf_setup(struct rmixl_pcie_softc *sc,
    897   1.1.2.3  cliff 	pcitag_t tag, int *offp, bus_space_tag_t *bstp,
    898   1.1.2.3  cliff 	bus_space_handle_t *bshp)
    899   1.1.2.3  cliff {
    900   1.1.2.3  cliff 	struct rmixl_config *rcp = &rmixl_configuration;
    901   1.1.2.3  cliff 	bus_space_tag_t bst;
    902   1.1.2.3  cliff 	bus_space_handle_t bsh;
    903   1.1.2.3  cliff 	bus_size_t size;
    904   1.1.2.3  cliff 	pcitag_t mask;
    905   1.1.2.3  cliff 	bus_addr_t ba;
    906   1.1.2.3  cliff 	int err;
    907   1.1.2.3  cliff 	static bus_space_handle_t cfg_bsh;
    908   1.1.2.4  cliff 	static bus_addr_t cfg_oba = -1;
    909   1.1.2.3  cliff 	static bus_space_handle_t ecfg_bsh;
    910   1.1.2.4  cliff 	static bus_addr_t ecfg_oba = -1;
    911   1.1.2.3  cliff 
    912   1.1.2.3  cliff 	/*
    913   1.1.2.3  cliff 	 * bus space depends on offset
    914   1.1.2.3  cliff 	 */
    915   1.1.2.3  cliff 	if ((*offp >= 0) && (*offp < 0x100)) {
    916   1.1.2.3  cliff 		mask = __BITS(15,0);
    917  1.1.2.11  cliff 		bst = sc->sc_pci_cfg_memt;
    918  1.1.2.11  cliff 		ba = rcp->rc_pci_cfg_pbase;
    919   1.1.2.3  cliff 		ba += (tag & ~mask);
    920   1.1.2.3  cliff 		*offp += (tag & mask);
    921   1.1.2.3  cliff 		if (ba != cfg_oba) {
    922   1.1.2.3  cliff 			size = (bus_size_t)(mask + 1);
    923   1.1.2.3  cliff 			if (cfg_oba != -1)
    924   1.1.2.3  cliff 				bus_space_unmap(bst, cfg_bsh, size);
    925   1.1.2.3  cliff 			err = bus_space_map(bst, ba, size, 0, &cfg_bsh);
    926   1.1.2.3  cliff 			if (err != 0) {
    927   1.1.2.3  cliff #ifdef DEBUG
    928   1.1.2.3  cliff 				panic("%s: bus_space_map err %d, CFG space",
    929   1.1.2.3  cliff 					__func__, err);	/* XXX */
    930   1.1.2.3  cliff #endif
    931   1.1.2.3  cliff 				return -1;
    932   1.1.2.3  cliff 			}
    933   1.1.2.3  cliff 			cfg_oba = ba;
    934   1.1.2.3  cliff 		}
    935   1.1.2.3  cliff 		bsh = cfg_bsh;
    936   1.1.2.3  cliff 	} else if ((*offp >= 0x100) && (*offp <= 0x700)) {
    937   1.1.2.3  cliff 		mask = __BITS(14,0);
    938   1.1.2.3  cliff 		tag = rmixl_tag_to_ecfg(tag);	/* convert to ECFG format */
    939  1.1.2.11  cliff 		bst = sc->sc_pci_ecfg_memt;
    940  1.1.2.11  cliff 		ba = rcp->rc_pci_ecfg_pbase;
    941   1.1.2.3  cliff 		ba += (tag & ~mask);
    942   1.1.2.3  cliff 		*offp += (tag & mask);
    943   1.1.2.3  cliff 		if (ba != ecfg_oba) {
    944   1.1.2.3  cliff 			size = (bus_size_t)(mask + 1);
    945   1.1.2.3  cliff 			if (ecfg_oba != -1)
    946   1.1.2.3  cliff 				bus_space_unmap(bst, ecfg_bsh, size);
    947   1.1.2.3  cliff 			err = bus_space_map(bst, ba, size, 0, &ecfg_bsh);
    948   1.1.2.3  cliff 			if (err != 0) {
    949   1.1.2.5  cliff #ifdef DEBUG
    950   1.1.2.3  cliff 				panic("%s: bus_space_map err %d, ECFG space",
    951   1.1.2.3  cliff 					__func__, err);	/* XXX */
    952   1.1.2.3  cliff #endif
    953   1.1.2.3  cliff 				return -1;
    954   1.1.2.3  cliff 			}
    955   1.1.2.3  cliff 			ecfg_oba = ba;
    956   1.1.2.3  cliff 		}
    957   1.1.2.3  cliff 		bsh = ecfg_bsh;
    958   1.1.2.3  cliff 	} else  {
    959   1.1.2.3  cliff #ifdef DEBUG
    960   1.1.2.3  cliff 		panic("%s: offset %#x: unknown", __func__, *offp);
    961   1.1.2.3  cliff #endif
    962   1.1.2.3  cliff 		return -1;
    963   1.1.2.3  cliff 	}
    964   1.1.2.3  cliff 
    965   1.1.2.3  cliff 	*bstp = bst;
    966   1.1.2.3  cliff 	*bshp = bsh;
    967   1.1.2.3  cliff 
    968   1.1.2.3  cliff 	return 0;
    969   1.1.2.3  cliff }
    970   1.1.2.3  cliff 
    971   1.1.2.1  cliff pcireg_t
    972   1.1.2.1  cliff rmixl_pcie_conf_read(void *v, pcitag_t tag, int offset)
    973   1.1.2.1  cliff {
    974   1.1.2.1  cliff 	struct rmixl_pcie_softc *sc = v;
    975   1.1.2.3  cliff 	static bus_space_handle_t bsh;
    976   1.1.2.3  cliff 	bus_space_tag_t bst;
    977   1.1.2.1  cliff 	pcireg_t rv;
    978   1.1.2.1  cliff 	uint64_t cfg0;
    979   1.1.2.1  cliff 
    980  1.1.2.16  cliff 	mutex_enter(&sc->sc_mutex);
    981   1.1.2.1  cliff 
    982   1.1.2.3  cliff 	if (rmixl_pcie_conf_setup(sc, tag, &offset, &bst, &bsh) == 0) {
    983   1.1.2.3  cliff 		cfg0 = rmixl_cache_err_dis();
    984   1.1.2.3  cliff 		rv = bus_space_read_4(bst, bsh, (bus_size_t)offset);
    985   1.1.2.3  cliff 		if (rmixl_cache_err_check() != 0) {
    986   1.1.2.1  cliff #ifdef DIAGNOSTIC
    987   1.1.2.3  cliff 			int bus, dev, fun;
    988   1.1.2.1  cliff 
    989   1.1.2.3  cliff 			rmixl_pcie_decompose_tag(v, tag, &bus, &dev, &fun);
    990   1.1.2.3  cliff 			printf("%s: %d/%d/%d, offset %#x: bad address\n",
    991   1.1.2.3  cliff 				__func__, bus, dev, fun, offset);
    992   1.1.2.1  cliff #endif
    993   1.1.2.3  cliff 			rv = (pcireg_t) -1;
    994   1.1.2.3  cliff 		}
    995   1.1.2.3  cliff 		rmixl_cache_err_restore(cfg0);
    996   1.1.2.3  cliff 	} else {
    997   1.1.2.3  cliff 		rv = -1;
    998   1.1.2.1  cliff 	}
    999   1.1.2.1  cliff 
   1000  1.1.2.16  cliff 	mutex_exit(&sc->sc_mutex);
   1001  1.1.2.16  cliff 
   1002   1.1.2.1  cliff 	return rv;
   1003   1.1.2.1  cliff }
   1004   1.1.2.1  cliff 
   1005   1.1.2.1  cliff void
   1006   1.1.2.1  cliff rmixl_pcie_conf_write(void *v, pcitag_t tag, int offset, pcireg_t val)
   1007   1.1.2.1  cliff {
   1008   1.1.2.1  cliff 	struct rmixl_pcie_softc *sc = v;
   1009   1.1.2.3  cliff 	static bus_space_handle_t bsh;
   1010   1.1.2.3  cliff 	bus_space_tag_t bst;
   1011   1.1.2.1  cliff 	uint64_t cfg0;
   1012   1.1.2.1  cliff 
   1013  1.1.2.16  cliff 	mutex_enter(&sc->sc_mutex);
   1014   1.1.2.1  cliff 
   1015   1.1.2.3  cliff 	if (rmixl_pcie_conf_setup(sc, tag, &offset, &bst, &bsh) == 0) {
   1016   1.1.2.3  cliff 		cfg0 = rmixl_cache_err_dis();
   1017   1.1.2.3  cliff 		bus_space_write_4(bst, bsh, (bus_size_t)offset, val);
   1018   1.1.2.3  cliff 		if (rmixl_cache_err_check() != 0) {
   1019   1.1.2.1  cliff #ifdef DIAGNOSTIC
   1020   1.1.2.3  cliff 			int bus, dev, fun;
   1021   1.1.2.1  cliff 
   1022   1.1.2.3  cliff 			rmixl_pcie_decompose_tag(v, tag, &bus, &dev, &fun);
   1023   1.1.2.3  cliff 			printf("%s: %d/%d/%d, offset %#x: bad address\n",
   1024   1.1.2.3  cliff 				__func__, bus, dev, fun, offset);
   1025   1.1.2.1  cliff #endif
   1026   1.1.2.3  cliff 		}
   1027   1.1.2.3  cliff 		rmixl_cache_err_restore(cfg0);
   1028   1.1.2.3  cliff 	}
   1029   1.1.2.1  cliff 
   1030  1.1.2.16  cliff 	mutex_exit(&sc->sc_mutex);
   1031   1.1.2.1  cliff }
   1032   1.1.2.1  cliff 
   1033   1.1.2.1  cliff int
   1034   1.1.2.1  cliff rmixl_pcie_intr_map(struct pci_attach_args *pa, pci_intr_handle_t *pih)
   1035   1.1.2.1  cliff {
   1036  1.1.2.14   matt 	int device;
   1037   1.1.2.8  cliff 	u_int link;
   1038   1.1.2.1  cliff 	u_int irq;
   1039   1.1.2.1  cliff 
   1040  1.1.2.14   matt 	/*
   1041  1.1.2.14   matt 	 * The bus is unimportant since it can change depending on the
   1042  1.1.2.14   matt 	 * configuration.  We are tied to device # of PCIe bridge we are
   1043  1.1.2.14   matt 	 * ultimately attached to.
   1044  1.1.2.14   matt 	 */
   1045  1.1.2.14   matt 	pci_decompose_tag(pa->pa_pc, pa->pa_intrtag,
   1046  1.1.2.14   matt 	    NULL, &device, NULL);
   1047  1.1.2.14   matt 
   1048   1.1.2.1  cliff #ifdef DEBUG
   1049   1.1.2.1  cliff 	DPRINTF(("%s: ps_bus %d, pa_intrswiz %#x, pa_intrtag %#lx,"
   1050   1.1.2.1  cliff 		" pa_intrpin %d,  pa_intrline %d, pa_rawintrpin %d\n",
   1051   1.1.2.1  cliff 		__func__, pa->pa_bus, pa->pa_intrswiz, pa->pa_intrtag,
   1052   1.1.2.1  cliff 		pa->pa_intrpin, pa->pa_intrline, pa->pa_rawintrpin));
   1053   1.1.2.1  cliff #endif
   1054   1.1.2.1  cliff 
   1055   1.1.2.1  cliff 	/*
   1056   1.1.2.8  cliff 	 * PCIe Link INT irq assignment is cpu implementation specific
   1057   1.1.2.1  cliff 	 */
   1058   1.1.2.7   matt 	switch (MIPS_PRID_IMPL(mips_options.mips_cpu_id)) {
   1059   1.1.2.8  cliff 	case MIPS_XLS104:
   1060   1.1.2.8  cliff 	case MIPS_XLS108:
   1061   1.1.2.8  cliff 	case MIPS_XLS404LITE:
   1062   1.1.2.1  cliff 	case MIPS_XLS408LITE:
   1063  1.1.2.14   matt 		if (device > 1)
   1064  1.1.2.14   matt 			panic("%s: bad bus %d", __func__, device);
   1065  1.1.2.14   matt 		link = device;
   1066  1.1.2.14   matt 		irq = device + 26;
   1067   1.1.2.1  cliff 		break;
   1068  1.1.2.13  cliff 	case MIPS_XLS204:
   1069  1.1.2.14   matt 	case MIPS_XLS208: {
   1070  1.1.2.14   matt 		if (device > 3)
   1071  1.1.2.14   matt 			panic("%s: bad bus %d", __func__, device);
   1072  1.1.2.14   matt 		link = device;
   1073  1.1.2.14   matt 		irq = device + (device & 2 ? 21 : 26);
   1074  1.1.2.13  cliff 		break;
   1075  1.1.2.14   matt 	}
   1076   1.1.2.8  cliff 	case MIPS_XLS404:
   1077   1.1.2.8  cliff 	case MIPS_XLS408:
   1078   1.1.2.1  cliff 	case MIPS_XLS416:
   1079   1.1.2.8  cliff 	case MIPS_XLS608:
   1080   1.1.2.1  cliff 	case MIPS_XLS616:
   1081  1.1.2.14   matt 		if (device > 3)
   1082  1.1.2.14   matt 			panic("%s: bad bus %d", __func__, device);
   1083  1.1.2.14   matt 		link = device;
   1084  1.1.2.14   matt 		irq = device + 26;
   1085   1.1.2.1  cliff 		break;
   1086   1.1.2.1  cliff 	default:
   1087   1.1.2.1  cliff 		panic("%s: cpu IMPL %#x not supported\n",
   1088  1.1.2.14   matt 		    __func__, MIPS_PRID_IMPL(mips_options.mips_cpu_id));
   1089   1.1.2.1  cliff 	}
   1090   1.1.2.1  cliff 
   1091   1.1.2.8  cliff 	if (pa->pa_intrpin != PCI_INTERRUPT_PIN_NONE)
   1092   1.1.2.8  cliff 		*pih = rmixl_pcie_make_pih(link, pa->pa_intrpin - 1, irq);
   1093   1.1.2.8  cliff 	else
   1094   1.1.2.8  cliff 		*pih = ~0;
   1095   1.1.2.1  cliff 
   1096   1.1.2.1  cliff 	return 0;
   1097   1.1.2.1  cliff }
   1098   1.1.2.1  cliff 
   1099   1.1.2.1  cliff const char *
   1100   1.1.2.1  cliff rmixl_pcie_intr_string(void *v, pci_intr_handle_t pih)
   1101   1.1.2.1  cliff {
   1102   1.1.2.1  cliff 	const char *name = "(illegal)";
   1103  1.1.2.11  cliff 	u_int link, bitno, irq;
   1104  1.1.2.11  cliff 
   1105  1.1.2.11  cliff 	rmixl_pcie_decompose_pih(pih, &link, &bitno, &irq);
   1106   1.1.2.1  cliff 
   1107   1.1.2.7   matt 	switch (MIPS_PRID_IMPL(mips_options.mips_cpu_id)) {
   1108   1.1.2.8  cliff 	case MIPS_XLS104:
   1109   1.1.2.8  cliff 	case MIPS_XLS108:
   1110   1.1.2.8  cliff 	case MIPS_XLS404LITE:
   1111   1.1.2.1  cliff 	case MIPS_XLS408LITE:
   1112   1.1.2.1  cliff 		switch (irq) {
   1113   1.1.2.1  cliff 		case 26:
   1114   1.1.2.1  cliff 		case 27:
   1115  1.1.2.17   matt 			name = rmixl_intr_string(RMIXL_IRT_VECTOR(irq));
   1116   1.1.2.1  cliff 			break;
   1117   1.1.2.1  cliff 		}
   1118   1.1.2.1  cliff 		break;
   1119  1.1.2.13  cliff 	case MIPS_XLS204:
   1120  1.1.2.13  cliff 	case MIPS_XLS208:
   1121  1.1.2.13  cliff 		switch (irq) {
   1122  1.1.2.13  cliff 		case 23:
   1123  1.1.2.13  cliff 		case 24:
   1124  1.1.2.13  cliff 		case 26:
   1125  1.1.2.13  cliff 		case 27:
   1126  1.1.2.17   matt 			name = rmixl_intr_string(RMIXL_IRT_VECTOR(irq));
   1127  1.1.2.13  cliff 			break;
   1128  1.1.2.13  cliff 		}
   1129  1.1.2.13  cliff 		break;
   1130   1.1.2.8  cliff 	case MIPS_XLS404:
   1131   1.1.2.8  cliff 	case MIPS_XLS408:
   1132   1.1.2.8  cliff 	case MIPS_XLS416:
   1133   1.1.2.8  cliff 	case MIPS_XLS608:
   1134   1.1.2.1  cliff 	case MIPS_XLS616:
   1135   1.1.2.1  cliff 		switch (irq) {
   1136   1.1.2.1  cliff 		case 26:
   1137   1.1.2.1  cliff 		case 27:
   1138   1.1.2.1  cliff 		case 28:
   1139   1.1.2.1  cliff 		case 29:
   1140  1.1.2.17   matt 			name = rmixl_intr_string(RMIXL_IRT_VECTOR(irq));
   1141   1.1.2.1  cliff 			break;
   1142   1.1.2.1  cliff 		}
   1143   1.1.2.1  cliff 		break;
   1144   1.1.2.8  cliff 	default:
   1145   1.1.2.8  cliff 		panic("%s: cpu IMPL %#x not supported\n",
   1146   1.1.2.8  cliff 			__func__, MIPS_PRID_IMPL(mips_options.mips_cpu_id));
   1147   1.1.2.1  cliff 	}
   1148   1.1.2.1  cliff 
   1149   1.1.2.1  cliff 	return name;
   1150   1.1.2.1  cliff }
   1151   1.1.2.1  cliff 
   1152   1.1.2.1  cliff const struct evcnt *
   1153   1.1.2.1  cliff rmixl_pcie_intr_evcnt(void *v, pci_intr_handle_t pih)
   1154   1.1.2.1  cliff {
   1155   1.1.2.1  cliff 	return NULL;
   1156   1.1.2.1  cliff }
   1157   1.1.2.1  cliff 
   1158   1.1.2.8  cliff static pci_intr_handle_t
   1159   1.1.2.8  cliff rmixl_pcie_make_pih(u_int link, u_int bitno, u_int irq)
   1160   1.1.2.1  cliff {
   1161   1.1.2.8  cliff 	pci_intr_handle_t pih;
   1162   1.1.2.8  cliff 
   1163  1.1.2.11  cliff 	KASSERT(link < RMIXL_PCIE_NLINKS_MAX);
   1164  1.1.2.11  cliff 	KASSERT(bitno < 64);
   1165  1.1.2.11  cliff 	KASSERT(irq < 32);
   1166   1.1.2.8  cliff 
   1167   1.1.2.8  cliff 	pih  = (irq << 10);
   1168   1.1.2.8  cliff 	pih |= (bitno << 4);
   1169   1.1.2.8  cliff 	pih |= link;
   1170   1.1.2.8  cliff 
   1171   1.1.2.8  cliff 	return pih;
   1172   1.1.2.1  cliff }
   1173   1.1.2.1  cliff 
   1174   1.1.2.8  cliff static void
   1175   1.1.2.8  cliff rmixl_pcie_decompose_pih(pci_intr_handle_t pih, u_int *link, u_int *bitno, u_int *irq)
   1176   1.1.2.8  cliff {
   1177   1.1.2.8  cliff 	*link = (u_int)(pih & 0xf);
   1178  1.1.2.11  cliff 	*bitno = (u_int)((pih >> 4) & 0x3f);
   1179   1.1.2.8  cliff 	*irq  = (u_int)(pih >> 10);
   1180   1.1.2.8  cliff 
   1181  1.1.2.11  cliff 	KASSERT(*link < RMIXL_PCIE_NLINKS_MAX);
   1182  1.1.2.11  cliff 	KASSERT(*bitno < 64);
   1183  1.1.2.11  cliff 	KASSERT(*irq < 32);
   1184   1.1.2.8  cliff }
   1185   1.1.2.8  cliff 
   1186   1.1.2.8  cliff static void
   1187   1.1.2.8  cliff rmixl_pcie_intr_disestablish(void *v, void *ih)
   1188   1.1.2.8  cliff {
   1189   1.1.2.8  cliff 	rmixl_pcie_softc_t *sc = v;
   1190   1.1.2.8  cliff 	rmixl_pcie_link_dispatch_t *dip = ih;
   1191  1.1.2.16  cliff 	rmixl_pcie_link_intr_t *lip = sc->sc_link_intr[dip->link];
   1192   1.1.2.8  cliff 	uint32_t r;
   1193   1.1.2.8  cliff 	uint32_t bit;
   1194   1.1.2.8  cliff 	u_int offset;
   1195   1.1.2.8  cliff 	u_int other;
   1196  1.1.2.16  cliff 	bool busy;
   1197   1.1.2.8  cliff 
   1198   1.1.2.9  cliff 	DPRINTF(("%s: link=%d pin=%d irq=%d\n",
   1199   1.1.2.9  cliff 		__func__, dip->link, dip->bitno + 1, dip->irq));
   1200   1.1.2.8  cliff 
   1201  1.1.2.16  cliff 	mutex_enter(&sc->sc_mutex);
   1202   1.1.2.8  cliff 
   1203  1.1.2.16  cliff 	dip->func = NULL;	/* mark unused, prevent further dispatch */
   1204   1.1.2.8  cliff 
   1205   1.1.2.8  cliff 	/*
   1206  1.1.2.16  cliff 	 * if no other dispatch handle is using this interrupt,
   1207  1.1.2.16  cliff 	 * we can disable it
   1208   1.1.2.8  cliff 	 */
   1209  1.1.2.16  cliff 	busy = false;
   1210  1.1.2.16  cliff 	for (int i=0; i < lip->dispatch_count; i++) {
   1211  1.1.2.16  cliff 		rmixl_pcie_link_dispatch_t *d = &lip->dispatch_data[i];
   1212  1.1.2.16  cliff 		if (d == dip)
   1213  1.1.2.16  cliff 			continue;
   1214  1.1.2.16  cliff 		if (d->bitno == dip->bitno) {
   1215  1.1.2.16  cliff 			busy = true;
   1216  1.1.2.16  cliff 			break;
   1217   1.1.2.8  cliff 		}
   1218   1.1.2.8  cliff 	}
   1219  1.1.2.16  cliff 	if (! busy) {
   1220  1.1.2.16  cliff 		if (dip->bitno < 32) {
   1221  1.1.2.16  cliff 			bit = 1 << dip->bitno;
   1222  1.1.2.16  cliff 			offset = int_enb_offset[dip->link].r0;
   1223  1.1.2.16  cliff 			other  = int_enb_offset[dip->link].r1;
   1224  1.1.2.16  cliff 		} else {
   1225  1.1.2.16  cliff 			bit = 1 << (dip->bitno - 32);
   1226  1.1.2.16  cliff 			offset = int_enb_offset[dip->link].r1;
   1227  1.1.2.16  cliff 			other  = int_enb_offset[dip->link].r0;
   1228  1.1.2.16  cliff 		}
   1229  1.1.2.16  cliff 
   1230  1.1.2.16  cliff 		/* disable this interrupt in the PCIe bridge */
   1231  1.1.2.16  cliff 		r = RMIXL_IOREG_READ(RMIXL_IO_DEV_PCIE_LE + offset);
   1232  1.1.2.16  cliff 		r &= ~bit;
   1233  1.1.2.16  cliff 		RMIXL_IOREG_WRITE(RMIXL_IO_DEV_PCIE_LE + offset, r);
   1234  1.1.2.16  cliff 
   1235  1.1.2.16  cliff 		/*
   1236  1.1.2.16  cliff 		 * if both ENABLE0 and ENABLE1 are 0
   1237  1.1.2.16  cliff 		 * disable the link interrupt
   1238  1.1.2.16  cliff 		 */
   1239  1.1.2.16  cliff 		if (r == 0) {
   1240  1.1.2.16  cliff 			/* check the other reg */
   1241  1.1.2.16  cliff 			if (RMIXL_IOREG_READ(RMIXL_IO_DEV_PCIE_LE + other) == 0) {
   1242  1.1.2.16  cliff 				DPRINTF(("%s: disable link %d\n", __func__, lip->link));
   1243  1.1.2.16  cliff 
   1244  1.1.2.16  cliff 				/* tear down interrupt on this link */
   1245  1.1.2.16  cliff 				rmixl_intr_disestablish(lip->ih);
   1246   1.1.2.8  cliff 
   1247  1.1.2.16  cliff 				/* commit NULL interrupt set */
   1248  1.1.2.16  cliff 				sc->sc_link_intr[dip->link] = NULL;
   1249   1.1.2.8  cliff 
   1250  1.1.2.16  cliff 				/* schedule delayed free of the old link interrupt set */
   1251  1.1.2.16  cliff 				rmixl_pcie_lip_free_callout(lip);
   1252  1.1.2.16  cliff 			}
   1253  1.1.2.16  cliff 		}
   1254  1.1.2.16  cliff 	}
   1255   1.1.2.8  cliff 
   1256  1.1.2.16  cliff 	mutex_exit(&sc->sc_mutex);
   1257   1.1.2.8  cliff }
   1258   1.1.2.8  cliff 
   1259   1.1.2.8  cliff static void *
   1260   1.1.2.8  cliff rmixl_pcie_intr_establish(void *v, pci_intr_handle_t pih, int ipl,
   1261   1.1.2.8  cliff         int (*func)(void *), void *arg)
   1262   1.1.2.8  cliff {
   1263   1.1.2.8  cliff 	rmixl_pcie_softc_t *sc = v;
   1264   1.1.2.8  cliff 	u_int link, bitno, irq;
   1265   1.1.2.8  cliff 	uint32_t r;
   1266   1.1.2.8  cliff 	rmixl_pcie_link_intr_t *lip;
   1267  1.1.2.15  rmind 	rmixl_pcie_link_dispatch_t *dip = NULL;
   1268   1.1.2.8  cliff 	uint32_t bit;
   1269   1.1.2.8  cliff 	u_int offset;
   1270   1.1.2.8  cliff 
   1271   1.1.2.8  cliff 	if (pih == ~0) {
   1272   1.1.2.8  cliff 		DPRINTF(("%s: bad pih=%#lx, implies PCI_INTERRUPT_PIN_NONE\n",
   1273   1.1.2.8  cliff 			__func__, pih));
   1274   1.1.2.8  cliff 		return NULL;
   1275   1.1.2.8  cliff 	}
   1276   1.1.2.8  cliff 
   1277   1.1.2.8  cliff 	rmixl_pcie_decompose_pih(pih, &link, &bitno, &irq);
   1278  1.1.2.16  cliff 	DPRINTF(("%s: link=%d pin=%d irq=%d\n",
   1279  1.1.2.16  cliff 		__func__, link, bitno + 1, irq));
   1280   1.1.2.8  cliff 
   1281  1.1.2.16  cliff 	mutex_enter(&sc->sc_mutex);
   1282   1.1.2.8  cliff 
   1283  1.1.2.16  cliff 	lip = rmixl_pcie_lip_add_1(sc, link, irq, ipl);
   1284  1.1.2.16  cliff 	if (lip == NULL)
   1285  1.1.2.16  cliff 		return NULL;
   1286   1.1.2.8  cliff 
   1287   1.1.2.8  cliff 	/*
   1288  1.1.2.16  cliff 	 * initializae our new interrupt, the last element in dispatch_data[]
   1289   1.1.2.8  cliff 	 */
   1290  1.1.2.16  cliff 	dip = &lip->dispatch_data[lip->dispatch_count - 1];
   1291   1.1.2.8  cliff 	dip->link = link;
   1292   1.1.2.8  cliff 	dip->bitno = bitno;
   1293   1.1.2.8  cliff 	dip->irq = irq;
   1294   1.1.2.8  cliff 	dip->func = func;
   1295   1.1.2.8  cliff 	dip->arg = arg;
   1296  1.1.2.16  cliff 	dip->counts = RMIXL_PCIE_EVCNT(sc, link, bitno, 0);
   1297   1.1.2.8  cliff 
   1298   1.1.2.8  cliff 	if (bitno < 32) {
   1299   1.1.2.8  cliff 		offset = int_enb_offset[link].r0;
   1300   1.1.2.8  cliff 		bit = 1 << bitno;
   1301   1.1.2.8  cliff 	} else {
   1302   1.1.2.8  cliff 		offset = int_enb_offset[link].r1;
   1303   1.1.2.8  cliff 		bit = 1 << (bitno - 32);
   1304   1.1.2.8  cliff 	}
   1305   1.1.2.8  cliff 
   1306  1.1.2.16  cliff 	/* commit the new link interrupt set */
   1307  1.1.2.16  cliff 	sc->sc_link_intr[link] = lip;
   1308  1.1.2.16  cliff 
   1309   1.1.2.8  cliff 	/* enable this interrupt in the PCIe bridge */
   1310   1.1.2.8  cliff 	r = RMIXL_IOREG_READ(RMIXL_IO_DEV_PCIE_LE + offset);
   1311   1.1.2.8  cliff 	r |= bit;
   1312   1.1.2.8  cliff 	RMIXL_IOREG_WRITE(RMIXL_IO_DEV_PCIE_LE + offset, r);
   1313   1.1.2.8  cliff 
   1314  1.1.2.16  cliff 	mutex_exit(&sc->sc_mutex);
   1315  1.1.2.16  cliff 	return dip;
   1316  1.1.2.16  cliff }
   1317  1.1.2.16  cliff 
   1318  1.1.2.16  cliff rmixl_pcie_link_intr_t *
   1319  1.1.2.16  cliff rmixl_pcie_lip_add_1(rmixl_pcie_softc_t *sc, u_int link, int irq, int ipl)
   1320  1.1.2.16  cliff {
   1321  1.1.2.16  cliff 	rmixl_pcie_link_intr_t *lip_old = sc->sc_link_intr[link];
   1322  1.1.2.16  cliff 	rmixl_pcie_link_intr_t *lip_new;
   1323  1.1.2.16  cliff 	u_int dispatch_count;
   1324  1.1.2.16  cliff 	size_t size;
   1325  1.1.2.16  cliff 
   1326  1.1.2.16  cliff 	dispatch_count = 1;
   1327  1.1.2.16  cliff 	size = sizeof(rmixl_pcie_link_intr_t);
   1328  1.1.2.16  cliff 	if (lip_old != NULL) {
   1329  1.1.2.16  cliff 		/*
   1330  1.1.2.16  cliff 		 * count only those dispatch elements still in use
   1331  1.1.2.16  cliff 		 * unused ones will be pruned during copy
   1332  1.1.2.16  cliff 		 * i.e. we are "lazy" there is no rmixl_pcie_lip_sub_1
   1333  1.1.2.16  cliff                  */
   1334  1.1.2.16  cliff 		for (int i=0; i < lip_old->dispatch_count; i++) {
   1335  1.1.2.16  cliff 			if (lip_old->dispatch_data[i].func != NULL) {
   1336  1.1.2.16  cliff 				dispatch_count++;
   1337  1.1.2.16  cliff 				size += sizeof(rmixl_pcie_link_intr_t);
   1338  1.1.2.16  cliff 			}
   1339  1.1.2.16  cliff 		}
   1340  1.1.2.16  cliff 	}
   1341  1.1.2.16  cliff 
   1342  1.1.2.16  cliff 	/*
   1343  1.1.2.16  cliff 	 * allocate and initialize link intr struct
   1344  1.1.2.16  cliff 	 * with one or more dispatch handles
   1345  1.1.2.16  cliff 	 */
   1346  1.1.2.16  cliff 	lip_new = malloc(size, M_DEVBUF, M_NOWAIT);
   1347  1.1.2.16  cliff 	if (lip_new == NULL) {
   1348  1.1.2.16  cliff #ifdef DIAGNOSTIC
   1349  1.1.2.16  cliff 		printf("%s: cannot malloc\n", __func__);
   1350  1.1.2.16  cliff #endif
   1351  1.1.2.16  cliff 		return NULL;
   1352  1.1.2.16  cliff 	}
   1353  1.1.2.16  cliff 
   1354  1.1.2.16  cliff 	if (lip_old == NULL) {
   1355  1.1.2.16  cliff 		/* initialize the link interrupt struct */
   1356  1.1.2.16  cliff 		lip_new->sc = sc;
   1357  1.1.2.16  cliff 		lip_new->link = link;
   1358  1.1.2.16  cliff 		lip_new->ipl = ipl;
   1359  1.1.2.16  cliff 		lip_new->ih = rmixl_intr_establish(irq, sc->sc_tmsk,
   1360   1.1.2.9  cliff 			ipl, RMIXL_TRIG_LEVEL, RMIXL_POLR_HIGH,
   1361  1.1.2.16  cliff 			rmixl_pcie_intr, lip_new, false);
   1362  1.1.2.16  cliff 		if (lip_new->ih == NULL)
   1363  1.1.2.11  cliff 			panic("%s: cannot establish irq %d", __func__, irq);
   1364  1.1.2.16  cliff 	} else {
   1365  1.1.2.16  cliff 		/*
   1366  1.1.2.16  cliff 		 * all intrs on a link get same ipl and sc
   1367  1.1.2.16  cliff 		 * first intr established sets the standard
   1368  1.1.2.16  cliff 		 */
   1369  1.1.2.16  cliff 		KASSERT(sc == lip_old->sc);
   1370  1.1.2.16  cliff 		if (sc != lip_old->sc) {
   1371  1.1.2.16  cliff 			printf("%s: sc %p mismatch\n", __func__, sc);
   1372  1.1.2.16  cliff 			free(lip_new, M_DEVBUF);
   1373  1.1.2.16  cliff 			return NULL;
   1374  1.1.2.16  cliff 		}
   1375  1.1.2.16  cliff 		KASSERT (ipl == lip_old->ipl);
   1376  1.1.2.16  cliff 		if (ipl != lip_old->ipl) {
   1377  1.1.2.16  cliff 			printf("%s: ipl %d mismatch\n", __func__, ipl);
   1378  1.1.2.16  cliff 			free(lip_new, M_DEVBUF);
   1379  1.1.2.16  cliff 			return NULL;
   1380  1.1.2.16  cliff 		}
   1381  1.1.2.16  cliff 		/*
   1382  1.1.2.16  cliff 		 * copy lip_old to lip_new, skipping unused dispatch elemets
   1383  1.1.2.16  cliff 		 */
   1384  1.1.2.16  cliff 		memcpy(lip_new, lip_old, sizeof(rmixl_pcie_link_intr_t));
   1385  1.1.2.16  cliff 		for (int j=0, i=0; i < lip_old->dispatch_count; i++) {
   1386  1.1.2.16  cliff 			if (lip_old->dispatch_data[i].func != NULL) {
   1387  1.1.2.16  cliff 				memcpy(&lip_new->dispatch_data[j],
   1388  1.1.2.16  cliff 					&lip_old->dispatch_data[i],
   1389  1.1.2.16  cliff 					sizeof(rmixl_pcie_link_dispatch_t));
   1390  1.1.2.16  cliff 				j++;
   1391  1.1.2.16  cliff 			}
   1392  1.1.2.16  cliff 		}
   1393   1.1.2.8  cliff 
   1394  1.1.2.16  cliff 		/*
   1395  1.1.2.16  cliff 		 * schedule delayed free of old link interrupt set
   1396  1.1.2.16  cliff 		 */
   1397  1.1.2.16  cliff 		rmixl_pcie_lip_free_callout(lip_old);
   1398   1.1.2.8  cliff 	}
   1399  1.1.2.16  cliff 	lip_new->dispatch_count = dispatch_count;
   1400   1.1.2.8  cliff 
   1401  1.1.2.16  cliff 	return lip_new;
   1402  1.1.2.16  cliff }
   1403  1.1.2.16  cliff 
   1404  1.1.2.16  cliff /*
   1405  1.1.2.16  cliff  * delay free of the old link interrupt set
   1406  1.1.2.16  cliff  * to allow anyone still using it to do so safely
   1407  1.1.2.16  cliff  * XXX 2 seconds should be plenty?
   1408  1.1.2.16  cliff  */
   1409  1.1.2.16  cliff static void
   1410  1.1.2.16  cliff rmixl_pcie_lip_free_callout(rmixl_pcie_link_intr_t *lip)
   1411  1.1.2.16  cliff {
   1412  1.1.2.16  cliff 	callout_init(&lip->callout, 0);
   1413  1.1.2.16  cliff 	callout_reset(&lip->callout, 2 * hz, rmixl_pcie_lip_free, lip);
   1414  1.1.2.16  cliff }
   1415  1.1.2.16  cliff 
   1416  1.1.2.16  cliff static void
   1417  1.1.2.16  cliff rmixl_pcie_lip_free(void *arg)
   1418  1.1.2.16  cliff {
   1419  1.1.2.16  cliff 	rmixl_pcie_link_intr_t *lip = arg;
   1420  1.1.2.16  cliff 
   1421  1.1.2.16  cliff 	callout_destroy(&lip->callout);
   1422  1.1.2.16  cliff 	free(lip, M_DEVBUF);
   1423   1.1.2.8  cliff }
   1424   1.1.2.8  cliff 
   1425   1.1.2.8  cliff static int
   1426   1.1.2.8  cliff rmixl_pcie_intr(void *arg)
   1427   1.1.2.8  cliff {
   1428   1.1.2.8  cliff 	rmixl_pcie_link_intr_t *lip = arg;
   1429   1.1.2.8  cliff 	u_int link = lip->link;
   1430   1.1.2.8  cliff 	int rv = 0;
   1431   1.1.2.8  cliff 
   1432   1.1.2.8  cliff 	uint32_t status0 = RMIXL_IOREG_READ(RMIXL_IO_DEV_PCIE_LE + int_sts_offset[link].r0);
   1433   1.1.2.8  cliff 	uint32_t status1 = RMIXL_IOREG_READ(RMIXL_IO_DEV_PCIE_LE + int_sts_offset[link].r1);
   1434   1.1.2.8  cliff 	uint64_t status = ((uint64_t)status1 << 32) | status0;
   1435   1.1.2.8  cliff 	DPRINTF(("%s: %d:%#"PRIx64"\n", __func__, link, status));
   1436   1.1.2.8  cliff 
   1437   1.1.2.8  cliff 	if (status != 0) {
   1438   1.1.2.8  cliff 		rmixl_pcie_link_dispatch_t *dip;
   1439   1.1.2.8  cliff 
   1440   1.1.2.8  cliff 		if (status & RMIXL_PCIE_LINK_STATUS_ERRORS)
   1441   1.1.2.8  cliff 			rmixl_pcie_link_error_intr(link, status0, status1);
   1442   1.1.2.8  cliff 
   1443  1.1.2.16  cliff 		for (u_int i=0; i < lip->dispatch_count; i++) {
   1444  1.1.2.16  cliff 			dip = &lip->dispatch_data[i];
   1445  1.1.2.16  cliff 			int (*func)(void *) = dip->func;
   1446  1.1.2.16  cliff 			if (func != NULL) {
   1447  1.1.2.16  cliff 				uint64_t bit = 1 << dip->bitno;
   1448  1.1.2.16  cliff 				if ((status & bit) != 0) {
   1449  1.1.2.16  cliff 					(void)(*func)(dip->arg);
   1450  1.1.2.16  cliff 					dip->counts[cpu_index(curcpu())].evcnt.ev_count++;
   1451  1.1.2.16  cliff 					rv = 1;
   1452  1.1.2.16  cliff 				}
   1453   1.1.2.8  cliff 			}
   1454   1.1.2.8  cliff 		}
   1455   1.1.2.8  cliff 	}
   1456   1.1.2.8  cliff 
   1457   1.1.2.8  cliff 	return rv;
   1458   1.1.2.8  cliff }
   1459   1.1.2.8  cliff 
   1460   1.1.2.8  cliff static void
   1461   1.1.2.8  cliff rmixl_pcie_link_error_intr(u_int link, uint32_t status0, uint32_t status1)
   1462   1.1.2.8  cliff {
   1463   1.1.2.8  cliff 	printf("%s: mask %#"PRIx64"\n",
   1464   1.1.2.8  cliff 		__func__, RMIXL_PCIE_LINK_STATUS_ERRORS);
   1465   1.1.2.8  cliff 	printf("%s: PCIe Link Error: link=%d status0=%#x status1=%#x\n",
   1466   1.1.2.8  cliff 		__func__, link, status0, status1);
   1467   1.1.2.8  cliff #if defined(DDB) && defined(DEBUG)
   1468   1.1.2.8  cliff 	Debugger();
   1469   1.1.2.8  cliff #endif
   1470   1.1.2.8  cliff }
   1471   1.1.2.8  cliff 
   1472   1.1.2.1  cliff #if defined(DEBUG) || defined(DDB)
   1473   1.1.2.1  cliff /* this function exists to facilitate call from ddb */
   1474   1.1.2.1  cliff int
   1475   1.1.2.1  cliff rmixl_pcie_error_check(void)
   1476   1.1.2.1  cliff {
   1477   1.1.2.1  cliff 	if (rmixl_pcie_v != 0)
   1478   1.1.2.1  cliff 		return _rmixl_pcie_error_check(rmixl_pcie_v);
   1479   1.1.2.1  cliff 	return -1;
   1480   1.1.2.1  cliff }
   1481   1.1.2.1  cliff #endif
   1482   1.1.2.1  cliff 
   1483   1.1.2.1  cliff STATIC int
   1484   1.1.2.1  cliff _rmixl_pcie_error_check(void *v)
   1485   1.1.2.1  cliff {
   1486   1.1.2.1  cliff 	int i, offset;
   1487   1.1.2.1  cliff 	pcireg_t r;
   1488   1.1.2.1  cliff 	pcitag_t tag;
   1489   1.1.2.1  cliff 	int err=0;
   1490   1.1.2.1  cliff #ifdef DIAGNOSTIC
   1491   1.1.2.1  cliff 	pcireg_t regs[PCIE_ECFG_ERRS_OFFTAB_NENTRIES];
   1492   1.1.2.1  cliff #endif
   1493   1.1.2.1  cliff 
   1494   1.1.2.1  cliff 	tag = rmixl_pcie_make_tag(v, 0, 0, 0);	/* XXX */
   1495   1.1.2.1  cliff 
   1496   1.1.2.1  cliff 	for (i=0; i < PCIE_ECFG_ERRS_OFFTAB_NENTRIES; i++) {
   1497   1.1.2.1  cliff 		offset = pcie_ecfg_errs_tab[i].offset;
   1498   1.1.2.1  cliff 		r = rmixl_pcie_conf_read(v, tag, offset);
   1499   1.1.2.1  cliff #ifdef DIAGNOSTIC
   1500   1.1.2.1  cliff 		regs[i] = r;
   1501   1.1.2.1  cliff #endif
   1502   1.1.2.1  cliff 		if (r != 0) {
   1503   1.1.2.1  cliff 			pcireg_t rw1c = r & pcie_ecfg_errs_tab[i].rw1c;
   1504   1.1.2.1  cliff 			if (rw1c != 0) {
   1505   1.1.2.1  cliff 				/* attempt to clear the error */
   1506   1.1.2.1  cliff 				rmixl_pcie_conf_write(v, tag, offset, rw1c);
   1507   1.1.2.1  cliff 			};
   1508   1.1.2.1  cliff 			if (offset == RMIXL_PCIE_ECFG_CESR)
   1509   1.1.2.1  cliff 				err |= 1;	/* correctable */
   1510   1.1.2.1  cliff 			else
   1511   1.1.2.1  cliff 				err |= 2;	/* uncorrectable */
   1512   1.1.2.1  cliff 		}
   1513   1.1.2.1  cliff 	}
   1514   1.1.2.1  cliff #ifdef DIAGNOSTIC
   1515   1.1.2.1  cliff 	if (err != 0) {
   1516   1.1.2.1  cliff 		for (i=0; i < PCIE_ECFG_ERRS_OFFTAB_NENTRIES; i++) {
   1517   1.1.2.1  cliff 			offset = pcie_ecfg_errs_tab[i].offset;
   1518   1.1.2.1  cliff 			printf("%s: %#x: %#x\n", __func__, offset, regs[i]);
   1519   1.1.2.1  cliff 		}
   1520   1.1.2.1  cliff 	}
   1521   1.1.2.1  cliff #endif
   1522   1.1.2.1  cliff 
   1523   1.1.2.1  cliff 	return err;
   1524   1.1.2.1  cliff }
   1525   1.1.2.1  cliff 
   1526   1.1.2.1  cliff static int
   1527   1.1.2.1  cliff rmixl_pcie_error_intr(void *v)
   1528   1.1.2.1  cliff {
   1529   1.1.2.1  cliff 	if (_rmixl_pcie_error_check(v) < 2)
   1530   1.1.2.1  cliff 		return 0;	/* correctable */
   1531   1.1.2.1  cliff 
   1532   1.1.2.1  cliff 	/* uncorrectable */
   1533   1.1.2.1  cliff #if DDB
   1534   1.1.2.1  cliff 	Debugger();
   1535   1.1.2.1  cliff #endif
   1536   1.1.2.1  cliff 
   1537   1.1.2.1  cliff 	/* XXX reset and recover? */
   1538   1.1.2.1  cliff 
   1539   1.1.2.1  cliff 	panic("%s\n", __func__);
   1540   1.1.2.1  cliff }
   1541  1.1.2.10  cliff 
   1542  1.1.2.10  cliff /*
   1543  1.1.2.10  cliff  * rmixl_physaddr_init_pcie:
   1544  1.1.2.10  cliff  *	called from rmixl_physaddr_init to get region addrs & sizes
   1545  1.1.2.10  cliff  *	from PCIE CFG, ECFG, IO, MEM BARs
   1546  1.1.2.10  cliff  */
   1547  1.1.2.10  cliff void
   1548  1.1.2.10  cliff rmixl_physaddr_init_pcie(struct extent *ext)
   1549  1.1.2.10  cliff {
   1550  1.1.2.10  cliff 	u_long base;
   1551  1.1.2.10  cliff 	u_long size;
   1552  1.1.2.10  cliff 	uint32_t r;
   1553  1.1.2.10  cliff 
   1554  1.1.2.11  cliff 	r = RMIXL_IOREG_READ(RMIXLS_SBC_PCIE_CFG_BAR);
   1555  1.1.2.10  cliff 	if ((r & RMIXL_PCIE_CFG_BAR_ENB) != 0) {
   1556  1.1.2.10  cliff 		base = (u_long)(RMIXL_PCIE_CFG_BAR_TO_BA((uint64_t)r)
   1557  1.1.2.10  cliff 			/ (1024 * 1024));
   1558  1.1.2.10  cliff 		size = (u_long)RMIXL_PCIE_CFG_SIZE / (1024 * 1024);
   1559  1.1.2.10  cliff 		DPRINTF(("%s: %d: %s: 0x%08x -- 0x%010lx:%ld MB\n", __func__,
   1560  1.1.2.10  cliff 			__LINE__, "CFG", r, base * 1024 * 1024, size));
   1561  1.1.2.10  cliff 		if (extent_alloc_region(ext, base, size, EX_NOWAIT) != 0)
   1562  1.1.2.10  cliff 			panic("%s: extent_alloc_region(%p, %#lx, %#lx, %#x) "
   1563  1.1.2.10  cliff 				"failed", __func__, ext, base, size, EX_NOWAIT);
   1564  1.1.2.10  cliff 	}
   1565  1.1.2.10  cliff 
   1566  1.1.2.11  cliff 	r = RMIXL_IOREG_READ(RMIXLS_SBC_PCIE_ECFG_BAR);
   1567  1.1.2.10  cliff 	if ((r & RMIXL_PCIE_ECFG_BAR_ENB) != 0) {
   1568  1.1.2.10  cliff 		base = (u_long)(RMIXL_PCIE_ECFG_BAR_TO_BA((uint64_t)r)
   1569  1.1.2.10  cliff 			/ (1024 * 1024));
   1570  1.1.2.10  cliff 		size = (u_long)RMIXL_PCIE_ECFG_SIZE / (1024 * 1024);
   1571  1.1.2.10  cliff 		DPRINTF(("%s: %d: %s: 0x%08x -- 0x%010lx:%ld MB\n", __func__,
   1572  1.1.2.10  cliff 			__LINE__, "ECFG", r, base * 1024 * 1024, size));
   1573  1.1.2.10  cliff 		if (extent_alloc_region(ext, base, size, EX_NOWAIT) != 0)
   1574  1.1.2.10  cliff 			panic("%s: extent_alloc_region(%p, %#lx, %#lx, %#x) "
   1575  1.1.2.10  cliff 				"failed", __func__, ext, base, size, EX_NOWAIT);
   1576  1.1.2.10  cliff 	}
   1577  1.1.2.10  cliff 
   1578  1.1.2.11  cliff 	r = RMIXL_IOREG_READ(RMIXLS_SBC_PCIE_MEM_BAR);
   1579  1.1.2.10  cliff 	if ((r & RMIXL_PCIE_MEM_BAR_ENB) != 0) {
   1580  1.1.2.10  cliff 		base = (u_long)(RMIXL_PCIE_MEM_BAR_TO_BA((uint64_t)r)
   1581  1.1.2.10  cliff 			/ (1024 * 1024));
   1582  1.1.2.10  cliff 		size = (u_long)(RMIXL_PCIE_MEM_BAR_TO_SIZE((uint64_t)r)
   1583  1.1.2.10  cliff 			/ (1024 * 1024));
   1584  1.1.2.10  cliff 		DPRINTF(("%s: %d: %s: 0x%08x -- 0x%010lx:%ld MB\n", __func__,
   1585  1.1.2.10  cliff 			__LINE__, "MEM", r, base * 1024 * 1024, size));
   1586  1.1.2.10  cliff 		if (extent_alloc_region(ext, base, size, EX_NOWAIT) != 0)
   1587  1.1.2.10  cliff 			panic("%s: extent_alloc_region(%p, %#lx, %#lx, %#x) "
   1588  1.1.2.10  cliff 				"failed", __func__, ext, base, size, EX_NOWAIT);
   1589  1.1.2.10  cliff 	}
   1590  1.1.2.10  cliff 
   1591  1.1.2.11  cliff 	r = RMIXL_IOREG_READ(RMIXLS_SBC_PCIE_IO_BAR);
   1592  1.1.2.10  cliff 	if ((r & RMIXL_PCIE_IO_BAR_ENB) != 0) {
   1593  1.1.2.10  cliff 		base = (u_long)(RMIXL_PCIE_IO_BAR_TO_BA((uint64_t)r)
   1594  1.1.2.10  cliff 			/ (1024 * 1024));
   1595  1.1.2.10  cliff 		size = (u_long)(RMIXL_PCIE_IO_BAR_TO_SIZE((uint64_t)r)
   1596  1.1.2.10  cliff 			/ (1024 * 1024));
   1597  1.1.2.10  cliff 		DPRINTF(("%s: %d: %s: 0x%08x -- 0x%010lx:%ld MB\n", __func__,
   1598  1.1.2.10  cliff 			__LINE__, "IO", r, base * 1024 * 1024, size));
   1599  1.1.2.10  cliff 		if (extent_alloc_region(ext, base, size, EX_NOWAIT) != 0)
   1600  1.1.2.10  cliff 			panic("%s: extent_alloc_region(%p, %#lx, %#lx, %#x) "
   1601  1.1.2.10  cliff 				"failed", __func__, ext, base, size, EX_NOWAIT);
   1602  1.1.2.10  cliff 	}
   1603  1.1.2.10  cliff }
   1604