pci-sh7780.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * Low-Level PCI Support for the SH7780
  3. *
  4. * Dustin McIntire (dustin@sensoria.com)
  5. * Derived from arch/i386/kernel/pci-*.c which bore the message:
  6. * (c) 1999--2000 Martin Mares <mj@ucw.cz>
  7. *
  8. * Ported to the new API by Paul Mundt <lethal@linux-sh.org>
  9. * With cleanup by Paul van Gool <pvangool@mimotech.com>
  10. *
  11. * May be copied or modified under the terms of the GNU General Public
  12. * License. See linux/COPYING for more information.
  13. *
  14. */
  15. #undef DEBUG
  16. #include <linux/types.h>
  17. #include <linux/kernel.h>
  18. #include <linux/init.h>
  19. #include <linux/pci.h>
  20. #include <linux/errno.h>
  21. #include <linux/delay.h>
  22. #include "pci-sh4.h"
  23. /*
  24. * Initialization. Try all known PCI access methods. Note that we support
  25. * using both PCI BIOS and direct access: in such cases, we use I/O ports
  26. * to access config space.
  27. *
  28. * Note that the platform specific initialization (BSC registers, and memory
  29. * space mapping) will be called via the platform defined function
  30. * pcibios_init_platform().
  31. */
  32. int __init sh7780_pci_init(struct pci_channel *chan)
  33. {
  34. unsigned int id;
  35. int ret, match = 0;
  36. pr_debug("PCI: Starting intialization.\n");
  37. chan->reg_base = 0xfe040000;
  38. chan->io_base = 0xfe200000;
  39. ctrl_outl(0x00000001, SH7780_PCI_VCR2); /* Enable PCIC */
  40. /* check for SH7780/SH7780R hardware */
  41. id = pci_read_reg(chan, SH7780_PCIVID);
  42. if ((id & 0xffff) == SH7780_VENDOR_ID) {
  43. switch ((id >> 16) & 0xffff) {
  44. case SH7763_DEVICE_ID:
  45. case SH7780_DEVICE_ID:
  46. case SH7781_DEVICE_ID:
  47. case SH7785_DEVICE_ID:
  48. match = 1;
  49. break;
  50. }
  51. }
  52. if (unlikely(!match)) {
  53. printk(KERN_ERR "PCI: This is not an SH7780 (%x)\n", id);
  54. return -ENODEV;
  55. }
  56. if ((ret = sh4_pci_check_direct(chan)) != 0)
  57. return ret;
  58. return pcibios_init_platform();
  59. }
  60. int __init sh7780_pcic_init(struct pci_channel *chan,
  61. struct sh4_pci_address_map *map)
  62. {
  63. u32 word;
  64. pci_write_reg(chan, PCI_CLASS_BRIDGE_HOST >> 8, SH7780_PCIBCC);
  65. pci_write_reg(chan, PCI_CLASS_BRIDGE_HOST & 0xff, SH7780_PCISUB);
  66. /* set the command/status bits to:
  67. * Wait Cycle Control + Parity Enable + Bus Master +
  68. * Mem space enable
  69. */
  70. pci_write_reg(chan, 0x00000046, SH7780_PCICMD);
  71. /* Set IO and Mem windows to local address
  72. * Make PCI and local address the same for easy 1 to 1 mapping
  73. */
  74. pci_write_reg(chan, map->window0.size - 0xfffff, SH4_PCILSR0);
  75. pci_write_reg(chan, map->window1.size - 0xfffff, SH4_PCILSR1);
  76. /* Set the values on window 0 PCI config registers */
  77. pci_write_reg(chan, map->window0.base, SH4_PCILAR0);
  78. pci_write_reg(chan, map->window0.base, SH7780_PCIMBAR0);
  79. /* Set the values on window 1 PCI config registers */
  80. pci_write_reg(chan, map->window1.base, SH4_PCILAR1);
  81. pci_write_reg(chan, map->window1.base, SH7780_PCIMBAR1);
  82. /* Apply any last-minute PCIC fixups */
  83. pci_fixup_pcic(chan);
  84. /* SH7780 init done, set central function init complete */
  85. /* use round robin mode to stop a device starving/overruning */
  86. word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_FTO;
  87. pci_write_reg(chan, word, SH4_PCICR);
  88. return 0;
  89. }