ops-titan.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * arch/sh/drivers/pci/ops-titan.c
  3. *
  4. * Ported to new API by Paul Mundt <lethal@linux-sh.org>
  5. *
  6. * Modified from ops-snapgear.c written by David McCullough
  7. * Highly leveraged from pci-bigsur.c, written by Dustin McIntire.
  8. *
  9. * May be copied or modified under the terms of the GNU General Public
  10. * License. See linux/COPYING for more information.
  11. *
  12. * PCI initialization for the Titan boards
  13. */
  14. #include <linux/config.h>
  15. #include <linux/kernel.h>
  16. #include <linux/types.h>
  17. #include <linux/init.h>
  18. #include <linux/delay.h>
  19. #include <asm/io.h>
  20. #include <asm/titan.h>
  21. #include "pci-sh7751.h"
  22. int __init pcibios_map_platform_irq(u8 slot, u8 pin)
  23. {
  24. int irq = -1;
  25. switch (slot) {
  26. case 0: irq = TITAN_IRQ_WAN; break; /* eth0 (WAN) */
  27. case 1: irq = TITAN_IRQ_LAN; break; /* eth1 (LAN) */
  28. case 2: irq = TITAN_IRQ_MPCIA; break; /* mPCI A */
  29. case 3: irq = TITAN_IRQ_MPCIB; break; /* mPCI B */
  30. case 4: irq = TITAN_IRQ_USB; break; /* USB */
  31. default:
  32. printk(KERN_INFO "PCI: Bad IRQ mapping request for slot %d\n", slot);
  33. return -1;
  34. }
  35. printk("PCI: Mapping TITAN IRQ for slot %d, pin %c to irq %d\n",
  36. slot, pin - 1 + 'A', irq);
  37. return irq;
  38. }
  39. static struct resource sh7751_io_resource = {
  40. .name = "SH7751_IO",
  41. .start = SH7751_PCI_IO_BASE,
  42. .end = SH7751_PCI_IO_BASE + SH7751_PCI_IO_SIZE - 1,
  43. .flags = IORESOURCE_IO
  44. };
  45. static struct resource sh7751_mem_resource = {
  46. .name = "SH7751_mem",
  47. .start = SH7751_PCI_MEMORY_BASE,
  48. .end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1,
  49. .flags = IORESOURCE_MEM
  50. };
  51. extern struct pci_ops sh7751_pci_ops;
  52. struct pci_channel board_pci_channels[] = {
  53. { &sh7751_pci_ops, &sh7751_io_resource, &sh7751_mem_resource, 0, 0xff },
  54. { NULL, NULL, NULL, 0, 0 },
  55. };
  56. EXPORT_SYMBOL(board_pci_channels);
  57. static struct sh7751_pci_address_map sh7751_pci_map = {
  58. .window0 = {
  59. .base = SH7751_CS2_BASE_ADDR,
  60. .size = SH7751_MEM_REGION_SIZE*2, /* cs2 and cs3 */
  61. },
  62. .window1 = {
  63. .base = SH7751_CS2_BASE_ADDR,
  64. .size = SH7751_MEM_REGION_SIZE*2,
  65. },
  66. .flags = SH7751_PCIC_NO_RESET,
  67. };
  68. int __init pcibios_init_platform(void)
  69. {
  70. return sh7751_pcic_init(&sh7751_pci_map);
  71. }