sil680.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * (C) Copyright 2007
  3. * Gary Jennejohn, DENX Software Engineering, garyj@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. *
  23. */
  24. /* sil680.c - ide support functions for the Sil0680A controller */
  25. /*
  26. * The following parameters must be defined in the configuration file
  27. * of the target board:
  28. *
  29. * #define CFG_IDE_SIL680
  30. *
  31. * #define CONFIG_PCI_PNP
  32. * NOTE it may also be necessary to define this if the default of 8 is
  33. * incorrect for the target board (e.g. the sequoia board requires 0).
  34. * #define CFG_PCI_CACHE_LINE_SIZE 0
  35. *
  36. * #define CONFIG_CMD_IDE
  37. * #undef CONFIG_IDE_8xx_DIRECT
  38. * #undef CONFIG_IDE_LED
  39. * #undef CONFIG_IDE_RESET
  40. * #define CONFIG_IDE_PREINIT
  41. * #define CFG_IDE_MAXBUS 2 - modify to suit
  42. * #define CFG_IDE_MAXDEVICE (CFG_IDE_MAXBUS*2) - modify to suit
  43. * #define CFG_ATA_BASE_ADDR 0
  44. * #define CFG_ATA_IDE0_OFFSET 0
  45. * #define CFG_ATA_IDE1_OFFSET 0
  46. * #define CFG_ATA_DATA_OFFSET 0
  47. * #define CFG_ATA_REG_OFFSET 0
  48. * #define CFG_ATA_ALT_OFFSET 0x0004
  49. *
  50. * The mapping for PCI IO-space.
  51. * NOTE this is the value for the sequoia board. Modify to suit.
  52. * #define CFG_PCI0_IO_SPACE 0xE8000000
  53. */
  54. #include <common.h>
  55. #if defined(CFG_IDE_SIL680)
  56. #include <ata.h>
  57. #include <ide.h>
  58. #include <pci.h>
  59. extern ulong ide_bus_offset[CFG_IDE_MAXBUS];
  60. int ide_preinit (void)
  61. {
  62. int status;
  63. pci_dev_t devbusfn;
  64. int l;
  65. status = 1;
  66. for (l = 0; l < CFG_IDE_MAXBUS; l++) {
  67. ide_bus_offset[l] = -ATA_STATUS;
  68. }
  69. devbusfn = pci_find_device (0x1095, 0x0680, 0);
  70. if (devbusfn != -1) {
  71. status = 0;
  72. pci_read_config_dword (devbusfn, PCI_BASE_ADDRESS_0,
  73. (u32 *) &ide_bus_offset[0]);
  74. ide_bus_offset[0] &= 0xfffffff8;
  75. ide_bus_offset[0] += CFG_PCI0_IO_SPACE;
  76. pci_read_config_dword (devbusfn, PCI_BASE_ADDRESS_2,
  77. (u32 *) &ide_bus_offset[1]);
  78. ide_bus_offset[1] &= 0xfffffff8;
  79. ide_bus_offset[1] += CFG_PCI0_IO_SPACE;
  80. /* init various things - taken from the Linux driver */
  81. /* set PIO mode */
  82. pci_write_config_byte(devbusfn, 0x80, 0x00);
  83. pci_write_config_byte(devbusfn, 0x84, 0x00);
  84. /* IDE0 */
  85. pci_write_config_byte(devbusfn, 0xA1, 0x02);
  86. pci_write_config_word(devbusfn, 0xA2, 0x328A);
  87. pci_write_config_dword(devbusfn, 0xA4, 0x62DD62DD);
  88. pci_write_config_dword(devbusfn, 0xA8, 0x43924392);
  89. pci_write_config_dword(devbusfn, 0xAC, 0x40094009);
  90. /* IDE1 */
  91. pci_write_config_byte(devbusfn, 0xB1, 0x02);
  92. pci_write_config_word(devbusfn, 0xB2, 0x328A);
  93. pci_write_config_dword(devbusfn, 0xB4, 0x62DD62DD);
  94. pci_write_config_dword(devbusfn, 0xB8, 0x43924392);
  95. pci_write_config_dword(devbusfn, 0xBC, 0x40094009);
  96. }
  97. return (status);
  98. }
  99. void ide_set_reset (int flag) {
  100. return;
  101. }
  102. #endif /* CFG_IDE_SIL680 */