1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#include <common.h>
28
29#ifdef CONFIG_CMD_IDE
30#include <ata.h>
31#include <ide.h>
32#include <pci.h>
33
34#define IT8212_PCI_CpuCONTROL 0x5e
35#define IT8212_PCI_PciModeCONTROL 0x50
36#define IT8212_PCI_IdeIoCONFIG 0x40
37#define IT8212_PCI_IdeBusSkewCONTROL 0x4c
38#define IT8212_PCI_IdeDrivingCURRENT 0x42
39
40extern ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS];
41extern struct pci_controller hose;
42
43int ide_preinit (void)
44{
45 int status;
46 pci_dev_t devbusfn;
47 int l;
48
49 status = 1;
50 for (l = 0; l < CONFIG_SYS_IDE_MAXBUS; l++) {
51 ide_bus_offset[l] = -ATA_STATUS;
52 }
53 devbusfn = pci_find_device(PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_680, 0);
54 if (devbusfn == -1)
55 devbusfn = pci_find_device(PCI_VENDOR_ID_ITE,PCI_DEVICE_ID_ITE_8212,0);
56 if (devbusfn != -1) {
57 u32 ide_bus_offset32;
58
59 status = 0;
60
61 pci_read_config_dword (devbusfn, PCI_BASE_ADDRESS_0,
62 &ide_bus_offset32);
63 ide_bus_offset[0] = ide_bus_offset32 & 0xfffffffe;
64 ide_bus_offset[0] = pci_hose_bus_to_phys(&hose,
65 ide_bus_offset[0] & 0xfffffffe,
66 PCI_REGION_IO);
67 if (CONFIG_SYS_IDE_MAXBUS > 1) {
68 pci_read_config_dword(devbusfn, PCI_BASE_ADDRESS_2,
69 (u32 *) &ide_bus_offset[1]);
70 ide_bus_offset[1] &= 0xfffffffe;
71 ide_bus_offset[1] = pci_hose_bus_to_phys(&hose,
72 ide_bus_offset[1] & 0xfffffffe,
73 PCI_REGION_IO);
74 }
75 }
76
77 if (pci_find_device (PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8212, 0) != -1) {
78 pci_write_config_byte(devbusfn, IT8212_PCI_CpuCONTROL, 0x01);
79 pci_write_config_byte(devbusfn, IT8212_PCI_PciModeCONTROL, 0x00);
80 pci_write_config_word(devbusfn, PCI_COMMAND, 0x0047);
81#ifdef CONFIG_IT8212_SECONDARY_ENABLE
82 pci_write_config_word(devbusfn, IT8212_PCI_IdeIoCONFIG, 0xA0F3);
83#else
84 pci_write_config_word(devbusfn, IT8212_PCI_IdeIoCONFIG, 0x8031);
85#endif
86 pci_write_config_dword(devbusfn, IT8212_PCI_IdeBusSkewCONTROL, 0x02040204);
87
88 pci_write_config_byte(devbusfn, IT8212_PCI_IdeDrivingCURRENT, 0x36);
89
90
91
92
93 pci_write_config_byte(devbusfn, PCI_LATENCY_TIMER, 0x00);
94 }
95
96 return (status);
97}
98
99void ide_set_reset (int flag) {
100 return;
101}
102
103#endif
104