core_irongate.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. /*
  2. * linux/arch/alpha/kernel/core_irongate.c
  3. *
  4. * Based on code written by David A. Rusling (david.rusling@reo.mts.dec.com).
  5. *
  6. * Copyright (C) 1999 Alpha Processor, Inc.,
  7. * (David Daniel, Stig Telfer, Soohoon Lee)
  8. *
  9. * Code common to all IRONGATE core logic chips.
  10. */
  11. #define __EXTERN_INLINE inline
  12. #include <asm/io.h>
  13. #include <asm/core_irongate.h>
  14. #undef __EXTERN_INLINE
  15. #include <linux/types.h>
  16. #include <linux/pci.h>
  17. #include <linux/sched.h>
  18. #include <linux/init.h>
  19. #include <linux/initrd.h>
  20. #include <linux/bootmem.h>
  21. #include <asm/ptrace.h>
  22. #include <asm/cacheflush.h>
  23. #include <asm/tlbflush.h>
  24. #include "proto.h"
  25. #include "pci_impl.h"
  26. /*
  27. * BIOS32-style PCI interface:
  28. */
  29. #define DEBUG_CONFIG 0
  30. #if DEBUG_CONFIG
  31. # define DBG_CFG(args) printk args
  32. #else
  33. # define DBG_CFG(args)
  34. #endif
  35. igcsr32 *IronECC;
  36. /*
  37. * Given a bus, device, and function number, compute resulting
  38. * configuration space address accordingly. It is therefore not safe
  39. * to have concurrent invocations to configuration space access
  40. * routines, but there really shouldn't be any need for this.
  41. *
  42. * addr[31:24] reserved
  43. * addr[23:16] bus number (8 bits = 128 possible buses)
  44. * addr[15:11] Device number (5 bits)
  45. * addr[10: 8] function number
  46. * addr[ 7: 2] register number
  47. *
  48. * For IRONGATE:
  49. * if (bus = addr[23:16]) == 0
  50. * then
  51. * type 0 config cycle:
  52. * addr_on_pci[31:11] = id selection for device = addr[15:11]
  53. * addr_on_pci[10: 2] = addr[10: 2] ???
  54. * addr_on_pci[ 1: 0] = 00
  55. * else
  56. * type 1 config cycle (pass on with no decoding):
  57. * addr_on_pci[31:24] = 0
  58. * addr_on_pci[23: 2] = addr[23: 2]
  59. * addr_on_pci[ 1: 0] = 01
  60. * fi
  61. *
  62. * Notes:
  63. * The function number selects which function of a multi-function device
  64. * (e.g., SCSI and Ethernet).
  65. *
  66. * The register selects a DWORD (32 bit) register offset. Hence it
  67. * doesn't get shifted by 2 bits as we want to "drop" the bottom two
  68. * bits.
  69. */
  70. static int
  71. mk_conf_addr(struct pci_bus *pbus, unsigned int device_fn, int where,
  72. unsigned long *pci_addr, unsigned char *type1)
  73. {
  74. unsigned long addr;
  75. u8 bus = pbus->number;
  76. DBG_CFG(("mk_conf_addr(bus=%d ,device_fn=0x%x, where=0x%x, "
  77. "pci_addr=0x%p, type1=0x%p)\n",
  78. bus, device_fn, where, pci_addr, type1));
  79. *type1 = (bus != 0);
  80. addr = (bus << 16) | (device_fn << 8) | where;
  81. addr |= IRONGATE_CONF;
  82. *pci_addr = addr;
  83. DBG_CFG(("mk_conf_addr: returning pci_addr 0x%lx\n", addr));
  84. return 0;
  85. }
  86. static int
  87. irongate_read_config(struct pci_bus *bus, unsigned int devfn, int where,
  88. int size, u32 *value)
  89. {
  90. unsigned long addr;
  91. unsigned char type1;
  92. if (mk_conf_addr(bus, devfn, where, &addr, &type1))
  93. return PCIBIOS_DEVICE_NOT_FOUND;
  94. switch (size) {
  95. case 1:
  96. *value = __kernel_ldbu(*(vucp)addr);
  97. break;
  98. case 2:
  99. *value = __kernel_ldwu(*(vusp)addr);
  100. break;
  101. case 4:
  102. *value = *(vuip)addr;
  103. break;
  104. }
  105. return PCIBIOS_SUCCESSFUL;
  106. }
  107. static int
  108. irongate_write_config(struct pci_bus *bus, unsigned int devfn, int where,
  109. int size, u32 value)
  110. {
  111. unsigned long addr;
  112. unsigned char type1;
  113. if (mk_conf_addr(bus, devfn, where, &addr, &type1))
  114. return PCIBIOS_DEVICE_NOT_FOUND;
  115. switch (size) {
  116. case 1:
  117. __kernel_stb(value, *(vucp)addr);
  118. mb();
  119. __kernel_ldbu(*(vucp)addr);
  120. break;
  121. case 2:
  122. __kernel_stw(value, *(vusp)addr);
  123. mb();
  124. __kernel_ldwu(*(vusp)addr);
  125. break;
  126. case 4:
  127. *(vuip)addr = value;
  128. mb();
  129. *(vuip)addr;
  130. break;
  131. }
  132. return PCIBIOS_SUCCESSFUL;
  133. }
  134. struct pci_ops irongate_pci_ops =
  135. {
  136. .read = irongate_read_config,
  137. .write = irongate_write_config,
  138. };
  139. int
  140. irongate_pci_clr_err(void)
  141. {
  142. unsigned int nmi_ctl=0;
  143. unsigned int IRONGATE_jd;
  144. again:
  145. IRONGATE_jd = IRONGATE0->stat_cmd;
  146. printk("Iron stat_cmd %x\n", IRONGATE_jd);
  147. IRONGATE0->stat_cmd = IRONGATE_jd; /* write again clears error bits */
  148. mb();
  149. IRONGATE_jd = IRONGATE0->stat_cmd; /* re-read to force write */
  150. IRONGATE_jd = *IronECC;
  151. printk("Iron ECC %x\n", IRONGATE_jd);
  152. *IronECC = IRONGATE_jd; /* write again clears error bits */
  153. mb();
  154. IRONGATE_jd = *IronECC; /* re-read to force write */
  155. /* Clear ALI NMI */
  156. nmi_ctl = inb(0x61);
  157. nmi_ctl |= 0x0c;
  158. outb(nmi_ctl, 0x61);
  159. nmi_ctl &= ~0x0c;
  160. outb(nmi_ctl, 0x61);
  161. IRONGATE_jd = *IronECC;
  162. if (IRONGATE_jd & 0x300) goto again;
  163. return 0;
  164. }
  165. #define IRONGATE_3GB 0xc0000000UL
  166. /* On Albacore (aka UP1500) with 4Gb of RAM we have to reserve some
  167. memory for PCI. At this point we just reserve memory above 3Gb. Most
  168. of this memory will be freed after PCI setup is done. */
  169. static void __init
  170. albacore_init_arch(void)
  171. {
  172. unsigned long memtop = max_low_pfn << PAGE_SHIFT;
  173. unsigned long pci_mem = (memtop + 0x1000000UL) & ~0xffffffUL;
  174. struct percpu_struct *cpu;
  175. int pal_rev, pal_var;
  176. cpu = (struct percpu_struct*)((char*)hwrpb + hwrpb->processor_offset);
  177. pal_rev = cpu->pal_revision & 0xffff;
  178. pal_var = (cpu->pal_revision >> 16) & 0xff;
  179. /* Consoles earlier than A5.6-18 (OSF PALcode v1.62-2) set up
  180. the CPU incorrectly (leave speculative stores enabled),
  181. which causes memory corruption under certain conditions.
  182. Issue a warning for such consoles. */
  183. if (alpha_using_srm &&
  184. (pal_rev < 0x13e || (pal_rev == 0x13e && pal_var < 2)))
  185. printk(KERN_WARNING "WARNING! Upgrade to SRM A5.6-19 "
  186. "or later\n");
  187. if (pci_mem > IRONGATE_3GB)
  188. pci_mem = IRONGATE_3GB;
  189. IRONGATE0->pci_mem = pci_mem;
  190. alpha_mv.min_mem_address = pci_mem;
  191. if (memtop > pci_mem) {
  192. #ifdef CONFIG_BLK_DEV_INITRD
  193. extern unsigned long initrd_start, initrd_end;
  194. extern void *move_initrd(unsigned long);
  195. /* Move the initrd out of the way. */
  196. if (initrd_end && __pa(initrd_end) > pci_mem) {
  197. unsigned long size;
  198. size = initrd_end - initrd_start;
  199. free_bootmem_node(NODE_DATA(0), __pa(initrd_start),
  200. PAGE_ALIGN(size));
  201. if (!move_initrd(pci_mem))
  202. printk("irongate_init_arch: initrd too big "
  203. "(%ldK)\ndisabling initrd\n",
  204. size / 1024);
  205. }
  206. #endif
  207. reserve_bootmem_node(NODE_DATA(0), pci_mem, memtop -
  208. pci_mem, BOOTMEM_DEFAULT);
  209. printk("irongate_init_arch: temporarily reserving "
  210. "region %08lx-%08lx for PCI\n", pci_mem, memtop - 1);
  211. }
  212. }
  213. static void __init
  214. irongate_setup_agp(void)
  215. {
  216. /* Disable the GART window. AGPGART doesn't work due to yet
  217. unresolved memory coherency issues... */
  218. IRONGATE0->agpva = IRONGATE0->agpva & ~0xf;
  219. alpha_agpgart_size = 0;
  220. }
  221. void __init
  222. irongate_init_arch(void)
  223. {
  224. struct pci_controller *hose;
  225. int amd761 = (IRONGATE0->dev_vendor >> 16) > 0x7006; /* Albacore? */
  226. IronECC = amd761 ? &IRONGATE0->bacsr54_eccms761 : &IRONGATE0->dramms;
  227. irongate_pci_clr_err();
  228. if (amd761)
  229. albacore_init_arch();
  230. irongate_setup_agp();
  231. /*
  232. * Create our single hose.
  233. */
  234. pci_isa_hose = hose = alloc_pci_controller();
  235. hose->io_space = &ioport_resource;
  236. hose->mem_space = &iomem_resource;
  237. hose->index = 0;
  238. /* This is for userland consumption. For some reason, the 40-bit
  239. PIO bias that we use in the kernel through KSEG didn't work for
  240. the page table based user mappings. So make sure we get the
  241. 43-bit PIO bias. */
  242. hose->sparse_mem_base = 0;
  243. hose->sparse_io_base = 0;
  244. hose->dense_mem_base
  245. = (IRONGATE_MEM & 0xffffffffffUL) | 0x80000000000UL;
  246. hose->dense_io_base
  247. = (IRONGATE_IO & 0xffffffffffUL) | 0x80000000000UL;
  248. hose->sg_isa = hose->sg_pci = NULL;
  249. __direct_map_base = 0;
  250. __direct_map_size = 0xffffffff;
  251. }
  252. /*
  253. * IO map and AGP support
  254. */
  255. #include <linux/vmalloc.h>
  256. #include <linux/agp_backend.h>
  257. #include <linux/agpgart.h>
  258. #include <linux/export.h>
  259. #include <asm/pgalloc.h>
  260. #define GET_PAGE_DIR_OFF(addr) (addr >> 22)
  261. #define GET_PAGE_DIR_IDX(addr) (GET_PAGE_DIR_OFF(addr))
  262. #define GET_GATT_OFF(addr) ((addr & 0x003ff000) >> 12)
  263. #define GET_GATT(addr) (gatt_pages[GET_PAGE_DIR_IDX(addr)])
  264. void __iomem *
  265. irongate_ioremap(unsigned long addr, unsigned long size)
  266. {
  267. struct vm_struct *area;
  268. unsigned long vaddr;
  269. unsigned long baddr, last;
  270. u32 *mmio_regs, *gatt_pages, *cur_gatt, pte;
  271. unsigned long gart_bus_addr;
  272. if (!alpha_agpgart_size)
  273. return (void __iomem *)(addr + IRONGATE_MEM);
  274. gart_bus_addr = (unsigned long)IRONGATE0->bar0 &
  275. PCI_BASE_ADDRESS_MEM_MASK;
  276. /*
  277. * Check for within the AGP aperture...
  278. */
  279. do {
  280. /*
  281. * Check the AGP area
  282. */
  283. if (addr >= gart_bus_addr && addr + size - 1 <
  284. gart_bus_addr + alpha_agpgart_size)
  285. break;
  286. /*
  287. * Not found - assume legacy ioremap
  288. */
  289. return (void __iomem *)(addr + IRONGATE_MEM);
  290. } while(0);
  291. mmio_regs = (u32 *)(((unsigned long)IRONGATE0->bar1 &
  292. PCI_BASE_ADDRESS_MEM_MASK) + IRONGATE_MEM);
  293. gatt_pages = (u32 *)(phys_to_virt(mmio_regs[1])); /* FIXME */
  294. /*
  295. * Adjust the limits (mappings must be page aligned)
  296. */
  297. if (addr & ~PAGE_MASK) {
  298. printk("AGP ioremap failed... addr not page aligned (0x%lx)\n",
  299. addr);
  300. return (void __iomem *)(addr + IRONGATE_MEM);
  301. }
  302. last = addr + size - 1;
  303. size = PAGE_ALIGN(last) - addr;
  304. #if 0
  305. printk("irongate_ioremap(0x%lx, 0x%lx)\n", addr, size);
  306. printk("irongate_ioremap: gart_bus_addr 0x%lx\n", gart_bus_addr);
  307. printk("irongate_ioremap: gart_aper_size 0x%lx\n", gart_aper_size);
  308. printk("irongate_ioremap: mmio_regs %p\n", mmio_regs);
  309. printk("irongate_ioremap: gatt_pages %p\n", gatt_pages);
  310. for(baddr = addr; baddr <= last; baddr += PAGE_SIZE)
  311. {
  312. cur_gatt = phys_to_virt(GET_GATT(baddr) & ~1);
  313. pte = cur_gatt[GET_GATT_OFF(baddr)] & ~1;
  314. printk("irongate_ioremap: cur_gatt %p pte 0x%x\n",
  315. cur_gatt, pte);
  316. }
  317. #endif
  318. /*
  319. * Map it
  320. */
  321. area = get_vm_area(size, VM_IOREMAP);
  322. if (!area) return NULL;
  323. for(baddr = addr, vaddr = (unsigned long)area->addr;
  324. baddr <= last;
  325. baddr += PAGE_SIZE, vaddr += PAGE_SIZE)
  326. {
  327. cur_gatt = phys_to_virt(GET_GATT(baddr) & ~1);
  328. pte = cur_gatt[GET_GATT_OFF(baddr)] & ~1;
  329. if (__alpha_remap_area_pages(vaddr,
  330. pte, PAGE_SIZE, 0)) {
  331. printk("AGP ioremap: FAILED to map...\n");
  332. vfree(area->addr);
  333. return NULL;
  334. }
  335. }
  336. flush_tlb_all();
  337. vaddr = (unsigned long)area->addr + (addr & ~PAGE_MASK);
  338. #if 0
  339. printk("irongate_ioremap(0x%lx, 0x%lx) returning 0x%lx\n",
  340. addr, size, vaddr);
  341. #endif
  342. return (void __iomem *)vaddr;
  343. }
  344. EXPORT_SYMBOL(irongate_ioremap);
  345. void
  346. irongate_iounmap(volatile void __iomem *xaddr)
  347. {
  348. unsigned long addr = (unsigned long) xaddr;
  349. if (((long)addr >> 41) == -2)
  350. return; /* kseg map, nothing to do */
  351. if (addr)
  352. return vfree((void *)(PAGE_MASK & addr));
  353. }
  354. EXPORT_SYMBOL(irongate_iounmap);