xref: /freebsd/sys/dev/ata/ata-pci.h (revision 9dbf5b0e6876d8c93890754bcc9c748339de79c0)
1bb5bdd38SSøren Schmidt /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni  *
49a14aa01SUlrich Spörlein  * Copyright (c) 2003 - 2008 Søren Schmidt <sos@FreeBSD.org>
5bb5bdd38SSøren Schmidt  * All rights reserved.
6bb5bdd38SSøren Schmidt  *
7bb5bdd38SSøren Schmidt  * Redistribution and use in source and binary forms, with or without
8bb5bdd38SSøren Schmidt  * modification, are permitted provided that the following conditions
9bb5bdd38SSøren Schmidt  * are met:
10bb5bdd38SSøren Schmidt  * 1. Redistributions of source code must retain the above copyright
11bb5bdd38SSøren Schmidt  *    notice, this list of conditions and the following disclaimer,
12bb5bdd38SSøren Schmidt  *    without modification, immediately at the beginning of the file.
13bb5bdd38SSøren Schmidt  * 2. Redistributions in binary form must reproduce the above copyright
14bb5bdd38SSøren Schmidt  *    notice, this list of conditions and the following disclaimer in the
15bb5bdd38SSøren Schmidt  *    documentation and/or other materials provided with the distribution.
16bb5bdd38SSøren Schmidt  *
17bb5bdd38SSøren Schmidt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18bb5bdd38SSøren Schmidt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19bb5bdd38SSøren Schmidt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20bb5bdd38SSøren Schmidt  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21bb5bdd38SSøren Schmidt  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22bb5bdd38SSøren Schmidt  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23bb5bdd38SSøren Schmidt  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24bb5bdd38SSøren Schmidt  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25bb5bdd38SSøren Schmidt  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26bb5bdd38SSøren Schmidt  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27bb5bdd38SSøren Schmidt  */
28bb5bdd38SSøren Schmidt 
29bb5bdd38SSøren Schmidt /* structure holding chipset config info */
30bb5bdd38SSøren Schmidt struct ata_chip_id {
31566cf07aSSøren Schmidt     u_int32_t           chipid;
32bb5bdd38SSøren Schmidt     u_int8_t            chiprev;
33bb5bdd38SSøren Schmidt     int                 cfg1;
34bb5bdd38SSøren Schmidt     int                 cfg2;
35bb5bdd38SSøren Schmidt     u_int8_t            max_dma;
365187458fSMarius Strobl     const char          *text;
37bb5bdd38SSøren Schmidt };
38bb5bdd38SSøren Schmidt 
396bd8779bSAlexander Motin #define ATA_PCI_MAX_CH	8
406bd8779bSAlexander Motin 
41bb5bdd38SSøren Schmidt /* structure describing a PCI ATA controller */
42bb5bdd38SSøren Schmidt struct ata_pci_controller {
438ca4df32SSøren Schmidt     device_t            dev;
44498e5543SSøren Schmidt     int                 r_type1;
45498e5543SSøren Schmidt     int                 r_rid1;
46498e5543SSøren Schmidt     struct resource     *r_res1;
47498e5543SSøren Schmidt     int                 r_type2;
48498e5543SSøren Schmidt     int                 r_rid2;
49498e5543SSøren Schmidt     struct resource     *r_res2;
50a3b7c762SAlexander Motin     int                 r_irq_rid;
51bb5bdd38SSøren Schmidt     struct resource     *r_irq;
52bb5bdd38SSøren Schmidt     void                *handle;
535187458fSMarius Strobl     const struct ata_chip_id *chip;
54cb33306fSAlexander Motin     int			legacy;
556192895dSSøren Schmidt     int                 channels;
569f8919f2SAlexander Motin     int			ichannels;
57bb5bdd38SSøren Schmidt     int                 (*chipinit)(device_t);
58dd60e051SAlexander Motin     int                 (*chipdeinit)(device_t);
597aab7e05SSøren Schmidt     int                 (*suspend)(device_t);
607aab7e05SSøren Schmidt     int                 (*resume)(device_t);
6104ff88ceSAlexander Motin     int                 (*ch_attach)(device_t);
6204ff88ceSAlexander Motin     int                 (*ch_detach)(device_t);
639cf4fe2eSAlexander Motin     int                 (*ch_suspend)(device_t);
649cf4fe2eSAlexander Motin     int                 (*ch_resume)(device_t);
650068f98fSSøren Schmidt     void                (*reset)(device_t);
66066f913aSAlexander Motin     int                 (*setmode)(device_t, int, int);
67066f913aSAlexander Motin     int                 (*getrev)(device_t, int);
68bb5bdd38SSøren Schmidt     struct {
69bb5bdd38SSøren Schmidt     void                (*function)(void *);
70bb5bdd38SSøren Schmidt     void                *argument;
716bd8779bSAlexander Motin     } interrupt[ATA_PCI_MAX_CH];
72bb2aebf3SJohn Baldwin     void                *chipset_data;
738ca4df32SSøren Schmidt };
748ca4df32SSøren Schmidt 
75bb5bdd38SSøren Schmidt /* defines for known chipset PCI id's */
76bb5bdd38SSøren Schmidt #define ATA_ACARD_ID            0x1191
77bb5bdd38SSøren Schmidt #define ATA_ATP850              0x00021191
78bb5bdd38SSøren Schmidt #define ATA_ATP850A             0x00041191
79bb5bdd38SSøren Schmidt #define ATA_ATP850R             0x00051191
80bb5bdd38SSøren Schmidt #define ATA_ATP860A             0x00061191
81bb5bdd38SSøren Schmidt #define ATA_ATP860R             0x00071191
82bb5bdd38SSøren Schmidt #define ATA_ATP865A             0x00081191
83bb5bdd38SSøren Schmidt #define ATA_ATP865R             0x00091191
84bb5bdd38SSøren Schmidt 
85347458c9SSøren Schmidt #define ATA_ACER_LABS_ID        0x10b9
86347458c9SSøren Schmidt #define ATA_ALI_1533            0x153310b9
87f60d46f9SAlexander Motin #define ATA_ALI_5228            0x522810b9
88347458c9SSøren Schmidt #define ATA_ALI_5229            0x522910b9
89347458c9SSøren Schmidt #define ATA_ALI_5281            0x528110b9
90347458c9SSøren Schmidt #define ATA_ALI_5287            0x528710b9
91347458c9SSøren Schmidt #define ATA_ALI_5288            0x528810b9
92347458c9SSøren Schmidt #define ATA_ALI_5289            0x528910b9
93347458c9SSøren Schmidt 
94bb5bdd38SSøren Schmidt #define ATA_AMD_ID              0x1022
95bb5bdd38SSøren Schmidt #define ATA_AMD755              0x74011022
96bb5bdd38SSøren Schmidt #define ATA_AMD756              0x74091022
97bb5bdd38SSøren Schmidt #define ATA_AMD766              0x74111022
98bb5bdd38SSøren Schmidt #define ATA_AMD768              0x74411022
99bb5bdd38SSøren Schmidt #define ATA_AMD8111             0x74691022
10013a3fdf1SPoul-Henning Kamp #define ATA_AMD5536             0x209a1022
1014587cbadSAlexander Motin #define ATA_AMD_HUDSON2_S1	0x78001022
1024587cbadSAlexander Motin #define ATA_AMD_HUDSON2_S2	0x78011022
1034587cbadSAlexander Motin #define ATA_AMD_HUDSON2_S3	0x78021022
1044587cbadSAlexander Motin #define ATA_AMD_HUDSON2_S4	0x78031022
1054587cbadSAlexander Motin #define ATA_AMD_HUDSON2_S5	0x78041022
1064587cbadSAlexander Motin #define ATA_AMD_HUDSON2		0x780c1022
107bb5bdd38SSøren Schmidt 
108347458c9SSøren Schmidt #define ATA_ADAPTEC_ID          0x9005
109347458c9SSøren Schmidt #define ATA_ADAPTEC_1420        0x02419005
1106aca3a5dSAlexander Motin #define ATA_ADAPTEC_1430        0x02439005
111bb5bdd38SSøren Schmidt 
1127ebce023SSøren Schmidt #define ATA_ATI_ID              0x1002
1137ebce023SSøren Schmidt #define ATA_ATI_IXP200          0x43491002
1147ebce023SSøren Schmidt #define ATA_ATI_IXP300          0x43691002
1157ebce023SSøren Schmidt #define ATA_ATI_IXP300_S1       0x436e1002
116200c7605SSøren Schmidt #define ATA_ATI_IXP400          0x43761002
1177ebce023SSøren Schmidt #define ATA_ATI_IXP400_S1       0x43791002
1187ebce023SSøren Schmidt #define ATA_ATI_IXP400_S2       0x437a1002
119200c7605SSøren Schmidt #define ATA_ATI_IXP600          0x438c1002
1200ef03238SSøren Schmidt #define ATA_ATI_IXP600_S1       0x43801002
121200c7605SSøren Schmidt #define ATA_ATI_IXP700          0x439c1002
1220ef03238SSøren Schmidt #define ATA_ATI_IXP700_S1       0x43901002
123f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP700_S2	0x43911002
124f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP700_S3	0x43921002
125f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP700_S4	0x43931002
126f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP800_S1	0x43941002
127f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP800_S2	0x43951002
1287ebce023SSøren Schmidt 
12988bdf804SSøren Schmidt #define ATA_CENATEK_ID          0x16ca
13088bdf804SSøren Schmidt #define ATA_CENATEK_ROCKET      0x000116ca
13188bdf804SSøren Schmidt 
132bb5bdd38SSøren Schmidt #define ATA_CYRIX_ID            0x1078
133bb5bdd38SSøren Schmidt #define ATA_CYRIX_5530          0x01021078
134bb5bdd38SSøren Schmidt 
135bb5bdd38SSøren Schmidt #define ATA_CYPRESS_ID          0x1080
136bb5bdd38SSøren Schmidt #define ATA_CYPRESS_82C693      0xc6931080
137bb5bdd38SSøren Schmidt 
138bb5bdd38SSøren Schmidt #define ATA_DEC_21150           0x00221011
1396595b494SSøren Schmidt #define ATA_DEC_21150_1         0x00231011
140bb5bdd38SSøren Schmidt 
141bb5bdd38SSøren Schmidt #define ATA_HIGHPOINT_ID        0x1103
142bb5bdd38SSøren Schmidt #define ATA_HPT366              0x00041103
143bb5bdd38SSøren Schmidt #define ATA_HPT372              0x00051103
144bb5bdd38SSøren Schmidt #define ATA_HPT302              0x00061103
145bb5bdd38SSøren Schmidt #define ATA_HPT371              0x00071103
146bb5bdd38SSøren Schmidt #define ATA_HPT374              0x00081103
147bb5bdd38SSøren Schmidt 
148bb5bdd38SSøren Schmidt #define ATA_INTEL_ID            0x8086
149bb5bdd38SSøren Schmidt #define ATA_I960RM              0x09628086
150bb5bdd38SSøren Schmidt #define ATA_I82371FB            0x12308086
151bb5bdd38SSøren Schmidt #define ATA_I82371SB            0x70108086
152bb5bdd38SSøren Schmidt #define ATA_I82371AB            0x71118086
153bb5bdd38SSøren Schmidt #define ATA_I82443MX            0x71998086
154bb5bdd38SSøren Schmidt #define ATA_I82451NX            0x84ca8086
155bb5bdd38SSøren Schmidt #define ATA_I82372FB            0x76018086
156bb5bdd38SSøren Schmidt #define ATA_I82801AB            0x24218086
157bb5bdd38SSøren Schmidt #define ATA_I82801AA            0x24118086
158bb5bdd38SSøren Schmidt #define ATA_I82801BA            0x244a8086
159bb5bdd38SSøren Schmidt #define ATA_I82801BA_1          0x244b8086
160bb5bdd38SSøren Schmidt #define ATA_I82801CA            0x248a8086
161bb5bdd38SSøren Schmidt #define ATA_I82801CA_1          0x248b8086
162bb5bdd38SSøren Schmidt #define ATA_I82801DB            0x24cb8086
16360ad94deSSøren Schmidt #define ATA_I82801DB_1          0x24ca8086
1646e52134cSJohn Baldwin #define ATA_I82801EB            0x24db8086
165df6a77ddSSøren Schmidt #define ATA_I82801EB_S1         0x24d18086
166df6a77ddSSøren Schmidt #define ATA_I82801EB_R1         0x24df8086
167f2972d7eSSøren Schmidt #define ATA_I6300ESB            0x25a28086
168df6a77ddSSøren Schmidt #define ATA_I6300ESB_S1         0x25a38086
169df6a77ddSSøren Schmidt #define ATA_I6300ESB_R1         0x25b08086
170e7de1a39SSøren Schmidt #define ATA_I63XXESB2           0x269e8086
171e7de1a39SSøren Schmidt #define ATA_I63XXESB2_S1        0x26808086
1728353d82bSSøren Schmidt #define ATA_I82801FB            0x266f8086
1738353d82bSSøren Schmidt #define ATA_I82801FB_S1         0x26518086
1748353d82bSSøren Schmidt #define ATA_I82801FB_R1         0x26528086
175e7de1a39SSøren Schmidt #define ATA_I82801FBM           0x26538086
176c46e1f53SSøren Schmidt #define ATA_I82801GB            0x27df8086
177c46e1f53SSøren Schmidt #define ATA_I82801GB_S1         0x27c08086
178e7de1a39SSøren Schmidt #define ATA_I82801GBM_S1        0x27c48086
179e7de1a39SSøren Schmidt #define ATA_I82801HB_S1         0x28208086
180e7de1a39SSøren Schmidt #define ATA_I82801HB_S2         0x28258086
181e9cb9626SRemko Lodder #define ATA_I82801HBM           0x28508086
1821d69e13dSRemko Lodder #define ATA_I82801HBM_S1        0x28288086
18318928d0dSSimon L. B. Nielsen #define ATA_I82801IB_S1         0x29208086
18453479021SAlexander Motin #define ATA_I82801IB_S3         0x29218086
1858a282d33SRemko Lodder #define ATA_I82801IB_R1         0x29258086
18618928d0dSSimon L. B. Nielsen #define ATA_I82801IB_S2         0x29268086
187dd3ebdbaSAlexander Motin #define ATA_I82801IBM_S1        0x29288086
188dd3ebdbaSAlexander Motin #define ATA_I82801IBM_S2        0x292d8086
1890cf07094SSøren Schmidt #define ATA_I82801JIB_S1        0x3a208086
1900cf07094SSøren Schmidt #define ATA_I82801JIB_S2        0x3a268086
1910cf07094SSøren Schmidt #define ATA_I82801JD_S1         0x3a008086
1920cf07094SSøren Schmidt #define ATA_I82801JD_S2         0x3a068086
193fb549e86SAlexander Motin #define ATA_I82801JI_S1         0x3a208086
194fb549e86SAlexander Motin #define ATA_I82801JI_S2         0x3a268086
195bfc8500cSAlexander Motin 
1966750c3d0SAlexander Motin #define ATA_IBP_S1              0x3b208086
1976750c3d0SAlexander Motin #define ATA_IBP_S2              0x3b218086
1986750c3d0SAlexander Motin #define ATA_IBP_S3              0x3b268086
1996750c3d0SAlexander Motin #define ATA_IBP_S4              0x3b288086
2006750c3d0SAlexander Motin #define ATA_IBP_S5              0x3b2d8086
2016750c3d0SAlexander Motin #define ATA_IBP_S6              0x3b2e8086
202bfc8500cSAlexander Motin 
203bfc8500cSAlexander Motin #define ATA_CPT_S1              0x1c008086
204bfc8500cSAlexander Motin #define ATA_CPT_S2              0x1c018086
205bfc8500cSAlexander Motin #define ATA_CPT_S3              0x1c088086
206bfc8500cSAlexander Motin #define ATA_CPT_S4              0x1c098086
207bfc8500cSAlexander Motin 
208bf0477b2SJack F Vogel #define ATA_PBG_S1		0x1d008086
209bf0477b2SJack F Vogel #define ATA_PBG_S2		0x1d088086
210bf0477b2SJack F Vogel 
21173e3bb65SJack F Vogel #define ATA_PPT_S1		0x1e008086
21273e3bb65SJack F Vogel #define ATA_PPT_S2		0x1e018086
21373e3bb65SJack F Vogel #define ATA_PPT_S3		0x1e088086
21473e3bb65SJack F Vogel #define ATA_PPT_S4		0x1e098086
21573e3bb65SJack F Vogel 
216eda36fb4SAlexander Motin #define ATA_AVOTON_S1		0x1f208086
217eda36fb4SAlexander Motin #define ATA_AVOTON_S2		0x1f218086
218eda36fb4SAlexander Motin #define ATA_AVOTON_S3		0x1f308086
219eda36fb4SAlexander Motin #define ATA_AVOTON_S4		0x1f318086
220eda36fb4SAlexander Motin 
221e1d6f7b4SJack F Vogel #define ATA_LPT_S1		0x8c008086
222e1d6f7b4SJack F Vogel #define ATA_LPT_S2		0x8c018086
223e1d6f7b4SJack F Vogel #define ATA_LPT_S3		0x8c088086
224e1d6f7b4SJack F Vogel #define ATA_LPT_S4		0x8c098086
225e1d6f7b4SJack F Vogel 
226e67f3becSAlexander Motin #define ATA_WCPT_S1		0x8c808086
227e67f3becSAlexander Motin #define ATA_WCPT_S2		0x8c818086
228e67f3becSAlexander Motin #define ATA_WCPT_S3		0x8c888086
229e67f3becSAlexander Motin #define ATA_WCPT_S4		0x8c898086
230e67f3becSAlexander Motin 
231eda36fb4SAlexander Motin #define ATA_WELLS_S1		0x8d008086
232eda36fb4SAlexander Motin #define ATA_WELLS_S2		0x8d088086
233eda36fb4SAlexander Motin #define ATA_WELLS_S3		0x8d608086
234eda36fb4SAlexander Motin #define ATA_WELLS_S4		0x8d688086
235eda36fb4SAlexander Motin 
236eda36fb4SAlexander Motin #define ATA_LPTLP_S1		0x9c008086
237eda36fb4SAlexander Motin #define ATA_LPTLP_S2		0x9c018086
238eda36fb4SAlexander Motin #define ATA_LPTLP_S3		0x9c088086
239eda36fb4SAlexander Motin #define ATA_LPTLP_S4		0x9c098086
240eda36fb4SAlexander Motin 
241a77a43c7SSøren Schmidt #define ATA_I31244              0x32008086
2427aab51b3SAlexander Motin #define ATA_ISCH                0x811a8086
243bb5bdd38SSøren Schmidt 
244428e286dSJack F Vogel #define ATA_COLETOCRK_S1        0x23a18086
245428e286dSJack F Vogel #define ATA_COLETOCRK_S2        0x23a68086
246428e286dSJack F Vogel 
24705d1c205SDmitry Luhtionov #define ATA_IBT_S1              0x0f208086
24805d1c205SDmitry Luhtionov #define ATA_IBT_S2              0x0f218086
24905d1c205SDmitry Luhtionov 
25088bdf804SSøren Schmidt #define ATA_ITE_ID              0x1283
25177ada086SSøren Schmidt #define ATA_IT8211F             0x82111283
25288bdf804SSøren Schmidt #define ATA_IT8212F             0x82121283
253ed0c85e0SSøren Schmidt #define ATA_IT8213F             0x82131283
25488bdf804SSøren Schmidt 
255797c12eeSSøren Schmidt #define ATA_JMICRON_ID          0x197b
256797c12eeSSøren Schmidt #define ATA_JMB360              0x2360197b
2570118b48bSSøren Schmidt #define ATA_JMB361              0x2361197b
25849a4a59aSAlexander Motin #define ATA_JMB362              0x2362197b
259e3989d3eSSøren Schmidt #define ATA_JMB363              0x2363197b
2600118b48bSSøren Schmidt #define ATA_JMB365              0x2365197b
2610118b48bSSøren Schmidt #define ATA_JMB366              0x2366197b
262a4b07272SSøren Schmidt #define ATA_JMB368              0x2368197b
2637bac11c7SAlexander Motin #define ATA_JMB368_2            0x0368197b
264797c12eeSSøren Schmidt 
2654b55f0c7SSøren Schmidt #define ATA_MARVELL_ID          0x11ab
26693644902SAlexander Motin #define ATA_M88SE6101           0x610111ab
26793644902SAlexander Motin #define ATA_M88SE6102           0x610211ab
26893644902SAlexander Motin #define ATA_M88SE6111           0x611111ab
26993644902SAlexander Motin #define ATA_M88SE6121           0x612111ab
27093644902SAlexander Motin #define ATA_M88SE6141           0x614111ab
27193644902SAlexander Motin #define ATA_M88SE6145           0x614511ab
2726268666cSAlexander Motin #define ATA_MARVELL2_ID         0x1b4b
2734b55f0c7SSøren Schmidt 
27488bdf804SSøren Schmidt #define ATA_MICRON_ID           0x1042
27588bdf804SSøren Schmidt #define ATA_MICRON_RZ1000       0x10001042
27688bdf804SSøren Schmidt #define ATA_MICRON_RZ1001       0x10011042
27788bdf804SSøren Schmidt 
2785fdbb0d2SSøren Schmidt #define ATA_NATIONAL_ID         0x100b
2795fdbb0d2SSøren Schmidt #define ATA_SC1100              0x0502100b
2805fdbb0d2SSøren Schmidt 
281cece26a6SRink Springer #define ATA_NETCELL_ID          0x169c
282cece26a6SRink Springer #define ATA_NETCELL_SR          0x0044169c
283cece26a6SRink Springer 
284bb5bdd38SSøren Schmidt #define ATA_NVIDIA_ID           0x10de
285bb5bdd38SSøren Schmidt #define ATA_NFORCE1             0x01bc10de
286bb5bdd38SSøren Schmidt #define ATA_NFORCE2             0x006510de
287121b4783SSøren Schmidt #define ATA_NFORCE2_PRO         0x008510de
288121b4783SSøren Schmidt #define ATA_NFORCE2_PRO_S1      0x008e10de
289debffe83SDavid E. O'Brien #define ATA_NFORCE3             0x00d510de
290df6a77ddSSøren Schmidt #define ATA_NFORCE3_PRO         0x00e510de
291df6a77ddSSøren Schmidt #define ATA_NFORCE3_PRO_S1      0x00e310de
292df6a77ddSSøren Schmidt #define ATA_NFORCE3_PRO_S2      0x00ee10de
293121b4783SSøren Schmidt #define ATA_NFORCE_MCP04        0x003510de
294121b4783SSøren Schmidt #define ATA_NFORCE_MCP04_S1     0x003610de
295121b4783SSøren Schmidt #define ATA_NFORCE_MCP04_S2     0x003e10de
296121b4783SSøren Schmidt #define ATA_NFORCE_CK804        0x005310de
297121b4783SSøren Schmidt #define ATA_NFORCE_CK804_S1     0x005410de
298121b4783SSøren Schmidt #define ATA_NFORCE_CK804_S2     0x005510de
299121b4783SSøren Schmidt #define ATA_NFORCE_MCP51        0x026510de
300121b4783SSøren Schmidt #define ATA_NFORCE_MCP51_S1     0x026610de
301121b4783SSøren Schmidt #define ATA_NFORCE_MCP51_S2     0x026710de
302121b4783SSøren Schmidt #define ATA_NFORCE_MCP55        0x036e10de
303121b4783SSøren Schmidt #define ATA_NFORCE_MCP55_S1     0x037e10de
304121b4783SSøren Schmidt #define ATA_NFORCE_MCP55_S2     0x037f10de
30527568384SSøren Schmidt #define ATA_NFORCE_MCP61        0x03ec10de
30627568384SSøren Schmidt #define ATA_NFORCE_MCP61_S1     0x03e710de
30727568384SSøren Schmidt #define ATA_NFORCE_MCP61_S2     0x03f610de
30827568384SSøren Schmidt #define ATA_NFORCE_MCP61_S3     0x03f710de
309200c7605SSøren Schmidt #define ATA_NFORCE_MCP65        0x044810de
31099844cbfSAlexander Motin #define ATA_NFORCE_MCP65_A0     0x044c10de
31199844cbfSAlexander Motin #define ATA_NFORCE_MCP65_A1     0x044d10de
31299844cbfSAlexander Motin #define ATA_NFORCE_MCP65_A2     0x044e10de
31399844cbfSAlexander Motin #define ATA_NFORCE_MCP65_A3     0x044f10de
31499844cbfSAlexander Motin #define ATA_NFORCE_MCP65_A4     0x045c10de
31599844cbfSAlexander Motin #define ATA_NFORCE_MCP65_A5     0x045d10de
31699844cbfSAlexander Motin #define ATA_NFORCE_MCP65_A6     0x045e10de
31799844cbfSAlexander Motin #define ATA_NFORCE_MCP65_A7     0x045f10de
31899844cbfSAlexander Motin #define ATA_NFORCE_MCP67        0x056010de
31953963e58SAlexander Motin #define ATA_NFORCE_MCP67_A0     0x055010de
32053963e58SAlexander Motin #define ATA_NFORCE_MCP67_A1     0x055110de
32153963e58SAlexander Motin #define ATA_NFORCE_MCP67_A2     0x055210de
32253963e58SAlexander Motin #define ATA_NFORCE_MCP67_A3     0x055310de
32353963e58SAlexander Motin #define ATA_NFORCE_MCP67_A4     0x055410de
32453963e58SAlexander Motin #define ATA_NFORCE_MCP67_A5     0x055510de
32553963e58SAlexander Motin #define ATA_NFORCE_MCP67_A6     0x055610de
32653963e58SAlexander Motin #define ATA_NFORCE_MCP67_A7     0x055710de
32753963e58SAlexander Motin #define ATA_NFORCE_MCP67_A8     0x055810de
32853963e58SAlexander Motin #define ATA_NFORCE_MCP67_A9     0x055910de
32953963e58SAlexander Motin #define ATA_NFORCE_MCP67_AA     0x055A10de
33053963e58SAlexander Motin #define ATA_NFORCE_MCP67_AB     0x055B10de
331fbcaa016SAriff Abdullah #define ATA_NFORCE_MCP67_AC     0x058410de
332200c7605SSøren Schmidt #define ATA_NFORCE_MCP73        0x056c10de
33353963e58SAlexander Motin #define ATA_NFORCE_MCP73_A0     0x07f010de
33453963e58SAlexander Motin #define ATA_NFORCE_MCP73_A1     0x07f110de
33553963e58SAlexander Motin #define ATA_NFORCE_MCP73_A2     0x07f210de
33653963e58SAlexander Motin #define ATA_NFORCE_MCP73_A3     0x07f310de
33753963e58SAlexander Motin #define ATA_NFORCE_MCP73_A4     0x07f410de
33853963e58SAlexander Motin #define ATA_NFORCE_MCP73_A5     0x07f510de
33953963e58SAlexander Motin #define ATA_NFORCE_MCP73_A6     0x07f610de
34053963e58SAlexander Motin #define ATA_NFORCE_MCP73_A7     0x07f710de
34153963e58SAlexander Motin #define ATA_NFORCE_MCP73_A8     0x07f810de
34253963e58SAlexander Motin #define ATA_NFORCE_MCP73_A9     0x07f910de
34353963e58SAlexander Motin #define ATA_NFORCE_MCP73_AA     0x07fa10de
34453963e58SAlexander Motin #define ATA_NFORCE_MCP73_AB     0x07fb10de
345200c7605SSøren Schmidt #define ATA_NFORCE_MCP77        0x075910de
34699844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A0     0x0ad010de
34799844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A1     0x0ad110de
34899844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A2     0x0ad210de
34999844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A3     0x0ad310de
35099844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A4     0x0ad410de
35199844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A5     0x0ad510de
35299844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A6     0x0ad610de
35399844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A7     0x0ad710de
35499844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A8     0x0ad810de
35599844cbfSAlexander Motin #define ATA_NFORCE_MCP77_A9     0x0ad910de
35699844cbfSAlexander Motin #define ATA_NFORCE_MCP77_AA     0x0ada10de
35799844cbfSAlexander Motin #define ATA_NFORCE_MCP77_AB     0x0adb10de
35899844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A0     0x0ab410de
35999844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A1     0x0ab510de
36099844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A2     0x0ab610de
36199844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A3     0x0ab710de
36299844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A4     0x0ab810de
36399844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A5     0x0ab910de
36499844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A6     0x0aba10de
36599844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A7     0x0abb10de
36699844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A8     0x0abc10de
36799844cbfSAlexander Motin #define ATA_NFORCE_MCP79_A9     0x0abd10de
36899844cbfSAlexander Motin #define ATA_NFORCE_MCP79_AA     0x0abe10de
36999844cbfSAlexander Motin #define ATA_NFORCE_MCP79_AB     0x0abf10de
37099844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A0     0x0d8410de
37199844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A1     0x0d8510de
37299844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A2     0x0d8610de
37399844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A3     0x0d8710de
37499844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A4     0x0d8810de
37599844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A5     0x0d8910de
37699844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A6     0x0d8a10de
37799844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A7     0x0d8b10de
37899844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A8     0x0d8c10de
37999844cbfSAlexander Motin #define ATA_NFORCE_MCP89_A9     0x0d8d10de
38099844cbfSAlexander Motin #define ATA_NFORCE_MCP89_AA     0x0d8e10de
38199844cbfSAlexander Motin #define ATA_NFORCE_MCP89_AB     0x0d8f10de
382bb5bdd38SSøren Schmidt 
383bb5bdd38SSøren Schmidt #define ATA_PROMISE_ID          0x105a
384bb5bdd38SSøren Schmidt #define ATA_PDC20246            0x4d33105a
385bb5bdd38SSøren Schmidt #define ATA_PDC20262            0x4d38105a
386bb5bdd38SSøren Schmidt #define ATA_PDC20263            0x0d38105a
387bb5bdd38SSøren Schmidt #define ATA_PDC20265            0x0d30105a
388bb5bdd38SSøren Schmidt #define ATA_PDC20267            0x4d30105a
389bb5bdd38SSøren Schmidt #define ATA_PDC20268            0x4d68105a
390bb5bdd38SSøren Schmidt #define ATA_PDC20269            0x4d69105a
39105688cecSSøren Schmidt #define ATA_PDC20270            0x6268105a
392bb5bdd38SSøren Schmidt #define ATA_PDC20271            0x6269105a
393bb5bdd38SSøren Schmidt #define ATA_PDC20275            0x1275105a
394bb5bdd38SSøren Schmidt #define ATA_PDC20276            0x5275105a
395bb5bdd38SSøren Schmidt #define ATA_PDC20277            0x7275105a
39684351184SSøren Schmidt #define ATA_PDC20318            0x3318105a
39784351184SSøren Schmidt #define ATA_PDC20319            0x3319105a
39884351184SSøren Schmidt #define ATA_PDC20371            0x3371105a
39984351184SSøren Schmidt #define ATA_PDC20375            0x3375105a
400bb5bdd38SSøren Schmidt #define ATA_PDC20376            0x3376105a
40184351184SSøren Schmidt #define ATA_PDC20377            0x3377105a
40284351184SSøren Schmidt #define ATA_PDC20378            0x3373105a
40384351184SSøren Schmidt #define ATA_PDC20379            0x3372105a
404da9edda6SSøren Schmidt #define ATA_PDC20571            0x3571105a
405da9edda6SSøren Schmidt #define ATA_PDC20575            0x3d75105a
406da9edda6SSøren Schmidt #define ATA_PDC20579            0x3574105a
4078453acf1SSøren Schmidt #define ATA_PDC20771            0x3570105a
408da9edda6SSøren Schmidt #define ATA_PDC40518            0x3d18105a
40907015a1aSSøren Schmidt #define ATA_PDC40519            0x3519105a
410c7dc7718SSøren Schmidt #define ATA_PDC40718            0x3d17105a
411c7dc7718SSøren Schmidt #define ATA_PDC40719            0x3515105a
4128453acf1SSøren Schmidt #define ATA_PDC40775            0x3d73105a
4138453acf1SSøren Schmidt #define ATA_PDC40779            0x3577105a
41484351184SSøren Schmidt #define ATA_PDC20617            0x6617105a
41584351184SSøren Schmidt #define ATA_PDC20618            0x6626105a
41684351184SSøren Schmidt #define ATA_PDC20619            0x6629105a
41784351184SSøren Schmidt #define ATA_PDC20620            0x6620105a
4183cb179a8SSøren Schmidt #define ATA_PDC20621            0x6621105a
419f2972d7eSSøren Schmidt #define ATA_PDC20622            0x6622105a
4208453acf1SSøren Schmidt #define ATA_PDC20624            0x6624105a
4218453acf1SSøren Schmidt #define ATA_PDC81518            0x8002105a
422bb5bdd38SSøren Schmidt 
423bb5bdd38SSøren Schmidt #define ATA_SERVERWORKS_ID      0x1166
4245fdbb0d2SSøren Schmidt #define ATA_ROSB4_ISA           0x02001166
425bb5bdd38SSøren Schmidt #define ATA_ROSB4               0x02111166
426bb5bdd38SSøren Schmidt #define ATA_CSB5                0x02121166
427bb5bdd38SSøren Schmidt #define ATA_CSB6                0x02131166
428bb5bdd38SSøren Schmidt #define ATA_CSB6_1              0x02171166
429891abbfaSSøren Schmidt #define ATA_HT1000              0x02141166
430891abbfaSSøren Schmidt #define ATA_HT1000_S1           0x024b1166
431891abbfaSSøren Schmidt #define ATA_HT1000_S2           0x024a1166
432594e3d5dSSøren Schmidt #define ATA_K2			0x02401166
433594e3d5dSSøren Schmidt #define ATA_FRODO4		0x02411166
434594e3d5dSSøren Schmidt #define ATA_FRODO8		0x02421166
435bb5bdd38SSøren Schmidt 
436bb5bdd38SSøren Schmidt #define ATA_SILICON_IMAGE_ID    0x1095
43774a1b9fcSSøren Schmidt #define ATA_SII3114             0x31141095
4381c342d89SSøren Schmidt #define ATA_SII3512             0x35121095
439e158f2b8SSøren Schmidt #define ATA_SII3112             0x31121095
440a127b176SSøren Schmidt #define ATA_SII3112_1           0x02401095
44174a1b9fcSSøren Schmidt #define ATA_SII0680             0x06801095
442bb5bdd38SSøren Schmidt #define ATA_CMD646              0x06461095
443bb5bdd38SSøren Schmidt #define ATA_CMD648              0x06481095
444bb5bdd38SSøren Schmidt #define ATA_CMD649              0x06491095
445bb5bdd38SSøren Schmidt 
446bb5bdd38SSøren Schmidt #define ATA_SIS_ID              0x1039
447bb5bdd38SSøren Schmidt #define ATA_SISSOUTH            0x00081039
448bb5bdd38SSøren Schmidt #define ATA_SIS5511             0x55111039
449bb5bdd38SSøren Schmidt #define ATA_SIS5513             0x55131039
450b47183d5SSøren Schmidt #define ATA_SIS5517             0x55171039
451bb5bdd38SSøren Schmidt #define ATA_SIS5518             0x55181039
452bb5bdd38SSøren Schmidt #define ATA_SIS5571             0x55711039
453bb5bdd38SSøren Schmidt #define ATA_SIS5591             0x55911039
454bb5bdd38SSøren Schmidt #define ATA_SIS5596             0x55961039
455bb5bdd38SSøren Schmidt #define ATA_SIS5597             0x55971039
456bb5bdd38SSøren Schmidt #define ATA_SIS5598             0x55981039
457bb5bdd38SSøren Schmidt #define ATA_SIS5600             0x56001039
458bb5bdd38SSøren Schmidt #define ATA_SIS530              0x05301039
459bb5bdd38SSøren Schmidt #define ATA_SIS540              0x05401039
460bb5bdd38SSøren Schmidt #define ATA_SIS550              0x05501039
461bb5bdd38SSøren Schmidt #define ATA_SIS620              0x06201039
462bb5bdd38SSøren Schmidt #define ATA_SIS630              0x06301039
463bb5bdd38SSøren Schmidt #define ATA_SIS635              0x06351039
464bb5bdd38SSøren Schmidt #define ATA_SIS633              0x06331039
465bb5bdd38SSøren Schmidt #define ATA_SIS640              0x06401039
466bb5bdd38SSøren Schmidt #define ATA_SIS645              0x06451039
467bb5bdd38SSøren Schmidt #define ATA_SIS646              0x06461039
468bb5bdd38SSøren Schmidt #define ATA_SIS648              0x06481039
469bb5bdd38SSøren Schmidt #define ATA_SIS650              0x06501039
470bb5bdd38SSøren Schmidt #define ATA_SIS651              0x06511039
471bb5bdd38SSøren Schmidt #define ATA_SIS652              0x06521039
472bb5bdd38SSøren Schmidt #define ATA_SIS655              0x06551039
473bb5bdd38SSøren Schmidt #define ATA_SIS658              0x06581039
474186939d1SSøren Schmidt #define ATA_SIS661              0x06611039
475bb5bdd38SSøren Schmidt #define ATA_SIS730              0x07301039
476bb5bdd38SSøren Schmidt #define ATA_SIS733              0x07331039
477bb5bdd38SSøren Schmidt #define ATA_SIS735              0x07351039
478bb5bdd38SSøren Schmidt #define ATA_SIS740              0x07401039
479bb5bdd38SSøren Schmidt #define ATA_SIS745              0x07451039
480bb5bdd38SSøren Schmidt #define ATA_SIS746              0x07461039
481bb5bdd38SSøren Schmidt #define ATA_SIS748              0x07481039
482bb5bdd38SSøren Schmidt #define ATA_SIS750              0x07501039
483bb5bdd38SSøren Schmidt #define ATA_SIS751              0x07511039
484bb5bdd38SSøren Schmidt #define ATA_SIS752              0x07521039
485bb5bdd38SSøren Schmidt #define ATA_SIS755              0x07551039
486bb5bdd38SSøren Schmidt #define ATA_SIS961              0x09611039
487bb5bdd38SSøren Schmidt #define ATA_SIS962              0x09621039
488bb5bdd38SSøren Schmidt #define ATA_SIS963              0x09631039
489f584b219SSøren Schmidt #define ATA_SIS964              0x09641039
4900da27c62SSøren Schmidt #define ATA_SIS965              0x09651039
4918ca4df32SSøren Schmidt #define ATA_SIS180              0x01801039
4928ca4df32SSøren Schmidt #define ATA_SIS181              0x01811039
4930da27c62SSøren Schmidt #define ATA_SIS182              0x01821039
494bb5bdd38SSøren Schmidt 
495bb5bdd38SSøren Schmidt #define ATA_VIA_ID              0x1106
496bb5bdd38SSøren Schmidt #define ATA_VIA82C571           0x05711106
497bb5bdd38SSøren Schmidt #define ATA_VIA82C586           0x05861106
498bb5bdd38SSøren Schmidt #define ATA_VIA82C596           0x05961106
499bb5bdd38SSøren Schmidt #define ATA_VIA82C686           0x06861106
500bb5bdd38SSøren Schmidt #define ATA_VIA8231             0x82311106
501bb5bdd38SSøren Schmidt #define ATA_VIA8233             0x30741106
502bb5bdd38SSøren Schmidt #define ATA_VIA8233A            0x31471106
503bb5bdd38SSøren Schmidt #define ATA_VIA8233C            0x31091106
504bb5bdd38SSøren Schmidt #define ATA_VIA8235             0x31771106
5058a1bddb7SSøren Schmidt #define ATA_VIA8237             0x32271106
506adf1bdacSSøren Schmidt #define ATA_VIA8237A            0x05911106
507358904bfSSøren Schmidt #define ATA_VIA8237S		0x53371106
5086d3af67bSAlexander Motin #define ATA_VIA8237_5372	0x53721106
5096d3af67bSAlexander Motin #define ATA_VIA8237_7372	0x73721106
510a5693903SSøren Schmidt #define ATA_VIA8251             0x33491106
511bb5bdd38SSøren Schmidt #define ATA_VIA8361             0x31121106
512bb5bdd38SSøren Schmidt #define ATA_VIA8363             0x03051106
513bb5bdd38SSøren Schmidt #define ATA_VIA8371             0x03911106
514bb5bdd38SSøren Schmidt #define ATA_VIA8662             0x31021106
515ba18e265SSøren Schmidt #define ATA_VIA6410             0x31641106
516ba18e265SSøren Schmidt #define ATA_VIA6420             0x31491106
5171ab4ad36SSøren Schmidt #define ATA_VIA6421             0x32491106
518c357f2c8SAlexander Motin #define ATA_VIACX700IDE         0x05811106
519c357f2c8SAlexander Motin #define ATA_VIACX700            0x83241106
520c357f2c8SAlexander Motin #define ATA_VIASATAIDE          0x53241106
521c357f2c8SAlexander Motin #define ATA_VIAVX800            0x83531106
52204054584SAlexander Motin #define ATA_VIASATAIDE2         0xc4091106
523c357f2c8SAlexander Motin #define ATA_VIAVX855            0x84091106
52404054584SAlexander Motin #define ATA_VIASATAIDE3         0x90011106
52504054584SAlexander Motin #define ATA_VIAVX900            0x84101106
526bb5bdd38SSøren Schmidt 
5278ca4df32SSøren Schmidt /* global prototypes ata-pci.c */
5288ca4df32SSøren Schmidt int ata_pci_probe(device_t dev);
5298ca4df32SSøren Schmidt int ata_pci_attach(device_t dev);
5308ca4df32SSøren Schmidt int ata_pci_detach(device_t dev);
5317aab7e05SSøren Schmidt int ata_pci_suspend(device_t dev);
5327aab7e05SSøren Schmidt int ata_pci_resume(device_t dev);
5336bd8779bSAlexander Motin int ata_pci_read_ivar(device_t dev, device_t child, int which, uintptr_t *result);
5346bd8779bSAlexander Motin int ata_pci_write_ivar(device_t dev, device_t child, int which, uintptr_t value);
5356bd8779bSAlexander Motin uint32_t ata_pci_read_config(device_t dev, device_t child, int reg, int width);
5366bd8779bSAlexander Motin void ata_pci_write_config(device_t dev, device_t child, int reg,
5376bd8779bSAlexander Motin     uint32_t val, int width);
538c779dc14SAlexander Motin int ata_pci_print_child(device_t dev, device_t child);
539ddfc9c4cSWarner Losh int ata_pci_child_location(device_t dev, device_t child, struct sbuf *sb);
5402dd1bdf1SJustin Hibbits struct resource * ata_pci_alloc_resource(device_t dev, device_t child, int type, int *rid, rman_res_t start, rman_res_t end, rman_res_t count, u_int flags);
541*9dbf5b0eSJohn Baldwin int ata_pci_release_resource(device_t dev, device_t child, struct resource *r);
542ef544f63SPaolo Pisati int 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);
5438ca4df32SSøren Schmidt  int ata_pci_teardown_intr(device_t dev, device_t child, struct resource *irq, void *cookie);
54404ff88ceSAlexander Motin int ata_pci_ch_attach(device_t dev);
54578d15416SAlexander Motin int ata_pci_ch_detach(device_t dev);
546a7c33e78SSøren Schmidt int ata_pci_status(device_t dev);
547f5f55db3SSøren Schmidt void ata_pci_hw(device_t dev);
548200c7605SSøren Schmidt void ata_pci_dmainit(device_t dev);
54978d15416SAlexander Motin void ata_pci_dmafini(device_t dev);
5505187458fSMarius Strobl const char *ata_pcivendor2str(device_t dev);
5518ca4df32SSøren Schmidt int ata_legacy(device_t);
55213014ca0SSøren Schmidt void ata_generic_intr(void *data);
553066f913aSAlexander Motin int ata_generic_chipinit(device_t dev);
554066f913aSAlexander Motin int ata_generic_setmode(device_t dev, int target, int mode);
55513014ca0SSøren Schmidt int ata_setup_interrupt(device_t dev, void *intr_func);
55613014ca0SSøren Schmidt void ata_set_desc(device_t dev);
5575187458fSMarius Strobl const struct ata_chip_id *ata_match_chip(device_t dev, const struct ata_chip_id *index);
5585187458fSMarius Strobl const struct ata_chip_id *ata_find_chip(device_t dev, const struct ata_chip_id *index, int slot);
55913014ca0SSøren Schmidt int ata_mode2idx(int mode);
56013014ca0SSøren Schmidt 
56113014ca0SSøren Schmidt /* global prototypes from chipsets/ata-*.c */
56213014ca0SSøren Schmidt int ata_sii_chipinit(device_t);
5638ca4df32SSøren Schmidt 
56413014ca0SSøren Schmidt /* externs */
565dd60e051SAlexander Motin MALLOC_DECLARE(M_ATAPCI);
566dd60e051SAlexander Motin 
56713014ca0SSøren Schmidt /* macro for easy definition of all driver module stuff */
56813014ca0SSøren Schmidt #define ATA_DECLARE_DRIVER(dname) \
56913014ca0SSøren Schmidt static device_method_t __CONCAT(dname,_methods)[] = { \
57013014ca0SSøren Schmidt     DEVMETHOD(device_probe,     __CONCAT(dname,_probe)), \
57113014ca0SSøren Schmidt     DEVMETHOD(device_attach,    ata_pci_attach), \
57213014ca0SSøren Schmidt     DEVMETHOD(device_detach,    ata_pci_detach), \
57369c43a23SAlexander Motin     DEVMETHOD(device_suspend,   ata_pci_suspend), \
57469c43a23SAlexander Motin     DEVMETHOD(device_resume,    ata_pci_resume), \
57513014ca0SSøren Schmidt     DEVMETHOD(device_shutdown,  bus_generic_shutdown), \
5766bd8779bSAlexander Motin     DEVMETHOD(bus_read_ivar,		ata_pci_read_ivar), \
5776bd8779bSAlexander Motin     DEVMETHOD(bus_write_ivar,		ata_pci_write_ivar), \
57813014ca0SSøren Schmidt     DEVMETHOD(bus_alloc_resource,       ata_pci_alloc_resource), \
57913014ca0SSøren Schmidt     DEVMETHOD(bus_release_resource,     ata_pci_release_resource), \
58013014ca0SSøren Schmidt     DEVMETHOD(bus_activate_resource,    bus_generic_activate_resource), \
58113014ca0SSøren Schmidt     DEVMETHOD(bus_deactivate_resource,  bus_generic_deactivate_resource), \
58213014ca0SSøren Schmidt     DEVMETHOD(bus_setup_intr,           ata_pci_setup_intr), \
58313014ca0SSøren Schmidt     DEVMETHOD(bus_teardown_intr,        ata_pci_teardown_intr), \
5846bd8779bSAlexander Motin     DEVMETHOD(pci_read_config,		ata_pci_read_config), \
5856bd8779bSAlexander Motin     DEVMETHOD(pci_write_config,		ata_pci_write_config), \
586c779dc14SAlexander Motin     DEVMETHOD(bus_print_child,		ata_pci_print_child), \
587ddfc9c4cSWarner Losh     DEVMETHOD(bus_child_location,	ata_pci_child_location), \
5885187458fSMarius Strobl     DEVMETHOD_END \
58913014ca0SSøren Schmidt }; \
59013014ca0SSøren Schmidt static driver_t __CONCAT(dname,_driver) = { \
59113014ca0SSøren Schmidt         "atapci", \
59213014ca0SSøren Schmidt         __CONCAT(dname,_methods), \
59313014ca0SSøren Schmidt         sizeof(struct ata_pci_controller) \
59413014ca0SSøren Schmidt }; \
595606e29ecSJohn Baldwin DRIVER_MODULE(dname, pci, __CONCAT(dname,_driver), NULL, NULL); \
59613014ca0SSøren Schmidt MODULE_VERSION(dname, 1); \
59713014ca0SSøren Schmidt MODULE_DEPEND(dname, ata, 1, 1, 1); \
59813014ca0SSøren Schmidt MODULE_DEPEND(dname, atapci, 1, 1, 1);
599