]>
git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/block/sil680.c
3 * Gary Jennejohn, DENX Software Engineering, garyj@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
24 /* sil680.c - ide support functions for the Sil0680A controller */
27 * The following parameters must be defined in the configuration file
28 * of the target board:
30 * #define CONFIG_IDE_SIL680
32 * #define CONFIG_PCI_PNP
33 * NOTE it may also be necessary to define this if the default of 8 is
34 * incorrect for the target board (e.g. the sequoia board requires 0).
35 * #define CONFIG_SYS_PCI_CACHE_LINE_SIZE 0
37 * #define CONFIG_CMD_IDE
38 * #undef CONFIG_IDE_8xx_DIRECT
39 * #undef CONFIG_IDE_LED
40 * #undef CONFIG_IDE_RESET
41 * #define CONFIG_IDE_PREINIT
42 * #define CONFIG_SYS_IDE_MAXBUS 2 - modify to suit
43 * #define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS*2) - modify to suit
44 * #define CONFIG_SYS_ATA_BASE_ADDR 0
45 * #define CONFIG_SYS_ATA_IDE0_OFFSET 0
46 * #define CONFIG_SYS_ATA_IDE1_OFFSET 0
47 * #define CONFIG_SYS_ATA_DATA_OFFSET 0
48 * #define CONFIG_SYS_ATA_REG_OFFSET 0
49 * #define CONFIG_SYS_ATA_ALT_OFFSET 0x0004
51 * The mapping for PCI IO-space.
52 * NOTE this is the value for the sequoia board. Modify to suit.
53 * #define CONFIG_SYS_PCI0_IO_SPACE 0xE8000000
61 extern ulong ide_bus_offset
[CONFIG_SYS_IDE_MAXBUS
];
63 int ide_preinit (void)
70 for (l
= 0; l
< CONFIG_SYS_IDE_MAXBUS
; l
++) {
71 ide_bus_offset
[l
] = -ATA_STATUS
;
73 devbusfn
= pci_find_device (0x1095, 0x0680, 0);
77 pci_read_config_dword (devbusfn
, PCI_BASE_ADDRESS_0
,
78 (u32
*) &ide_bus_offset
[0]);
79 ide_bus_offset
[0] &= 0xfffffff8;
80 ide_bus_offset
[0] += CONFIG_SYS_PCI0_IO_SPACE
;
81 pci_read_config_dword (devbusfn
, PCI_BASE_ADDRESS_2
,
82 (u32
*) &ide_bus_offset
[1]);
83 ide_bus_offset
[1] &= 0xfffffff8;
84 ide_bus_offset
[1] += CONFIG_SYS_PCI0_IO_SPACE
;
85 /* init various things - taken from the Linux driver */
87 pci_write_config_byte(devbusfn
, 0x80, 0x00);
88 pci_write_config_byte(devbusfn
, 0x84, 0x00);
90 pci_write_config_byte(devbusfn
, 0xA1, 0x02);
91 pci_write_config_word(devbusfn
, 0xA2, 0x328A);
92 pci_write_config_dword(devbusfn
, 0xA4, 0x62DD62DD);
93 pci_write_config_dword(devbusfn
, 0xA8, 0x43924392);
94 pci_write_config_dword(devbusfn
, 0xAC, 0x40094009);
96 pci_write_config_byte(devbusfn
, 0xB1, 0x02);
97 pci_write_config_word(devbusfn
, 0xB2, 0x328A);
98 pci_write_config_dword(devbusfn
, 0xB4, 0x62DD62DD);
99 pci_write_config_dword(devbusfn
, 0xB8, 0x43924392);
100 pci_write_config_dword(devbusfn
, 0xBC, 0x40094009);
105 void ide_set_reset (int flag
) {