123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- /*
- * linux/arch/alpha/kernel/core_irongate.c
- *
- * Based on code written by David A. Rusling (david.rusling@reo.mts.dec.com).
- *
- * Copyright (C) 1999 Alpha Processor, Inc.,
- * (David Daniel, Stig Telfer, Soohoon Lee)
- *
- * Code common to all IRONGATE core logic chips.
- */
- #define __EXTERN_INLINE inline
- #include <asm/io.h>
- #include <asm/core_irongate.h>
- #undef __EXTERN_INLINE
- #include <linux/types.h>
- #include <linux/pci.h>
- #include <linux/sched.h>
- #include <linux/init.h>
- #include <linux/initrd.h>
- #include <linux/bootmem.h>
- #include <asm/ptrace.h>
- #include <asm/pci.h>
- #include <asm/cacheflush.h>
- #include <asm/tlbflush.h>
- #include "proto.h"
- #include "pci_impl.h"
- /*
- * BIOS32-style PCI interface:
- */
- #define DEBUG_CONFIG 0
- #if DEBUG_CONFIG
- # define DBG_CFG(args) printk args
- #else
- # define DBG_CFG(args)
- #endif
- igcsr32 *IronECC;
- /*
- * 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.
- *
- * addr[31:24] reserved
- * addr[23:16] bus number (8 bits = 128 possible buses)
- * addr[15:11] Device number (5 bits)
- * addr[10: 8] function number
- * addr[ 7: 2] register number
- *
- * For IRONGATE:
- * if (bus = addr[23:16]) == 0
- * then
- * type 0 config cycle:
- * addr_on_pci[31:11] = id selection for device = addr[15:11]
- * addr_on_pci[10: 2] = addr[10: 2] ???
- * addr_on_pci[ 1: 0] = 00
- * else
- * type 1 config cycle (pass on with no decoding):
- * addr_on_pci[31:24] = 0
- * addr_on_pci[23: 2] = addr[23: 2]
- * addr_on_pci[ 1: 0] = 01
- * fi
- *
- * 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 int
- mk_conf_addr(struct pci_bus *pbus, unsigned int device_fn, int where,
- unsigned long *pci_addr, unsigned char *type1)
- {
- 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));
- *type1 = (bus != 0);
- addr = (bus << 16) | (device_fn << 8) | where;
- addr |= IRONGATE_CONF;
- *pci_addr = addr;
- DBG_CFG(("mk_conf_addr: returning pci_addr 0x%lx\n", addr));
- return 0;
- }
- static int
- irongate_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
- irongate_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 irongate_pci_ops =
- {
- .read = irongate_read_config,
- .write = irongate_write_config,
- };
- int
- irongate_pci_clr_err(void)
- {
- unsigned int nmi_ctl=0;
- unsigned int IRONGATE_jd;
- again:
- IRONGATE_jd = IRONGATE0->stat_cmd;
- printk("Iron stat_cmd %x\n", IRONGATE_jd);
- IRONGATE0->stat_cmd = IRONGATE_jd; /* write again clears error bits */
- mb();
- IRONGATE_jd = IRONGATE0->stat_cmd; /* re-read to force write */
- IRONGATE_jd = *IronECC;
- printk("Iron ECC %x\n", IRONGATE_jd);
- *IronECC = IRONGATE_jd; /* write again clears error bits */
- mb();
- IRONGATE_jd = *IronECC; /* re-read to force write */
- /* Clear ALI NMI */
- nmi_ctl = inb(0x61);
- nmi_ctl |= 0x0c;
- outb(nmi_ctl, 0x61);
- nmi_ctl &= ~0x0c;
- outb(nmi_ctl, 0x61);
- IRONGATE_jd = *IronECC;
- if (IRONGATE_jd & 0x300) goto again;
- return 0;
- }
- #define IRONGATE_3GB 0xc0000000UL
- /* On Albacore (aka UP1500) with 4Gb of RAM we have to reserve some
- memory for PCI. At this point we just reserve memory above 3Gb. Most
- of this memory will be freed after PCI setup is done. */
- static void __init
- albacore_init_arch(void)
- {
- unsigned long memtop = max_low_pfn << PAGE_SHIFT;
- unsigned long pci_mem = (memtop + 0x1000000UL) & ~0xffffffUL;
- struct percpu_struct *cpu;
- int pal_rev, pal_var;
- cpu = (struct percpu_struct*)((char*)hwrpb + hwrpb->processor_offset);
- pal_rev = cpu->pal_revision & 0xffff;
- pal_var = (cpu->pal_revision >> 16) & 0xff;
- /* Consoles earlier than A5.6-18 (OSF PALcode v1.62-2) set up
- the CPU incorrectly (leave speculative stores enabled),
- which causes memory corruption under certain conditions.
- Issue a warning for such consoles. */
- if (alpha_using_srm &&
- (pal_rev < 0x13e || (pal_rev == 0x13e && pal_var < 2)))
- printk(KERN_WARNING "WARNING! Upgrade to SRM A5.6-19 "
- "or later\n");
- if (pci_mem > IRONGATE_3GB)
- pci_mem = IRONGATE_3GB;
- IRONGATE0->pci_mem = pci_mem;
- alpha_mv.min_mem_address = pci_mem;
- if (memtop > pci_mem) {
- #ifdef CONFIG_BLK_DEV_INITRD
- extern unsigned long initrd_start, initrd_end;
- extern void *move_initrd(unsigned long);
- /* Move the initrd out of the way. */
- if (initrd_end && __pa(initrd_end) > pci_mem) {
- unsigned long size;
- size = initrd_end - initrd_start;
- free_bootmem_node(NODE_DATA(0), __pa(initrd_start),
- PAGE_ALIGN(size));
- if (!move_initrd(pci_mem))
- printk("irongate_init_arch: initrd too big "
- "(%ldK)\ndisabling initrd\n",
- size / 1024);
- }
- #endif
- reserve_bootmem_node(NODE_DATA(0), pci_mem, memtop -
- pci_mem, BOOTMEM_DEFAULT);
- printk("irongate_init_arch: temporarily reserving "
- "region %08lx-%08lx for PCI\n", pci_mem, memtop - 1);
- }
- }
- static void __init
- irongate_setup_agp(void)
- {
- /* Disable the GART window. AGPGART doesn't work due to yet
- unresolved memory coherency issues... */
- IRONGATE0->agpva = IRONGATE0->agpva & ~0xf;
- alpha_agpgart_size = 0;
- }
- void __init
- irongate_init_arch(void)
- {
- struct pci_controller *hose;
- int amd761 = (IRONGATE0->dev_vendor >> 16) > 0x7006; /* Albacore? */
|