| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 | /* *	linux/arch/alpha/kernel/core_lca.c * * Written by David Mosberger (davidm@cs.arizona.edu) with some code * taken from Dave Rusling's (david.rusling@reo.mts.dec.com) 32-bit * bios code. * * Code common to all LCA core logic chips. */#define __EXTERN_INLINE inline#include <asm/io.h>#include <asm/core_lca.h>#undef __EXTERN_INLINE#include <linux/types.h>#include <linux/pci.h>#include <linux/init.h>#include <linux/tty.h>#include <asm/ptrace.h>#include <asm/irq_regs.h>#include <asm/smp.h>#include "proto.h"#include "pci_impl.h"/* * BIOS32-style PCI interface: *//* * Machine check reasons.  Defined according to PALcode sources * (osf.h and platform.h). */#define MCHK_K_TPERR		0x0080#define MCHK_K_TCPERR		0x0082#define MCHK_K_HERR		0x0084#define MCHK_K_ECC_C		0x0086#define MCHK_K_ECC_NC		0x0088#define MCHK_K_UNKNOWN		0x008A#define MCHK_K_CACKSOFT		0x008C#define MCHK_K_BUGCHECK		0x008E#define MCHK_K_OS_BUGCHECK	0x0090#define MCHK_K_DCPERR		0x0092#define MCHK_K_ICPERR		0x0094/* * Platform-specific machine-check reasons: */#define MCHK_K_SIO_SERR		0x204	/* all platforms so far */#define MCHK_K_SIO_IOCHK	0x206	/* all platforms so far */#define MCHK_K_DCSR		0x208	/* all but Noname *//* * Given a bus, device, and function number, compute resulting * configuration space address and setup the LCA_IOC_CONF register * accordingly.  It is therefore not safe to have concurrent * invocations to configuration space access routines, but there * really shouldn't be any need for this. * * Type 0: * *  3 3|3 3 2 2|2 2 2 2|2 2 2 2|1 1 1 1|1 1 1 1|1 1  *  3 2|1 0 9 8|7 6 5 4|3 2 1 0|9 8 7 6|5 4 3 2|1 0 9 8|7 6 5 4|3 2 1 0 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * | | | | | | | | | | | | | | | | | | | | | | | |F|F|F|R|R|R|R|R|R|0|0| * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * *	31:11	Device select bit. * 	10:8	Function number * 	 7:2	Register number * * Type 1: * *  3 3|3 3 2 2|2 2 2 2|2 2 2 2|1 1 1 1|1 1 1 1|1 1  *  3 2|1 0 9 8|7 6 5 4|3 2 1 0|9 8 7 6|5 4 3 2|1 0 9 8|7 6 5 4|3 2 1 0 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * | | | | | | | | | | |B|B|B|B|B|B|B|B|D|D|D|D|D|F|F|F|R|R|R|R|R|R|0|1| * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * *	31:24	reserved *	23:16	bus number (8 bits = 128 possible buses) *	15:11	Device number (5 bits) *	10:8	function number *	 7:2	register number *   * Notes: *	The function number selects which function of a multi-function device  *	(e.g., SCSI and Ethernet). *  *	The register selects a DWORD (32 bit) register offset.  Hence it *	doesn't get shifted by 2 bits as we want to "drop" the bottom two *	bits. */static intmk_conf_addr(struct pci_bus *pbus, unsigned int device_fn, int where,	     unsigned long *pci_addr){	unsigned long addr;	u8 bus = pbus->number;	if (bus == 0) {		int device = device_fn >> 3;		int func = device_fn & 0x7;		/* Type 0 configuration cycle.  */		if (device > 12) {			return -1;		}		*(vulp)LCA_IOC_CONF = 0;		addr = (1 << (11 + device)) | (func << 8) | where;	} else {		/* Type 1 configuration cycle.  */		*(vulp)LCA_IOC_CONF = 1;		addr = (bus << 16) | (device_fn << 8) | where;	}	*pci_addr = addr;	return 0;}static unsigned intconf_read(unsigned long addr){	unsigned long flags, code, stat0;	unsigned int value;	local_irq_save(flags);	/* Reset status register to avoid losing errors.  */	stat0 = *(vulp)LCA_IOC_STAT0;	*(vulp)LCA_IOC_STAT0 = stat0;	mb();	/* Access configuration space.  */	value = *(vuip)addr;	draina();	stat0 = *(vulp)LCA_IOC_STAT0;	if (stat0 & LCA_IOC_STAT0_ERR) {		code = ((stat0 >> LCA_IOC_STAT0_CODE_SHIFT)			& LCA_IOC_STAT0_CODE_MASK);		if (code != 1) {			printk("lca.c:conf_read: got stat0=%lx\n", stat0);		}		/* Reset error status.  */		*(vulp)LCA_IOC_STAT0 = stat0;		mb();		/* Reset machine check.  */		wrmces(0x7);		value = 0xffffffff;	}	local_irq_restore(flags);	return value;}static voidconf_write(unsigned long addr, unsigned int value){	unsigned long flags, code, stat0;	local_irq_save(flags);	/* avoid getting hit by machine check */	/* Reset status register to avoid losing errors.  */	stat0 = *(vulp)LCA_IOC_STAT0;	*(vulp)LCA_IOC_STAT0 = stat0;	mb();	/* Access configuration space.  */	*(vuip)addr = value;	draina();	stat0 = *(vulp)LCA_IOC_STAT0;	if (stat0 & LCA_IOC_STAT0_ERR) {		code = ((stat0 >> LCA_IOC_STAT0_CODE_SHIFT)			& LCA_IOC_STAT0_CODE_MASK);		if (code != 1) {			printk("lca.c:conf_write: got stat0=%lx\n", stat0);		}		/* Reset error status.  */		*(vulp)LCA_IOC_STAT0 = stat0;		mb();		/* Reset machine check. */		wrmces(0x7);	}	local_irq_restore(flags);}static intlca_read_config(struct pci_bus *bus, unsigned int devfn, int where,		int size, u32 *value){	unsigned long addr, pci_addr;	long mask;	int shift;	if (mk_conf_addr(bus, devfn, where, &pci_addr))		return PCIBIOS_DEVICE_NOT_FOUND;	shift = (where & 3) * 8;	mask = (size - 1) * 8;	addr = (pci_addr << 5) + mask + LCA_CONF;	*value = conf_read(addr) >> (shift);	return PCIBIOS_SUCCESSFUL;}static int lca_write_config(struct pci_bus *bus, unsigned int devfn, int where, int size,		 u32 value){	unsigned long addr, pci_addr;	long mask;	if (mk_conf_addr(bus, devfn, where, &pci_addr))		return PCIBIOS_DEVICE_NOT_FOUND;	mask = (size - 1) * 8;	addr = (pci_addr << 5) + mask + LCA_CONF;	conf_write(addr, value << ((where & 3) * 8));	return PCIBIOS_SUCCESSFUL;}struct pci_ops lca_pci_ops = {	.read =		lca_read_config,	.write =	lca_write_config,};voidlca_pci_tbi(struct pci_controller *hose, dma_addr_t start, dma_addr_t end){	wmb();	*(vulp)LCA_IOC_TBIA = 0;	mb();}void __initlca_init_arch(void){	struct pci_controller *hose;	/*	 * Create our single hose.	 */	pci_isa_hose = hose = alloc_pci_controller();	hose->io_space = &ioport_resource;	hose->mem_space = &iomem_resource;	hose->index = 0;	hose->sparse_mem_base = LCA_SPARSE_MEM - IDENT_ADDR;	hose->dense_mem_base = LCA_DENSE_MEM - IDENT_ADDR;	hose->sparse_io_base = LCA_IO - IDENT_ADDR;	hose->dense_io_base = 0;	/*	 * Set up the PCI to main memory translation windows.	 *	 * Mimic the SRM settings for the direct-map window.	 *   Window 0 is scatter-gather 8MB at 8MB (for isa).	 *   Window 1 is direct access 1GB at 1GB.	 *	 * Note that we do not try to save any of the DMA window CSRs	 * before setting them, since we cannot read those CSRs on LCA.	 */	hose->sg_isa = iommu_arena_new(hose, 0x00800000, 0x00800000, 0);	hose->sg_pci = NULL;	__direct_map_base = 0x40000000;	__direct_map_size = 0x40000000;	*(vulp)LCA_IOC_W_BASE0 = hose->sg_isa->dma_base | (3UL << 32);	*(vulp)LCA_IOC_W_MASK0 = (hose->sg_isa->size - 1) & 0xfff00000;	*(vulp)LCA_IOC_T_BASE0 = virt_to_phys(hose->sg_isa->ptes);	*(vulp)LCA_IOC_W_BASE1 = __direct_map_base | (2UL << 32);	*(vulp)LCA_IOC_W_MASK1 = (__direct_map_size - 1) & 0xfff00000;	*(vulp)LCA_IOC_T_BASE1 = 0;	*(vulp)LCA_IOC_TB_ENA = 0x80;	lca_pci_tbi(hose, 0, -1);	/*	 * Disable PCI parity for now.  The NCR53c810 chip has	 * troubles meeting the PCI spec which results in	 * data parity errors.	 */	*(vulp)LCA_IOC_PAR_DIS = 1UL<<5;	/*	 * Finally, set up for restoring the correct HAE if using SRM.	 * Again, since we cannot read many of the CSRs on the LCA,	 * one of which happens to be the HAE, we save the value that	 * the SRM will expect...	 */	if (alpha_using_srm)		srm_hae = 0x80000000UL;}/* * Constants used during machine-check handling.  I suppose these * could be moved into lca.h but I don't see much reason why anybody * else would want to use them. */#define ESR_EAV		(1UL<< 0)	/* error address valid */#define ESR_CEE		(1UL<< 1)	/* correctable error */#define ESR_UEE		(1UL<< 2)	/* uncorrectable error */#define ESR_WRE		(1UL<< 3)	/* write-error */#define ESR_SOR		(1UL<< 4)	/* error source */#define ESR_CTE		(1UL<< 7)	/* cache-tag error */#define ESR_MSE		(1UL<< 9)	/* multiple soft errors */#define ESR_MHE		(1UL<<10)	/* multiple hard errors */#define ESR_NXM		(1UL<<12)	/* non-existent memory */#define IOC_ERR		(  1<<4)	/* ioc logs an error */#define IOC_CMD_SHIFT	0#define IOC_CMD		(0xf<<IOC_CMD_SHIFT)#define IOC_CODE_SHIFT	8#define IOC_CODE	(0xf<<IOC_CODE_SHIFT)#define IOC_LOST	(  1<<5)#define IOC_P_NBR	((__u32) ~((1<<13) - 1))static voidmem_error(unsigned long esr, unsigned long ear){	printk("    %s %s error to %s occurred at address %x\n",	       ((esr & ESR_CEE) ? "Correctable" :		(esr & ESR_UEE) ? "Uncorrectable" : "A"),	       (esr & ESR_WRE) ? "write" : "read",	       (esr & ESR_SOR) ? "memory" : "b-cache",	       (unsigned) (ear & 0x1ffffff8));	if (esr & ESR_CTE) {		printk("    A b-cache tag parity error was detected.\n");	}	if (esr & ESR_MSE) {		printk("    Several other correctable errors occurred.\n");	}	if (esr & ESR_MHE) {		printk("    Several other uncorrectable errors occurred.\n");	}	if (esr & ESR_NXM) {		printk("    Attempted to access non-existent memory.\n");	}}static voidioc_error(__u32 stat0, __u32 stat1){	static const char * const pci_cmd[] = {		"Interrupt Acknowledge", "Special", "I/O Read", "I/O Write",		"Rsvd 1", "Rsvd 2", "Memory Read", "Memory Write", "Rsvd3",		"Rsvd4", "Configuration Read", "Configuration Write",		"Memory Read Multiple", "Dual Address", "Memory Read Line",		"Memory Write and Invalidate"	};	static const char * const err_name[] = {		"exceeded retry limit", "no device", "bad data parity",		"target abort", "bad address parity", "page table read error",		"invalid page", "data error"	};
 |