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
172144330Ssos#define ATA_I82801FB            0x266f8086
173144330Ssos#define ATA_I82801FB_S1         0x26518086
174144330Ssos#define ATA_I82801FB_R1         0x26528086
175161291Ssos#define ATA_I82801FBM           0x26538086
176146266Ssos#define ATA_I82801GB            0x27df8086
177146266Ssos#define ATA_I82801GB_S1         0x27c08086
178161291Ssos#define ATA_I82801GBM_S1        0x27c48086
179161291Ssos#define ATA_I82801HB_S1         0x28208086
180161291Ssos#define ATA_I82801HB_S2         0x28258086
181180383Sremko#define ATA_I82801HBM           0x28508086
182180437Sremko#define ATA_I82801HBM_S1        0x28288086
183172134Ssimon#define ATA_I82801IB_S1         0x29208086
184220920Smav#define ATA_I82801IB_S3         0x29218086
185180382Sremko#define ATA_I82801IB_R1         0x29258086
186172134Ssimon#define ATA_I82801IB_S2         0x29268086
187228497Smav#define ATA_I82801IBM_S1        0x29288086
188228497Smav#define ATA_I82801IBM_S2        0x292d8086
189183552Ssos#define ATA_I82801JIB_S1        0x3a208086
190183552Ssos#define ATA_I82801JIB_S2        0x3a268086
191183552Ssos#define ATA_I82801JD_S1         0x3a008086
192183552Ssos#define ATA_I82801JD_S2         0x3a068086
193199074Smav#define ATA_I82801JI_S1         0x3a208086
194199074Smav#define ATA_I82801JI_S2         0x3a268086
195211920Smav
196211920Smav#define ATA_5Series_S1          0x3b208086
197211920Smav#define ATA_5Series_S2          0x3b218086
198211920Smav#define ATA_5Series_S3          0x3b268086
199211920Smav#define ATA_5Series_S4          0x3b288086
200211920Smav#define ATA_5Series_S5          0x3b2d8086
201211920Smav#define ATA_5Series_S6          0x3b2e8086
202211920Smav
203211920Smav#define ATA_CPT_S1              0x1c008086
204211920Smav#define ATA_CPT_S2              0x1c018086
205211920Smav#define ATA_CPT_S3              0x1c088086
206211920Smav#define ATA_CPT_S4              0x1c098086
207211920Smav
208218149Sjfv#define ATA_PBG_S1		0x1d008086
209218149Sjfv#define ATA_PBG_S2		0x1d088086
210218149Sjfv
211221789Sjfv#define ATA_PPT_S1		0x1e008086
212221789Sjfv#define ATA_PPT_S2		0x1e018086
213221789Sjfv#define ATA_PPT_S3		0x1e088086
214221789Sjfv#define ATA_PPT_S4		0x1e098086
215221789Sjfv
216260348Smav#define ATA_AVOTON_S1		0x1f208086
217260348Smav#define ATA_AVOTON_S2		0x1f218086
218260348Smav#define ATA_AVOTON_S3		0x1f308086
219260348Smav#define ATA_AVOTON_S4		0x1f318086
220260348Smav
221244983Sjfv#define ATA_LPT_S1		0x8c008086
222244983Sjfv#define ATA_LPT_S2		0x8c018086
223244983Sjfv#define ATA_LPT_S3		0x8c088086
224244983Sjfv#define ATA_LPT_S4		0x8c098086
225244983Sjfv
226275439Smav#define ATA_WCPT_S1		0x8c808086
227275439Smav#define ATA_WCPT_S2		0x8c818086
228275439Smav#define ATA_WCPT_S3		0x8c888086
229275439Smav#define ATA_WCPT_S4		0x8c898086
230275439Smav
231260348Smav#define ATA_WELLS_S1		0x8d008086
232260348Smav#define ATA_WELLS_S2		0x8d088086
233260348Smav#define ATA_WELLS_S3		0x8d608086
234260348Smav#define ATA_WELLS_S4		0x8d688086
235260348Smav
236260348Smav#define ATA_LPTLP_S1		0x9c008086
237260348Smav#define ATA_LPTLP_S2		0x9c018086
238260348Smav#define ATA_LPTLP_S3		0x9c088086
239260348Smav#define ATA_LPTLP_S4		0x9c098086
240260348Smav
241154515Ssos#define ATA_I31244              0x32008086
242200857Smav#define ATA_ISCH                0x811a8086
243111188Ssos
244253475Sjfv#define ATA_COLETOCRK_S1        0x23a18086
245253475Sjfv#define ATA_COLETOCRK_S2        0x23a68086
246253475Sjfv
247144330Ssos#define ATA_ITE_ID              0x1283
248148731Ssos#define ATA_IT8211F             0x82111283
249144330Ssos#define ATA_IT8212F             0x82121283
250183380Ssos#define ATA_IT8213F             0x82131283
251138555Ssos
252161291Ssos#define ATA_JMICRON_ID          0x197b
253161291Ssos#define ATA_JMB360              0x2360197b
254161291Ssos#define ATA_JMB361              0x2361197b
255239907Smav#define ATA_JMB362              0x2362197b
256161291Ssos#define ATA_JMB363              0x2363197b
257161291Ssos#define ATA_JMB365              0x2365197b
258161291Ssos#define ATA_JMB366              0x2366197b
259165759Ssos#define ATA_JMB368              0x2368197b
260273725Smav#define ATA_JMB368_2            0x0368197b
261154829Ssos
262153753Ssos#define ATA_MARVELL_ID          0x11ab
263232380Smav#define ATA_M88SE6101           0x610111ab
264232380Smav#define ATA_M88SE6102           0x610211ab
265232380Smav#define ATA_M88SE6111           0x611111ab
266232380Smav#define ATA_M88SE6121           0x612111ab
267232380Smav#define ATA_M88SE6141           0x614111ab
268232380Smav#define ATA_M88SE6145           0x614511ab
269203030Smav#define ATA_MARVELL2_ID         0x1b4b
270153753Ssos
271144330Ssos#define ATA_MICRON_ID           0x1042
272144330Ssos#define ATA_MICRON_RZ1000       0x10001042
273144330Ssos#define ATA_MICRON_RZ1001       0x10011042
274119404Ssos
275144330Ssos#define ATA_NATIONAL_ID         0x100b
276144330Ssos#define ATA_SC1100              0x0502100b
277111188Ssos
278166477Srink#define ATA_NETCELL_ID          0x169c
279166477Srink#define ATA_NETCELL_SR          0x0044169c
280166477Srink
281144330Ssos#define ATA_NVIDIA_ID           0x10de
282144330Ssos#define ATA_NFORCE1             0x01bc10de
283144330Ssos#define ATA_NFORCE2             0x006510de
284153473Ssos#define ATA_NFORCE2_PRO         0x008510de
285153473Ssos#define ATA_NFORCE2_PRO_S1      0x008e10de
286144330Ssos#define ATA_NFORCE3             0x00d510de
287144330Ssos#define ATA_NFORCE3_PRO         0x00e510de
288144330Ssos#define ATA_NFORCE3_PRO_S1      0x00e310de
289144330Ssos#define ATA_NFORCE3_PRO_S2      0x00ee10de
290153473Ssos#define ATA_NFORCE_MCP04        0x003510de
291153473Ssos#define ATA_NFORCE_MCP04_S1     0x003610de
292153473Ssos#define ATA_NFORCE_MCP04_S2     0x003e10de
293153473Ssos#define ATA_NFORCE_CK804        0x005310de
294153473Ssos#define ATA_NFORCE_CK804_S1     0x005410de
295153473Ssos#define ATA_NFORCE_CK804_S2     0x005510de
296153473Ssos#define ATA_NFORCE_MCP51        0x026510de
297153473Ssos#define ATA_NFORCE_MCP51_S1     0x026610de
298153473Ssos#define ATA_NFORCE_MCP51_S2     0x026710de
299153473Ssos#define ATA_NFORCE_MCP55        0x036e10de
300153473Ssos#define ATA_NFORCE_MCP55_S1     0x037e10de
301153473Ssos#define ATA_NFORCE_MCP55_S2     0x037f10de
302171025Ssos#define ATA_NFORCE_MCP61        0x03ec10de
303171025Ssos#define ATA_NFORCE_MCP61_S1     0x03e710de
304171025Ssos#define ATA_NFORCE_MCP61_S2     0x03f610de
305171025Ssos#define ATA_NFORCE_MCP61_S3     0x03f710de
306173734Ssos#define ATA_NFORCE_MCP65        0x044810de
307198818Smav#define ATA_NFORCE_MCP65_A0     0x044c10de
308198818Smav#define ATA_NFORCE_MCP65_A1     0x044d10de
309198818Smav#define ATA_NFORCE_MCP65_A2     0x044e10de
310198818Smav#define ATA_NFORCE_MCP65_A3     0x044f10de
311198818Smav#define ATA_NFORCE_MCP65_A4     0x045c10de
312198818Smav#define ATA_NFORCE_MCP65_A5     0x045d10de
313198818Smav#define ATA_NFORCE_MCP65_A6     0x045e10de
314198818Smav#define ATA_NFORCE_MCP65_A7     0x045f10de
315198818Smav#define ATA_NFORCE_MCP67        0x056010de
316188846Smav#define ATA_NFORCE_MCP67_A0     0x055010de
317188846Smav#define ATA_NFORCE_MCP67_A1     0x055110de
318188846Smav#define ATA_NFORCE_MCP67_A2     0x055210de
319188846Smav#define ATA_NFORCE_MCP67_A3     0x055310de
320188846Smav#define ATA_NFORCE_MCP67_A4     0x055410de
321188846Smav#define ATA_NFORCE_MCP67_A5     0x055510de
322188846Smav#define ATA_NFORCE_MCP67_A6     0x055610de
323188846Smav#define ATA_NFORCE_MCP67_A7     0x055710de
324188846Smav#define ATA_NFORCE_MCP67_A8     0x055810de
325188846Smav#define ATA_NFORCE_MCP67_A9     0x055910de
326188846Smav#define ATA_NFORCE_MCP67_AA     0x055A10de
327188846Smav#define ATA_NFORCE_MCP67_AB     0x055B10de
328193716Sariff#define ATA_NFORCE_MCP67_AC     0x058410de
329173734Ssos#define ATA_NFORCE_MCP73        0x056c10de
330188846Smav#define ATA_NFORCE_MCP73_A0     0x07f010de
331188846Smav#define ATA_NFORCE_MCP73_A1     0x07f110de
332188846Smav#define ATA_NFORCE_MCP73_A2     0x07f210de
333188846Smav#define ATA_NFORCE_MCP73_A3     0x07f310de
334188846Smav#define ATA_NFORCE_MCP73_A4     0x07f410de
335188846Smav#define ATA_NFORCE_MCP73_A5     0x07f510de
336188846Smav#define ATA_NFORCE_MCP73_A6     0x07f610de
337188846Smav#define ATA_NFORCE_MCP73_A7     0x07f710de
338188846Smav#define ATA_NFORCE_MCP73_A8     0x07f810de
339188846Smav#define ATA_NFORCE_MCP73_A9     0x07f910de
340188846Smav#define ATA_NFORCE_MCP73_AA     0x07fa10de
341188846Smav#define ATA_NFORCE_MCP73_AB     0x07fb10de
342173734Ssos#define ATA_NFORCE_MCP77        0x075910de
343198818Smav#define ATA_NFORCE_MCP77_A0     0x0ad010de
344198818Smav#define ATA_NFORCE_MCP77_A1     0x0ad110de
345198818Smav#define ATA_NFORCE_MCP77_A2     0x0ad210de
346198818Smav#define ATA_NFORCE_MCP77_A3     0x0ad310de
347198818Smav#define ATA_NFORCE_MCP77_A4     0x0ad410de
348198818Smav#define ATA_NFORCE_MCP77_A5     0x0ad510de
349198818Smav#define ATA_NFORCE_MCP77_A6     0x0ad610de
350198818Smav#define ATA_NFORCE_MCP77_A7     0x0ad710de
351198818Smav#define ATA_NFORCE_MCP77_A8     0x0ad810de
352198818Smav#define ATA_NFORCE_MCP77_A9     0x0ad910de
353198818Smav#define ATA_NFORCE_MCP77_AA     0x0ada10de
354198818Smav#define ATA_NFORCE_MCP77_AB     0x0adb10de
355198818Smav#define ATA_NFORCE_MCP79_A0     0x0ab410de
356198818Smav#define ATA_NFORCE_MCP79_A1     0x0ab510de
357198818Smav#define ATA_NFORCE_MCP79_A2     0x0ab610de
358198818Smav#define ATA_NFORCE_MCP79_A3     0x0ab710de
359198818Smav#define ATA_NFORCE_MCP79_A4     0x0ab810de
360198818Smav#define ATA_NFORCE_MCP79_A5     0x0ab910de
361198818Smav#define ATA_NFORCE_MCP79_A6     0x0aba10de
362198818Smav#define ATA_NFORCE_MCP79_A7     0x0abb10de
363198818Smav#define ATA_NFORCE_MCP79_A8     0x0abc10de
364198818Smav#define ATA_NFORCE_MCP79_A9     0x0abd10de
365198818Smav#define ATA_NFORCE_MCP79_AA     0x0abe10de
366198818Smav#define ATA_NFORCE_MCP79_AB     0x0abf10de
367198818Smav#define ATA_NFORCE_MCP89_A0     0x0d8410de
368198818Smav#define ATA_NFORCE_MCP89_A1     0x0d8510de
369198818Smav#define ATA_NFORCE_MCP89_A2     0x0d8610de
370198818Smav#define ATA_NFORCE_MCP89_A3     0x0d8710de
371198818Smav#define ATA_NFORCE_MCP89_A4     0x0d8810de
372198818Smav#define ATA_NFORCE_MCP89_A5     0x0d8910de
373198818Smav#define ATA_NFORCE_MCP89_A6     0x0d8a10de
374198818Smav#define ATA_NFORCE_MCP89_A7     0x0d8b10de
375198818Smav#define ATA_NFORCE_MCP89_A8     0x0d8c10de
376198818Smav#define ATA_NFORCE_MCP89_A9     0x0d8d10de
377198818Smav#define ATA_NFORCE_MCP89_AA     0x0d8e10de
378198818Smav#define ATA_NFORCE_MCP89_AB     0x0d8f10de
379134687Ssos
380144330Ssos#define ATA_PROMISE_ID          0x105a
381144330Ssos#define ATA_PDC20246            0x4d33105a
382144330Ssos#define ATA_PDC20262            0x4d38105a
383144330Ssos#define ATA_PDC20263            0x0d38105a
384144330Ssos#define ATA_PDC20265            0x0d30105a
385144330Ssos#define ATA_PDC20267            0x4d30105a
386144330Ssos#define ATA_PDC20268            0x4d68105a
387144330Ssos#define ATA_PDC20269            0x4d69105a
388144330Ssos#define ATA_PDC20270            0x6268105a
389144330Ssos#define ATA_PDC20271            0x6269105a
390144330Ssos#define ATA_PDC20275            0x1275105a
391144330Ssos#define ATA_PDC20276            0x5275105a
392144330Ssos#define ATA_PDC20277            0x7275105a
393144330Ssos#define ATA_PDC20318            0x3318105a
394144330Ssos#define ATA_PDC20319            0x3319105a
395144330Ssos#define ATA_PDC20371            0x3371105a
396144330Ssos#define ATA_PDC20375            0x3375105a
397144330Ssos#define ATA_PDC20376            0x3376105a
398144330Ssos#define ATA_PDC20377            0x3377105a
399144330Ssos#define ATA_PDC20378            0x3373105a
400144330Ssos#define ATA_PDC20379            0x3372105a
401144330Ssos#define ATA_PDC20571            0x3571105a
402144330Ssos#define ATA_PDC20575            0x3d75105a
403144330Ssos#define ATA_PDC20579            0x3574105a
404154515Ssos#define ATA_PDC20771            0x3570105a
405144330Ssos#define ATA_PDC40518            0x3d18105a
406145191Ssos#define ATA_PDC40519            0x3519105a
407148992Ssos#define ATA_PDC40718            0x3d17105a
408148992Ssos#define ATA_PDC40719            0x3515105a
409154515Ssos#define ATA_PDC40775            0x3d73105a
410154515Ssos#define ATA_PDC40779            0x3577105a
411144330Ssos#define ATA_PDC20617            0x6617105a
412144330Ssos#define ATA_PDC20618            0x6626105a
413144330Ssos#define ATA_PDC20619            0x6629105a
414144330Ssos#define ATA_PDC20620            0x6620105a
415144330Ssos#define ATA_PDC20621            0x6621105a
416144330Ssos#define ATA_PDC20622            0x6622105a
417154515Ssos#define ATA_PDC20624            0x6624105a
418154515Ssos#define ATA_PDC81518            0x8002105a
419111188Ssos
420144330Ssos#define ATA_SERVERWORKS_ID      0x1166
421144330Ssos#define ATA_ROSB4_ISA           0x02001166
422144330Ssos#define ATA_ROSB4               0x02111166
423144330Ssos#define ATA_CSB5                0x02121166
424144330Ssos#define ATA_CSB6                0x02131166
425144330Ssos#define ATA_CSB6_1              0x02171166
426161291Ssos#define ATA_HT1000              0x02141166
427161291Ssos#define ATA_HT1000_S1           0x024b1166
428161291Ssos#define ATA_HT1000_S2           0x024a1166
429162230Ssos#define ATA_K2			0x02401166
430162230Ssos#define ATA_FRODO4		0x02411166
431162230Ssos#define ATA_FRODO8		0x02421166
432111188Ssos
433144330Ssos#define ATA_SILICON_IMAGE_ID    0x1095
434144330Ssos#define ATA_SII3114             0x31141095
435144330Ssos#define ATA_SII3512             0x35121095
436144330Ssos#define ATA_SII3112             0x31121095
437144330Ssos#define ATA_SII3112_1           0x02401095
438144330Ssos#define ATA_SII0680             0x06801095
439144330Ssos#define ATA_CMD646              0x06461095
440144330Ssos#define ATA_CMD648              0x06481095
441144330Ssos#define ATA_CMD649              0x06491095
442111188Ssos
443144330Ssos#define ATA_SIS_ID              0x1039
444144330Ssos#define ATA_SISSOUTH            0x00081039
445144330Ssos#define ATA_SIS5511             0x55111039
446144330Ssos#define ATA_SIS5513             0x55131039
447144330Ssos#define ATA_SIS5517             0x55171039
448144330Ssos#define ATA_SIS5518             0x55181039
449144330Ssos#define ATA_SIS5571             0x55711039
450144330Ssos#define ATA_SIS5591             0x55911039
451144330Ssos#define ATA_SIS5596             0x55961039
452144330Ssos#define ATA_SIS5597             0x55971039
453144330Ssos#define ATA_SIS5598             0x55981039
454144330Ssos#define ATA_SIS5600             0x56001039
455144330Ssos#define ATA_SIS530              0x05301039
456144330Ssos#define ATA_SIS540              0x05401039
457144330Ssos#define ATA_SIS550              0x05501039
458144330Ssos#define ATA_SIS620              0x06201039
459144330Ssos#define ATA_SIS630              0x06301039
460144330Ssos#define ATA_SIS635              0x06351039
461144330Ssos#define ATA_SIS633              0x06331039
462144330Ssos#define ATA_SIS640              0x06401039
463144330Ssos#define ATA_SIS645              0x06451039
464144330Ssos#define ATA_SIS646              0x06461039
465144330Ssos#define ATA_SIS648              0x06481039
466144330Ssos#define ATA_SIS650              0x06501039
467144330Ssos#define ATA_SIS651              0x06511039
468144330Ssos#define ATA_SIS652              0x06521039
469144330Ssos#define ATA_SIS655              0x06551039
470144330Ssos#define ATA_SIS658              0x06581039
471144330Ssos#define ATA_SIS661              0x06611039
472144330Ssos#define ATA_SIS730              0x07301039
473144330Ssos#define ATA_SIS733              0x07331039
474144330Ssos#define ATA_SIS735              0x07351039
475144330Ssos#define ATA_SIS740              0x07401039
476144330Ssos#define ATA_SIS745              0x07451039
477144330Ssos#define ATA_SIS746              0x07461039
478144330Ssos#define ATA_SIS748              0x07481039
479144330Ssos#define ATA_SIS750              0x07501039
480144330Ssos#define ATA_SIS751              0x07511039
481144330Ssos#define ATA_SIS752              0x07521039
482144330Ssos#define ATA_SIS755              0x07551039
483144330Ssos#define ATA_SIS961              0x09611039
484144330Ssos#define ATA_SIS962              0x09621039
485144330Ssos#define ATA_SIS963              0x09631039
486144330Ssos#define ATA_SIS964              0x09641039
487144382Ssos#define ATA_SIS965              0x09651039
488144330Ssos#define ATA_SIS180              0x01801039
489144330Ssos#define ATA_SIS181              0x01811039
490144382Ssos#define ATA_SIS182              0x01821039
491111188Ssos
492144330Ssos#define ATA_VIA_ID              0x1106
493144330Ssos#define ATA_VIA82C571           0x05711106
494144330Ssos#define ATA_VIA82C586           0x05861106
495144330Ssos#define ATA_VIA82C596           0x05961106
496144330Ssos#define ATA_VIA82C686           0x06861106
497144330Ssos#define ATA_VIA8231             0x82311106
498144330Ssos#define ATA_VIA8233             0x30741106
499144330Ssos#define ATA_VIA8233A            0x31471106
500144330Ssos#define ATA_VIA8233C            0x31091106
501144330Ssos#define ATA_VIA8235             0x31771106
502144330Ssos#define ATA_VIA8237             0x32271106
503161883Ssos#define ATA_VIA8237A            0x05911106
504172446Ssos#define ATA_VIA8237S		0x53371106
505198481Smav#define ATA_VIA8237_5372	0x53721106
506198481Smav#define ATA_VIA8237_7372	0x73721106
507153415Ssos#define ATA_VIA8251             0x33491106
508144330Ssos#define ATA_VIA8361             0x31121106
509144330Ssos#define ATA_VIA8363             0x03051106
510144330Ssos#define ATA_VIA8371             0x03911106
511144330Ssos#define ATA_VIA8662             0x31021106
512144330Ssos#define ATA_VIA6410             0x31641106
513144330Ssos#define ATA_VIA6420             0x31491106
514144808Ssos#define ATA_VIA6421             0x32491106
515200754Smav#define ATA_VIACX700IDE         0x05811106
516200754Smav#define ATA_VIACX700            0x83241106
517200754Smav#define ATA_VIASATAIDE          0x53241106
518200754Smav#define ATA_VIAVX800            0x83531106
519215431Smav#define ATA_VIASATAIDE2         0xc4091106
520200754Smav#define ATA_VIAVX855            0x84091106
521215431Smav#define ATA_VIASATAIDE3         0x90011106
522215431Smav#define ATA_VIAVX900            0x84101106
523144330Ssos
524144330Ssos/* global prototypes ata-pci.c */
525144330Ssosint ata_pci_probe(device_t dev);
526144330Ssosint ata_pci_attach(device_t dev);
527144330Ssosint ata_pci_detach(device_t dev);
528183141Ssosint ata_pci_suspend(device_t dev);
529183141Ssosint ata_pci_resume(device_t dev);
530199322Smavint ata_pci_read_ivar(device_t dev, device_t child, int which, uintptr_t *result);
531199322Smavint ata_pci_write_ivar(device_t dev, device_t child, int which, uintptr_t value);
532199322Smavuint32_t ata_pci_read_config(device_t dev, device_t child, int reg, int width);
533199322Smavvoid ata_pci_write_config(device_t dev, device_t child, int reg,
534199322Smav    uint32_t val, int width);
535226680Smavint ata_pci_print_child(device_t dev, device_t child);
536208410Smavint ata_pci_child_location_str(device_t dev, device_t child, char *buf,
537208410Smav    size_t buflen);
538144330Ssosstruct 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);
539144330Ssosint ata_pci_release_resource(device_t dev, device_t child, int type, int rid, struct resource *r);
540166901Spisoint 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);
541144330Ssos int ata_pci_teardown_intr(device_t dev, device_t child, struct resource *irq, void *cookie);
542188765Smavint ata_pci_ch_attach(device_t dev);
543188769Smavint ata_pci_ch_detach(device_t dev);
544178156Ssosint ata_pci_status(device_t dev);
545154507Ssosvoid ata_pci_hw(device_t dev);
546173734Ssosvoid ata_pci_dmainit(device_t dev);
547188769Smavvoid ata_pci_dmafini(device_t dev);
548233282Smariusconst char *ata_pcivendor2str(device_t dev);
549183724Ssosint ata_legacy(device_t);
550183724Ssosvoid ata_generic_intr(void *data);
551200171Smavint ata_generic_chipinit(device_t dev);
552200171Smavint ata_generic_setmode(device_t dev, int target, int mode);
553183724Ssosint ata_setup_interrupt(device_t dev, void *intr_func);
554183724Ssosvoid ata_set_desc(device_t dev);
555233282Smariusconst struct ata_chip_id *ata_match_chip(device_t dev, const struct ata_chip_id *index);
556233282Smariusconst struct ata_chip_id *ata_find_chip(device_t dev, const struct ata_chip_id *index, int slot);
557183724Ssosint ata_mode2idx(int mode);
558128530Ssos
559183724Ssos/* global prototypes from chipsets/ata-*.c */
560183724Ssosint ata_sii_chipinit(device_t);
561144330Ssos
562183724Ssos/* externs */
563183724Ssosextern devclass_t ata_pci_devclass;
564183724Ssos
565224270SmavMALLOC_DECLARE(M_ATAPCI);
566224270Smav
567183724Ssos/* macro for easy definition of all driver module stuff */
568183724Ssos#define ATA_DECLARE_DRIVER(dname) \
569183724Ssosstatic device_method_t __CONCAT(dname,_methods)[] = { \
570183724Ssos    DEVMETHOD(device_probe,     __CONCAT(dname,_probe)), \
571183724Ssos    DEVMETHOD(device_attach,    ata_pci_attach), \
572183724Ssos    DEVMETHOD(device_detach,    ata_pci_detach), \
573185500Smav    DEVMETHOD(device_suspend,   ata_pci_suspend), \
574185500Smav    DEVMETHOD(device_resume,    ata_pci_resume), \
575183724Ssos    DEVMETHOD(device_shutdown,  bus_generic_shutdown), \
576199322Smav    DEVMETHOD(bus_read_ivar,		ata_pci_read_ivar), \
577199322Smav    DEVMETHOD(bus_write_ivar,		ata_pci_write_ivar), \
578183724Ssos    DEVMETHOD(bus_alloc_resource,       ata_pci_alloc_resource), \
579183724Ssos    DEVMETHOD(bus_release_resource,     ata_pci_release_resource), \
580183724Ssos    DEVMETHOD(bus_activate_resource,    bus_generic_activate_resource), \
581183724Ssos    DEVMETHOD(bus_deactivate_resource,  bus_generic_deactivate_resource), \
582183724Ssos    DEVMETHOD(bus_setup_intr,           ata_pci_setup_intr), \
583183724Ssos    DEVMETHOD(bus_teardown_intr,        ata_pci_teardown_intr), \
584199322Smav    DEVMETHOD(pci_read_config,		ata_pci_read_config), \
585199322Smav    DEVMETHOD(pci_write_config,		ata_pci_write_config), \
586226680Smav    DEVMETHOD(bus_print_child,		ata_pci_print_child), \
587208410Smav    DEVMETHOD(bus_child_location_str,	ata_pci_child_location_str), \
588233282Smarius    DEVMETHOD_END \
589183724Ssos}; \
590183724Ssosstatic driver_t __CONCAT(dname,_driver) = { \
591183724Ssos        "atapci", \
592183724Ssos        __CONCAT(dname,_methods), \
593183724Ssos        sizeof(struct ata_pci_controller) \
594183724Ssos}; \
595233282SmariusDRIVER_MODULE(dname, pci, __CONCAT(dname,_driver), ata_pci_devclass, NULL, NULL); \
596183724SsosMODULE_VERSION(dname, 1); \
597183724SsosMODULE_DEPEND(dname, ata, 1, 1, 1); \
598183724SsosMODULE_DEPEND(dname, atapci, 1, 1, 1);
599