memoryDefinitionSynchronousData.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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/pci.h>
  23. #include <asm/cacheflush.h>
  24. #include <asm/tlbflush.h>
  25. #include "proto.h"
  26. #include "pci_impl.h"
  27. /*
  28. * BIOS32-style PCI interface:
  29. */
  30. #define DEBUG_CONFIG 0
  31. #if DEBUG_CONFIG
  32. # define DBG_CFG(args) printk args
  33. #else
  34. # define DBG_CFG(args)
  35. #endif
  36. igcsr32 *IronECC;
  37. /*
  38. * Given a bus, device, and function number, compute resulting
  39. * configuration space address accordingly. It is therefore not safe
  40. * to have concurrent invocations to configuration space access
  41. * routines, but there really shouldn't be any need for this.
  42. *
  43. * addr[31:24] reserved
  44. * addr[23:16] bus number (8 bits = 128 possible buses)
  45. * addr[15:11] Device number (5 bits)
  46. * addr[10: 8] function number
  47. * addr[ 7: 2] register number
  48. *
  49. * For IRONGATE:
  50. * if (bus = addr[23:16]) == 0
  51. * then
  52. * type 0 config cycle:
  53. * addr_on_pci[31:11] = id selection for device = addr[15:11]
  54. * addr_on_pci[10: 2] = addr[10: 2] ???
  55. * addr_on_pci[ 1: 0] = 00
  56. * else
  57. * type 1 config cycle (pass on with no decoding):
  58. * addr_on_pci[31:24] = 0
  59. * addr_on_pci[23: 2] = addr[23: 2]
  60. * addr_on_pci[ 1: 0] = 01
  61. * fi
  62. *
  63. * Notes:
  64. * The function number selects which function of a multi-function device
  65. * (e.g., SCSI and Ethernet).
  66. *
  67. * The register selects a DWORD (32 bit) register offset. Hence it
  68. * doesn't get shifted by 2 bits as we want to "drop" the bottom two
  69. * bits.
  70. */
  71. static int
  72. mk_conf_addr(struct pci_bus *pbus, unsigned int device_fn, int where,
  73. unsigned long *pci_addr, unsigned char *type1)
  74. {
  75. unsigned long addr;
  76. u8 bus = pbus->number;
  77. DBG_CFG(("mk_conf_addr(bus=%d ,device_fn=0x%x, where=0x%x, "
  78. "pci_addr=0x%p, type1=0x%p)\n",
  79. bus, device_fn, where, pci_addr, type1));
  80. *type1 = (bus != 0);
  81. addr = (bus << 16) | (device_fn << 8) | where;
  82. addr |= IRONGATE_CONF;
  83. *pci_addr = addr;
  84. DBG_CFG(("mk_conf_addr: returning pci_addr 0x%lx\n", addr));
  85. return 0;
  86. }
  87. static int
  88. irongate_read_config(struct pci_bus *bus, unsigned int devfn, int where,
  89. int size, u32 *value)
  90. {
  91. unsigned long addr;
  92. unsigned char type1;
  93. if (mk_conf_addr(bus, devfn, where, &addr, &type1))
  94. return PCIBIOS_DEVICE_NOT_FOUND;
  95. switch (size) {
  96. case 1:
  97. *value = __kernel_ldbu(*(vucp)addr);
  98. break;
  99. case 2:
  100. *value = __kernel_ldwu(*(vusp)addr);
  101. break;
  102. case 4:
  103. *value = *(vuip)addr;
  104. break;
  105. }
  106. return PCIBIOS_SUCCESSFUL;
  107. }
  108. static int
  109. irongate_write_config(struct pci_bus *bus, unsigned int devfn, int where,
  110. int size, u32 value)
  111. {
  112. unsigned long addr;
  113. unsigned char type1;
  114. if (mk_conf_addr(bus, devfn, where, &addr, &type1))
  115. return PCIBIOS_DEVICE_NOT_FOUND;
  116. switch (size) {
  117. case 1:
  118. __kernel_stb(value, *(vucp)addr);
  119. mb();
  120. __kernel_ldbu(*(vucp)addr);
  121. break;
  122. case 2:
  123. __kernel_stw(value, *(vusp)addr);
  124. mb();
  125. __kernel_ldwu(*(vusp)addr);
  126. break;
  127. case 4:
  128. *(vuip)addr = value;
  129. mb();
  130. *(vuip)addr;
  131. break;
  132. }
  133. return PCIBIOS_SUCCESSFUL;
  134. }
  135. struct pci_ops irongate_pci_ops =
  136. {
  137. .read = irongate_read_config,
  138. .write = irongate_write_config,
  139. };
  140. int
  141. irongate_pci_clr_err(void)
  142. {
  143. unsigned int nmi_ctl=0;
  144. unsigned int IRONGATE_jd;
  145. again:
  146. IRONGATE_jd = IRONGATE0->stat_cmd;
  147. printk("Iron stat_cmd %x\n", IRONGATE_jd);
  148. IRONGATE0->stat_cmd = IRONGATE_jd; /* write again clears error bits */
  149. mb();
  150. IRONGATE_jd = IRONGATE0->stat_cmd; /* re-read to force write */
  151. IRONGATE_jd = *IronECC;
  152. printk("Iron ECC %x\n", IRONGATE_jd);
  153. *IronECC = IRONGATE_jd; /* write again clears error bits */
  154. mb();
  155. IRONGATE_jd = *IronECC; /* re-read to force write */
  156. /* Clear ALI NMI */
  157. nmi_ctl = inb(0x61);
  158. nmi_ctl |= 0x0c;
  159. outb(nmi_ctl, 0x61);
  160. nmi_ctl &= ~0x0c;
  161. outb(nmi_ctl, 0x61);
  162. IRONGATE_jd = *IronECC;
  163. if (IRONGATE_jd & 0x300) goto again;
  164. return 0;
  165. }
  166. #define IRONGATE_3GB 0xc0000000UL
  167. /* On Albacore (aka UP1500) with 4Gb of RAM we have to reserve some
  168. memory for PCI. At this point we just reserve memory above 3Gb. Most
  169. of this memory will be freed after PCI setup is done. */
  170. static void __init
  171. albacore_init_arch(void)
  172. {
  173. unsigned long memtop = max_low_pfn << PAGE_SHIFT;
  174. unsigned long pci_mem = (memtop + 0x1000000UL) & ~0xffffffUL;
  175. struct percpu_struct *cpu;
  176. int pal_rev, pal_var;
  177. cpu = (struct percpu_struct*)((char*)hwrpb + hwrpb->processor_offset);
  178. pal_rev = cpu->pal_revision & 0xffff;
  179. pal_var = (cpu->pal_revision >> 16) & 0xff;
  180. /* Consoles earlier than A5.6-18 (OSF PALcode v1.62-2) set up
  181. the CPU incorrectly (leave speculative stores enabled),
  182. which causes memory corruption under certain conditions.
  183. Issue a warning for such consoles. */
  184. if (alpha_using_srm &&
  185. (pal_rev < 0x13e || (pal_rev == 0x13e && pal_var < 2)))
  186. printk(KERN_WARNING "WARNING! Upgrade to SRM A5.6-19 "
  187. "or later\n");
  188. if (pci_mem > IRONGATE_3GB)
  189. pci_mem = IRONGATE_3GB;
  190. IRONGATE0->pci_mem = pci_mem;
  191. alpha_mv.min_mem_address = pci_mem;
  192. if (memtop > pci_mem) {
  193. #ifdef CONFIG_BLK_DEV_INITRD
  194. extern unsigned long initrd_start, initrd_end;
  195. extern void *move_initrd(unsigned long);
  196. /* Move the initrd out of the way. */
  197. if (initrd_end && __pa(initrd_end) > pci_mem) {
  198. unsigned long size;
  199. size = initrd_end - initrd_start;
  200. free_bootmem_node(NODE_DATA(0), __pa(initrd_start),
  201. PAGE_ALIGN(size));
  202. if (!move_initrd(pci_mem))
  203. printk("irongate_init_arch: initrd too big "
  204. "(%ldK)\ndisabling initrd\n",
  205. size / 1024);
  206. }
  207. #endif
  208. reserve_bootmem_node(NODE_DATA(0), pci_mem, memtop -
  209. pci_mem, BOOTMEM_DEFAULT);
  210. printk("irongate_init_arch: temporarily reserving "
  211. "region %08lx-%08lx for PCI\n", pci_mem, memtop - 1);
  212. }
  213. }
  214. static void __init
  215. irongate_setup_agp(void)
  216. {
  217. /* Disable the GART window. AGPGART doesn't work due to yet
  218. unresolved memory coherency issues... */
  219. IRONGATE0->agpva = IRONGATE0->agpva & ~0xf;
  220. alpha_agpgart_size = 0;
  221. }
  222. void __init
  223. irongate_init_arch(void)
  224. {
  225. struct pci_controller *hose;
  226. int amd761 = (IRONGATE0->dev_vendor >> 16) > 0x7006; /* Albacore? */