xref: /freebsd/sys/dev/ata/ata-pci.h (revision fbcaa016a2fc4ec243a3dde89f8fcabc93e2b378)
1bb5bdd38SSøren Schmidt /*-
29f82379cSSøren Schmidt  * Copyright (c) 2003 - 2008 S�ren Schmidt <sos@FreeBSD.org>
3bb5bdd38SSøren Schmidt  * All rights reserved.
4bb5bdd38SSøren Schmidt  *
5bb5bdd38SSøren Schmidt  * Redistribution and use in source and binary forms, with or without
6bb5bdd38SSøren Schmidt  * modification, are permitted provided that the following conditions
7bb5bdd38SSøren Schmidt  * are met:
8bb5bdd38SSøren Schmidt  * 1. Redistributions of source code must retain the above copyright
9bb5bdd38SSøren Schmidt  *    notice, this list of conditions and the following disclaimer,
10bb5bdd38SSøren Schmidt  *    without modification, immediately at the beginning of the file.
11bb5bdd38SSøren Schmidt  * 2. Redistributions in binary form must reproduce the above copyright
12bb5bdd38SSøren Schmidt  *    notice, this list of conditions and the following disclaimer in the
13bb5bdd38SSøren Schmidt  *    documentation and/or other materials provided with the distribution.
14bb5bdd38SSøren Schmidt  *
15bb5bdd38SSøren Schmidt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16bb5bdd38SSøren Schmidt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17bb5bdd38SSøren Schmidt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18bb5bdd38SSøren Schmidt  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19bb5bdd38SSøren Schmidt  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20bb5bdd38SSøren Schmidt  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21bb5bdd38SSøren Schmidt  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22bb5bdd38SSøren Schmidt  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23bb5bdd38SSøren Schmidt  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24bb5bdd38SSøren Schmidt  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25bb5bdd38SSøren Schmidt  *
26bb5bdd38SSøren Schmidt  * $FreeBSD$
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;
36bb5bdd38SSøren Schmidt     char                *text;
37bb5bdd38SSøren Schmidt };
38bb5bdd38SSøren Schmidt 
39bb5bdd38SSøren Schmidt /* structure describing a PCI ATA controller */
40bb5bdd38SSøren Schmidt struct ata_pci_controller {
418ca4df32SSøren Schmidt     device_t            dev;
42498e5543SSøren Schmidt     int                 r_type1;
43498e5543SSøren Schmidt     int                 r_rid1;
44498e5543SSøren Schmidt     struct resource     *r_res1;
45498e5543SSøren Schmidt     int                 r_type2;
46498e5543SSøren Schmidt     int                 r_rid2;
47498e5543SSøren Schmidt     struct resource     *r_res2;
48a3b7c762SAlexander Motin     int                 r_irq_rid;
49bb5bdd38SSøren Schmidt     struct resource     *r_irq;
50bb5bdd38SSøren Schmidt     void                *handle;
51bb5bdd38SSøren Schmidt     struct ata_chip_id  *chip;
52cb33306fSAlexander Motin     int			legacy;
536192895dSSøren Schmidt     int                 channels;
549f8919f2SAlexander Motin     int			ichannels;
55bb5bdd38SSøren Schmidt     int                 (*chipinit)(device_t);
567aab7e05SSøren Schmidt     int                 (*suspend)(device_t);
577aab7e05SSøren Schmidt     int                 (*resume)(device_t);
5804ff88ceSAlexander Motin     int                 (*ch_attach)(device_t);
5904ff88ceSAlexander Motin     int                 (*ch_detach)(device_t);
609cf4fe2eSAlexander Motin     int                 (*ch_suspend)(device_t);
619cf4fe2eSAlexander Motin     int                 (*ch_resume)(device_t);
620068f98fSSøren Schmidt     int                 (*locking)(device_t, int);
630068f98fSSøren Schmidt     void                (*reset)(device_t);
640068f98fSSøren Schmidt     void                (*setmode)(device_t, int);
65bb5bdd38SSøren Schmidt     struct {
66bb5bdd38SSøren Schmidt     void                (*function)(void *);
67bb5bdd38SSøren Schmidt     void                *argument;
68265da99cSSøren Schmidt     } interrupt[8];     /* XXX SOS max ch# for now */
69bb2aebf3SJohn Baldwin     void                *chipset_data;
708ca4df32SSøren Schmidt };
718ca4df32SSøren Schmidt 
72bb5bdd38SSøren Schmidt /* defines for known chipset PCI id's */
73bb5bdd38SSøren Schmidt #define ATA_ACARD_ID            0x1191
74bb5bdd38SSøren Schmidt #define ATA_ATP850              0x00021191
75bb5bdd38SSøren Schmidt #define ATA_ATP850A             0x00041191
76bb5bdd38SSøren Schmidt #define ATA_ATP850R             0x00051191
77bb5bdd38SSøren Schmidt #define ATA_ATP860A             0x00061191
78bb5bdd38SSøren Schmidt #define ATA_ATP860R             0x00071191
79bb5bdd38SSøren Schmidt #define ATA_ATP865A             0x00081191
80bb5bdd38SSøren Schmidt #define ATA_ATP865R             0x00091191
81bb5bdd38SSøren Schmidt 
82347458c9SSøren Schmidt #define ATA_ACER_LABS_ID        0x10b9
83347458c9SSøren Schmidt #define ATA_ALI_1533            0x153310b9
84347458c9SSøren Schmidt #define ATA_ALI_5229            0x522910b9
85347458c9SSøren Schmidt #define ATA_ALI_5281            0x528110b9
86347458c9SSøren Schmidt #define ATA_ALI_5287            0x528710b9
87347458c9SSøren Schmidt #define ATA_ALI_5288            0x528810b9
88347458c9SSøren Schmidt #define ATA_ALI_5289            0x528910b9
89347458c9SSøren Schmidt 
90bb5bdd38SSøren Schmidt #define ATA_AMD_ID              0x1022
91bb5bdd38SSøren Schmidt #define ATA_AMD755              0x74011022
92bb5bdd38SSøren Schmidt #define ATA_AMD756              0x74091022
93bb5bdd38SSøren Schmidt #define ATA_AMD766              0x74111022
94bb5bdd38SSøren Schmidt #define ATA_AMD768              0x74411022
95bb5bdd38SSøren Schmidt #define ATA_AMD8111             0x74691022
9613a3fdf1SPoul-Henning Kamp #define ATA_AMD5536             0x209a1022
97bb5bdd38SSøren Schmidt 
98347458c9SSøren Schmidt #define ATA_ADAPTEC_ID          0x9005
99347458c9SSøren Schmidt #define ATA_ADAPTEC_1420        0x02419005
100bb5bdd38SSøren Schmidt 
1017ebce023SSøren Schmidt #define ATA_ATI_ID              0x1002
1027ebce023SSøren Schmidt #define ATA_ATI_IXP200          0x43491002
1037ebce023SSøren Schmidt #define ATA_ATI_IXP300          0x43691002
1047ebce023SSøren Schmidt #define ATA_ATI_IXP300_S1       0x436e1002
105200c7605SSøren Schmidt #define ATA_ATI_IXP400          0x43761002
1067ebce023SSøren Schmidt #define ATA_ATI_IXP400_S1       0x43791002
1077ebce023SSøren Schmidt #define ATA_ATI_IXP400_S2       0x437a1002
108200c7605SSøren Schmidt #define ATA_ATI_IXP600          0x438c1002
1090ef03238SSøren Schmidt #define ATA_ATI_IXP600_S1       0x43801002
110200c7605SSøren Schmidt #define ATA_ATI_IXP700          0x439c1002
1110ef03238SSøren Schmidt #define ATA_ATI_IXP700_S1       0x43901002
112f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP700_S2	0x43911002
113f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP700_S3	0x43921002
114f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP700_S4	0x43931002
115f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP800_S1	0x43941002
116f71ac6d6SJung-uk Kim #define	ATA_ATI_IXP800_S2	0x43951002
1177ebce023SSøren Schmidt 
11888bdf804SSøren Schmidt #define ATA_CENATEK_ID          0x16ca
11988bdf804SSøren Schmidt #define ATA_CENATEK_ROCKET      0x000116ca
12088bdf804SSøren Schmidt 
121bb5bdd38SSøren Schmidt #define ATA_CYRIX_ID            0x1078
122bb5bdd38SSøren Schmidt #define ATA_CYRIX_5530          0x01021078
123bb5bdd38SSøren Schmidt 
124bb5bdd38SSøren Schmidt #define ATA_CYPRESS_ID          0x1080
125bb5bdd38SSøren Schmidt #define ATA_CYPRESS_82C693      0xc6931080
126bb5bdd38SSøren Schmidt 
127bb5bdd38SSøren Schmidt #define ATA_DEC_21150           0x00221011
1286595b494SSøren Schmidt #define ATA_DEC_21150_1         0x00231011
129bb5bdd38SSøren Schmidt 
130bb5bdd38SSøren Schmidt #define ATA_HIGHPOINT_ID        0x1103
131bb5bdd38SSøren Schmidt #define ATA_HPT366              0x00041103
132bb5bdd38SSøren Schmidt #define ATA_HPT372              0x00051103
133bb5bdd38SSøren Schmidt #define ATA_HPT302              0x00061103
134bb5bdd38SSøren Schmidt #define ATA_HPT371              0x00071103
135bb5bdd38SSøren Schmidt #define ATA_HPT374              0x00081103
136bb5bdd38SSøren Schmidt 
137bb5bdd38SSøren Schmidt #define ATA_INTEL_ID            0x8086
138bb5bdd38SSøren Schmidt #define ATA_I960RM              0x09628086
139bb5bdd38SSøren Schmidt #define ATA_I82371FB            0x12308086
140bb5bdd38SSøren Schmidt #define ATA_I82371SB            0x70108086
141bb5bdd38SSøren Schmidt #define ATA_I82371AB            0x71118086
142bb5bdd38SSøren Schmidt #define ATA_I82443MX            0x71998086
143bb5bdd38SSøren Schmidt #define ATA_I82451NX            0x84ca8086
144bb5bdd38SSøren Schmidt #define ATA_I82372FB            0x76018086
145bb5bdd38SSøren Schmidt #define ATA_I82801AB            0x24218086
146bb5bdd38SSøren Schmidt #define ATA_I82801AA            0x24118086
147bb5bdd38SSøren Schmidt #define ATA_I82801BA            0x244a8086
148bb5bdd38SSøren Schmidt #define ATA_I82801BA_1          0x244b8086
149bb5bdd38SSøren Schmidt #define ATA_I82801CA            0x248a8086
150bb5bdd38SSøren Schmidt #define ATA_I82801CA_1          0x248b8086
151bb5bdd38SSøren Schmidt #define ATA_I82801DB            0x24cb8086
15260ad94deSSøren Schmidt #define ATA_I82801DB_1          0x24ca8086
1536e52134cSJohn Baldwin #define ATA_I82801EB            0x24db8086
154df6a77ddSSøren Schmidt #define ATA_I82801EB_S1         0x24d18086
155df6a77ddSSøren Schmidt #define ATA_I82801EB_R1         0x24df8086
156f2972d7eSSøren Schmidt #define ATA_I6300ESB            0x25a28086
157df6a77ddSSøren Schmidt #define ATA_I6300ESB_S1         0x25a38086
158df6a77ddSSøren Schmidt #define ATA_I6300ESB_R1         0x25b08086
159e7de1a39SSøren Schmidt #define ATA_I63XXESB2           0x269e8086
160e7de1a39SSøren Schmidt #define ATA_I63XXESB2_S1        0x26808086
161e7de1a39SSøren Schmidt #define ATA_I63XXESB2_S2        0x26818086
162e7de1a39SSøren Schmidt #define ATA_I63XXESB2_R1        0x26828086
163e7de1a39SSøren Schmidt #define ATA_I63XXESB2_R2        0x26838086
1648353d82bSSøren Schmidt #define ATA_I82801FB            0x266f8086
1658353d82bSSøren Schmidt #define ATA_I82801FB_S1         0x26518086
1668353d82bSSøren Schmidt #define ATA_I82801FB_R1         0x26528086
167e7de1a39SSøren Schmidt #define ATA_I82801FBM           0x26538086
168c46e1f53SSøren Schmidt #define ATA_I82801GB            0x27df8086
169c46e1f53SSøren Schmidt #define ATA_I82801GB_S1         0x27c08086
170c46e1f53SSøren Schmidt #define ATA_I82801GB_AH         0x27c18086
171e7de1a39SSøren Schmidt #define ATA_I82801GB_R1         0x27c38086
172e7de1a39SSøren Schmidt #define ATA_I82801GBM_S1        0x27c48086
173e7de1a39SSøren Schmidt #define ATA_I82801GBM_AH        0x27c58086
174e7de1a39SSøren Schmidt #define ATA_I82801GBM_R1        0x27c68086
175e7de1a39SSøren Schmidt #define ATA_I82801HB_S1         0x28208086
176e7de1a39SSøren Schmidt #define ATA_I82801HB_AH6        0x28218086
177e7de1a39SSøren Schmidt #define ATA_I82801HB_R1         0x28228086
178e7de1a39SSøren Schmidt #define ATA_I82801HB_AH4        0x28248086
179e7de1a39SSøren Schmidt #define ATA_I82801HB_S2         0x28258086
180e9cb9626SRemko Lodder #define ATA_I82801HBM           0x28508086
1811d69e13dSRemko Lodder #define ATA_I82801HBM_S1        0x28288086
1821d69e13dSRemko Lodder #define ATA_I82801HBM_S2        0x28298086
1831d69e13dSRemko Lodder #define ATA_I82801HBM_S3        0x282a8086
18418928d0dSSimon L. B. Nielsen #define ATA_I82801IB_S1         0x29208086
1858846f7d2SXin LI #define ATA_I82801IB_AH2        0x29218086
18618928d0dSSimon L. B. Nielsen #define ATA_I82801IB_AH6        0x29228086
18718928d0dSSimon L. B. Nielsen #define ATA_I82801IB_AH4        0x29238086
1888a282d33SRemko Lodder #define ATA_I82801IB_R1         0x29258086
18918928d0dSSimon L. B. Nielsen #define ATA_I82801IB_S2         0x29268086
1900cf07094SSøren Schmidt #define ATA_I82801JIB_S1        0x3a208086
1910cf07094SSøren Schmidt #define ATA_I82801JIB_AH        0x3a228086
1920cf07094SSøren Schmidt #define ATA_I82801JIB_R1        0x3a258086
1930cf07094SSøren Schmidt #define ATA_I82801JIB_S2        0x3a268086
1940cf07094SSøren Schmidt #define ATA_I82801JD_S1         0x3a008086
1950cf07094SSøren Schmidt #define ATA_I82801JD_AH         0x3a028086
1960cf07094SSøren Schmidt #define ATA_I82801JD_R1         0x3a058086
1970cf07094SSøren Schmidt #define ATA_I82801JD_S2         0x3a068086
198a77a43c7SSøren Schmidt #define ATA_I31244              0x32008086
199bb5bdd38SSøren Schmidt 
20088bdf804SSøren Schmidt #define ATA_ITE_ID              0x1283
20177ada086SSøren Schmidt #define ATA_IT8211F             0x82111283
20288bdf804SSøren Schmidt #define ATA_IT8212F             0x82121283
203ed0c85e0SSøren Schmidt #define ATA_IT8213F             0x82131283
20488bdf804SSøren Schmidt 
205797c12eeSSøren Schmidt #define ATA_JMICRON_ID          0x197b
206797c12eeSSøren Schmidt #define ATA_JMB360              0x2360197b
2070118b48bSSøren Schmidt #define ATA_JMB361              0x2361197b
208e3989d3eSSøren Schmidt #define ATA_JMB363              0x2363197b
2090118b48bSSøren Schmidt #define ATA_JMB365              0x2365197b
2100118b48bSSøren Schmidt #define ATA_JMB366              0x2366197b
211a4b07272SSøren Schmidt #define ATA_JMB368              0x2368197b
212797c12eeSSøren Schmidt 
2134b55f0c7SSøren Schmidt #define ATA_MARVELL_ID          0x11ab
2144b55f0c7SSøren Schmidt #define ATA_M88SX5040           0x504011ab
2154b55f0c7SSøren Schmidt #define ATA_M88SX5041           0x504111ab
2164b55f0c7SSøren Schmidt #define ATA_M88SX5080           0x508011ab
2174b55f0c7SSøren Schmidt #define ATA_M88SX5081           0x508111ab
2184b55f0c7SSøren Schmidt #define ATA_M88SX6041           0x604111ab
2194b55f0c7SSøren Schmidt #define ATA_M88SX6081           0x608111ab
22022fe2182SSøren Schmidt #define ATA_M88SX6101           0x610111ab
2215941227fSRui Paulo #define ATA_M88SX6121           0x612111ab
22222fe2182SSøren Schmidt #define ATA_M88SX6145           0x614511ab
2234b55f0c7SSøren Schmidt 
22488bdf804SSøren Schmidt #define ATA_MICRON_ID           0x1042
22588bdf804SSøren Schmidt #define ATA_MICRON_RZ1000       0x10001042
22688bdf804SSøren Schmidt #define ATA_MICRON_RZ1001       0x10011042
22788bdf804SSøren Schmidt 
2285fdbb0d2SSøren Schmidt #define ATA_NATIONAL_ID         0x100b
2295fdbb0d2SSøren Schmidt #define ATA_SC1100              0x0502100b
2305fdbb0d2SSøren Schmidt 
231cece26a6SRink Springer #define ATA_NETCELL_ID          0x169c
232cece26a6SRink Springer #define ATA_NETCELL_SR          0x0044169c
233cece26a6SRink Springer 
234bb5bdd38SSøren Schmidt #define ATA_NVIDIA_ID           0x10de
235bb5bdd38SSøren Schmidt #define ATA_NFORCE1             0x01bc10de
236bb5bdd38SSøren Schmidt #define ATA_NFORCE2             0x006510de
237121b4783SSøren Schmidt #define ATA_NFORCE2_PRO         0x008510de
238121b4783SSøren Schmidt #define ATA_NFORCE2_PRO_S1      0x008e10de
239debffe83SDavid E. O'Brien #define ATA_NFORCE3             0x00d510de
240df6a77ddSSøren Schmidt #define ATA_NFORCE3_PRO         0x00e510de
241df6a77ddSSøren Schmidt #define ATA_NFORCE3_PRO_S1      0x00e310de
242df6a77ddSSøren Schmidt #define ATA_NFORCE3_PRO_S2      0x00ee10de
243121b4783SSøren Schmidt #define ATA_NFORCE_MCP04        0x003510de
244121b4783SSøren Schmidt #define ATA_NFORCE_MCP04_S1     0x003610de
245121b4783SSøren Schmidt #define ATA_NFORCE_MCP04_S2     0x003e10de
246121b4783SSøren Schmidt #define ATA_NFORCE_CK804        0x005310de
247121b4783SSøren Schmidt #define ATA_NFORCE_CK804_S1     0x005410de
248121b4783SSøren Schmidt #define ATA_NFORCE_CK804_S2     0x005510de
249121b4783SSøren Schmidt #define ATA_NFORCE_MCP51        0x026510de
250121b4783SSøren Schmidt #define ATA_NFORCE_MCP51_S1     0x026610de
251121b4783SSøren Schmidt #define ATA_NFORCE_MCP51_S2     0x026710de
252121b4783SSøren Schmidt #define ATA_NFORCE_MCP55        0x036e10de
253121b4783SSøren Schmidt #define ATA_NFORCE_MCP55_S1     0x037e10de
254121b4783SSøren Schmidt #define ATA_NFORCE_MCP55_S2     0x037f10de
25527568384SSøren Schmidt #define ATA_NFORCE_MCP61        0x03ec10de
25627568384SSøren Schmidt #define ATA_NFORCE_MCP61_S1     0x03e710de
25727568384SSøren Schmidt #define ATA_NFORCE_MCP61_S2     0x03f610de
25827568384SSøren Schmidt #define ATA_NFORCE_MCP61_S3     0x03f710de
259200c7605SSøren Schmidt #define ATA_NFORCE_MCP65        0x044810de
26053963e58SAlexander Motin #define ATA_NFORCE_MCP67_A0     0x055010de
26153963e58SAlexander Motin #define ATA_NFORCE_MCP67_A1     0x055110de
26253963e58SAlexander Motin #define ATA_NFORCE_MCP67_A2     0x055210de
26353963e58SAlexander Motin #define ATA_NFORCE_MCP67_A3     0x055310de
26453963e58SAlexander Motin #define ATA_NFORCE_MCP67_A4     0x055410de
26553963e58SAlexander Motin #define ATA_NFORCE_MCP67_A5     0x055510de
26653963e58SAlexander Motin #define ATA_NFORCE_MCP67_A6     0x055610de
26753963e58SAlexander Motin #define ATA_NFORCE_MCP67_A7     0x055710de
26853963e58SAlexander Motin #define ATA_NFORCE_MCP67_A8     0x055810de
26953963e58SAlexander Motin #define ATA_NFORCE_MCP67_A9     0x055910de
27053963e58SAlexander Motin #define ATA_NFORCE_MCP67_AA     0x055A10de
27153963e58SAlexander Motin #define ATA_NFORCE_MCP67_AB     0x055B10de
272fbcaa016SAriff Abdullah #define ATA_NFORCE_MCP67_AC     0x058410de
273200c7605SSøren Schmidt #define ATA_NFORCE_MCP67        0x056010de
274200c7605SSøren Schmidt #define ATA_NFORCE_MCP73        0x056c10de
27553963e58SAlexander Motin #define ATA_NFORCE_MCP73_A0     0x07f010de
27653963e58SAlexander Motin #define ATA_NFORCE_MCP73_A1     0x07f110de
27753963e58SAlexander Motin #define ATA_NFORCE_MCP73_A2     0x07f210de
27853963e58SAlexander Motin #define ATA_NFORCE_MCP73_A3     0x07f310de
27953963e58SAlexander Motin #define ATA_NFORCE_MCP73_A4     0x07f410de
28053963e58SAlexander Motin #define ATA_NFORCE_MCP73_A5     0x07f510de
28153963e58SAlexander Motin #define ATA_NFORCE_MCP73_A6     0x07f610de
28253963e58SAlexander Motin #define ATA_NFORCE_MCP73_A7     0x07f710de
28353963e58SAlexander Motin #define ATA_NFORCE_MCP73_A8     0x07f810de
28453963e58SAlexander Motin #define ATA_NFORCE_MCP73_A9     0x07f910de
28553963e58SAlexander Motin #define ATA_NFORCE_MCP73_AA     0x07fa10de
28653963e58SAlexander Motin #define ATA_NFORCE_MCP73_AB     0x07fb10de
287200c7605SSøren Schmidt #define ATA_NFORCE_MCP77        0x075910de
288bb5bdd38SSøren Schmidt 
289bb5bdd38SSøren Schmidt #define ATA_PROMISE_ID          0x105a
290bb5bdd38SSøren Schmidt #define ATA_PDC20246            0x4d33105a
291bb5bdd38SSøren Schmidt #define ATA_PDC20262            0x4d38105a
292bb5bdd38SSøren Schmidt #define ATA_PDC20263            0x0d38105a
293bb5bdd38SSøren Schmidt #define ATA_PDC20265            0x0d30105a
294bb5bdd38SSøren Schmidt #define ATA_PDC20267            0x4d30105a
295bb5bdd38SSøren Schmidt #define ATA_PDC20268            0x4d68105a
296bb5bdd38SSøren Schmidt #define ATA_PDC20269            0x4d69105a
29705688cecSSøren Schmidt #define ATA_PDC20270            0x6268105a
298bb5bdd38SSøren Schmidt #define ATA_PDC20271            0x6269105a
299bb5bdd38SSøren Schmidt #define ATA_PDC20275            0x1275105a
300bb5bdd38SSøren Schmidt #define ATA_PDC20276            0x5275105a
301bb5bdd38SSøren Schmidt #define ATA_PDC20277            0x7275105a
30284351184SSøren Schmidt #define ATA_PDC20318            0x3318105a
30384351184SSøren Schmidt #define ATA_PDC20319            0x3319105a
30484351184SSøren Schmidt #define ATA_PDC20371            0x3371105a
30584351184SSøren Schmidt #define ATA_PDC20375            0x3375105a
306bb5bdd38SSøren Schmidt #define ATA_PDC20376            0x3376105a
30784351184SSøren Schmidt #define ATA_PDC20377            0x3377105a
30884351184SSøren Schmidt #define ATA_PDC20378            0x3373105a
30984351184SSøren Schmidt #define ATA_PDC20379            0x3372105a
310da9edda6SSøren Schmidt #define ATA_PDC20571            0x3571105a
311da9edda6SSøren Schmidt #define ATA_PDC20575            0x3d75105a
312da9edda6SSøren Schmidt #define ATA_PDC20579            0x3574105a
3138453acf1SSøren Schmidt #define ATA_PDC20771            0x3570105a
314da9edda6SSøren Schmidt #define ATA_PDC40518            0x3d18105a
31507015a1aSSøren Schmidt #define ATA_PDC40519            0x3519105a
316c7dc7718SSøren Schmidt #define ATA_PDC40718            0x3d17105a
317c7dc7718SSøren Schmidt #define ATA_PDC40719            0x3515105a
3188453acf1SSøren Schmidt #define ATA_PDC40775            0x3d73105a
3198453acf1SSøren Schmidt #define ATA_PDC40779            0x3577105a
32084351184SSøren Schmidt #define ATA_PDC20617            0x6617105a
32184351184SSøren Schmidt #define ATA_PDC20618            0x6626105a
32284351184SSøren Schmidt #define ATA_PDC20619            0x6629105a
32384351184SSøren Schmidt #define ATA_PDC20620            0x6620105a
3243cb179a8SSøren Schmidt #define ATA_PDC20621            0x6621105a
325f2972d7eSSøren Schmidt #define ATA_PDC20622            0x6622105a
3268453acf1SSøren Schmidt #define ATA_PDC20624            0x6624105a
3278453acf1SSøren Schmidt #define ATA_PDC81518            0x8002105a
328bb5bdd38SSøren Schmidt 
329bb5bdd38SSøren Schmidt #define ATA_SERVERWORKS_ID      0x1166
3305fdbb0d2SSøren Schmidt #define ATA_ROSB4_ISA           0x02001166
331bb5bdd38SSøren Schmidt #define ATA_ROSB4               0x02111166
332bb5bdd38SSøren Schmidt #define ATA_CSB5                0x02121166
333bb5bdd38SSøren Schmidt #define ATA_CSB6                0x02131166
334bb5bdd38SSøren Schmidt #define ATA_CSB6_1              0x02171166
335891abbfaSSøren Schmidt #define ATA_HT1000              0x02141166
336891abbfaSSøren Schmidt #define ATA_HT1000_S1           0x024b1166
337891abbfaSSøren Schmidt #define ATA_HT1000_S2           0x024a1166
338594e3d5dSSøren Schmidt #define ATA_K2			0x02401166
339594e3d5dSSøren Schmidt #define ATA_FRODO4		0x02411166
340594e3d5dSSøren Schmidt #define ATA_FRODO8		0x02421166
341bb5bdd38SSøren Schmidt 
342bb5bdd38SSøren Schmidt #define ATA_SILICON_IMAGE_ID    0x1095
34374a1b9fcSSøren Schmidt #define ATA_SII3114             0x31141095
3441c342d89SSøren Schmidt #define ATA_SII3512             0x35121095
345e158f2b8SSøren Schmidt #define ATA_SII3112             0x31121095
346a127b176SSøren Schmidt #define ATA_SII3112_1           0x02401095
347b9842b47SSøren Schmidt #define ATA_SII3124		0x31241095
348b9842b47SSøren Schmidt #define ATA_SII3132		0x31321095
34902e5ff6cSAlexander Motin #define ATA_SII3132_1		0x02421095
35088413c6bSAlexander Motin #define ATA_SII3132_2		0x02441095
35174a1b9fcSSøren Schmidt #define ATA_SII0680             0x06801095
352bb5bdd38SSøren Schmidt #define ATA_CMD646              0x06461095
353bb5bdd38SSøren Schmidt #define ATA_CMD648              0x06481095
354bb5bdd38SSøren Schmidt #define ATA_CMD649              0x06491095
355bb5bdd38SSøren Schmidt 
356bb5bdd38SSøren Schmidt #define ATA_SIS_ID              0x1039
357bb5bdd38SSøren Schmidt #define ATA_SISSOUTH            0x00081039
358bb5bdd38SSøren Schmidt #define ATA_SIS5511             0x55111039
359bb5bdd38SSøren Schmidt #define ATA_SIS5513             0x55131039
360b47183d5SSøren Schmidt #define ATA_SIS5517             0x55171039
361bb5bdd38SSøren Schmidt #define ATA_SIS5518             0x55181039
362bb5bdd38SSøren Schmidt #define ATA_SIS5571             0x55711039
363bb5bdd38SSøren Schmidt #define ATA_SIS5591             0x55911039
364bb5bdd38SSøren Schmidt #define ATA_SIS5596             0x55961039
365bb5bdd38SSøren Schmidt #define ATA_SIS5597             0x55971039
366bb5bdd38SSøren Schmidt #define ATA_SIS5598             0x55981039
367bb5bdd38SSøren Schmidt #define ATA_SIS5600             0x56001039
368bb5bdd38SSøren Schmidt #define ATA_SIS530              0x05301039
369bb5bdd38SSøren Schmidt #define ATA_SIS540              0x05401039
370bb5bdd38SSøren Schmidt #define ATA_SIS550              0x05501039
371bb5bdd38SSøren Schmidt #define ATA_SIS620              0x06201039
372bb5bdd38SSøren Schmidt #define ATA_SIS630              0x06301039
373bb5bdd38SSøren Schmidt #define ATA_SIS635              0x06351039
374bb5bdd38SSøren Schmidt #define ATA_SIS633              0x06331039
375bb5bdd38SSøren Schmidt #define ATA_SIS640              0x06401039
376bb5bdd38SSøren Schmidt #define ATA_SIS645              0x06451039
377bb5bdd38SSøren Schmidt #define ATA_SIS646              0x06461039
378bb5bdd38SSøren Schmidt #define ATA_SIS648              0x06481039
379bb5bdd38SSøren Schmidt #define ATA_SIS650              0x06501039
380bb5bdd38SSøren Schmidt #define ATA_SIS651              0x06511039
381bb5bdd38SSøren Schmidt #define ATA_SIS652              0x06521039
382bb5bdd38SSøren Schmidt #define ATA_SIS655              0x06551039
383bb5bdd38SSøren Schmidt #define ATA_SIS658              0x06581039
384186939d1SSøren Schmidt #define ATA_SIS661              0x06611039
385bb5bdd38SSøren Schmidt #define ATA_SIS730              0x07301039
386bb5bdd38SSøren Schmidt #define ATA_SIS733              0x07331039
387bb5bdd38SSøren Schmidt #define ATA_SIS735              0x07351039
388bb5bdd38SSøren Schmidt #define ATA_SIS740              0x07401039
389bb5bdd38SSøren Schmidt #define ATA_SIS745              0x07451039
390bb5bdd38SSøren Schmidt #define ATA_SIS746              0x07461039
391bb5bdd38SSøren Schmidt #define ATA_SIS748              0x07481039
392bb5bdd38SSøren Schmidt #define ATA_SIS750              0x07501039
393bb5bdd38SSøren Schmidt #define ATA_SIS751              0x07511039
394bb5bdd38SSøren Schmidt #define ATA_SIS752              0x07521039
395bb5bdd38SSøren Schmidt #define ATA_SIS755              0x07551039
396bb5bdd38SSøren Schmidt #define ATA_SIS961              0x09611039
397bb5bdd38SSøren Schmidt #define ATA_SIS962              0x09621039
398bb5bdd38SSøren Schmidt #define ATA_SIS963              0x09631039
399f584b219SSøren Schmidt #define ATA_SIS964              0x09641039
4000da27c62SSøren Schmidt #define ATA_SIS965              0x09651039
4018ca4df32SSøren Schmidt #define ATA_SIS180              0x01801039
4028ca4df32SSøren Schmidt #define ATA_SIS181              0x01811039
4030da27c62SSøren Schmidt #define ATA_SIS182              0x01821039
404bb5bdd38SSøren Schmidt 
405bb5bdd38SSøren Schmidt #define ATA_VIA_ID              0x1106
406bb5bdd38SSøren Schmidt #define ATA_VIA82C571           0x05711106
407bb5bdd38SSøren Schmidt #define ATA_VIA82C586           0x05861106
408bb5bdd38SSøren Schmidt #define ATA_VIA82C596           0x05961106
409bb5bdd38SSøren Schmidt #define ATA_VIA82C686           0x06861106
410bb5bdd38SSøren Schmidt #define ATA_VIA8231             0x82311106
411bb5bdd38SSøren Schmidt #define ATA_VIA8233             0x30741106
412bb5bdd38SSøren Schmidt #define ATA_VIA8233A            0x31471106
413bb5bdd38SSøren Schmidt #define ATA_VIA8233C            0x31091106
414bb5bdd38SSøren Schmidt #define ATA_VIA8235             0x31771106
4158a1bddb7SSøren Schmidt #define ATA_VIA8237             0x32271106
416adf1bdacSSøren Schmidt #define ATA_VIA8237A            0x05911106
417358904bfSSøren Schmidt #define ATA_VIA8237S		0x53371106
418a5693903SSøren Schmidt #define ATA_VIA8251             0x33491106
419bb5bdd38SSøren Schmidt #define ATA_VIA8361             0x31121106
420bb5bdd38SSøren Schmidt #define ATA_VIA8363             0x03051106
421bb5bdd38SSøren Schmidt #define ATA_VIA8371             0x03911106
422bb5bdd38SSøren Schmidt #define ATA_VIA8662             0x31021106
423ba18e265SSøren Schmidt #define ATA_VIA6410             0x31641106
424ba18e265SSøren Schmidt #define ATA_VIA6420             0x31491106
4251ab4ad36SSøren Schmidt #define ATA_VIA6421             0x32491106
426bb5bdd38SSøren Schmidt 
4278ca4df32SSøren Schmidt /* global prototypes ata-pci.c */
4288ca4df32SSøren Schmidt int ata_pci_probe(device_t dev);
4298ca4df32SSøren Schmidt int ata_pci_attach(device_t dev);
4308ca4df32SSøren Schmidt int ata_pci_detach(device_t dev);
4317aab7e05SSøren Schmidt int ata_pci_suspend(device_t dev);
4327aab7e05SSøren Schmidt int ata_pci_resume(device_t dev);
4338ca4df32SSøren Schmidt struct 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);
4348ca4df32SSøren Schmidt int ata_pci_release_resource(device_t dev, device_t child, int type, int rid, struct resource *r);
435ef544f63SPaolo 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);
4368ca4df32SSøren Schmidt  int ata_pci_teardown_intr(device_t dev, device_t child, struct resource *irq, void *cookie);
43704ff88ceSAlexander Motin int ata_pci_ch_attach(device_t dev);
43878d15416SAlexander Motin int ata_pci_ch_detach(device_t dev);
439a7c33e78SSøren Schmidt int ata_pci_status(device_t dev);
440f5f55db3SSøren Schmidt void ata_pci_hw(device_t dev);
441200c7605SSøren Schmidt void ata_pci_dmainit(device_t dev);
44278d15416SAlexander Motin void ata_pci_dmafini(device_t dev);
443200c7605SSøren Schmidt char *ata_pcivendor2str(device_t dev);
4448ca4df32SSøren Schmidt int ata_legacy(device_t);
44513014ca0SSøren Schmidt void ata_generic_intr(void *data);
44613014ca0SSøren Schmidt int ata_setup_interrupt(device_t dev, void *intr_func);
44713014ca0SSøren Schmidt void ata_set_desc(device_t dev);
44813014ca0SSøren Schmidt struct ata_chip_id *ata_match_chip(device_t dev, struct ata_chip_id *index);
44913014ca0SSøren Schmidt struct ata_chip_id *ata_find_chip(device_t dev, struct ata_chip_id *index, int slot);
45013014ca0SSøren Schmidt void ata_print_cable(device_t dev, u_int8_t *who);
45113014ca0SSøren Schmidt int ata_check_80pin(device_t dev, int mode);
45213014ca0SSøren Schmidt int ata_mode2idx(int mode);
45313014ca0SSøren Schmidt 
45413014ca0SSøren Schmidt /* global prototypes ata-sata.c */
45513014ca0SSøren Schmidt void ata_sata_phy_check_events(device_t dev);
4569cf4fe2eSAlexander Motin int ata_sata_scr_read(struct ata_channel *ch, int port, int reg, uint32_t *val);
4579cf4fe2eSAlexander Motin int ata_sata_scr_write(struct ata_channel *ch, int port, int reg, uint32_t val);
4589cf4fe2eSAlexander Motin int ata_sata_phy_reset(device_t dev, int port, int quick);
45913014ca0SSøren Schmidt void ata_sata_setmode(device_t dev, int mode);
46013014ca0SSøren Schmidt int ata_request2fis_h2d(struct ata_request *request, u_int8_t *fis);
46113014ca0SSøren Schmidt void ata_pm_identify(device_t dev);
46213014ca0SSøren Schmidt 
46313014ca0SSøren Schmidt /* global prototypes from chipsets/ata-*.c */
46413014ca0SSøren Schmidt int ata_ahci_chipinit(device_t);
46504ff88ceSAlexander Motin int ata_ahci_ch_attach(device_t dev);
46678d15416SAlexander Motin int ata_ahci_ch_detach(device_t dev);
4679cf4fe2eSAlexander Motin int ata_ahci_ch_suspend(device_t dev);
4689cf4fe2eSAlexander Motin int ata_ahci_ch_resume(device_t dev);
469f71ac6d6SJung-uk Kim int ata_ahci_ctlr_reset(device_t dev);
47013014ca0SSøren Schmidt void ata_ahci_reset(device_t dev);
47113014ca0SSøren Schmidt int ata_marvell_edma_chipinit(device_t);
47213014ca0SSøren Schmidt int ata_sii_chipinit(device_t);
4738ca4df32SSøren Schmidt 
4748ca4df32SSøren Schmidt /* global prototypes ata-dma.c */
4750068f98fSSøren Schmidt void ata_dmainit(device_t);
47678d15416SAlexander Motin void ata_dmafini(device_t dev);
47713014ca0SSøren Schmidt 
47813014ca0SSøren Schmidt /* externs */
47913014ca0SSøren Schmidt extern devclass_t ata_pci_devclass;
48013014ca0SSøren Schmidt 
48113014ca0SSøren Schmidt /* macro for easy definition of all driver module stuff */
48213014ca0SSøren Schmidt #define ATA_DECLARE_DRIVER(dname) \
48313014ca0SSøren Schmidt static device_method_t __CONCAT(dname,_methods)[] = { \
48413014ca0SSøren Schmidt     DEVMETHOD(device_probe,     __CONCAT(dname,_probe)), \
48513014ca0SSøren Schmidt     DEVMETHOD(device_attach,    ata_pci_attach), \
48613014ca0SSøren Schmidt     DEVMETHOD(device_detach,    ata_pci_detach), \
48769c43a23SAlexander Motin     DEVMETHOD(device_suspend,   ata_pci_suspend), \
48869c43a23SAlexander Motin     DEVMETHOD(device_resume,    ata_pci_resume), \
48913014ca0SSøren Schmidt     DEVMETHOD(device_shutdown,  bus_generic_shutdown), \
49013014ca0SSøren Schmidt     DEVMETHOD(bus_alloc_resource,       ata_pci_alloc_resource), \
49113014ca0SSøren Schmidt     DEVMETHOD(bus_release_resource,     ata_pci_release_resource), \
49213014ca0SSøren Schmidt     DEVMETHOD(bus_activate_resource,    bus_generic_activate_resource), \
49313014ca0SSøren Schmidt     DEVMETHOD(bus_deactivate_resource,  bus_generic_deactivate_resource), \
49413014ca0SSøren Schmidt     DEVMETHOD(bus_setup_intr,           ata_pci_setup_intr), \
49513014ca0SSøren Schmidt     DEVMETHOD(bus_teardown_intr,        ata_pci_teardown_intr), \
49613014ca0SSøren Schmidt     { 0, 0 } \
49713014ca0SSøren Schmidt }; \
49813014ca0SSøren Schmidt static driver_t __CONCAT(dname,_driver) = { \
49913014ca0SSøren Schmidt         "atapci", \
50013014ca0SSøren Schmidt         __CONCAT(dname,_methods), \
50113014ca0SSøren Schmidt         sizeof(struct ata_pci_controller) \
50213014ca0SSøren Schmidt }; \
50313014ca0SSøren Schmidt DRIVER_MODULE(dname, pci, __CONCAT(dname,_driver), ata_pci_devclass, 0, 0); \
50413014ca0SSøren Schmidt MODULE_VERSION(dname, 1); \
50513014ca0SSøren Schmidt MODULE_DEPEND(dname, ata, 1, 1, 1); \
50613014ca0SSøren Schmidt MODULE_DEPEND(dname, atapci, 1, 1, 1);
50713014ca0SSøren Schmidt 
508