1111188Ssos/*-
2230132Suqs * Copyright (c) 2003 - 2008 S��ren Schmidt <sos@FreeBSD.org>
3111188Ssos * All rights reserved.
4111188Ssos *
5111188Ssos * Redistribution and use in source and binary forms, with or without
6111188Ssos * modification, are permitted provided that the following conditions
7111188Ssos * are met:
8111188Ssos * 1. Redistributions of source code must retain the above copyright
9111188Ssos *    notice, this list of conditions and the following disclaimer,
10111188Ssos *    without modification, immediately at the beginning of the file.
11111188Ssos * 2. Redistributions in binary form must reproduce the above copyright
12111188Ssos *    notice, this list of conditions and the following disclaimer in the
13111188Ssos *    documentation and/or other materials provided with the distribution.
14111188Ssos *
15111188Ssos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16111188Ssos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17111188Ssos * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18111188Ssos * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19111188Ssos * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20111188Ssos * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21111188Ssos * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22111188Ssos * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23111188Ssos * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24111188Ssos * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25111188Ssos *
26111188Ssos * $FreeBSD$
27111188Ssos */
28111188Ssos
29111188Ssos/* structure holding chipset config info */
30111188Ssosstruct ata_chip_id {
31144330Ssos    u_int32_t           chipid;
32144330Ssos    u_int8_t            chiprev;
33144330Ssos    int                 cfg1;
34144330Ssos    int                 cfg2;
35144330Ssos    u_int8_t            max_dma;
36233282Smarius    const char          *text;
37111188Ssos};
38111188Ssos
39199322Smav#define ATA_PCI_MAX_CH	8
40199322Smav
41111188Ssos/* structure describing a PCI ATA controller */
42111188Ssosstruct ata_pci_controller {
43144330Ssos    device_t            dev;
44144330Ssos    int                 r_type1;
45144330Ssos    int                 r_rid1;
46144330Ssos    struct resource     *r_res1;
47144330Ssos    int                 r_type2;
48144330Ssos    int                 r_rid2;
49144330Ssos    struct resource     *r_res2;
50188655Smav    int                 r_irq_rid;
51144330Ssos    struct resource     *r_irq;
52144330Ssos    void                *handle;
53233282Smarius    const struct ata_chip_id *chip;
54186182Smav    int			legacy;
55144330Ssos    int                 channels;
56188694Smav    int			ichannels;
57144330Ssos    int                 (*chipinit)(device_t);
58224270Smav    int                 (*chipdeinit)(device_t);
59183141Ssos    int                 (*suspend)(device_t);
60183141Ssos    int                 (*resume)(device_t);
61188765Smav    int                 (*ch_attach)(device_t);
62188765Smav    int                 (*ch_detach)(device_t);
63190581Smav    int                 (*ch_suspend)(device_t);
64190581Smav    int                 (*ch_resume)(device_t);
65145713Ssos    void                (*reset)(device_t);
66200171Smav    int                 (*setmode)(device_t, int, int);
67200171Smav    int                 (*getrev)(device_t, int);
68111188Ssos    struct {
69144330Ssos    void                (*function)(void *);
70144330Ssos    void                *argument;
71199322Smav    } interrupt[ATA_PCI_MAX_CH];
72192105Sjhb    void                *chipset_data;
73111188Ssos};
74111188Ssos
75111188Ssos/* defines for known chipset PCI id's */
76144330Ssos#define ATA_ACARD_ID            0x1191
77144330Ssos#define ATA_ATP850              0x00021191
78144330Ssos#define ATA_ATP850A             0x00041191
79144330Ssos#define ATA_ATP850R             0x00051191
80144330Ssos#define ATA_ATP860A             0x00061191
81144330Ssos#define ATA_ATP860R             0x00071191
82144330Ssos#define ATA_ATP865A             0x00081191
83144330Ssos#define ATA_ATP865R             0x00091191
84111188Ssos
85178375Ssos#define ATA_ACER_LABS_ID        0x10b9
86178375Ssos#define ATA_ALI_1533            0x153310b9
87204509Smav#define ATA_ALI_5228            0x522810b9
88178375Ssos#define ATA_ALI_5229            0x522910b9
89178375Ssos#define ATA_ALI_5281            0x528110b9
90178375Ssos#define ATA_ALI_5287            0x528710b9
91178375Ssos#define ATA_ALI_5288            0x528810b9
92178375Ssos#define ATA_ALI_5289            0x528910b9
93178375Ssos
94144330Ssos#define ATA_AMD_ID              0x1022
95144330Ssos#define ATA_AMD755              0x74011022
96144330Ssos#define ATA_AMD756              0x74091022
97144330Ssos#define ATA_AMD766              0x74111022
98144330Ssos#define ATA_AMD768              0x74411022
99144330Ssos#define ATA_AMD8111             0x74691022
100172436Sphk#define ATA_AMD5536             0x209a1022
101244146Smav#define ATA_AMD_HUDSON2_S1	0x78001022
102244146Smav#define ATA_AMD_HUDSON2_S2	0x78011022
103244146Smav#define ATA_AMD_HUDSON2_S3	0x78021022
104244146Smav#define ATA_AMD_HUDSON2_S4	0x78031022
105244146Smav#define ATA_AMD_HUDSON2_S5	0x78041022
106244146Smav#define ATA_AMD_HUDSON2		0x780c1022
107111188Ssos
108178375Ssos#define ATA_ADAPTEC_ID          0x9005
109178375Ssos#define ATA_ADAPTEC_1420        0x02419005
110198700Smav#define ATA_ADAPTEC_1430        0x02439005
111111188Ssos
112154515Ssos#define ATA_ATI_ID              0x1002
113154515Ssos#define ATA_ATI_IXP200          0x43491002
114154515Ssos#define ATA_ATI_IXP300          0x43691002
115173734Ssos#define ATA_ATI_IXP300_S1       0x436e1002
116154515Ssos#define ATA_ATI_IXP400          0x43761002
117154515Ssos#define ATA_ATI_IXP400_S1       0x43791002
118154515Ssos#define ATA_ATI_IXP400_S2       0x437a1002
119173734Ssos#define ATA_ATI_IXP600          0x438c1002
120176891Ssos#define ATA_ATI_IXP600_S1       0x43801002
121173734Ssos#define ATA_ATI_IXP700          0x439c1002
122176891Ssos#define ATA_ATI_IXP700_S1       0x43901002
123191568Sjkim#define	ATA_ATI_IXP700_S2	0x43911002
124191568Sjkim#define	ATA_ATI_IXP700_S3	0x43921002
125191568Sjkim#define	ATA_ATI_IXP700_S4	0x43931002
126191568Sjkim#define	ATA_ATI_IXP800_S1	0x43941002
127191568Sjkim#define	ATA_ATI_IXP800_S2	0x43951002
128151267Ssos
129144330Ssos#define ATA_CENATEK_ID          0x16ca
130144330Ssos#define ATA_CENATEK_ROCKET      0x000116ca
131138555Ssos
132144330Ssos#define ATA_CYRIX_ID            0x1078
133144330Ssos#define ATA_CYRIX_5530          0x01021078
134111188Ssos
135144330Ssos#define ATA_CYPRESS_ID          0x1080
136144330Ssos#define ATA_CYPRESS_82C693      0xc6931080
137111188Ssos
138144330Ssos#define ATA_DEC_21150           0x00221011
139144330Ssos#define ATA_DEC_21150_1         0x00231011
140111188Ssos
141144330Ssos#define ATA_HIGHPOINT_ID        0x1103
142144330Ssos#define ATA_HPT366              0x00041103
143144330Ssos#define ATA_HPT372              0x00051103
144144330Ssos#define ATA_HPT302              0x00061103
145144330Ssos#define ATA_HPT371              0x00071103
146144330Ssos#define ATA_HPT374              0x00081103
147111188Ssos
148144330Ssos#define ATA_INTEL_ID            0x8086
149144330Ssos#define ATA_I960RM              0x09628086
150144330Ssos#define ATA_I82371FB            0x12308086
151144330Ssos#define ATA_I82371SB            0x70108086
152144330Ssos#define ATA_I82371AB            0x71118086
153144330Ssos#define ATA_I82443MX            0x71998086
154144330Ssos#define ATA_I82451NX            0x84ca8086
155144330Ssos#define ATA_I82372FB            0x76018086
156144330Ssos#define ATA_I82801AB            0x24218086
157144330Ssos#define ATA_I82801AA            0x24118086
158144330Ssos#define ATA_I82801BA            0x244a8086
159144330Ssos#define ATA_I82801BA_1          0x244b8086
160144330Ssos#define ATA_I82801CA            0x248a8086
161144330Ssos#define ATA_I82801CA_1          0x248b8086
162144330Ssos#define ATA_I82801DB            0x24cb8086
163144330Ssos#define ATA_I82801DB_1          0x24ca8086
164144330Ssos#define ATA_I82801EB            0x24db8086
165144330Ssos#define ATA_I82801EB_S1         0x24d18086
166144330Ssos#define ATA_I82801EB_R1         0x24df8086
167144330Ssos#define ATA_I6300ESB            0x25a28086
168144330Ssos#define ATA_I6300ESB_S1         0x25a38086
169144330Ssos#define ATA_I6300ESB_R1         0x25b08086
170161291Ssos#define ATA_I63XXESB2           0x269e8086
171161291Ssos#define ATA_I63XXESB2_S1        0x26808086
172161291Ssos#define ATA_I63XXESB2_S2        0x26818086
173161291Ssos#define ATA_I63XXESB2_R1        0x26828086
174161291Ssos#define ATA_I63XXESB2_R2        0x26838086
175144330Ssos#define ATA_I82801FB            0x266f8086
176144330Ssos#define ATA_I82801FB_S1         0x26518086
177144330Ssos#define ATA_I82801FB_R1         0x26528086
178161291Ssos#define ATA_I82801FBM           0x26538086
179146266Ssos#define ATA_I82801GB            0x27df8086
180146266Ssos#define ATA_I82801GB_S1         0x27c08086
181161291Ssos#define ATA_I82801GB_AH         0x27c18086
182146266Ssos#define ATA_I82801GB_R1         0x27c38086
183161291Ssos#define ATA_I82801GBM_S1        0x27c48086
184161291Ssos#define ATA_I82801GBM_AH        0x27c58086
185161291Ssos#define ATA_I82801GBM_R1        0x27c68086
186161291Ssos#define ATA_I82801HB_S1         0x28208086
187161291Ssos#define ATA_I82801HB_AH6        0x28218086
188161291Ssos#define ATA_I82801HB_R1         0x28228086
189161291Ssos#define ATA_I82801HB_AH4        0x28248086
190161291Ssos#define ATA_I82801HB_S2         0x28258086
191180383Sremko#define ATA_I82801HBM           0x28508086
192180437Sremko#define ATA_I82801HBM_S1        0x28288086
193180437Sremko#define ATA_I82801HBM_S2        0x28298086
194180437Sremko#define ATA_I82801HBM_S3        0x282a8086
195172134Ssimon#define ATA_I82801IB_S1         0x29208086
196220920Smav#define ATA_I82801IB_S3         0x29218086
197172134Ssimon#define ATA_I82801IB_AH6        0x29228086
198172134Ssimon#define ATA_I82801IB_AH4        0x29238086
199180382Sremko#define ATA_I82801IB_R1         0x29258086
200172134Ssimon#define ATA_I82801IB_S2         0x29268086
201228497Smav#define ATA_I82801IBM_S1        0x29288086
202228497Smav#define ATA_I82801IBM_AH        0x29298086
203228497Smav#define ATA_I82801IBM_R1        0x292a8086
204228497Smav#define ATA_I82801IBM_S2        0x292d8086
205183552Ssos#define ATA_I82801JIB_S1        0x3a208086
206183552Ssos#define ATA_I82801JIB_AH        0x3a228086
207183552Ssos#define ATA_I82801JIB_R1        0x3a258086
208183552Ssos#define ATA_I82801JIB_S2        0x3a268086
209183552Ssos#define ATA_I82801JD_S1         0x3a008086
210183552Ssos#define ATA_I82801JD_AH         0x3a028086
211183552Ssos#define ATA_I82801JD_R1         0x3a058086
212183552Ssos#define ATA_I82801JD_S2         0x3a068086
213199074Smav#define ATA_I82801JI_S1         0x3a208086
214199074Smav#define ATA_I82801JI_AH         0x3a228086
215199074Smav#define ATA_I82801JI_R1         0x3a258086
216199074Smav#define ATA_I82801JI_S2         0x3a268086
217211920Smav
218211920Smav#define ATA_5Series_S1          0x3b208086
219211920Smav#define ATA_5Series_S2          0x3b218086
220211920Smav#define ATA_5Series_AH1         0x3b228086
221211920Smav#define ATA_5Series_AH2         0x3b238086
222211920Smav#define ATA_5Series_R1          0x3b258086
223211920Smav#define ATA_5Series_S3          0x3b268086
224211920Smav#define ATA_5Series_S4          0x3b288086
225211920Smav#define ATA_5Series_AH3         0x3b298086
226211920Smav#define ATA_5Series_R2          0x3b2c8086
227211920Smav#define ATA_5Series_S5          0x3b2d8086
228211920Smav#define ATA_5Series_S6          0x3b2e8086
229211920Smav#define ATA_5Series_AH4         0x3b2f8086
230211920Smav
231211920Smav#define ATA_CPT_S1              0x1c008086
232211920Smav#define ATA_CPT_S2              0x1c018086
233211920Smav#define ATA_CPT_AH1             0x1c028086
234211920Smav#define ATA_CPT_AH2             0x1c038086
235211920Smav#define ATA_CPT_R1              0x1c048086
236211920Smav#define ATA_CPT_R2              0x1c058086
237211920Smav#define ATA_CPT_S3              0x1c088086
238211920Smav#define ATA_CPT_S4              0x1c098086
239211920Smav
240218149Sjfv#define ATA_PBG_S1		0x1d008086
241218149Sjfv#define ATA_PBG_AH1		0x1d028086
242218149Sjfv#define ATA_PBG_R1		0x1d048086
243218149Sjfv#define ATA_PBG_R2		0x1d068086
244229671Sjimharris#define ATA_PBG_R3		0x28268086
245218149Sjfv#define ATA_PBG_S2		0x1d088086
246218149Sjfv
247221789Sjfv#define ATA_PPT_S1		0x1e008086
248221789Sjfv#define ATA_PPT_S2		0x1e018086
249221789Sjfv#define ATA_PPT_AH1		0x1e028086
250221789Sjfv#define ATA_PPT_AH2		0x1e038086
251221789Sjfv#define ATA_PPT_R1		0x1e048086
252221789Sjfv#define ATA_PPT_R2		0x1e058086
253221789Sjfv#define ATA_PPT_R3		0x1e068086
254221789Sjfv#define ATA_PPT_R4		0x1e078086
255221789Sjfv#define ATA_PPT_S3		0x1e088086
256221789Sjfv#define ATA_PPT_S4		0x1e098086
257221789Sjfv#define ATA_PPT_R5		0x1e0e8086
258221789Sjfv#define ATA_PPT_R6		0x1e0f8086
259221789Sjfv
260260348Smav#define ATA_AVOTON_S1		0x1f208086
261260348Smav#define ATA_AVOTON_S2		0x1f218086
262260348Smav#define ATA_AVOTON_S3		0x1f308086
263260348Smav#define ATA_AVOTON_S4		0x1f318086
264260348Smav
265244983Sjfv#define ATA_LPT_S1		0x8c008086
266244983Sjfv#define ATA_LPT_S2		0x8c018086
267244983Sjfv#define ATA_LPT_AH1		0x8c028086
268244983Sjfv#define ATA_LPT_AH2		0x8c038086
269244983Sjfv#define ATA_LPT_R1		0x8c048086
270244983Sjfv#define ATA_LPT_R2		0x8c058086
271244983Sjfv#define ATA_LPT_R3		0x8c068086
272244983Sjfv#define ATA_LPT_R4		0x8c078086
273244983Sjfv#define ATA_LPT_S3		0x8c088086
274244983Sjfv#define ATA_LPT_S4		0x8c098086
275244983Sjfv#define ATA_LPT_R5		0x8c0e8086
276244983Sjfv#define ATA_LPT_R6		0x8c0f8086
277244983Sjfv
278260348Smav#define ATA_WELLS_S1		0x8d008086
279260348Smav#define ATA_WELLS_S2		0x8d088086
280260348Smav#define ATA_WELLS_S3		0x8d608086
281260348Smav#define ATA_WELLS_S4		0x8d688086
282260348Smav
283260348Smav#define ATA_LPTLP_S1		0x9c008086
284260348Smav#define ATA_LPTLP_S2		0x9c018086
285260348Smav#define ATA_LPTLP_S3		0x9c088086
286260348Smav#define ATA_LPTLP_S4		0x9c098086
287260348Smav
288154515Ssos#define ATA_I31244              0x32008086
289200857Smav#define ATA_ISCH                0x811a8086
290218140Sjfv#define ATA_DH89XXCC            0x23238086
291111188Ssos
292253475Sjfv#define ATA_COLETOCRK_AH1       0x23a38086
293253475Sjfv#define ATA_COLETOCRK_S1        0x23a18086
294253475Sjfv#define ATA_COLETOCRK_S2        0x23a68086
295253475Sjfv
296144330Ssos#define ATA_ITE_ID              0x1283
297148731Ssos#define ATA_IT8211F             0x82111283
298144330Ssos#define ATA_IT8212F             0x82121283
299183380Ssos#define ATA_IT8213F             0x82131283
300138555Ssos
301161291Ssos#define ATA_JMICRON_ID          0x197b
302161291Ssos#define ATA_JMB360              0x2360197b
303161291Ssos#define ATA_JMB361              0x2361197b
304239907Smav#define ATA_JMB362              0x2362197b
305161291Ssos#define ATA_JMB363              0x2363197b
306161291Ssos#define ATA_JMB365              0x2365197b
307161291Ssos#define ATA_JMB366              0x2366197b
308165759Ssos#define ATA_JMB368              0x2368197b
309154829Ssos
310153753Ssos#define ATA_MARVELL_ID          0x11ab
311153753Ssos#define ATA_M88SX5040           0x504011ab
312153753Ssos#define ATA_M88SX5041           0x504111ab
313153753Ssos#define ATA_M88SX5080           0x508011ab
314153753Ssos#define ATA_M88SX5081           0x508111ab
315153753Ssos#define ATA_M88SX6041           0x604111ab
316198700Smav#define ATA_M88SX6042           0x604211ab
317153753Ssos#define ATA_M88SX6081           0x608111ab
318198700Smav#define ATA_M88SX7042           0x704211ab
319232380Smav#define ATA_M88SE6101           0x610111ab
320232380Smav#define ATA_M88SE6102           0x610211ab
321232380Smav#define ATA_M88SE6111           0x611111ab
322232380Smav#define ATA_M88SE6121           0x612111ab
323232380Smav#define ATA_M88SE6141           0x614111ab
324232380Smav#define ATA_M88SE6145           0x614511ab
325203030Smav#define ATA_MARVELL2_ID         0x1b4b
326153753Ssos
327144330Ssos#define ATA_MICRON_ID           0x1042
328144330Ssos#define ATA_MICRON_RZ1000       0x10001042
329144330Ssos#define ATA_MICRON_RZ1001       0x10011042
330119404Ssos
331144330Ssos#define ATA_NATIONAL_ID         0x100b
332144330Ssos#define ATA_SC1100              0x0502100b
333111188Ssos
334166477Srink#define ATA_NETCELL_ID          0x169c
335166477Srink#define ATA_NETCELL_SR          0x0044169c
336166477Srink
337144330Ssos#define ATA_NVIDIA_ID           0x10de
338144330Ssos#define ATA_NFORCE1             0x01bc10de
339144330Ssos#define ATA_NFORCE2             0x006510de
340153473Ssos#define ATA_NFORCE2_PRO         0x008510de
341153473Ssos#define ATA_NFORCE2_PRO_S1      0x008e10de
342144330Ssos#define ATA_NFORCE3             0x00d510de
343144330Ssos#define ATA_NFORCE3_PRO         0x00e510de
344144330Ssos#define ATA_NFORCE3_PRO_S1      0x00e310de
345144330Ssos#define ATA_NFORCE3_PRO_S2      0x00ee10de
346153473Ssos#define ATA_NFORCE_MCP04        0x003510de
347153473Ssos#define ATA_NFORCE_MCP04_S1     0x003610de
348153473Ssos#define ATA_NFORCE_MCP04_S2     0x003e10de
349153473Ssos#define ATA_NFORCE_CK804        0x005310de
350153473Ssos#define ATA_NFORCE_CK804_S1     0x005410de
351153473Ssos#define ATA_NFORCE_CK804_S2     0x005510de
352153473Ssos#define ATA_NFORCE_MCP51        0x026510de
353153473Ssos#define ATA_NFORCE_MCP51_S1     0x026610de
354153473Ssos#define ATA_NFORCE_MCP51_S2     0x026710de
355153473Ssos#define ATA_NFORCE_MCP55        0x036e10de
356153473Ssos#define ATA_NFORCE_MCP55_S1     0x037e10de
357153473Ssos#define ATA_NFORCE_MCP55_S2     0x037f10de
358171025Ssos#define ATA_NFORCE_MCP61        0x03ec10de
359171025Ssos#define ATA_NFORCE_MCP61_S1     0x03e710de
360171025Ssos#define ATA_NFORCE_MCP61_S2     0x03f610de
361171025Ssos#define ATA_NFORCE_MCP61_S3     0x03f710de
362173734Ssos#define ATA_NFORCE_MCP65        0x044810de
363198818Smav#define ATA_NFORCE_MCP65_A0     0x044c10de
364198818Smav#define ATA_NFORCE_MCP65_A1     0x044d10de
365198818Smav#define ATA_NFORCE_MCP65_A2     0x044e10de
366198818Smav#define ATA_NFORCE_MCP65_A3     0x044f10de
367198818Smav#define ATA_NFORCE_MCP65_A4     0x045c10de
368198818Smav#define ATA_NFORCE_MCP65_A5     0x045d10de
369198818Smav#define ATA_NFORCE_MCP65_A6     0x045e10de
370198818Smav#define ATA_NFORCE_MCP65_A7     0x045f10de
371198818Smav#define ATA_NFORCE_MCP67        0x056010de
372188846Smav#define ATA_NFORCE_MCP67_A0     0x055010de
373188846Smav#define ATA_NFORCE_MCP67_A1     0x055110de
374188846Smav#define ATA_NFORCE_MCP67_A2     0x055210de
375188846Smav#define ATA_NFORCE_MCP67_A3     0x055310de
376188846Smav#define ATA_NFORCE_MCP67_A4     0x055410de
377188846Smav#define ATA_NFORCE_MCP67_A5     0x055510de
378188846Smav#define ATA_NFORCE_MCP67_A6     0x055610de
379188846Smav#define ATA_NFORCE_MCP67_A7     0x055710de
380188846Smav#define ATA_NFORCE_MCP67_A8     0x055810de
381188846Smav#define ATA_NFORCE_MCP67_A9     0x055910de
382188846Smav#define ATA_NFORCE_MCP67_AA     0x055A10de
383188846Smav#define ATA_NFORCE_MCP67_AB     0x055B10de
384193716Sariff#define ATA_NFORCE_MCP67_AC     0x058410de
385173734Ssos#define ATA_NFORCE_MCP73        0x056c10de
386188846Smav#define ATA_NFORCE_MCP73_A0     0x07f010de
387188846Smav#define ATA_NFORCE_MCP73_A1     0x07f110de
388188846Smav#define ATA_NFORCE_MCP73_A2     0x07f210de
389188846Smav#define ATA_NFORCE_MCP73_A3     0x07f310de
390188846Smav#define ATA_NFORCE_MCP73_A4     0x07f410de
391188846Smav#define ATA_NFORCE_MCP73_A5     0x07f510de
392188846Smav#define ATA_NFORCE_MCP73_A6     0x07f610de
393188846Smav#define ATA_NFORCE_MCP73_A7     0x07f710de
394188846Smav#define ATA_NFORCE_MCP73_A8     0x07f810de
395188846Smav#define ATA_NFORCE_MCP73_A9     0x07f910de
396188846Smav#define ATA_NFORCE_MCP73_AA     0x07fa10de
397188846Smav#define ATA_NFORCE_MCP73_AB     0x07fb10de
398173734Ssos#define ATA_NFORCE_MCP77        0x075910de
399198818Smav#define ATA_NFORCE_MCP77_A0     0x0ad010de
400198818Smav#define ATA_NFORCE_MCP77_A1     0x0ad110de
401198818Smav#define ATA_NFORCE_MCP77_A2     0x0ad210de
402198818Smav#define ATA_NFORCE_MCP77_A3     0x0ad310de
403198818Smav#define ATA_NFORCE_MCP77_A4     0x0ad410de
404198818Smav#define ATA_NFORCE_MCP77_A5     0x0ad510de
405198818Smav#define ATA_NFORCE_MCP77_A6     0x0ad610de
406198818Smav#define ATA_NFORCE_MCP77_A7     0x0ad710de
407198818Smav#define ATA_NFORCE_MCP77_A8     0x0ad810de
408198818Smav#define ATA_NFORCE_MCP77_A9     0x0ad910de
409198818Smav#define ATA_NFORCE_MCP77_AA     0x0ada10de
410198818Smav#define ATA_NFORCE_MCP77_AB     0x0adb10de
411198818Smav#define ATA_NFORCE_MCP79_A0     0x0ab410de
412198818Smav#define ATA_NFORCE_MCP79_A1     0x0ab510de
413198818Smav#define ATA_NFORCE_MCP79_A2     0x0ab610de
414198818Smav#define ATA_NFORCE_MCP79_A3     0x0ab710de
415198818Smav#define ATA_NFORCE_MCP79_A4     0x0ab810de
416198818Smav#define ATA_NFORCE_MCP79_A5     0x0ab910de
417198818Smav#define ATA_NFORCE_MCP79_A6     0x0aba10de
418198818Smav#define ATA_NFORCE_MCP79_A7     0x0abb10de
419198818Smav#define ATA_NFORCE_MCP79_A8     0x0abc10de
420198818Smav#define ATA_NFORCE_MCP79_A9     0x0abd10de
421198818Smav#define ATA_NFORCE_MCP79_AA     0x0abe10de
422198818Smav#define ATA_NFORCE_MCP79_AB     0x0abf10de
423198818Smav#define ATA_NFORCE_MCP89_A0     0x0d8410de
424198818Smav#define ATA_NFORCE_MCP89_A1     0x0d8510de
425198818Smav#define ATA_NFORCE_MCP89_A2     0x0d8610de
426198818Smav#define ATA_NFORCE_MCP89_A3     0x0d8710de
427198818Smav#define ATA_NFORCE_MCP89_A4     0x0d8810de
428198818Smav#define ATA_NFORCE_MCP89_A5     0x0d8910de
429198818Smav#define ATA_NFORCE_MCP89_A6     0x0d8a10de
430198818Smav#define ATA_NFORCE_MCP89_A7     0x0d8b10de
431198818Smav#define ATA_NFORCE_MCP89_A8     0x0d8c10de
432198818Smav#define ATA_NFORCE_MCP89_A9     0x0d8d10de
433198818Smav#define ATA_NFORCE_MCP89_AA     0x0d8e10de
434198818Smav#define ATA_NFORCE_MCP89_AB     0x0d8f10de
435134687Ssos
436144330Ssos#define ATA_PROMISE_ID          0x105a
437144330Ssos#define ATA_PDC20246            0x4d33105a
438144330Ssos#define ATA_PDC20262            0x4d38105a
439144330Ssos#define ATA_PDC20263            0x0d38105a
440144330Ssos#define ATA_PDC20265            0x0d30105a
441144330Ssos#define ATA_PDC20267            0x4d30105a
442144330Ssos#define ATA_PDC20268            0x4d68105a
443144330Ssos#define ATA_PDC20269            0x4d69105a
444144330Ssos#define ATA_PDC20270            0x6268105a
445144330Ssos#define ATA_PDC20271            0x6269105a
446144330Ssos#define ATA_PDC20275            0x1275105a
447144330Ssos#define ATA_PDC20276            0x5275105a
448144330Ssos#define ATA_PDC20277            0x7275105a
449144330Ssos#define ATA_PDC20318            0x3318105a
450144330Ssos#define ATA_PDC20319            0x3319105a
451144330Ssos#define ATA_PDC20371            0x3371105a
452144330Ssos#define ATA_PDC20375            0x3375105a
453144330Ssos#define ATA_PDC20376            0x3376105a
454144330Ssos#define ATA_PDC20377            0x3377105a
455144330Ssos#define ATA_PDC20378            0x3373105a
456144330Ssos#define ATA_PDC20379            0x3372105a
457144330Ssos#define ATA_PDC20571            0x3571105a
458144330Ssos#define ATA_PDC20575            0x3d75105a
459144330Ssos#define ATA_PDC20579            0x3574105a
460154515Ssos#define ATA_PDC20771            0x3570105a
461144330Ssos#define ATA_PDC40518            0x3d18105a
462145191Ssos#define ATA_PDC40519            0x3519105a
463148992Ssos#define ATA_PDC40718            0x3d17105a
464148992Ssos#define ATA_PDC40719            0x3515105a
465154515Ssos#define ATA_PDC40775            0x3d73105a
466154515Ssos#define ATA_PDC40779            0x3577105a
467144330Ssos#define ATA_PDC20617            0x6617105a
468144330Ssos#define ATA_PDC20618            0x6626105a
469144330Ssos#define ATA_PDC20619            0x6629105a
470144330Ssos#define ATA_PDC20620            0x6620105a
471144330Ssos#define ATA_PDC20621            0x6621105a
472144330Ssos#define ATA_PDC20622            0x6622105a
473154515Ssos#define ATA_PDC20624            0x6624105a
474154515Ssos#define ATA_PDC81518            0x8002105a
475111188Ssos
476144330Ssos#define ATA_SERVERWORKS_ID      0x1166
477144330Ssos#define ATA_ROSB4_ISA           0x02001166
478144330Ssos#define ATA_ROSB4               0x02111166
479144330Ssos#define ATA_CSB5                0x02121166
480144330Ssos#define ATA_CSB6                0x02131166
481144330Ssos#define ATA_CSB6_1              0x02171166
482161291Ssos#define ATA_HT1000              0x02141166
483161291Ssos#define ATA_HT1000_S1           0x024b1166
484161291Ssos#define ATA_HT1000_S2           0x024a1166
485162230Ssos#define ATA_K2			0x02401166
486162230Ssos#define ATA_FRODO4		0x02411166
487162230Ssos#define ATA_FRODO8		0x02421166
488111188Ssos
489144330Ssos#define ATA_SILICON_IMAGE_ID    0x1095
490144330Ssos#define ATA_SII3114             0x31141095
491144330Ssos#define ATA_SII3512             0x35121095
492144330Ssos#define ATA_SII3112             0x31121095
493144330Ssos#define ATA_SII3112_1           0x02401095
494167386Ssos#define ATA_SII3124		0x31241095
495167386Ssos#define ATA_SII3132		0x31321095
496182749Smav#define ATA_SII3132_1		0x02421095
497191897Smav#define ATA_SII3132_2		0x02441095
498144330Ssos#define ATA_SII0680             0x06801095
499144330Ssos#define ATA_CMD646              0x06461095
500144330Ssos#define ATA_CMD648              0x06481095
501144330Ssos#define ATA_CMD649              0x06491095
502111188Ssos
503144330Ssos#define ATA_SIS_ID              0x1039
504144330Ssos#define ATA_SISSOUTH            0x00081039
505144330Ssos#define ATA_SIS5511             0x55111039
506144330Ssos#define ATA_SIS5513             0x55131039
507144330Ssos#define ATA_SIS5517             0x55171039
508144330Ssos#define ATA_SIS5518             0x55181039
509144330Ssos#define ATA_SIS5571             0x55711039
510144330Ssos#define ATA_SIS5591             0x55911039
511144330Ssos#define ATA_SIS5596             0x55961039
512144330Ssos#define ATA_SIS5597             0x55971039
513144330Ssos#define ATA_SIS5598             0x55981039
514144330Ssos#define ATA_SIS5600             0x56001039
515144330Ssos#define ATA_SIS530              0x05301039
516144330Ssos#define ATA_SIS540              0x05401039
517144330Ssos#define ATA_SIS550              0x05501039
518144330Ssos#define ATA_SIS620              0x06201039
519144330Ssos#define ATA_SIS630              0x06301039
520144330Ssos#define ATA_SIS635              0x06351039
521144330Ssos#define ATA_SIS633              0x06331039
522144330Ssos#define ATA_SIS640              0x06401039
523144330Ssos#define ATA_SIS645              0x06451039
524144330Ssos#define ATA_SIS646              0x06461039
525144330Ssos#define ATA_SIS648              0x06481039
526144330Ssos#define ATA_SIS650              0x06501039
527144330Ssos#define ATA_SIS651              0x06511039
528144330Ssos#define ATA_SIS652              0x06521039
529144330Ssos#define ATA_SIS655              0x06551039
530144330Ssos#define ATA_SIS658              0x06581039
531144330Ssos#define ATA_SIS661              0x06611039
532144330Ssos#define ATA_SIS730              0x07301039
533144330Ssos#define ATA_SIS733              0x07331039
534144330Ssos#define ATA_SIS735              0x07351039
535144330Ssos#define ATA_SIS740              0x07401039
536144330Ssos#define ATA_SIS745              0x07451039
537144330Ssos#define ATA_SIS746              0x07461039
538144330Ssos#define ATA_SIS748              0x07481039
539144330Ssos#define ATA_SIS750              0x07501039
540144330Ssos#define ATA_SIS751              0x07511039
541144330Ssos#define ATA_SIS752              0x07521039
542144330Ssos#define ATA_SIS755              0x07551039
543144330Ssos#define ATA_SIS961              0x09611039
544144330Ssos#define ATA_SIS962              0x09621039
545144330Ssos#define ATA_SIS963              0x09631039
546144330Ssos#define ATA_SIS964              0x09641039
547144382Ssos#define ATA_SIS965              0x09651039
548144330Ssos#define ATA_SIS180              0x01801039
549144330Ssos#define ATA_SIS181              0x01811039
550144382Ssos#define ATA_SIS182              0x01821039
551111188Ssos
552144330Ssos#define ATA_VIA_ID              0x1106
553144330Ssos#define ATA_VIA82C571           0x05711106
554144330Ssos#define ATA_VIA82C586           0x05861106
555144330Ssos#define ATA_VIA82C596           0x05961106
556144330Ssos#define ATA_VIA82C686           0x06861106
557144330Ssos#define ATA_VIA8231             0x82311106
558144330Ssos#define ATA_VIA8233             0x30741106
559144330Ssos#define ATA_VIA8233A            0x31471106
560144330Ssos#define ATA_VIA8233C            0x31091106
561144330Ssos#define ATA_VIA8235             0x31771106
562144330Ssos#define ATA_VIA8237             0x32271106
563161883Ssos#define ATA_VIA8237A            0x05911106
564172446Ssos#define ATA_VIA8237S		0x53371106
565198481Smav#define ATA_VIA8237_5372	0x53721106
566198481Smav#define ATA_VIA8237_7372	0x73721106
567153415Ssos#define ATA_VIA8251             0x33491106
568144330Ssos#define ATA_VIA8361             0x31121106
569144330Ssos#define ATA_VIA8363             0x03051106
570144330Ssos#define ATA_VIA8371             0x03911106
571144330Ssos#define ATA_VIA8662             0x31021106
572144330Ssos#define ATA_VIA6410             0x31641106
573144330Ssos#define ATA_VIA6420             0x31491106
574144808Ssos#define ATA_VIA6421             0x32491106
575200754Smav#define ATA_VIACX700IDE         0x05811106
576200754Smav#define ATA_VIACX700            0x83241106
577200754Smav#define ATA_VIASATAIDE          0x53241106
578200754Smav#define ATA_VIAVX800            0x83531106
579215431Smav#define ATA_VIASATAIDE2         0xc4091106
580200754Smav#define ATA_VIAVX855            0x84091106
581215431Smav#define ATA_VIASATAIDE3         0x90011106
582215431Smav#define ATA_VIAVX900            0x84101106
583144330Ssos
584144330Ssos/* global prototypes ata-pci.c */
585144330Ssosint ata_pci_probe(device_t dev);
586144330Ssosint ata_pci_attach(device_t dev);
587144330Ssosint ata_pci_detach(device_t dev);
588183141Ssosint ata_pci_suspend(device_t dev);
589183141Ssosint ata_pci_resume(device_t dev);
590199322Smavint ata_pci_read_ivar(device_t dev, device_t child, int which, uintptr_t *result);
591199322Smavint ata_pci_write_ivar(device_t dev, device_t child, int which, uintptr_t value);
592199322Smavuint32_t ata_pci_read_config(device_t dev, device_t child, int reg, int width);
593199322Smavvoid ata_pci_write_config(device_t dev, device_t child, int reg,
594199322Smav    uint32_t val, int width);
595226680Smavint ata_pci_print_child(device_t dev, device_t child);
596208410Smavint ata_pci_child_location_str(device_t dev, device_t child, char *buf,
597208410Smav    size_t buflen);
598144330Ssosstruct resource * ata_pci_alloc_resource(device_t dev, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags);
599144330Ssosint ata_pci_release_resource(device_t dev, device_t child, int type, int rid, struct resource *r);
600166901Spisoint ata_pci_setup_intr(device_t dev, device_t child, struct resource *irq, int flags, driver_filter_t *filter, driver_intr_t *function, void *argument, void **cookiep);
601144330Ssos int ata_pci_teardown_intr(device_t dev, device_t child, struct resource *irq, void *cookie);
602188765Smavint ata_pci_ch_attach(device_t dev);
603188769Smavint ata_pci_ch_detach(device_t dev);
604178156Ssosint ata_pci_status(device_t dev);
605154507Ssosvoid ata_pci_hw(device_t dev);
606173734Ssosvoid ata_pci_dmainit(device_t dev);
607188769Smavvoid ata_pci_dmafini(device_t dev);
608233282Smariusconst char *ata_pcivendor2str(device_t dev);
609183724Ssosint ata_legacy(device_t);
610183724Ssosvoid ata_generic_intr(void *data);
611200171Smavint ata_generic_chipinit(device_t dev);
612200171Smavint ata_generic_setmode(device_t dev, int target, int mode);
613183724Ssosint ata_setup_interrupt(device_t dev, void *intr_func);
614183724Ssosvoid ata_set_desc(device_t dev);
615233282Smariusconst struct ata_chip_id *ata_match_chip(device_t dev, const struct ata_chip_id *index);
616233282Smariusconst struct ata_chip_id *ata_find_chip(device_t dev, const struct ata_chip_id *index, int slot);
617183724Ssosint ata_mode2idx(int mode);
618128530Ssos
619183724Ssos/* global prototypes from chipsets/ata-*.c */
620183724Ssosint ata_ahci_chipinit(device_t);
621183724Ssosint ata_marvell_edma_chipinit(device_t);
622183724Ssosint ata_sii_chipinit(device_t);
623144330Ssos
624183724Ssos/* externs */
625183724Ssosextern devclass_t ata_pci_devclass;
626183724Ssos
627224270SmavMALLOC_DECLARE(M_ATAPCI);
628224270Smav
629183724Ssos/* macro for easy definition of all driver module stuff */
630183724Ssos#define ATA_DECLARE_DRIVER(dname) \
631183724Ssosstatic device_method_t __CONCAT(dname,_methods)[] = { \
632183724Ssos    DEVMETHOD(device_probe,     __CONCAT(dname,_probe)), \
633183724Ssos    DEVMETHOD(device_attach,    ata_pci_attach), \
634183724Ssos    DEVMETHOD(device_detach,    ata_pci_detach), \
635185500Smav    DEVMETHOD(device_suspend,   ata_pci_suspend), \
636185500Smav    DEVMETHOD(device_resume,    ata_pci_resume), \
637183724Ssos    DEVMETHOD(device_shutdown,  bus_generic_shutdown), \
638199322Smav    DEVMETHOD(bus_read_ivar,		ata_pci_read_ivar), \
639199322Smav    DEVMETHOD(bus_write_ivar,		ata_pci_write_ivar), \
640183724Ssos    DEVMETHOD(bus_alloc_resource,       ata_pci_alloc_resource), \
641183724Ssos    DEVMETHOD(bus_release_resource,     ata_pci_release_resource), \
642183724Ssos    DEVMETHOD(bus_activate_resource,    bus_generic_activate_resource), \
643183724Ssos    DEVMETHOD(bus_deactivate_resource,  bus_generic_deactivate_resource), \
644183724Ssos    DEVMETHOD(bus_setup_intr,           ata_pci_setup_intr), \
645183724Ssos    DEVMETHOD(bus_teardown_intr,        ata_pci_teardown_intr), \
646199322Smav    DEVMETHOD(pci_read_config,		ata_pci_read_config), \
647199322Smav    DEVMETHOD(pci_write_config,		ata_pci_write_config), \
648226680Smav    DEVMETHOD(bus_print_child,		ata_pci_print_child), \
649208410Smav    DEVMETHOD(bus_child_location_str,	ata_pci_child_location_str), \
650233282Smarius    DEVMETHOD_END \
651183724Ssos}; \
652183724Ssosstatic driver_t __CONCAT(dname,_driver) = { \
653183724Ssos        "atapci", \
654183724Ssos        __CONCAT(dname,_methods), \
655183724Ssos        sizeof(struct ata_pci_controller) \
656183724Ssos}; \
657233282SmariusDRIVER_MODULE(dname, pci, __CONCAT(dname,_driver), ata_pci_devclass, NULL, NULL); \
658183724SsosMODULE_VERSION(dname, 1); \
659183724SsosMODULE_DEPEND(dname, ata, 1, 1, 1); \
660183724SsosMODULE_DEPEND(dname, atapci, 1, 1, 1);
661