ebus.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: ebus.c,v 1.18.2.2 2002/01/05 01:12:31 davem Exp $
  2.  * ebus.c: PCI to EBus bridge device.
  3.  *
  4.  * Copyright (C) 1997  Eddie C. Dost  (ecd@skynet.be)
  5.  *
  6.  * Adopted for sparc by V. Roganov and G. Raiko.
  7.  * Fixes for different platforms by Pete Zaitcev.
  8.  */
  9. #include <linux/config.h>
  10. #include <linux/kernel.h>
  11. #include <linux/types.h>
  12. #include <linux/init.h>
  13. #include <linux/slab.h>
  14. #include <linux/string.h>
  15. #include <asm/system.h>
  16. #include <asm/page.h>
  17. #include <asm/pbm.h>
  18. #include <asm/ebus.h>
  19. #include <asm/io.h>
  20. #include <asm/oplib.h>
  21. #include <asm/bpp.h>
  22. struct linux_ebus *ebus_chain = 0;
  23. #ifdef CONFIG_SUN_AUXIO
  24. extern void auxio_probe(void);
  25. #endif
  26. extern void rs_init(void);
  27. /* We are together with pcic.c under CONFIG_PCI. */
  28. extern unsigned int pcic_pin_to_irq(unsigned int, char *name);
  29. /*
  30.  * IRQ Blacklist
  31.  * Here we list PROMs and systems that are known to supply crap as IRQ numbers.
  32.  */
  33. struct ebus_device_irq {
  34. char *name;
  35. unsigned int pin;
  36. };
  37. struct ebus_system_entry {
  38. char *esname;
  39. struct ebus_device_irq *ipt;
  40. };
  41. static struct ebus_device_irq je1_1[] = {
  42. { "8042",  3 },
  43. { "SUNW,CS4231",  0 },
  44. { "parallel",  0 },
  45. { "se",  2 },
  46. { 0, 0 }
  47. };
  48. /*
  49.  * Gleb's JE1 supplied reasonable pin numbers, but mine did not (OBP 2.32).
  50.  * Blacklist the sucker... Note that Gleb's system will work.
  51.  */
  52. static struct ebus_system_entry ebus_blacklist[] = {
  53. { "SUNW,JavaEngine1", je1_1 },
  54. { 0, 0 }
  55. };
  56. static struct ebus_device_irq *ebus_blackp = NULL;
  57. /*
  58.  */
  59. static inline unsigned long ebus_alloc(size_t size)
  60. {
  61. return (unsigned long)kmalloc(size, GFP_ATOMIC);
  62. }
  63. /*
  64.  */
  65. int __init ebus_blacklist_irq(char *name)
  66. {
  67. struct ebus_device_irq *dp;
  68. if ((dp = ebus_blackp) != NULL) {
  69. for (; dp->name != NULL; dp++) {
  70. if (strcmp(name, dp->name) == 0) {
  71. return pcic_pin_to_irq(dp->pin, name);
  72. }
  73. }
  74. }
  75. return 0;
  76. }
  77. void __init fill_ebus_child(int node, struct linux_prom_registers *preg,
  78. struct linux_ebus_child *dev)
  79. {
  80. int regs[PROMREG_MAX];
  81. int irqs[PROMREG_MAX];
  82. char lbuf[128];
  83. int i, len;
  84. dev->prom_node = node;
  85. prom_getstring(node, "name", lbuf, sizeof(lbuf));
  86. strcpy(dev->prom_name, lbuf);
  87. len = prom_getproperty(node, "reg", (void *)regs, sizeof(regs));
  88. if (len == -1) len = 0;
  89. dev->num_addrs = len / sizeof(regs[0]);
  90. for (i = 0; i < dev->num_addrs; i++) {
  91. if (regs[i] >= dev->parent->num_addrs) {
  92. prom_printf("UGH: property for %s was %d, need < %dn",
  93.     dev->prom_name, len, dev->parent->num_addrs);
  94. panic(__FUNCTION__);
  95. }
  96. dev->resource[i].start = dev->parent->resource[regs[i]].start; /* XXX resource */
  97. }
  98. for (i = 0; i < PROMINTR_MAX; i++)
  99. dev->irqs[i] = PCI_IRQ_NONE;
  100. if ((dev->irqs[0] = ebus_blacklist_irq(dev->prom_name)) != 0) {
  101. dev->num_irqs = 1;
  102. } else if ((len = prom_getproperty(node, "interrupts",
  103.     (char *)&irqs, sizeof(irqs))) == -1 || len == 0) {
  104. dev->num_irqs = 0;
  105. dev->irqs[0] = 0;
  106. if (dev->parent->num_irqs != 0) {
  107. dev->num_irqs = 1;
  108. dev->irqs[0] = dev->parent->irqs[0];
  109. /* P3 */ /* printk("EBUS: dev %s irq %d from parentn", dev->prom_name, dev->irqs[0]); */
  110. }
  111. } else {
  112. dev->num_irqs = len / sizeof(irqs[0]);
  113. if (irqs[0] == 0 || irqs[0] >= 8) {
  114. /*
  115.  * XXX Zero is a valid pin number...
  116.  * This works as long as Ebus is not wired to INTA#.
  117.  */
  118. printk("EBUS: %s got bad irq %d from PROMn",
  119.     dev->prom_name, irqs[0]);
  120. dev->num_irqs = 0;
  121. dev->irqs[0] = 0;
  122. } else {
  123. dev->irqs[0] = pcic_pin_to_irq(irqs[0], dev->prom_name);
  124. }
  125. }
  126. }
  127. void __init fill_ebus_device(int node, struct linux_ebus_device *dev)
  128. {
  129. struct linux_prom_registers regs[PROMREG_MAX];
  130. struct linux_ebus_child *child;
  131. int irqs[PROMINTR_MAX];
  132. char lbuf[128];
  133. int i, n, len;
  134. unsigned long baseaddr;
  135. dev->prom_node = node;
  136. prom_getstring(node, "name", lbuf, sizeof(lbuf));
  137. strcpy(dev->prom_name, lbuf);
  138. len = prom_getproperty(node, "reg", (void *)regs, sizeof(regs));
  139. if (len % sizeof(struct linux_prom_registers)) {
  140. prom_printf("UGH: proplen for %s was %d, need multiple of %dn",
  141.     dev->prom_name, len,
  142.     (int)sizeof(struct linux_prom_registers));
  143. panic(__FUNCTION__);
  144. }
  145. dev->num_addrs = len / sizeof(struct linux_prom_registers);
  146. for (i = 0; i < dev->num_addrs; i++) {
  147. /*
  148.  * XXX Collect JE-1 PROM
  149.  * 
  150.  * Example - JS-E with 3.11:
  151.  *  /ebus
  152.  *      regs 
  153.  *        0x00000000, 0x0, 0x00000000, 0x0, 0x00000000,
  154.  *        0x82000010, 0x0, 0xf0000000, 0x0, 0x01000000,
  155.  *        0x82000014, 0x0, 0x38800000, 0x0, 0x00800000,
  156.  *      ranges
  157.  *        0x00, 0x00000000, 0x02000010, 0x0, 0x0, 0x01000000,
  158.  *        0x01, 0x01000000, 0x02000014, 0x0, 0x0, 0x00800000,
  159.  *  /ebus/8042
  160.  *      regs
  161.  *        0x00000001, 0x00300060, 0x00000008,
  162.  *        0x00000001, 0x00300060, 0x00000008,
  163.  */
  164. n = regs[i].which_io;
  165. if (n >= 4) {
  166. /* XXX This is copied from old JE-1 by Gleb. */
  167. n = (regs[i].which_io - 0x10) >> 2;
  168. } else {
  169. ;
  170. }
  171. /*
  172.  * XXX Now as we have regions, why don't we make an on-demand allocation...
  173.  */
  174. dev->resource[i].start = 0;
  175. if ((baseaddr = dev->bus->self->resource[n].start +
  176.     regs[i].phys_addr) != 0) {
  177. /* dev->resource[i].name = dev->prom_name; */
  178. if ((baseaddr = (unsigned long) ioremap(baseaddr,
  179.     regs[i].reg_size)) == 0) {
  180. panic("ebus: unable to remap dev %s",
  181.     dev->prom_name);
  182. }
  183. }
  184. dev->resource[i].start = baseaddr; /* XXX Unaligned */
  185. }
  186. for (i = 0; i < PROMINTR_MAX; i++)
  187. dev->irqs[i] = PCI_IRQ_NONE;
  188. if ((dev->irqs[0] = ebus_blacklist_irq(dev->prom_name)) != 0) {
  189. dev->num_irqs = 1;
  190. } else if ((len = prom_getproperty(node, "interrupts",
  191.     (char *)&irqs, sizeof(irqs))) == -1 || len == 0) {
  192. dev->num_irqs = 0;
  193. if ((dev->irqs[0] = dev->bus->self->irq) != 0) {
  194.  dev->num_irqs = 1;
  195. /* P3 */ /* printk("EBUS: child %s irq %d from parentn", dev->prom_name, dev->irqs[0]); */
  196. }
  197. } else {
  198. dev->num_irqs = 1;  /* dev->num_irqs = len / sizeof(irqs[0]); */
  199. if (irqs[0] == 0 || irqs[0] >= 8) {
  200. /* See above for the parent. XXX */
  201. printk("EBUS: %s got bad irq %d from PROMn",
  202.     dev->prom_name, irqs[0]);
  203. dev->num_irqs = 0;
  204. dev->irqs[0] = 0;
  205. } else {
  206. dev->irqs[0] = pcic_pin_to_irq(irqs[0], dev->prom_name);
  207. }
  208. }
  209. if ((node = prom_getchild(node))) {
  210. dev->children = (struct linux_ebus_child *)
  211. ebus_alloc(sizeof(struct linux_ebus_child));
  212. child = dev->children;
  213. child->next = 0;
  214. child->parent = dev;
  215. child->bus = dev->bus;
  216. fill_ebus_child(node, &regs[0], child);
  217. while ((node = prom_getsibling(node))) {
  218. child->next = (struct linux_ebus_child *)
  219. ebus_alloc(sizeof(struct linux_ebus_child));
  220. child = child->next;
  221. child->next = 0;
  222. child->parent = dev;
  223. child->bus = dev->bus;
  224. fill_ebus_child(node, &regs[0], child);
  225. }
  226. }
  227. }
  228. void __init ebus_init(void)
  229. {
  230. struct linux_prom_pci_registers regs[PROMREG_MAX];
  231. struct linux_pbm_info *pbm;
  232. struct linux_ebus_device *dev;
  233. struct linux_ebus *ebus;
  234. struct ebus_system_entry *sp;
  235. struct pci_dev *pdev;
  236. struct pcidev_cookie *cookie;
  237. char lbuf[128];
  238. unsigned long addr, *base;
  239. unsigned short pci_command;
  240. int nd, len, ebusnd;
  241. int reg, nreg;
  242. int num_ebus = 0;
  243. if (!pci_present())
  244. return;
  245. prom_getstring(prom_root_node, "name", lbuf, sizeof(lbuf));
  246. for (sp = ebus_blacklist; sp->esname != NULL; sp++) {
  247. if (strcmp(lbuf, sp->esname) == 0) {
  248. ebus_blackp = sp->ipt;
  249. break;
  250. }
  251. }
  252. pdev = pci_find_device(PCI_VENDOR_ID_SUN, PCI_DEVICE_ID_SUN_EBUS, 0);
  253. if (!pdev) {
  254. return;
  255. }
  256. cookie = pdev->sysdata;
  257. ebusnd = cookie->prom_node;
  258. ebus_chain = ebus = (struct linux_ebus *)
  259. ebus_alloc(sizeof(struct linux_ebus));
  260. ebus->next = 0;
  261. while (ebusnd) {
  262. prom_getstring(ebusnd, "name", lbuf, sizeof(lbuf));
  263. ebus->prom_node = ebusnd;
  264. strcpy(ebus->prom_name, lbuf);
  265. ebus->self = pdev;
  266. ebus->parent = pbm = cookie->pbm;
  267. /* Enable BUS Master. */
  268. pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
  269. pci_command |= PCI_COMMAND_MASTER;
  270. pci_write_config_word(pdev, PCI_COMMAND, pci_command);
  271. len = prom_getproperty(ebusnd, "reg", (void *)regs,
  272.        sizeof(regs));
  273. if (len == 0 || len == -1) {
  274. prom_printf("%s: can't find reg propertyn",
  275.     __FUNCTION__);
  276. prom_halt();
  277. }
  278. nreg = len / sizeof(struct linux_prom_pci_registers);
  279. base = &ebus->self->resource[0].start;
  280. for (reg = 0; reg < nreg; reg++) {
  281. if (!(regs[reg].which_io & 0x03000000))
  282. continue;
  283. addr = regs[reg].phys_lo;
  284. *base++ = addr;
  285. }
  286. nd = prom_getchild(ebusnd);
  287. if (!nd)
  288. goto next_ebus;
  289. ebus->devices = (struct linux_ebus_device *)
  290. ebus_alloc(sizeof(struct linux_ebus_device));
  291. dev = ebus->devices;
  292. dev->next = 0;
  293. dev->children = 0;
  294. dev->bus = ebus;
  295. fill_ebus_device(nd, dev);
  296. while ((nd = prom_getsibling(nd))) {
  297. dev->next = (struct linux_ebus_device *)
  298. ebus_alloc(sizeof(struct linux_ebus_device));
  299. dev = dev->next;
  300. dev->next = 0;
  301. dev->children = 0;
  302. dev->bus = ebus;
  303. fill_ebus_device(nd, dev);
  304. }
  305. next_ebus:
  306. pdev = pci_find_device(PCI_VENDOR_ID_SUN,
  307.        PCI_DEVICE_ID_SUN_EBUS, pdev);
  308. if (!pdev)
  309. break;
  310. cookie = pdev->sysdata;
  311. ebusnd = cookie->prom_node;
  312. ebus->next = (struct linux_ebus *)
  313. ebus_alloc(sizeof(struct linux_ebus));
  314. ebus = ebus->next;
  315. ebus->next = 0;
  316. ++num_ebus;
  317. }
  318. rs_init();
  319. #ifdef CONFIG_SUN_AUXIO
  320. auxio_probe();
  321. #endif
  322. }