ops-bigsur.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * linux/arch/sh/drivers/pci/ops-bigsur.c
  3. *
  4. * By Dustin McIntire (dustin@sensoria.com) (c)2001
  5. *
  6. * Ported to new API by Paul Mundt <lethal@linux-sh.org>.
  7. *
  8. * May be copied or modified under the terms of the GNU General Public
  9. * License. See linux/COPYING for more information.
  10. *
  11. * PCI initialization for the Hitachi Big Sur Evaluation Board
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/types.h>
  15. #include <linux/init.h>
  16. #include <linux/pci.h>
  17. #include <asm/io.h>
  18. #include "pci-sh4.h"
  19. #include <asm/bigsur/bigsur.h>
  20. #define BIGSUR_PCI_IO 0x4000
  21. #define BIGSUR_PCI_MEM 0xfd000000
  22. static struct resource sh7751_io_resource = {
  23. .name = "SH7751 IO",
  24. .start = BIGSUR_PCI_IO,
  25. .end = BIGSUR_PCI_IO + (64*1024) - 1,
  26. .flags = IORESOURCE_IO,
  27. };
  28. static struct resource sh7751_mem_resource = {
  29. .name = "SH7751 mem",
  30. .start = BIGSUR_PCI_MEM,
  31. .end = BIGSUR_PCI_MEM + (64*1024*1024) - 1,
  32. .flags = IORESOURCE_MEM,
  33. };
  34. extern struct pci_ops sh7751_pci_ops;
  35. struct pci_channel board_pci_channels[] = {
  36. { &sh4_pci_ops, &sh7751_io_resource, &sh7751_mem_resource, 0, 0xff },
  37. { 0, }
  38. };
  39. static struct sh4_pci_address_map sh7751_pci_map = {
  40. .window0 = {
  41. .base = SH7751_CS3_BASE_ADDR,
  42. .size = BIGSUR_LSR0_SIZE,
  43. },
  44. .window1 = {
  45. .base = SH7751_CS3_BASE_ADDR,
  46. .size = BIGSUR_LSR1_SIZE,
  47. },
  48. };
  49. /*
  50. * Initialize the Big Sur PCI interface
  51. * Setup hardware to be Central Funtion
  52. * Copy the BSR regs to the PCI interface
  53. * Setup PCI windows into local RAM
  54. */
  55. int __init pcibios_init_platform(void)
  56. {
  57. return sh7751_pcic_init(&sh7751_pci_map);
  58. }
  59. int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
  60. {
  61. /*
  62. * The Big Sur can be used in a CPCI chassis, but the SH7751 PCI
  63. * interface is on the wrong end of the board so that it can also
  64. * support a V320 CPI interface chip... Therefor the IRQ mapping is
  65. * somewhat use dependent... I'l assume a linear map for now, i.e.
  66. * INTA=slot0,pin0... INTD=slot3,pin0...
  67. */
  68. int irq = (slot + pin-1) % 4 + BIGSUR_SH7751_PCI_IRQ_BASE;
  69. PCIDBG(2, "PCI: Mapping Big Sur IRQ for slot %d, pin %c to irq %d\n",
  70. slot, pin-1+'A', irq);
  71. return irq;
  72. }