ops-r7780rp.c 1.8 KB

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