ops-rts7751r2d.c 1.9 KB

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