| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 | /* *	linux/arch/alpha/kernel/core_titan.c * * Code common to all TITAN core logic chips. */#define __EXTERN_INLINE inline#include <asm/io.h>#include <asm/core_titan.h>#undef __EXTERN_INLINE#include <linux/module.h>#include <linux/types.h>#include <linux/pci.h>#include <linux/sched.h>#include <linux/init.h>#include <linux/vmalloc.h>#include <linux/bootmem.h>#include <asm/ptrace.h>#include <asm/smp.h>#include <asm/pgalloc.h>#include <asm/tlbflush.h>#include <asm/vga.h>#include "proto.h"#include "pci_impl.h"/* Save Titan configuration data as the console had it set up.  */struct{	unsigned long wsba[4];	unsigned long wsm[4];	unsigned long tba[4];} saved_config[4] __attribute__((common));/* * Is PChip 1 present? No need to query it more than once. */static int titan_pchip1_present;/* * BIOS32-style PCI interface: */#define DEBUG_CONFIG 0#if DEBUG_CONFIG# define DBG_CFG(args)	printk args#else# define DBG_CFG(args)#endif/* * Routines to access TIG registers. */static inline volatile unsigned long *mk_tig_addr(int offset){	return (volatile unsigned long *)(TITAN_TIG_SPACE + (offset << 6));}static inline u8 titan_read_tig(int offset, u8 value){	volatile unsigned long *tig_addr = mk_tig_addr(offset);	return (u8)(*tig_addr & 0xff);}static inline void titan_write_tig(int offset, u8 value){	volatile unsigned long *tig_addr = mk_tig_addr(offset);	*tig_addr = (unsigned long)value;}/* * Given a bus, device, and function number, compute resulting * configuration space address * 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. * * Note that all config space accesses use Type 1 address format. * * Note also that type 1 is determined by non-zero bus 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 char *type1){	struct pci_controller *hose = pbus->sysdata;	unsigned long addr;	u8 bus = pbus->number;	DBG_CFG(("mk_conf_addr(bus=%d ,device_fn=0x%x, where=0x%x, "		 "pci_addr=0x%p, type1=0x%p)\n",		 bus, device_fn, where, pci_addr, type1));	if (!pbus->parent) /* No parent means peer PCI bus. */		bus = 0;        *type1 = (bus != 0);        addr = (bus << 16) | (device_fn << 8) | where;	addr |= hose->config_space_base;			*pci_addr = addr;	DBG_CFG(("mk_conf_addr: returning pci_addr 0x%lx\n", addr));	return 0;}static inttitan_read_config(struct pci_bus *bus, unsigned int devfn, int where,		  int size, u32 *value){	unsigned long addr;	unsigned char type1;	if (mk_conf_addr(bus, devfn, where, &addr, &type1))		return PCIBIOS_DEVICE_NOT_FOUND;	switch (size) {	case 1:		*value = __kernel_ldbu(*(vucp)addr);		break;	case 2:		*value = __kernel_ldwu(*(vusp)addr);		break;	case 4:		*value = *(vuip)addr;		break;	}	return PCIBIOS_SUCCESSFUL;}static int titan_write_config(struct pci_bus *bus, unsigned int devfn, int where,		   int size, u32 value){	unsigned long addr;	unsigned char type1;	if (mk_conf_addr(bus, devfn, where, &addr, &type1))		return PCIBIOS_DEVICE_NOT_FOUND;	switch (size) {	case 1:		__kernel_stb(value, *(vucp)addr);		mb();		__kernel_ldbu(*(vucp)addr);		break;	case 2:		__kernel_stw(value, *(vusp)addr);		mb();		__kernel_ldwu(*(vusp)addr);		break;	case 4:		*(vuip)addr = value;		mb();		*(vuip)addr;		break;	}	return PCIBIOS_SUCCESSFUL;}struct pci_ops titan_pci_ops = {	.read =		titan_read_config,	.write =	titan_write_config,};voidtitan_pci_tbi(struct pci_controller *hose, dma_addr_t start, dma_addr_t end){	titan_pachip *pachip = 	  (hose->index & 1) ? TITAN_pachip1 : TITAN_pachip0;	titan_pachip_port *port;	volatile unsigned long *csr;	unsigned long value;	/* Get the right hose.  */	port = &pachip->g_port;	if (hose->index & 2) 		port = &pachip->a_port;	/* We can invalidate up to 8 tlb entries in a go.  The flush	   matches against <31:16> in the pci address.  	   Note that gtlbi* and atlbi* are in the same place in the g_port	   and a_port, respectively, so the g_port offset can be used	   even if hose is an a_port */	csr = &port->port_specific.g.gtlbia.csr;	if (((start ^ end) & 0xffff0000) == 0)		csr = &port->port_specific.g.gtlbiv.csr;	/* For TBIA, it doesn't matter what value we write.  For TBI, 	   it's the shifted tag bits.  */	value = (start & 0xffff0000) >> 12;	wmb();	*csr = value;	mb();	*csr;}static inttitan_query_agp(titan_pachip_port *port){	union TPAchipPCTL pctl;	/* set up APCTL */	pctl.pctl_q_whole = port->pctl.csr;	return pctl.pctl_r_bits.apctl_v_agp_present;}static void __inittitan_init_one_pachip_port(titan_pachip_port *port, int index){	struct pci_controller *hose;	hose = alloc_pci_controller();	if (index == 0)		pci_isa_hose = hose;	hose->io_space = alloc_resource();	hose->mem_space = alloc_resource();	/*	 * This is for userland consumption.  The 40-bit PIO bias that we 	 * use in the kernel through KSEG doesn't work in the page table 	 * based user mappings. (43-bit KSEG sign extends the physical	 * address from bit 40 to hit the I/O bit - mapped addresses don't).	 * So make sure we get the 43-bit PIO bias.  	 */	hose->sparse_mem_base = 0;	hose->sparse_io_base = 0;	hose->dense_mem_base	  = (TITAN_MEM(index) & 0xffffffffffUL) | 0x80000000000UL;	hose->dense_io_base	  = (TITAN_IO(index) & 0xffffffffffUL) | 0x80000000000UL;	hose->config_space_base = TITAN_CONF(index);	hose->index = index;	hose->io_space->start = TITAN_IO(index) - TITAN_IO_BIAS;	hose->io_space->end = hose->io_space->start + TITAN_IO_SPACE - 1;	hose->io_space->name = pci_io_names[index];	hose->io_space->flags = IORESOURCE_IO;	hose->mem_space->start = TITAN_MEM(index) - TITAN_MEM_BIAS;	hose->mem_space->end = hose->mem_space->start + 0xffffffff;	hose->mem_space->name = pci_mem_names[index];	hose->mem_space->flags = IORESOURCE_MEM;	if (request_resource(&ioport_resource, hose->io_space) < 0)		printk(KERN_ERR "Failed to request IO on hose %d\n", index);	if (request_resource(&iomem_resource, hose->mem_space) < 0)		printk(KERN_ERR "Failed to request MEM on hose %d\n", index);	/*	 * Save the existing PCI window translations.  SRM will 	 * need them when we go to reboot.	 */	saved_config[index].wsba[0] = port->wsba[0].csr;	saved_config[index].wsm[0]  = port->wsm[0].csr;	saved_config[index].tba[0]  = port->tba[0].csr;	saved_config[index].wsba[1] = port->wsba[1].csr;	saved_config[index].wsm[1]  = port->wsm[1].csr;	saved_config[index].tba[1]  = port->tba[1].csr;	saved_config[index].wsba[2] = port->wsba[2].csr;	saved_config[index].wsm[2]  = port->wsm[2].csr;	saved_config[index].tba[2]  = port->tba[2].csr;	saved_config[index].wsba[3] = port->wsba[3].csr;	saved_config[index].wsm[3]  = port->wsm[3].csr;	saved_config[index].tba[3]  = port->tba[3].csr;	/*	 * Set up the PCI to main memory translation windows.	 *	 * Note: Window 3 on Titan is Scatter-Gather ONLY.	 *	 * Window 0 is scatter-gather 8MB at 8MB (for isa)	 * Window 1 is direct access 1GB at 2GB	 * Window 2 is scatter-gather 1GB at 3GB	 */	hose->sg_isa = iommu_arena_new(hose, 0x00800000, 0x00800000, 0);	hose->sg_isa->align_entry = 8; /* 64KB for ISA */	hose->sg_pci = iommu_arena_new(hose, 0xc0000000, 0x40000000, 0);	hose->sg_pci->align_entry = 4; /* Titan caches 4 PTEs at a time */	port->wsba[0].csr = hose->sg_isa->dma_base | 3;	port->wsm[0].csr  = (hose->sg_isa->size - 1) & 0xfff00000;	port->tba[0].csr  = virt_to_phys(hose->sg_isa->ptes);	port->wsba[1].csr = __direct_map_base | 1;	port->wsm[1].csr  = (__direct_map_size - 1) & 0xfff00000;	port->tba[1].csr  = 0;	port->wsba[2].csr = hose->sg_pci->dma_base | 3;	port->wsm[2].csr  = (hose->sg_pci->size - 1) & 0xfff00000;	port->tba[2].csr  = virt_to_phys(hose->sg_pci->ptes);	port->wsba[3].csr = 0;	/* Enable the Monster Window to make DAC pci64 possible.  */	port->pctl.csr |= pctl_m_mwin;	/*	 * If it's an AGP port, initialize agplastwr.	 */	if (titan_query_agp(port)) 		port->port_specific.a.agplastwr.csr = __direct_map_base;	titan_pci_tbi(hose, 0, -1);}static void __inittitan_init_pachips(titan_pachip *pachip0, titan_pachip *pachip1){	titan_pchip1_present = TITAN_cchip->csc.csr & 1L<<14;	/* Init the ports in hose order... */	titan_init_one_pachip_port(&pachip0->g_port, 0);	/* hose 0 */	if (titan_pchip1_present)		titan_init_one_pachip_port(&pachip1->g_port, 1);/* hose 1 */	titan_init_one_pachip_port(&pachip0->a_port, 2);	/* hose 2 */	if (titan_pchip1_present)		titan_init_one_pachip_port(&pachip1->a_port, 3);/* hose 3 */}void __inittitan_init_arch(void){#if 0	printk("%s: titan_init_arch()\n", __func__);	printk("%s: CChip registers:\n", __func__);	printk("%s: CSR_CSC 0x%lx\n", __func__, TITAN_cchip->csc.csr);	printk("%s: CSR_MTR 0x%lx\n", __func__, TITAN_cchip->mtr.csr);	printk("%s: CSR_MISC 0x%lx\n", __func__, TITAN_cchip->misc.csr);	printk("%s: CSR_DIM0 0x%lx\n", __func__, TITAN_cchip->dim0.csr);	printk("%s: CSR_DIM1 0x%lx\n", __func__, TITAN_cchip->dim1.csr);	printk("%s: CSR_DIR0 0x%lx\n", __func__, TITAN_cchip->dir0.csr);	printk("%s: CSR_DIR1 0x%lx\n", __func__, TITAN_cchip->dir1.csr);	printk("%s: CSR_DRIR 0x%lx\n", __func__, TITAN_cchip->drir.csr);	printk("%s: DChip registers:\n", __func__);	printk("%s: CSR_DSC 0x%lx\n", __func__, TITAN_dchip->dsc.csr);	printk("%s: CSR_STR 0x%lx\n", __func__, TITAN_dchip->str.csr);	printk("%s: CSR_DREV 0x%lx\n", __func__, TITAN_dchip->drev.csr);#endif	boot_cpuid = __hard_smp_processor_id();	/* With multiple PCI busses, we play with I/O as physical addrs.  */	ioport_resource.end = ~0UL;	iomem_resource.end = ~0UL;	/* PCI DMA Direct Mapping is 1GB at 2GB.  */	__direct_map_base = 0x80000000;	__direct_map_size = 0x40000000;	/* Init the PA chip(s).  */	titan_init_pachips(TITAN_pachip0, TITAN_pachip1);	/* Check for graphic console location (if any).  */	find_console_vga_hose();}static voidtitan_kill_one_pachip_port(titan_pachip_port *port, int index){	port->wsba[0].csr = saved_config[index].wsba[0];	port->wsm[0].csr  = saved_config[index].wsm[0];	port->tba[0].csr  = saved_config[index].tba[0];	port->wsba[1].csr = saved_config[index].wsba[1];	port->wsm[1].csr  = saved_config[index].wsm[1];	port->tba[1].csr  = saved_config[index].tba[1];	port->wsba[2].csr = saved_config[index].wsba[2];	port->wsm[2].csr  = saved_config[index].wsm[2];	port->tba[2].csr  = saved_config[index].tba[2];	port->wsba[3].csr = saved_config[index].wsba[3];	port->wsm[3].csr  = saved_config[index].wsm[3];	port->tba[3].csr  = saved_config[index].tba[3];}static voidtitan_kill_pachips(titan_pachip *pachip0, titan_pachip *pachip1){	if (titan_pchip1_present) {		titan_kill_one_pachip_port(&pachip1->g_port, 1);		titan_kill_one_pachip_port(&pachip1->a_port, 3);	}	titan_kill_one_pachip_port(&pachip0->g_port, 0);	titan_kill_one_pachip_port(&pachip0->a_port, 2);}voidtitan_kill_arch(int mode){	titan_kill_pachips(TITAN_pachip0, TITAN_pachip1);}/* * IO map support. */void __iomem *titan_ioportmap(unsigned long addr){	FIXUP_IOADDR_VGA(addr);	return (void __iomem *)(addr + TITAN_IO_BIAS);}void __iomem *titan_ioremap(unsigned long addr, unsigned long size){	int h = (addr & TITAN_HOSE_MASK) >> TITAN_HOSE_SHIFT;	unsigned long baddr = addr & ~TITAN_HOSE_MASK;	unsigned long last = baddr + size - 1;	struct pci_controller *hose;		struct vm_struct *area;	unsigned long vaddr;	unsigned long *ptes;	unsigned long pfn;	/*	 * Adjust the address and hose, if necessary.	 */ 	if (pci_vga_hose && __is_mem_vga(addr)) {		h = pci_vga_hose->index;		addr += pci_vga_hose->mem_space->start;	}	/*	 * Find the hose.	 */	for (hose = hose_head; hose; hose = hose->next)		if (hose->index == h)			break;	if (!hose)
 |