pci_sh7780.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * SH7780 PCI Controller (PCIC) for U-Boot.
  3. * (C) Dustin McIntire (dustin@sensoria.com)
  4. * (C) 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  5. * (C) 2008 Yusuke Goda <goda.yusuke@renesas.com>
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <pci.h>
  27. #include <asm/processor.h>
  28. #include <asm/pci.h>
  29. #include <asm/io.h>
  30. #define SH7780_VENDOR_ID 0x1912
  31. #define SH7780_DEVICE_ID 0x0002
  32. #define SH7780_PCICR_PREFIX 0xA5000000
  33. #define SH7780_PCICR_PFCS 0x00000800
  34. #define SH7780_PCICR_FTO 0x00000400
  35. #define SH7780_PCICR_PFE 0x00000200
  36. #define SH7780_PCICR_TBS 0x00000100
  37. #define SH7780_PCICR_ARBM 0x00000040
  38. #define SH7780_PCICR_IOCS 0x00000004
  39. #define SH7780_PCICR_PRST 0x00000002
  40. #define SH7780_PCICR_CFIN 0x00000001
  41. #define p4_in(addr) (*(vu_long *)addr)
  42. #define p4_out(data, addr) (*(vu_long *)addr) = (data)
  43. #define p4_inw(addr) (*(vu_short *)addr)
  44. #define p4_outw(data, addr) (*(vu_short *)addr) = (data)
  45. int pci_sh4_read_config_dword(struct pci_controller *hose,
  46. pci_dev_t dev, int offset, u32 *value)
  47. {
  48. u32 par_data = 0x80000000 | dev;
  49. p4_out(par_data | (offset & 0xfc), SH7780_PCIPAR);
  50. *value = p4_in(SH7780_PCIPDR);
  51. return 0;
  52. }
  53. int pci_sh4_write_config_dword(struct pci_controller *hose,
  54. pci_dev_t dev, int offset, u32 value)
  55. {
  56. u32 par_data = 0x80000000 | dev;
  57. p4_out(par_data | (offset & 0xfc), SH7780_PCIPAR);
  58. p4_out(value, SH7780_PCIPDR);
  59. return 0;
  60. }
  61. int pci_sh7780_init(struct pci_controller *hose)
  62. {
  63. p4_out(0x01, SH7780_PCIECR);
  64. if (p4_inw(SH7780_PCIVID) != SH7780_VENDOR_ID
  65. && p4_inw(SH7780_PCIDID) != SH7780_DEVICE_ID) {
  66. printf("PCI: Unknown PCI host bridge.\n");
  67. return -1;
  68. }
  69. printf("PCI: SH7780 PCI host bridge found.\n");
  70. /* Toggle PCI reset pin */
  71. p4_out((SH7780_PCICR_PREFIX | SH7780_PCICR_PRST), SH7780_PCICR);
  72. udelay(100000);
  73. p4_out(SH7780_PCICR_PREFIX, SH7780_PCICR);
  74. p4_outw(0x0047, SH7780_PCICMD);
  75. p4_out(CONFIG_SH7780_PCI_LSR, SH7780_PCILSR0);
  76. p4_out(CONFIG_SH7780_PCI_LAR, SH7780_PCILAR0);
  77. p4_out(0x00000000, SH7780_PCILSR1);
  78. p4_out(0, SH7780_PCILAR1);
  79. p4_out(CONFIG_SH7780_PCI_BAR, SH7780_PCIMBAR0);
  80. p4_out(0x00000000, SH7780_PCIMBAR1);
  81. p4_out(0xFD000000, SH7780_PCIMBR0);
  82. p4_out(0x00FC0000, SH7780_PCIMBMR0);
  83. /* if use Operand Cache then enable PCICSCR Soonp bits. */
  84. p4_out(0x08000000, SH7780_PCICSAR0);
  85. p4_out(0x0000001B, SH7780_PCICSCR0); /* Snoop bit :On */
  86. p4_out((SH7780_PCICR_PREFIX | SH7780_PCICR_CFIN | SH7780_PCICR_ARBM
  87. | SH7780_PCICR_FTO | SH7780_PCICR_PFCS | SH7780_PCICR_PFE),
  88. SH7780_PCICR);
  89. pci_sh4_init(hose);
  90. return 0;
  91. }