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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/kernel/bios32.c
  3.  *
  4.  *  PCI bios-type initialisation for PCI machines
  5.  *
  6.  *  Bits taken from various places.
  7.  */
  8. #include <linux/config.h>
  9. #include <linux/kernel.h>
  10. #include <linux/pci.h>
  11. #include <linux/slab.h>
  12. #include <linux/init.h>
  13. #include <asm/page.h> /* for BUG() */
  14. #include <asm/irq.h>
  15. #include <asm/mach-types.h>
  16. #include <asm/mach/pci.h>
  17. static int debug_pci;
  18. int have_isa_bridge;
  19. struct pci_sys_data {
  20. /*
  21.  * The hardware we are attached to
  22.  */
  23. struct hw_pci *hw;
  24. unsigned long mem_offset;
  25. /*
  26.  * These are the resources for the root bus.
  27.  */
  28. struct resource *resource[3];
  29. };
  30. void pcibios_report_status(u_int status_mask, int warn)
  31. {
  32. struct pci_dev *dev;
  33. pci_for_each_dev(dev) {
  34. u16 status;
  35. /*
  36.  * ignore host bridge - we handle
  37.  * that separately
  38.  */
  39. if (dev->bus->number == 0 && dev->devfn == 0)
  40. continue;
  41. pci_read_config_word(dev, PCI_STATUS, &status);
  42. status &= status_mask;
  43. if (status == 0)
  44. continue;
  45. /* clear the status errors */
  46. pci_write_config_word(dev, PCI_STATUS, status);
  47. if (warn)
  48. printk("(%02x:%02x.%d: %04X) ", dev->bus->number,
  49. PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
  50. status);
  51. }
  52. }
  53. /*
  54.  * We don't use this to fix the device, but initialisation of it.
  55.  * It's not the correct use for this, but it works.
  56.  * Note that the arbiter/ISA bridge appears to be buggy, specifically in
  57.  * the following area:
  58.  * 1. park on CPU
  59.  * 2. ISA bridge ping-pong
  60.  * 3. ISA bridge master handling of target RETRY
  61.  *
  62.  * Bug 3 is responsible for the sound DMA grinding to a halt.  We now
  63.  * live with bug 2.
  64.  */
  65. static void __init pci_fixup_83c553(struct pci_dev *dev)
  66. {
  67. /*
  68.  * Set memory region to start at address 0, and enable IO
  69.  */
  70. pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, PCI_BASE_ADDRESS_SPACE_MEMORY);
  71. pci_write_config_word(dev, PCI_COMMAND, PCI_COMMAND_IO);
  72. dev->resource[0].end -= dev->resource[0].start;
  73. dev->resource[0].start = 0;
  74. /*
  75.  * All memory requests from ISA to be channelled to PCI
  76.  */
  77. pci_write_config_byte(dev, 0x48, 0xff);
  78. /*
  79.  * Enable ping-pong on bus master to ISA bridge transactions.
  80.  * This improves the sound DMA substantially.  The fixed
  81.  * priority arbiter also helps (see below).
  82.  */
  83. pci_write_config_byte(dev, 0x42, 0x01);
  84. /*
  85.  * Enable PCI retry
  86.  */
  87. pci_write_config_byte(dev, 0x40, 0x22);
  88. /*
  89.  * We used to set the arbiter to "park on last master" (bit
  90.  * 1 set), but unfortunately the CyberPro does not park the
  91.  * bus.  We must therefore park on CPU.  Unfortunately, this
  92.  * may trigger yet another bug in the 553.
  93.  */
  94. pci_write_config_byte(dev, 0x83, 0x02);
  95. /*
  96.  * Make the ISA DMA request lowest priority, and disable
  97.  * rotating priorities completely.
  98.  */
  99. pci_write_config_byte(dev, 0x80, 0x11);
  100. pci_write_config_byte(dev, 0x81, 0x00);
  101. /*
  102.  * Route INTA input to IRQ 11, and set IRQ11 to be level
  103.  * sensitive.
  104.  */
  105. pci_write_config_word(dev, 0x44, 0xb000);
  106. outb(0x08, 0x4d1);
  107. }
  108. static void __init pci_fixup_unassign(struct pci_dev *dev)
  109. {
  110. dev->resource[0].end -= dev->resource[0].start;
  111. dev->resource[0].start = 0;
  112. }
  113. /*
  114.  * Prevent the PCI layer from seeing the resources allocated to this device
  115.  * if it is the host bridge by marking it as such.  These resources are of
  116.  * no consequence to the PCI layer (they are handled elsewhere).
  117.  */
  118. static void __init pci_fixup_dec21285(struct pci_dev *dev)
  119. {
  120. int i;
  121. if (dev->devfn == 0) {
  122. dev->class &= 0xff;
  123. dev->class |= PCI_CLASS_BRIDGE_HOST << 8;
  124. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  125. dev->resource[i].start = 0;
  126. dev->resource[i].end   = 0;
  127. dev->resource[i].flags = 0;
  128. }
  129. }
  130. }
  131. /*
  132.  * PCI IDE controllers use non-standard I/O port decoding, respect it.
  133.  */
  134. static void __init pci_fixup_ide_bases(struct pci_dev *dev)
  135. {
  136. struct resource *r;
  137. int i;
  138. if ((dev->class >> 8) != PCI_CLASS_STORAGE_IDE)
  139. return;
  140. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  141. r = dev->resource + i;
  142. if ((r->start & ~0x80) == 0x374) {
  143. r->start |= 2;
  144. r->end = r->start;
  145. }
  146. }
  147. }
  148. /*
  149.  * Put the DEC21142 to sleep
  150.  */
  151. static void __init pci_fixup_dec21142(struct pci_dev *dev)
  152. {
  153. pci_write_config_dword(dev, 0x40, 0x80000000);
  154. }
  155. /*
  156.  * The CY82C693 needs some rather major fixups to ensure that it does
  157.  * the right thing.  Idea from the Alpha people, with a few additions.
  158.  *
  159.  * We ensure that the IDE base registers are set to 1f0/3f4 for the
  160.  * primary bus, and 170/374 for the secondary bus.  Also, hide them
  161.  * from the PCI subsystem view as well so we won't try to perform
  162.  * our own auto-configuration on them.
  163.  *
  164.  * In addition, we ensure that the PCI IDE interrupts are routed to
  165.  * IRQ 14 and IRQ 15 respectively.
  166.  *
  167.  * The above gets us to a point where the IDE on this device is
  168.  * functional.  However, The CY82C693U _does not work_ in bus
  169.  * master mode without locking the PCI bus solid.
  170.  */
  171. static void __init pci_fixup_cy82c693(struct pci_dev *dev)
  172. {
  173. if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE) {
  174. u32 base0, base1;
  175. if (dev->class & 0x80) { /* primary */
  176. base0 = 0x1f0;
  177. base1 = 0x3f4;
  178. } else { /* secondary */
  179. base0 = 0x170;
  180. base1 = 0x374;
  181. }
  182. pci_write_config_dword(dev, PCI_BASE_ADDRESS_0,
  183.        base0 | PCI_BASE_ADDRESS_SPACE_IO);
  184. pci_write_config_dword(dev, PCI_BASE_ADDRESS_1,
  185.        base1 | PCI_BASE_ADDRESS_SPACE_IO);
  186. dev->resource[0].start = 0;
  187. dev->resource[0].end   = 0;
  188. dev->resource[0].flags = 0;
  189. dev->resource[1].start = 0;
  190. dev->resource[1].end   = 0;
  191. dev->resource[1].flags = 0;
  192. } else if (PCI_FUNC(dev->devfn) == 0) {
  193. /*
  194.  * Setup IDE IRQ routing.
  195.  */
  196. pci_write_config_byte(dev, 0x4b, 14);
  197. pci_write_config_byte(dev, 0x4c, 15);
  198. /*
  199.  * Disable FREQACK handshake, enable USB.
  200.  */
  201. pci_write_config_byte(dev, 0x4d, 0x41);
  202. /*
  203.  * Enable PCI retry, and PCI post-write buffer.
  204.  */
  205. pci_write_config_byte(dev, 0x44, 0x17);
  206. /*
  207.  * Enable ISA master and DMA post write buffering.
  208.  */
  209. pci_write_config_byte(dev, 0x45, 0x03);
  210. }
  211. }
  212. struct pci_fixup pcibios_fixups[] = {
  213. {
  214. PCI_FIXUP_HEADER,
  215. PCI_VENDOR_ID_CONTAQ, PCI_DEVICE_ID_CONTAQ_82C693,
  216. pci_fixup_cy82c693
  217. }, {
  218. PCI_FIXUP_HEADER,
  219. PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21142,
  220. pci_fixup_dec21142
  221. }, {
  222. PCI_FIXUP_HEADER,
  223. PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21285,
  224. pci_fixup_dec21285
  225. }, {
  226. PCI_FIXUP_HEADER,
  227. PCI_VENDOR_ID_WINBOND, PCI_DEVICE_ID_WINBOND_83C553,
  228. pci_fixup_83c553
  229. }, {
  230. PCI_FIXUP_HEADER,
  231. PCI_VENDOR_ID_WINBOND2, PCI_DEVICE_ID_WINBOND2_89C940F,
  232. pci_fixup_unassign
  233. }, {
  234. PCI_FIXUP_HEADER,
  235. PCI_ANY_ID, PCI_ANY_ID,
  236. pci_fixup_ide_bases
  237. }, { 0 }
  238. };
  239. void __init
  240. pcibios_update_resource(struct pci_dev *dev, struct resource *root,
  241. struct resource *res, int resource)
  242. {
  243. struct pci_sys_data *sys = dev->sysdata;
  244. u32 val, check;
  245. int reg;
  246. if (debug_pci)
  247. printk("PCI: Assigning %3s %08lx to %sn",
  248. res->flags & IORESOURCE_IO ? "IO" : "MEM",
  249. res->start, dev->name);
  250. if (resource < 6) {
  251. reg = PCI_BASE_ADDRESS_0 + 4*resource;
  252. } else if (resource == PCI_ROM_RESOURCE) {
  253. reg = dev->rom_base_reg;
  254. } else {
  255. /* Somebody might have asked allocation of a
  256.  * non-standard resource.
  257.  */
  258. return;
  259. }
  260. val = res->start;
  261. if (res->flags & IORESOURCE_MEM)
  262. val -= sys->mem_offset;
  263. val |= res->flags & PCI_REGION_FLAG_MASK;
  264. pci_write_config_dword(dev, reg, val);
  265. pci_read_config_dword(dev, reg, &check);
  266. if ((val ^ check) & ((val & PCI_BASE_ADDRESS_SPACE_IO) ?
  267.     PCI_BASE_ADDRESS_IO_MASK : PCI_BASE_ADDRESS_MEM_MASK)) {
  268. printk(KERN_ERR "PCI: Error while updating region "
  269. "%s/%d (%08x != %08x)n", dev->slot_name,
  270. resource, val, check);
  271. }
  272. }
  273. void __init pcibios_update_irq(struct pci_dev *dev, int irq)
  274. {
  275. if (debug_pci)
  276. printk("PCI: Assigning IRQ %02d to %sn", irq, dev->name);
  277. pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
  278. }
  279. /*
  280.  * If the bus contains any of these devices, then we must not turn on
  281.  * parity checking of any kind.  Currently this is CyberPro 20x0 only.
  282.  */
  283. static inline int pdev_bad_for_parity(struct pci_dev *dev)
  284. {
  285. return (dev->vendor == PCI_VENDOR_ID_INTERG &&
  286. (dev->device == PCI_DEVICE_ID_INTERG_2000 ||
  287.  dev->device == PCI_DEVICE_ID_INTERG_2010));
  288. }
  289. /*
  290.  * Adjust the device resources from bus-centric to Linux-centric.
  291.  */
  292. static void __init
  293. pdev_fixup_device_resources(struct pci_sys_data *root, struct pci_dev *dev)
  294. {
  295. int i;
  296. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  297. if (dev->resource[i].start == 0)
  298. continue;
  299. if (dev->resource[i].flags & IORESOURCE_MEM) {
  300. dev->resource[i].start += root->mem_offset;
  301. dev->resource[i].end   += root->mem_offset;
  302. }
  303. }
  304. }
  305. static void __init
  306. pbus_assign_bus_resources(struct pci_bus *bus, struct pci_sys_data *root)
  307. {
  308. struct pci_dev *dev = bus->self;
  309. int i;
  310. if (!dev) {
  311. /*
  312.  * Assign root bus resources.
  313.  */
  314. for (i = 0; i < 3; i++)
  315. bus->resource[i] = root->resource[i];
  316. }
  317. }
  318. /*
  319.  * pcibios_fixup_bus - Called after each bus is probed,
  320.  * but before its children are examined.
  321.  */
  322. void __init pcibios_fixup_bus(struct pci_bus *bus)
  323. {
  324. struct pci_sys_data *root = bus->sysdata;
  325. struct list_head *walk;
  326. u16 features = PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
  327. u16 all_status = -1;
  328. pbus_assign_bus_resources(bus, root);
  329. /*
  330.  * Walk the devices on this bus, working out what we can
  331.  * and can't support.
  332.  */
  333. for (walk = bus->devices.next; walk != &bus->devices; walk = walk->next) {
  334. struct pci_dev *dev = pci_dev_b(walk);
  335. u16 status;
  336. pdev_fixup_device_resources(root, dev);
  337. pci_read_config_word(dev, PCI_STATUS, &status);
  338. all_status &= status;
  339. if (pdev_bad_for_parity(dev))
  340. features &= ~(PCI_COMMAND_SERR | PCI_COMMAND_PARITY);
  341. /*
  342.  * If this device is an ISA bridge, set the have_isa_bridge
  343.  * flag.  We will then go looking for things like keyboard,
  344.  * etc
  345.  */
  346. if (dev->class >> 8 == PCI_CLASS_BRIDGE_ISA ||
  347.     dev->class >> 8 == PCI_CLASS_BRIDGE_EISA)
  348. have_isa_bridge = !0;
  349. }
  350. /*
  351.  * If any device on this bus does not support fast back to back
  352.  * transfers, then the bus as a whole is not able to support them.
  353.  * Having fast back to back transfers on saves us one PCI cycle
  354.  * per transaction.
  355.  */
  356. if (all_status & PCI_STATUS_FAST_BACK)
  357. features |= PCI_COMMAND_FAST_BACK;
  358. /*
  359.  * Now walk the devices again, this time setting them up.
  360.  */
  361. for (walk = bus->devices.next; walk != &bus->devices; walk = walk->next) {
  362. struct pci_dev *dev = pci_dev_b(walk);
  363. u16 cmd;
  364. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  365. cmd |= features;
  366. pci_write_config_word(dev, PCI_COMMAND, cmd);
  367. }
  368. /*
  369.  * Report what we did for this bus
  370.  */
  371. printk(KERN_INFO "PCI: bus%d: Fast back to back transfers %sabledn",
  372. bus->number, (features & PCI_COMMAND_FAST_BACK) ? "en" : "dis");
  373. }
  374. /*
  375.  * Convert from Linux-centric to bus-centric addresses for bridge devices.
  376.  */
  377. void __init
  378. pcibios_fixup_pbus_ranges(struct pci_bus *bus, struct pbus_set_ranges_data *ranges)
  379. {
  380. struct pci_sys_data *root = bus->sysdata;
  381. ranges->mem_start -= root->mem_offset;
  382. ranges->mem_end -= root->mem_offset;
  383. ranges->prefetch_start -= root->mem_offset;
  384. ranges->prefetch_end -= root->mem_offset;
  385. }
  386. u8 __init no_swizzle(struct pci_dev *dev, u8 *pin)
  387. {
  388. return 0;
  389. }
  390. extern struct hw_pci ebsa285_pci;
  391. extern struct hw_pci cats_pci;
  392. extern struct hw_pci netwinder_pci;
  393. extern struct hw_pci personal_server_pci;
  394. extern struct hw_pci ftv_pci;
  395. extern struct hw_pci shark_pci;
  396. extern struct hw_pci integrator_pci;
  397. void __init pcibios_init(void)
  398. {
  399. struct pci_sys_data *root;
  400. struct hw_pci *hw = NULL;
  401. do {
  402. #ifdef CONFIG_ARCH_EBSA285
  403. if (machine_is_ebsa285()) {
  404. hw = &ebsa285_pci;
  405. break;
  406. }
  407. #endif
  408. #ifdef CONFIG_ARCH_SHARK
  409. if (machine_is_shark()) {
  410. hw = &shark_pci;
  411. break;
  412. }
  413. #endif
  414. #ifdef CONFIG_ARCH_CATS
  415. if (machine_is_cats()) {
  416. hw = &cats_pci;
  417. break;
  418. }
  419. #endif
  420. #ifdef CONFIG_ARCH_NETWINDER
  421. if (machine_is_netwinder()) {
  422. hw = &netwinder_pci;
  423. break;
  424. }
  425. #endif
  426. #ifdef CONFIG_ARCH_PERSONAL_SERVER
  427. if (machine_is_personal_server()) {
  428. hw = &personal_server_pci;
  429. break;
  430. }
  431. #endif
  432. #ifdef CONFIG_ARCH_FTVPCI
  433. if (machine_is_ftvpci()) {
  434. hw = &ftv_pci;
  435. break;
  436. }
  437. #endif
  438. #ifdef CONFIG_ARCH_INTEGRATOR
  439. if (machine_is_integrator()) {
  440. hw = &integrator_pci;
  441. break;
  442. }
  443. #endif
  444. } while (0);
  445. if (hw == NULL)
  446. return;
  447. root = kmalloc(sizeof(*root), GFP_KERNEL);
  448. if (!root)
  449. panic("PCI: unable to allocate root data!");
  450. root->hw = hw;
  451. root->mem_offset = hw->mem_offset;
  452. memset(root->resource, 0, sizeof(root->resource));
  453. /*
  454.  * Setup the resources for this bus.
  455.  *   resource[0] - IO ports
  456.  *   resource[1] - non-prefetchable memory
  457.  *   resource[2] - prefetchable memory
  458.  */
  459. if (root->hw->setup_resources)
  460. root->hw->setup_resources(root->resource);
  461. else {
  462. root->resource[0] = &ioport_resource;
  463. root->resource[1] = &iomem_resource;
  464. root->resource[2] = NULL;
  465. }
  466. /*
  467.  * Set up the host bridge, and scan the bus.
  468.  */
  469. root->hw->init(root);
  470. /*
  471.  * Assign any unassigned resources.
  472.  */
  473. pci_assign_unassigned_resources();
  474. pci_fixup_irqs(root->hw->swizzle, root->hw->map_irq);
  475. }
  476. char * __init pcibios_setup(char *str)
  477. {
  478. if (!strcmp(str, "debug")) {
  479. debug_pci = 1;
  480. return NULL;
  481. }
  482. return str;
  483. }
  484. /*
  485.  * From arch/i386/kernel/pci-i386.c:
  486.  *
  487.  * We need to avoid collisions with `mirrored' VGA ports
  488.  * and other strange ISA hardware, so we always want the
  489.  * addresses to be allocated in the 0x000-0x0ff region
  490.  * modulo 0x400.
  491.  *
  492.  * Why? Because some silly external IO cards only decode
  493.  * the low 10 bits of the IO address. The 0x00-0xff region
  494.  * is reserved for motherboard devices that decode all 16
  495.  * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
  496.  * but we want to try to avoid allocating at 0x2900-0x2bff
  497.  * which might be mirrored at 0x0100-0x03ff..
  498.  */
  499. void pcibios_align_resource(void *data, struct resource *res,
  500.     unsigned long size, unsigned long align)
  501. {
  502. if (res->flags & IORESOURCE_IO) {
  503. unsigned long start = res->start;
  504. if (start & 0x300)
  505. res->start = (start + 0x3ff) & ~0x3ff;
  506. }
  507. }
  508. /**
  509.  * pcibios_enable_device - Enable I/O and memory.
  510.  * @dev: PCI device to be enabled
  511.  */
  512. int pcibios_enable_device(struct pci_dev *dev)
  513. {
  514. u16 cmd, old_cmd;
  515. int idx;
  516. struct resource *r;
  517. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  518. old_cmd = cmd;
  519. for (idx = 0; idx < 6; idx++) {
  520. r = dev->resource + idx;
  521. if (!r->start && r->end) {
  522. printk(KERN_ERR "PCI: Device %s not available because"
  523.        " of resource collisionsn", dev->slot_name);
  524. return -EINVAL;
  525. }
  526. if (r->flags & IORESOURCE_IO)
  527. cmd |= PCI_COMMAND_IO;
  528. if (r->flags & IORESOURCE_MEM)
  529. cmd |= PCI_COMMAND_MEMORY;
  530. }
  531. if (cmd != old_cmd) {
  532. printk("PCI: enabling device %s (%04x -> %04x)n",
  533.        dev->slot_name, old_cmd, cmd);
  534. pci_write_config_word(dev, PCI_COMMAND, cmd);
  535. }
  536. return 0;
  537. }