ops-r7780rp.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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/config.h>
  12. #include <linux/kernel.h>
  13. #include <linux/types.h>
  14. #include <linux/init.h>
  15. #include <linux/delay.h>
  16. #include <linux/pci.h>
  17. #include <asm/r7780rp/r7780rp.h>
  18. #include <asm/io.h>
  19. #include "pci-sh4.h"
  20. int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
  21. {
  22. switch (slot) {
  23. case 0: return IRQ_PCISLOT1; /* PCI Interrupt #1 */
  24. case 1: return IRQ_PCISLOT2; /* PCI Interrupt #2 */
  25. case 2: return IRQ_PCISLOT3; /* PCI Interrupt #3 */
  26. case 3: return IRQ_PCISLOT4; /* PCI Interrupt E4 */
  27. default:
  28. printk(KERN_ERR "PCI: Bad IRQ mapping "
  29. "request for slot %d, func %d\n", slot, pin-1);
  30. return -1;
  31. }
  32. }
  33. static struct resource sh7780_io_resource = {
  34. .name = "SH7780_IO",
  35. .start = 0x2000,
  36. .end = 0x2000 + SH7780_PCI_IO_SIZE - 1,
  37. .flags = IORESOURCE_IO
  38. };
  39. static struct resource sh7780_mem_resource = {
  40. .name = "SH7780_mem",
  41. .start = SH7780_PCI_MEMORY_BASE,
  42. .end = SH7780_PCI_MEMORY_BASE + SH7780_PCI_MEM_SIZE - 1,
  43. .flags = IORESOURCE_MEM
  44. };
  45. extern struct pci_ops sh7780_pci_ops;
  46. struct pci_channel board_pci_channels[] = {
  47. { &sh4_pci_ops, &sh7780_io_resource, &sh7780_mem_resource, 0, 0xff },
  48. { NULL, NULL, NULL, 0, 0 },
  49. };
  50. EXPORT_SYMBOL(board_pci_channels);
  51. static struct sh4_pci_address_map sh7780_pci_map = {
  52. .window0 = {
  53. .base = SH7780_CS2_BASE_ADDR,
  54. .size = 0x04000000,
  55. },
  56. .window1 = {
  57. .base = SH7780_CS3_BASE_ADDR,
  58. .size = 0x04000000,
  59. },
  60. .flags = SH4_PCIC_NO_RESET,
  61. };
  62. int __init pcibios_init_platform(void)
  63. {
  64. return sh7780_pcic_init(&sh7780_pci_map);
  65. }