dec21285.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/kernel/dec21285.c: PCI functions for DC21285
  3.  *
  4.  *  Copyright (C) 1998-2000 Russell King, Phil Blundell
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #include <linux/sched.h>
  11. #include <linux/kernel.h>
  12. #include <linux/pci.h>
  13. #include <linux/ptrace.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/mm.h>
  16. #include <linux/slab.h>
  17. #include <linux/init.h>
  18. #include <linux/ioport.h>
  19. #include <asm/io.h>
  20. #include <asm/irq.h>
  21. #include <asm/system.h>
  22. #include <asm/mach/pci.h>
  23. #include <asm/hardware/dec21285.h>
  24. #define MAX_SLOTS 21
  25. #define PCICMD_ERROR_BITS ((PCI_STATUS_DETECTED_PARITY | 
  26. PCI_STATUS_REC_MASTER_ABORT | 
  27. PCI_STATUS_REC_TARGET_ABORT | 
  28. PCI_STATUS_PARITY) << 16)
  29. extern int setup_arm_irq(int, struct irqaction *);
  30. extern void pcibios_report_status(u_int status_mask, int warn);
  31. extern void register_isa_ports(unsigned int, unsigned int, unsigned int);
  32. static unsigned long
  33. dc21285_base_address(struct pci_dev *dev)
  34. {
  35. unsigned long addr = 0;
  36. unsigned int devfn = dev->devfn;
  37. if (dev->bus->number == 0) {
  38. if (PCI_SLOT(devfn) == 0)
  39. /*
  40.  * For devfn 0, point at the 21285
  41.  */
  42. addr = ARMCSR_BASE;
  43. else {
  44. devfn -= 1 << 3;
  45. if (devfn < PCI_DEVFN(MAX_SLOTS, 0))
  46. addr = PCICFG0_BASE | 0xc00000 | (devfn << 8);
  47. }
  48. } else
  49. addr = PCICFG1_BASE | (dev->bus->number << 16) | (devfn << 8);
  50. return addr;
  51. }
  52. static int
  53. dc21285_read_config_byte(struct pci_dev *dev, int where, u8 *value)
  54. {
  55. unsigned long addr = dc21285_base_address(dev);
  56. u8 v;
  57. if (addr)
  58. asm("ldr%?b %0, [%1, %2]"
  59. : "=r" (v) : "r" (addr), "r" (where));
  60. else
  61. v = 0xff;
  62. *value = v;
  63. return PCIBIOS_SUCCESSFUL;
  64. }
  65. static int
  66. dc21285_read_config_word(struct pci_dev *dev, int where, u16 *value)
  67. {
  68. unsigned long addr = dc21285_base_address(dev);
  69. u16 v;
  70. if (addr)
  71. asm("ldr%?h %0, [%1, %2]"
  72. : "=r" (v) : "r" (addr), "r" (where));
  73. else
  74. v = 0xffff;
  75. *value = v;
  76. return PCIBIOS_SUCCESSFUL;
  77. }
  78. static int
  79. dc21285_read_config_dword(struct pci_dev *dev, int where, u32 *value)
  80. {
  81. unsigned long addr = dc21285_base_address(dev);
  82. u32 v;
  83. if (addr)
  84. asm("ldr%? %0, [%1, %2]"
  85. : "=r" (v) : "r" (addr), "r" (where));
  86. else
  87. v = 0xffffffff;
  88. *value = v;
  89. return PCIBIOS_SUCCESSFUL;
  90. }
  91. static int
  92. dc21285_write_config_byte(struct pci_dev *dev, int where, u8 value)
  93. {
  94. unsigned long addr = dc21285_base_address(dev);
  95. if (addr)
  96. asm("str%?b %0, [%1, %2]"
  97. : : "r" (value), "r" (addr), "r" (where));
  98. return PCIBIOS_SUCCESSFUL;
  99. }
  100. static int
  101. dc21285_write_config_word(struct pci_dev *dev, int where, u16 value)
  102. {
  103. unsigned long addr = dc21285_base_address(dev);
  104. if (addr)
  105. asm("str%?h %0, [%1, %2]"
  106. : : "r" (value), "r" (addr), "r" (where));
  107. return PCIBIOS_SUCCESSFUL;
  108. }
  109. static int
  110. dc21285_write_config_dword(struct pci_dev *dev, int where, u32 value)
  111. {
  112. unsigned long addr = dc21285_base_address(dev);
  113. if (addr)
  114. asm("str%? %0, [%1, %2]"
  115. : : "r" (value), "r" (addr), "r" (where));
  116. return PCIBIOS_SUCCESSFUL;
  117. }
  118. static struct pci_ops dc21285_ops = {
  119. dc21285_read_config_byte,
  120. dc21285_read_config_word,
  121. dc21285_read_config_dword,
  122. dc21285_write_config_byte,
  123. dc21285_write_config_word,
  124. dc21285_write_config_dword,
  125. };
  126. static struct timer_list serr_timer;
  127. static struct timer_list perr_timer;
  128. static void dc21285_enable_error(unsigned long __data)
  129. {
  130. switch (__data) {
  131. case IRQ_PCI_SERR:
  132. del_timer(&serr_timer);
  133. break;
  134. case IRQ_PCI_PERR:
  135. del_timer(&perr_timer);
  136. break;
  137. }
  138. enable_irq(__data);
  139. }
  140. /*
  141.  * Warn on PCI errors.
  142.  */
  143. static void dc21285_abort_irq(int irq, void *dev_id, struct pt_regs *regs)
  144. {
  145. unsigned int cmd;
  146. unsigned int status;
  147. cmd = *CSR_PCICMD;
  148. status = cmd >> 16;
  149. cmd = cmd & 0xffff;
  150. if (status & PCI_STATUS_REC_MASTER_ABORT) {
  151. printk(KERN_DEBUG "PCI: master abort: ");
  152. pcibios_report_status(PCI_STATUS_REC_MASTER_ABORT, 1);
  153. printk("n");
  154. cmd |= PCI_STATUS_REC_MASTER_ABORT << 16;
  155. }
  156. if (status & PCI_STATUS_REC_TARGET_ABORT) {
  157. printk(KERN_DEBUG "PCI: target abort: ");
  158. pcibios_report_status(PCI_STATUS_SIG_TARGET_ABORT, 1);
  159. printk("n");
  160. cmd |= PCI_STATUS_REC_TARGET_ABORT << 16;
  161. }
  162. *CSR_PCICMD = cmd;
  163. }
  164. static void dc21285_serr_irq(int irq, void *dev_id, struct pt_regs *regs)
  165. {
  166. struct timer_list *timer = dev_id;
  167. unsigned int cntl;
  168. printk(KERN_DEBUG "PCI: system error received: ");
  169. pcibios_report_status(PCI_STATUS_SIG_SYSTEM_ERROR, 1);
  170. printk("n");
  171. cntl = *CSR_SA110_CNTL & 0xffffdf07;
  172. *CSR_SA110_CNTL = cntl | SA110_CNTL_RXSERR;
  173. /*
  174.  * back off this interrupt
  175.  */
  176. disable_irq(irq);
  177. timer->expires = jiffies + HZ;
  178. add_timer(timer);
  179. }
  180. static void dc21285_discard_irq(int irq, void *dev_id, struct pt_regs *regs)
  181. {
  182. printk(KERN_DEBUG "PCI: discard timer expiredn");
  183. *CSR_SA110_CNTL &= 0xffffde07;
  184. }
  185. static void dc21285_dparity_irq(int irq, void *dev_id, struct pt_regs *regs)
  186. {
  187. unsigned int cmd;
  188. printk(KERN_DEBUG "PCI: data parity error detected: ");
  189. pcibios_report_status(PCI_STATUS_PARITY | PCI_STATUS_DETECTED_PARITY, 1);
  190. printk("n");
  191. cmd = *CSR_PCICMD & 0xffff;
  192. *CSR_PCICMD = cmd | 1 << 24;
  193. }
  194. static void dc21285_parity_irq(int irq, void *dev_id, struct pt_regs *regs)
  195. {
  196. struct timer_list *timer = dev_id;
  197. unsigned int cmd;
  198. printk(KERN_DEBUG "PCI: parity error detected: ");
  199. pcibios_report_status(PCI_STATUS_PARITY | PCI_STATUS_DETECTED_PARITY, 1);
  200. printk("n");
  201. cmd = *CSR_PCICMD & 0xffff;
  202. *CSR_PCICMD = cmd | 1 << 31;
  203. /*
  204.  * back off this interrupt
  205.  */
  206. disable_irq(irq);
  207. timer->expires = jiffies + HZ;
  208. add_timer(timer);
  209. }
  210. void __init dc21285_setup_resources(struct resource **resource)
  211. {
  212. struct resource *busmem, *busmempf;
  213. busmem = kmalloc(sizeof(*busmem), GFP_KERNEL);
  214. busmempf = kmalloc(sizeof(*busmempf), GFP_KERNEL);
  215. memset(busmem, 0, sizeof(*busmem));
  216. memset(busmempf, 0, sizeof(*busmempf));
  217. busmem->flags = IORESOURCE_MEM;
  218. busmem->name  = "Footbridge non-prefetch";
  219. busmempf->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
  220. busmempf->name  = "Footbridge prefetch";
  221. allocate_resource(&iomem_resource, busmempf, 0x20000000,
  222.   0x80000000, 0xffffffff, 0x20000000, NULL, NULL);
  223. allocate_resource(&iomem_resource, busmem, 0x40000000,
  224.   0x80000000, 0xffffffff, 0x40000000, NULL, NULL);
  225. resource[0] = &ioport_resource;
  226. resource[1] = busmem;
  227. resource[2] = busmempf;
  228. }
  229. void __init dc21285_init(void *sysdata)
  230. {
  231. unsigned int mem_size, mem_mask;
  232. int cfn_mode;
  233. mem_size = (unsigned int)high_memory - PAGE_OFFSET;
  234. for (mem_mask = 0x00100000; mem_mask < 0x10000000; mem_mask <<= 1)
  235. if (mem_mask >= mem_size)
  236. break;
  237. /*
  238.  * These registers need to be set up whether we're the
  239.  * central function or not.
  240.  */
  241. *CSR_SDRAMBASEMASK    = (mem_mask - 1) & 0x0ffc0000;
  242. *CSR_SDRAMBASEOFFSET  = 0;
  243. *CSR_ROMBASEMASK      = 0x80000000;
  244. *CSR_CSRBASEMASK      = 0;
  245. *CSR_CSRBASEOFFSET    = 0;
  246. *CSR_PCIADDR_EXTN     = 0;
  247. cfn_mode = __footbridge_cfn_mode();
  248. printk(KERN_INFO "PCI: DC21285 footbridge, revision %02lX, in "
  249. "%s moden", *CSR_CLASSREV & 0xff, cfn_mode ?
  250. "central function" : "addin");
  251. if (cfn_mode) {
  252. static struct resource csrmem, csrio;
  253. csrio.flags  = IORESOURCE_IO;
  254. csrio.name   = "Footbridge";
  255. csrmem.flags = IORESOURCE_MEM;
  256. csrmem.name  = "Footbridge";
  257. allocate_resource(&ioport_resource, &csrio, 128,
  258.   0xff00, 0xffff, 128, NULL, NULL);
  259. allocate_resource(&iomem_resource, &csrmem, 128,
  260.   0xf4000000, 0xf8000000, 128, NULL, NULL);
  261. /*
  262.  * Map our SDRAM at a known address in PCI space, just in case
  263.  * the firmware had other ideas.  Using a nonzero base is
  264.  * necessary, since some VGA cards forcefully use PCI addresses
  265.  * in the range 0x000a0000 to 0x000c0000. (eg, S3 cards).
  266.  */
  267. *CSR_PCICSRBASE       = csrmem.start;
  268. *CSR_PCICSRIOBASE     = csrio.start;
  269. *CSR_PCISDRAMBASE     = __virt_to_bus(PAGE_OFFSET);
  270. *CSR_PCIROMBASE       = 0;
  271. *CSR_PCICMD = PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
  272.       PCI_COMMAND_INVALIDATE | PCICMD_ERROR_BITS;
  273. pci_scan_bus(0, &dc21285_ops, sysdata);
  274. /*
  275.  * Clear any existing errors - we aren't
  276.  * interested in historical data...
  277.  */
  278. *CSR_SA110_CNTL = (*CSR_SA110_CNTL & 0xffffde07) |
  279.   SA110_CNTL_RXSERR;
  280. *CSR_PCICMD = (*CSR_PCICMD & 0xffff) | PCICMD_ERROR_BITS;
  281. } else if (footbridge_cfn_mode() != 0) {
  282. /*
  283.  * If we are not compiled to accept "add-in" mode, then
  284.  * we are using a constant virt_to_bus translation which
  285.  * can not hope to cater for the way the host BIOS  has
  286.  * set up the machine.
  287.  */
  288. panic("PCI: this kernel is compiled for central "
  289. "function mode only");
  290. }
  291. /*
  292.  * Initialise PCI error IRQ after we've finished probing
  293.  */
  294. request_irq(IRQ_PCI_ABORT,     dc21285_abort_irq,   SA_INTERRUPT, "PCI abort",       NULL);
  295. request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, SA_INTERRUPT, "Discard timer",   NULL);
  296. request_irq(IRQ_PCI_DPERR,     dc21285_dparity_irq, SA_INTERRUPT, "PCI data parity", NULL);
  297. init_timer(&serr_timer);
  298. init_timer(&perr_timer);
  299. serr_timer.data = IRQ_PCI_SERR;
  300. serr_timer.function = dc21285_enable_error;
  301. perr_timer.data = IRQ_PCI_PERR;
  302. perr_timer.function = dc21285_enable_error;
  303. request_irq(IRQ_PCI_SERR, dc21285_serr_irq, SA_INTERRUPT,
  304.     "PCI system error", &serr_timer);
  305. request_irq(IRQ_PCI_PERR, dc21285_parity_irq, SA_INTERRUPT,
  306.     "PCI parity error", &perr_timer);
  307. register_isa_ports(DC21285_PCI_MEM, DC21285_PCI_IO, 0);
  308. }