ops-rts7751r2d.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * linux/arch/sh/kernel/pci-rts7751r2d.c
  3. *
  4. * Author: Ian DaSilva (idasilva@mvista.com)
  5. *
  6. * Highly leveraged from pci-bigsur.c, written by Dustin McIntire.
  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 Renesas SH7751R RTS7751R2D board
  12. */
  13. #include <linux/config.h>
  14. #include <linux/kernel.h>
  15. #include <linux/types.h>
  16. #include <linux/init.h>
  17. #include <linux/delay.h>
  18. #include <linux/pci.h>
  19. #include <linux/module.h>
  20. #include <asm/io.h>
  21. #include "pci-sh7751.h"
  22. #include <asm/rts7751r2d/rts7751r2d.h>
  23. int __init pcibios_map_platform_irq(u8 slot, u8 pin)
  24. {
  25. switch (slot) {
  26. case 0: return IRQ_PCISLOT1; /* PCI Extend slot #1 */
  27. case 1: return IRQ_PCISLOT2; /* PCI Extend slot #2 */
  28. case 2: return IRQ_PCMCIA; /* PCI Cardbus Bridge */
  29. case 3: return IRQ_PCIETH; /* Realtek Ethernet controller */
  30. default:
  31. printk("PCI: Bad IRQ mapping request for slot %d\n", slot);
  32. return -1;
  33. }
  34. }
  35. static struct resource sh7751_io_resource = {
  36. .name = "SH7751_IO",
  37. .start = 0x4000,
  38. .end = 0x4000 + SH7751_PCI_IO_SIZE - 1,
  39. .flags = IORESOURCE_IO
  40. };
  41. static struct resource sh7751_mem_resource = {
  42. .name = "SH7751_mem",
  43. .start = SH7751_PCI_MEMORY_BASE,
  44. .end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1,
  45. .flags = IORESOURCE_MEM
  46. };
  47. extern struct pci_ops sh7751_pci_ops;
  48. struct pci_channel board_pci_channels[] = {
  49. { &sh7751_pci_ops, &sh7751_io_resource, &sh7751_mem_resource, 0, 0xff },
  50. { NULL, NULL, NULL, 0, 0 },
  51. };
  52. EXPORT_SYMBOL(board_pci_channels);
  53. static struct sh7751_pci_address_map sh7751_pci_map = {
  54. .window0 = {
  55. .base = SH7751_CS3_BASE_ADDR,
  56. .size = 0x04000000,
  57. },
  58. .window1 = {
  59. .base = 0x00000000, /* Unused */
  60. .size = 0x00000000, /* Unused */
  61. },
  62. .flags = SH7751_PCIC_NO_RESET,
  63. };
  64. int __init pcibios_init_platform(void)
  65. {
  66. return sh7751_pcic_init(&sh7751_pci_map);
  67. }