ops-r7780rp.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Author: Ian DaSilva (idasilva@mvista.com)
  3. *
  4. * Highly leveraged from pci-bigsur.c, written by Dustin McIntire.
  5. *
  6. * May be copied or modified under the terms of the GNU General Public
  7. * License. See linux/COPYING for more information.
  8. *
  9. * PCI initialization for the Renesas SH7780 Highlander R7780RP-1 board
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/types.h>
  13. #include <linux/init.h>
  14. #include <linux/delay.h>
  15. #include <linux/pci.h>
  16. #include <asm/r7780rp.h>
  17. #include <asm/io.h>
  18. #include "pci-sh4.h"
  19. static char r7780rp_irq_tab[] __initdata = {
  20. 0, 1, 2, 3,
  21. };
  22. static char r7780mp_irq_tab[] __initdata = {
  23. 65, 66, 67, 68,
  24. };
  25. static char r7785rp_irq_tab[][4] __initdata = {
  26. { 65, 66, 67, 68 }, /* INT ABCD */
  27. { 66, 67, 68, 65 }, /* INT BCDA */
  28. { 67, 68, 65, 66 }, /* INT CDAB */
  29. { 68, 65, 66, 67 }, /* INT DABC */
  30. { 64, 64, 64, 64 }, /* PCI Host */
  31. };
  32. int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
  33. {
  34. if (mach_is_r7780rp())
  35. return r7780rp_irq_tab[slot];
  36. if (mach_is_r7780mp())
  37. return r7780mp_irq_tab[slot];
  38. if (mach_is_r7785rp())
  39. return r7785rp_irq_tab[slot][pin];
  40. printk(KERN_ERR "PCI: Bad IRQ mapping "
  41. "request for slot %d, func %d\n", slot, pin-1);
  42. return -1;
  43. }
  44. static struct resource sh7780_io_resource = {
  45. .name = "SH7780_IO",
  46. .start = 0x2000,
  47. .end = 0x2000 + SH7780_PCI_IO_SIZE - 1,
  48. .flags = IORESOURCE_IO
  49. };
  50. static struct resource sh7780_mem_resource = {
  51. .name = "SH7780_mem",
  52. .start = SH7780_PCI_MEMORY_BASE,
  53. .end = SH7780_PCI_MEMORY_BASE + SH7780_PCI_MEM_SIZE - 1,
  54. .flags = IORESOURCE_MEM
  55. };
  56. extern struct pci_ops sh7780_pci_ops;
  57. struct pci_channel board_pci_channels[] = {
  58. { &sh4_pci_ops, &sh7780_io_resource, &sh7780_mem_resource, 0, 0xff },
  59. { NULL, NULL, NULL, 0, 0 },
  60. };
  61. EXPORT_SYMBOL(board_pci_channels);
  62. static struct sh4_pci_address_map sh7780_pci_map = {
  63. .window0 = {
  64. .base = SH7780_CS2_BASE_ADDR,
  65. .size = 0x04000000,
  66. },
  67. .window1 = {
  68. .base = SH7780_CS3_BASE_ADDR,
  69. .size = 0x04000000,
  70. },
  71. .flags = SH4_PCIC_NO_RESET,
  72. };
  73. int __init pcibios_init_platform(void)
  74. {
  75. return sh7780_pcic_init(&sh7780_pci_map);
  76. }