blob: 255aa0f1c9bcbbafea385add3347b05b0b336a23 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04003 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
4 * Copyright 2003-2004 Jeff Garzik
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; see the file COPYING. If not, write to
19 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 *
22 * libata documentation is available via 'make {ps|pdf}docs',
23 * as Documentation/DocBook/libata.*
24 *
25 * Hardware documentation available from http://www.t13.org/
26 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
29#ifndef __LINUX_ATA_H__
30#define __LINUX_ATA_H__
31
Matthew Wilcox0c659b82009-04-02 10:37:25 -040032#include <linux/kernel.h>
33#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/types.h>
Bartlomiej Zolnierkiewicz93734a22008-10-10 22:39:31 +020035#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/* defines only for the constants which don't work well as enums */
38#define ATA_DMA_BOUNDARY 0xffffUL
39#define ATA_DMA_MASK 0xffffffffULL
40
41enum {
42 /* various global constants */
43 ATA_MAX_DEVICES = 2, /* per bus/port */
44 ATA_MAX_PRD = 256, /* we could make these 256/256 */
45 ATA_SECT_SIZE = 512,
Albert Lee18d6e9d2007-04-02 11:34:15 +080046 ATA_MAX_SECTORS_128 = 128,
Jeff Garzik8b881b02006-06-11 09:59:27 -040047 ATA_MAX_SECTORS = 256,
David Milburnaf34d632015-07-13 11:48:23 -050048 ATA_MAX_SECTORS_1024 = 1024,
Jeff Garzik8b881b02006-06-11 09:59:27 -040049 ATA_MAX_SECTORS_LBA48 = 65535,/* TODO: 65536? */
Tony Battersbyf8d8e572007-10-30 11:44:35 -040050 ATA_MAX_SECTORS_TAPE = 65535,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 ATA_ID_WORDS = 256,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +020053 ATA_ID_CONFIG = 0,
54 ATA_ID_CYLS = 1,
55 ATA_ID_HEADS = 3,
56 ATA_ID_SECTORS = 6,
Tejun Heoa0cf7332007-01-02 20:18:49 +090057 ATA_ID_SERNO = 10,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +020058 ATA_ID_BUF_SIZE = 21,
Tejun Heoa0cf7332007-01-02 20:18:49 +090059 ATA_ID_FW_REV = 23,
60 ATA_ID_PROD = 27,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +020061 ATA_ID_MAX_MULTSECT = 47,
62 ATA_ID_DWORD_IO = 48,
63 ATA_ID_CAPABILITY = 49,
Alan Cox11e29e22005-10-21 18:46:32 -040064 ATA_ID_OLD_PIO_MODES = 51,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +020065 ATA_ID_OLD_DMA_MODES = 52,
Alan Cox11e29e22005-10-21 18:46:32 -040066 ATA_ID_FIELD_VALID = 53,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +020067 ATA_ID_CUR_CYLS = 54,
68 ATA_ID_CUR_HEADS = 55,
69 ATA_ID_CUR_SECTORS = 56,
70 ATA_ID_MULTSECT = 59,
71 ATA_ID_LBA_CAPACITY = 60,
72 ATA_ID_SWDMA_MODES = 62,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 ATA_ID_MWDMA_MODES = 63,
Alan Cox11e29e22005-10-21 18:46:32 -040074 ATA_ID_PIO_MODES = 64,
75 ATA_ID_EIDE_DMA_MIN = 65,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +020076 ATA_ID_EIDE_DMA_TIME = 66,
Alan Cox11e29e22005-10-21 18:46:32 -040077 ATA_ID_EIDE_PIO = 67,
78 ATA_ID_EIDE_PIO_IORDY = 68,
Martin K. Petersene78db4d2009-11-26 22:46:03 -050079 ATA_ID_ADDITIONAL_SUPP = 69,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +020080 ATA_ID_QUEUE_DEPTH = 75,
Shane Huang583661a2012-09-07 22:38:20 +080081 ATA_ID_SATA_CAPABILITY = 76,
82 ATA_ID_SATA_CAPABILITY_2 = 77,
83 ATA_ID_FEATURE_SUPP = 78,
Alan Cox11e29e22005-10-21 18:46:32 -040084 ATA_ID_MAJOR_VER = 80,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +020085 ATA_ID_COMMAND_SET_1 = 82,
86 ATA_ID_COMMAND_SET_2 = 83,
87 ATA_ID_CFSSE = 84,
88 ATA_ID_CFS_ENABLE_1 = 85,
89 ATA_ID_CFS_ENABLE_2 = 86,
90 ATA_ID_CSF_DEFAULT = 87,
91 ATA_ID_UDMA_MODES = 88,
92 ATA_ID_HW_CONFIG = 93,
93 ATA_ID_SPG = 98,
94 ATA_ID_LBA_CAPACITY_2 = 100,
Christoph Hellwig18f0f972009-11-17 10:00:47 -050095 ATA_ID_SECTOR_SIZE = 106,
Hannes Reinecke6b3b9d72011-03-07 08:56:44 +010096 ATA_ID_WWN = 108,
Grant Grundler295124d2010-08-17 10:56:53 -070097 ATA_ID_LOGICAL_SECTOR_SIZE = 117, /* and 118 */
Hannes Reineckefe7173c2015-03-27 16:46:36 +010098 ATA_ID_COMMAND_SET_3 = 119,
99 ATA_ID_COMMAND_SET_4 = 120,
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200100 ATA_ID_LAST_LUN = 126,
101 ATA_ID_DLF = 128,
102 ATA_ID_CSFO = 129,
103 ATA_ID_CFA_POWER = 160,
Sergei Shtylyovd42ad152009-03-05 17:20:55 +0100104 ATA_ID_CFA_KEY_MGMT = 162,
105 ATA_ID_CFA_MODES = 163,
Matthew Wilcox0c659b82009-04-02 10:37:25 -0400106 ATA_ID_DATA_SET_MGMT = 169,
Jens Axboe8bff7c62008-09-24 13:05:10 +0200107 ATA_ID_ROT_SPEED = 217,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 ATA_ID_PIO4 = (1 << 1),
109
Tejun Heoa0cf7332007-01-02 20:18:49 +0900110 ATA_ID_SERNO_LEN = 20,
111 ATA_ID_FW_REV_LEN = 8,
112 ATA_ID_PROD_LEN = 40,
Hannes Reinecke6b3b9d72011-03-07 08:56:44 +0100113 ATA_ID_WWN_LEN = 8,
Tejun Heoa0cf7332007-01-02 20:18:49 +0900114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 ATA_PCI_CTL_OFS = 2,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200116
117 ATA_PIO0 = (1 << 0),
118 ATA_PIO1 = ATA_PIO0 | (1 << 1),
119 ATA_PIO2 = ATA_PIO1 | (1 << 2),
120 ATA_PIO3 = ATA_PIO2 | (1 << 3),
121 ATA_PIO4 = ATA_PIO3 | (1 << 4),
122 ATA_PIO5 = ATA_PIO4 | (1 << 5),
123 ATA_PIO6 = ATA_PIO5 | (1 << 6),
124
Erik Inge Bolsø22ddbd12009-03-14 21:37:48 +0100125 ATA_PIO4_ONLY = (1 << 4),
126
Bartlomiej Zolnierkiewicz91a6d4e2007-08-27 19:35:22 +0200127 ATA_SWDMA0 = (1 << 0),
128 ATA_SWDMA1 = ATA_SWDMA0 | (1 << 1),
129 ATA_SWDMA2 = ATA_SWDMA1 | (1 << 2),
130
131 ATA_SWDMA2_ONLY = (1 << 2),
132
133 ATA_MWDMA0 = (1 << 0),
134 ATA_MWDMA1 = ATA_MWDMA0 | (1 << 1),
135 ATA_MWDMA2 = ATA_MWDMA1 | (1 << 2),
Erik Inge Bolsø22ddbd12009-03-14 21:37:48 +0100136 ATA_MWDMA3 = ATA_MWDMA2 | (1 << 3),
137 ATA_MWDMA4 = ATA_MWDMA3 | (1 << 4),
Bartlomiej Zolnierkiewicz91a6d4e2007-08-27 19:35:22 +0200138
139 ATA_MWDMA12_ONLY = (1 << 1) | (1 << 2),
140 ATA_MWDMA2_ONLY = (1 << 2),
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 ATA_UDMA0 = (1 << 0),
143 ATA_UDMA1 = ATA_UDMA0 | (1 << 1),
144 ATA_UDMA2 = ATA_UDMA1 | (1 << 2),
145 ATA_UDMA3 = ATA_UDMA2 | (1 << 3),
146 ATA_UDMA4 = ATA_UDMA3 | (1 << 4),
147 ATA_UDMA5 = ATA_UDMA4 | (1 << 5),
148 ATA_UDMA6 = ATA_UDMA5 | (1 << 6),
149 ATA_UDMA7 = ATA_UDMA6 | (1 << 7),
150 /* ATA_UDMA7 is just for completeness... doesn't exist (yet?). */
151
Erik Inge Bolsø22ddbd12009-03-14 21:37:48 +0100152 ATA_UDMA24_ONLY = (1 << 2) | (1 << 4),
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 ATA_UDMA_MASK_40C = ATA_UDMA2, /* udma0-2 */
155
156 /* DMA-related */
157 ATA_PRD_SZ = 8,
158 ATA_PRD_TBL_SZ = (ATA_MAX_PRD * ATA_PRD_SZ),
159 ATA_PRD_EOT = (1 << 31), /* end-of-table flag */
160
161 ATA_DMA_TABLE_OFS = 4,
162 ATA_DMA_STATUS = 2,
163 ATA_DMA_CMD = 0,
164 ATA_DMA_WR = (1 << 3),
165 ATA_DMA_START = (1 << 0),
166 ATA_DMA_INTR = (1 << 2),
167 ATA_DMA_ERR = (1 << 1),
168 ATA_DMA_ACTIVE = (1 << 0),
169
170 /* bits in ATA command block registers */
171 ATA_HOB = (1 << 7), /* LBA48 selector */
172 ATA_NIEN = (1 << 1), /* disable-irq flag */
173 ATA_LBA = (1 << 6), /* LBA28 selector */
174 ATA_DEV1 = (1 << 4), /* Select Device 1 (slave) */
175 ATA_DEVICE_OBS = (1 << 7) | (1 << 5), /* obs bits in dev reg */
176 ATA_DEVCTL_OBS = (1 << 3), /* obsolete bit in devctl reg */
177 ATA_BUSY = (1 << 7), /* BSY status bit */
178 ATA_DRDY = (1 << 6), /* device ready */
179 ATA_DF = (1 << 5), /* device fault */
Bartlomiej Zolnierkiewiczb5911622008-08-18 21:40:05 +0200180 ATA_DSC = (1 << 4), /* drive seek complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 ATA_DRQ = (1 << 3), /* data request i/o */
Bartlomiej Zolnierkiewiczb5911622008-08-18 21:40:05 +0200182 ATA_CORR = (1 << 2), /* corrected data error */
Hannes Reinecke27f00e52015-03-27 16:46:33 +0100183 ATA_SENSE = (1 << 1), /* sense code available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 ATA_ERR = (1 << 0), /* have an error */
185 ATA_SRST = (1 << 2), /* software reset */
Tejun Heo9be1e972006-05-15 20:58:17 +0900186 ATA_ICRC = (1 << 7), /* interface CRC error */
Bartlomiej Zolnierkiewiczb5911622008-08-18 21:40:05 +0200187 ATA_BBK = ATA_ICRC, /* pre-EIDE: block marked bad */
Tejun Heo9be1e972006-05-15 20:58:17 +0900188 ATA_UNC = (1 << 6), /* uncorrectable media error */
Bartlomiej Zolnierkiewiczb5911622008-08-18 21:40:05 +0200189 ATA_MC = (1 << 5), /* media changed */
Tejun Heo9be1e972006-05-15 20:58:17 +0900190 ATA_IDNF = (1 << 4), /* ID not found */
Bartlomiej Zolnierkiewiczb5911622008-08-18 21:40:05 +0200191 ATA_MCR = (1 << 3), /* media change requested */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 ATA_ABORTED = (1 << 2), /* command aborted */
Bartlomiej Zolnierkiewiczb5911622008-08-18 21:40:05 +0200193 ATA_TRK0NF = (1 << 1), /* track 0 not found */
194 ATA_AMNF = (1 << 0), /* address mark not found */
195 ATAPI_LFS = 0xF0, /* last failed sense */
196 ATAPI_EOM = ATA_TRK0NF, /* end of media */
197 ATAPI_ILI = ATA_AMNF, /* illegal length indication */
198 ATAPI_IO = (1 << 1),
199 ATAPI_COD = (1 << 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 /* ATA command block registers */
202 ATA_REG_DATA = 0x00,
203 ATA_REG_ERR = 0x01,
204 ATA_REG_NSECT = 0x02,
205 ATA_REG_LBAL = 0x03,
206 ATA_REG_LBAM = 0x04,
207 ATA_REG_LBAH = 0x05,
208 ATA_REG_DEVICE = 0x06,
209 ATA_REG_STATUS = 0x07,
210
211 ATA_REG_FEATURE = ATA_REG_ERR, /* and their aliases */
212 ATA_REG_CMD = ATA_REG_STATUS,
213 ATA_REG_BYTEL = ATA_REG_LBAM,
214 ATA_REG_BYTEH = ATA_REG_LBAH,
215 ATA_REG_DEVSEL = ATA_REG_DEVICE,
216 ATA_REG_IRQ = ATA_REG_NSECT,
217
218 /* ATA device commands */
Jeff Garzikab2181c2007-05-28 08:30:36 -0400219 ATA_CMD_DEV_RESET = 0x08, /* ATAPI device reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 ATA_CMD_CHK_POWER = 0xE5, /* check power mode */
Douglas Gilbert972dcaf2005-08-11 03:35:53 -0400221 ATA_CMD_STANDBY = 0xE2, /* place in standby power mode */
222 ATA_CMD_IDLE = 0xE3, /* place in idle power mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 ATA_CMD_EDD = 0x90, /* execute device diagnostic */
Robert Hancock65211482009-07-14 20:43:39 -0600224 ATA_CMD_DOWNLOAD_MICRO = 0x92,
Robert Hancock3915c3b2013-10-21 19:26:30 -0600225 ATA_CMD_DOWNLOAD_MICRO_DMA = 0x93,
Robert Hancock65211482009-07-14 20:43:39 -0600226 ATA_CMD_NOP = 0x00,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 ATA_CMD_FLUSH = 0xE7,
228 ATA_CMD_FLUSH_EXT = 0xEA,
229 ATA_CMD_ID_ATA = 0xEC,
230 ATA_CMD_ID_ATAPI = 0xA1,
Robert Hancock65211482009-07-14 20:43:39 -0600231 ATA_CMD_SERVICE = 0xA2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 ATA_CMD_READ = 0xC8,
233 ATA_CMD_READ_EXT = 0x25,
Robert Hancock65211482009-07-14 20:43:39 -0600234 ATA_CMD_READ_QUEUED = 0x26,
235 ATA_CMD_READ_STREAM_EXT = 0x2B,
236 ATA_CMD_READ_STREAM_DMA_EXT = 0x2A,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 ATA_CMD_WRITE = 0xCA,
238 ATA_CMD_WRITE_EXT = 0x35,
Robert Hancock65211482009-07-14 20:43:39 -0600239 ATA_CMD_WRITE_QUEUED = 0x36,
240 ATA_CMD_WRITE_STREAM_EXT = 0x3B,
241 ATA_CMD_WRITE_STREAM_DMA_EXT = 0x3A,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100242 ATA_CMD_WRITE_FUA_EXT = 0x3D,
Robert Hancock65211482009-07-14 20:43:39 -0600243 ATA_CMD_WRITE_QUEUED_FUA_EXT = 0x3E,
Tejun Heo88e49032006-05-15 21:03:38 +0900244 ATA_CMD_FPDMA_READ = 0x60,
245 ATA_CMD_FPDMA_WRITE = 0x61,
Hannes Reinecke661ce1f2016-04-25 12:45:45 +0200246 ATA_CMD_NCQ_NON_DATA = 0x63,
Marc Carinoed369112013-08-24 23:22:50 -0700247 ATA_CMD_FPDMA_SEND = 0x64,
248 ATA_CMD_FPDMA_RECV = 0x65,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 ATA_CMD_PIO_READ = 0x20,
250 ATA_CMD_PIO_READ_EXT = 0x24,
251 ATA_CMD_PIO_WRITE = 0x30,
252 ATA_CMD_PIO_WRITE_EXT = 0x34,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800253 ATA_CMD_READ_MULTI = 0xC4,
254 ATA_CMD_READ_MULTI_EXT = 0x29,
255 ATA_CMD_WRITE_MULTI = 0xC5,
256 ATA_CMD_WRITE_MULTI_EXT = 0x39,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100257 ATA_CMD_WRITE_MULTI_FUA_EXT = 0xCE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 ATA_CMD_SET_FEATURES = 0xEF,
Albert Lee2c3d2a42007-06-07 16:01:17 +0800259 ATA_CMD_SET_MULTI = 0xC6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 ATA_CMD_PACKET = 0xA0,
261 ATA_CMD_VERIFY = 0x40,
262 ATA_CMD_VERIFY_EXT = 0x42,
Robert Hancock65211482009-07-14 20:43:39 -0600263 ATA_CMD_WRITE_UNCORR_EXT = 0x45,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400264 ATA_CMD_STANDBYNOW1 = 0xE0,
265 ATA_CMD_IDLEIMMEDIATE = 0xE1,
Tejun Heo054a5fb2007-10-25 18:30:36 +0900266 ATA_CMD_SLEEP = 0xE6,
Albert Lee8bf62ece2005-05-12 15:29:42 -0400267 ATA_CMD_INIT_DEV_PARAMS = 0x91,
Alan Coxb6782722006-03-21 15:52:49 +0000268 ATA_CMD_READ_NATIVE_MAX = 0xF8,
269 ATA_CMD_READ_NATIVE_MAX_EXT = 0x27,
Alan Cox1e999732007-04-11 00:23:13 +0100270 ATA_CMD_SET_MAX = 0xF9,
271 ATA_CMD_SET_MAX_EXT = 0x37,
Robert Hancock65211482009-07-14 20:43:39 -0600272 ATA_CMD_READ_LOG_EXT = 0x2F,
273 ATA_CMD_WRITE_LOG_EXT = 0x3F,
274 ATA_CMD_READ_LOG_DMA_EXT = 0x47,
275 ATA_CMD_WRITE_LOG_DMA_EXT = 0x57,
Robert Hancock3915c3b2013-10-21 19:26:30 -0600276 ATA_CMD_TRUSTED_NONDATA = 0x5B,
Robert Hancock65211482009-07-14 20:43:39 -0600277 ATA_CMD_TRUSTED_RCV = 0x5C,
278 ATA_CMD_TRUSTED_RCV_DMA = 0x5D,
279 ATA_CMD_TRUSTED_SND = 0x5E,
280 ATA_CMD_TRUSTED_SND_DMA = 0x5F,
Tejun Heo814600e2007-07-01 19:05:58 +0900281 ATA_CMD_PMP_READ = 0xE4,
Robert Hancock3915c3b2013-10-21 19:26:30 -0600282 ATA_CMD_PMP_READ_DMA = 0xE9,
Tejun Heo814600e2007-07-01 19:05:58 +0900283 ATA_CMD_PMP_WRITE = 0xE8,
Robert Hancock3915c3b2013-10-21 19:26:30 -0600284 ATA_CMD_PMP_WRITE_DMA = 0xEB,
Tejun Heoce2e0ab2007-12-15 15:04:59 +0900285 ATA_CMD_CONF_OVERLAY = 0xB1,
Robert Hancock65211482009-07-14 20:43:39 -0600286 ATA_CMD_SEC_SET_PASS = 0xF1,
287 ATA_CMD_SEC_UNLOCK = 0xF2,
288 ATA_CMD_SEC_ERASE_PREP = 0xF3,
289 ATA_CMD_SEC_ERASE_UNIT = 0xF4,
Tejun Heoce2e0ab2007-12-15 15:04:59 +0900290 ATA_CMD_SEC_FREEZE_LOCK = 0xF5,
Robert Hancock65211482009-07-14 20:43:39 -0600291 ATA_CMD_SEC_DISABLE_PASS = 0xF6,
292 ATA_CMD_CONFIG_STREAM = 0x51,
Bartlomiej Zolnierkiewicz476d9892008-08-18 21:40:05 +0200293 ATA_CMD_SMART = 0xB0,
294 ATA_CMD_MEDIA_LOCK = 0xDE,
295 ATA_CMD_MEDIA_UNLOCK = 0xDF,
Matthew Wilcox0c659b82009-04-02 10:37:25 -0400296 ATA_CMD_DSM = 0x06,
Robert Hancock65211482009-07-14 20:43:39 -0600297 ATA_CMD_CHK_MED_CRD_TYP = 0xD1,
298 ATA_CMD_CFA_REQ_EXT_ERR = 0x03,
299 ATA_CMD_CFA_WRITE_NE = 0x38,
300 ATA_CMD_CFA_TRANS_SECT = 0x87,
301 ATA_CMD_CFA_ERASE = 0xC0,
302 ATA_CMD_CFA_WRITE_MULT_NE = 0xCD,
Robert Hancock3915c3b2013-10-21 19:26:30 -0600303 ATA_CMD_REQ_SENSE_DATA = 0x0B,
304 ATA_CMD_SANITIZE_DEVICE = 0xB4,
Hannes Reinecke28a3fc22016-04-25 12:45:52 +0200305 ATA_CMD_ZAC_MGMT_IN = 0x4A,
Robert Hancock3915c3b2013-10-21 19:26:30 -0600306
Bartlomiej Zolnierkiewicz476d9892008-08-18 21:40:05 +0200307 /* marked obsolete in the ATA/ATAPI-7 spec */
308 ATA_CMD_RESTORE = 0x10,
Tejun Heo88e49032006-05-15 21:03:38 +0900309
Hannes Reinecke5c65d8b2016-04-25 12:45:47 +0200310 /* Subcmds for ATA_CMD_FPDMA_RECV */
311 ATA_SUBCMD_FPDMA_RECV_RD_LOG_DMA_EXT = 0x01,
Hannes Reinecke28a3fc22016-04-25 12:45:52 +0200312 ATA_SUBCMD_FPDMA_RECV_ZAC_MGMT_IN = 0x02,
Hannes Reinecke5c65d8b2016-04-25 12:45:47 +0200313
Marc Carinoed369112013-08-24 23:22:50 -0700314 /* Subcmds for ATA_CMD_FPDMA_SEND */
315 ATA_SUBCMD_FPDMA_SEND_DSM = 0x00,
316 ATA_SUBCMD_FPDMA_SEND_WR_LOG_DMA_EXT = 0x02,
317
Hannes Reineckea5703842016-04-25 12:45:49 +0200318 /* Subcmds for ATA_CMD_NCQ_NON_DATA */
319 ATA_SUBCMD_NCQ_NON_DATA_ABORT_QUEUE = 0x00,
320 ATA_SUBCMD_NCQ_NON_DATA_SET_FEATURES = 0x05,
321 ATA_SUBCMD_NCQ_NON_DATA_ZERO_EXT = 0x06,
322
Hannes Reinecke28a3fc22016-04-25 12:45:52 +0200323 /* Subcmds for ATA_CMD_ZAC_MGMT_IN */
324 ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES = 0x00,
325
Tejun Heo88e49032006-05-15 21:03:38 +0900326 /* READ_LOG_EXT pages */
Hannes Reineckefe5af0c2016-04-25 12:45:48 +0200327 ATA_LOG_DIRECTORY = 0x0,
Tejun Heo88e49032006-05-15 21:03:38 +0900328 ATA_LOG_SATA_NCQ = 0x10,
Marc Carinoed369112013-08-24 23:22:50 -0700329 ATA_LOG_NCQ_SEND_RECV = 0x13,
Shane Huang65fe1f02012-09-07 22:40:01 +0800330 ATA_LOG_SATA_ID_DEV_DATA = 0x30,
331 ATA_LOG_SATA_SETTINGS = 0x08,
Shane Huang803739d2012-12-17 23:18:59 +0800332 ATA_LOG_DEVSLP_OFFSET = 0x30,
333 ATA_LOG_DEVSLP_SIZE = 0x08,
334 ATA_LOG_DEVSLP_MDAT = 0x00,
Shane Huang65fe1f02012-09-07 22:40:01 +0800335 ATA_LOG_DEVSLP_MDAT_MASK = 0x1F,
Shane Huang803739d2012-12-17 23:18:59 +0800336 ATA_LOG_DEVSLP_DETO = 0x01,
337 ATA_LOG_DEVSLP_VALID = 0x07,
Shane Huang65fe1f02012-09-07 22:40:01 +0800338 ATA_LOG_DEVSLP_VALID_MASK = 0x80,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Marc Carinoed369112013-08-24 23:22:50 -0700340 /* NCQ send and receive log */
341 ATA_LOG_NCQ_SEND_RECV_SUBCMDS_OFFSET = 0x00,
342 ATA_LOG_NCQ_SEND_RECV_SUBCMDS_DSM = (1 << 0),
343 ATA_LOG_NCQ_SEND_RECV_DSM_OFFSET = 0x04,
344 ATA_LOG_NCQ_SEND_RECV_DSM_TRIM = (1 << 0),
345 ATA_LOG_NCQ_SEND_RECV_RD_LOG_OFFSET = 0x08,
Hannes Reinecke5c65d8b2016-04-25 12:45:47 +0200346 ATA_LOG_NCQ_SEND_RECV_RD_LOG_SUPPORTED = (1 << 0),
Marc Carinoed369112013-08-24 23:22:50 -0700347 ATA_LOG_NCQ_SEND_RECV_WR_LOG_OFFSET = 0x0C,
Hannes Reinecke5c65d8b2016-04-25 12:45:47 +0200348 ATA_LOG_NCQ_SEND_RECV_WR_LOG_SUPPORTED = (1 << 0),
Hannes Reinecke28a3fc22016-04-25 12:45:52 +0200349 ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OFFSET = 0x10,
350 ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OUT_SUPPORTED = (1 << 0),
351 ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_IN_SUPPORTED = (1 << 1),
352 ATA_LOG_NCQ_SEND_RECV_SIZE = 0x14,
Marc Carinoed369112013-08-24 23:22:50 -0700353
Hannes Reineckea5703842016-04-25 12:45:49 +0200354 /* NCQ Non-Data log */
355 ATA_LOG_NCQ_NON_DATA_SUBCMDS_OFFSET = 0x00,
356 ATA_LOG_NCQ_NON_DATA_ABORT_OFFSET = 0x00,
357 ATA_LOG_NCQ_NON_DATA_ABORT_NCQ = (1 << 0),
358 ATA_LOG_NCQ_NON_DATA_ABORT_ALL = (1 << 1),
359 ATA_LOG_NCQ_NON_DATA_ABORT_STREAMING = (1 << 2),
360 ATA_LOG_NCQ_NON_DATA_ABORT_NON_STREAMING = (1 << 3),
361 ATA_LOG_NCQ_NON_DATA_ABORT_SELECTED = (1 << 4),
362 ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OFFSET = 0x1C,
363 ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OUT = (1 << 0),
364 ATA_LOG_NCQ_NON_DATA_SIZE = 0x40,
365
Mark Lord5a5dbd12007-03-16 10:22:26 -0400366 /* READ/WRITE LONG (obsolete) */
367 ATA_CMD_READ_LONG = 0x22,
368 ATA_CMD_READ_LONG_ONCE = 0x23,
369 ATA_CMD_WRITE_LONG = 0x32,
370 ATA_CMD_WRITE_LONG_ONCE = 0x33,
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* SETFEATURES stuff */
373 SETFEATURES_XFER = 0x03,
374 XFER_UDMA_7 = 0x47,
375 XFER_UDMA_6 = 0x46,
376 XFER_UDMA_5 = 0x45,
377 XFER_UDMA_4 = 0x44,
378 XFER_UDMA_3 = 0x43,
379 XFER_UDMA_2 = 0x42,
380 XFER_UDMA_1 = 0x41,
381 XFER_UDMA_0 = 0x40,
Alan Coxb352e572006-08-10 18:52:12 +0100382 XFER_MW_DMA_4 = 0x24, /* CFA only */
383 XFER_MW_DMA_3 = 0x23, /* CFA only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 XFER_MW_DMA_2 = 0x22,
385 XFER_MW_DMA_1 = 0x21,
386 XFER_MW_DMA_0 = 0x20,
Alan Coxb4b52db2005-09-26 12:48:41 +0100387 XFER_SW_DMA_2 = 0x12,
388 XFER_SW_DMA_1 = 0x11,
389 XFER_SW_DMA_0 = 0x10,
Alan Coxb352e572006-08-10 18:52:12 +0100390 XFER_PIO_6 = 0x0E, /* CFA only */
391 XFER_PIO_5 = 0x0D, /* CFA only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 XFER_PIO_4 = 0x0C,
393 XFER_PIO_3 = 0x0B,
394 XFER_PIO_2 = 0x0A,
395 XFER_PIO_1 = 0x09,
396 XFER_PIO_0 = 0x08,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 XFER_PIO_SLOW = 0x00,
398
zhao, forrest3057ac32006-06-12 12:01:34 +0800399 SETFEATURES_WC_ON = 0x02, /* Enable write cache */
400 SETFEATURES_WC_OFF = 0x82, /* Disable write cache */
401
Bartlomiej Zolnierkiewicz476d9892008-08-18 21:40:05 +0200402 /* Enable/Disable Automatic Acoustic Management */
403 SETFEATURES_AAM_ON = 0x42,
404 SETFEATURES_AAM_OFF = 0xC2,
405
Mark Lord169439c2007-04-17 18:26:07 -0400406 SETFEATURES_SPINUP = 0x07, /* Spin-up drive */
407
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -0400408 SETFEATURES_SATA_ENABLE = 0x10, /* Enable use of SATA feature */
409 SETFEATURES_SATA_DISABLE = 0x90, /* Disable use of SATA feature */
410
411 /* SETFEATURE Sector counts for SATA features */
Tejun Heofa5b5612009-09-16 04:17:02 +0900412 SATA_FPDMA_OFFSET = 0x01, /* FPDMA non-zero buffer offsets */
Tejun Heof1bce7f2009-09-16 04:16:04 +0900413 SATA_FPDMA_AA = 0x02, /* FPDMA Setup FIS Auto-Activate */
414 SATA_DIPM = 0x03, /* Device Initiated Power Management */
Tejun Heofa5b5612009-09-16 04:17:02 +0900415 SATA_FPDMA_IN_ORDER = 0x04, /* FPDMA in-order data delivery */
Tejun Heof1bce7f2009-09-16 04:16:04 +0900416 SATA_AN = 0x05, /* Asynchronous Notification */
Tejun Heofa5b5612009-09-16 04:17:02 +0900417 SATA_SSP = 0x06, /* Software Settings Preservation */
Shane Huang65fe1f02012-09-07 22:40:01 +0800418 SATA_DEVSLP = 0x09, /* Device Sleep */
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -0400419
Hannes Reineckee87fd282016-04-04 11:43:55 +0200420 SETFEATURE_SENSE_DATA = 0xC3, /* Sense Data Reporting feature */
421
Tejun Heoce2e0ab2007-12-15 15:04:59 +0900422 /* feature values for SET_MAX */
423 ATA_SET_MAX_ADDR = 0x00,
424 ATA_SET_MAX_PASSWD = 0x01,
425 ATA_SET_MAX_LOCK = 0x02,
426 ATA_SET_MAX_UNLOCK = 0x03,
427 ATA_SET_MAX_FREEZE_LOCK = 0x04,
428
429 /* feature values for DEVICE CONFIGURATION OVERLAY */
430 ATA_DCO_RESTORE = 0xC0,
431 ATA_DCO_FREEZE_LOCK = 0xC1,
432 ATA_DCO_IDENTIFY = 0xC2,
433 ATA_DCO_SET = 0xC3,
434
Bartlomiej Zolnierkiewicz476d9892008-08-18 21:40:05 +0200435 /* feature values for SMART */
436 ATA_SMART_ENABLE = 0xD8,
437 ATA_SMART_READ_VALUES = 0xD0,
438 ATA_SMART_READ_THRESHOLDS = 0xD1,
439
Matthew Wilcox0c659b82009-04-02 10:37:25 -0400440 /* feature values for Data Set Management */
441 ATA_DSM_TRIM = 0x01,
442
Bartlomiej Zolnierkiewicz476d9892008-08-18 21:40:05 +0200443 /* password used in LBA Mid / LBA High for executing SMART commands */
444 ATA_SMART_LBAM_PASS = 0x4F,
445 ATA_SMART_LBAH_PASS = 0xC2,
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 /* ATAPI stuff */
448 ATAPI_PKT_DMA = (1 << 0),
449 ATAPI_DMADIR = (1 << 2), /* ATAPI data dir:
450 0=to device, 1=to host */
451 ATAPI_CDB_LEN = 16,
452
Tejun Heo814600e2007-07-01 19:05:58 +0900453 /* PMP stuff */
454 SATA_PMP_MAX_PORTS = 15,
455 SATA_PMP_CTRL_PORT = 15,
456
457 SATA_PMP_GSCR_DWORDS = 128,
458 SATA_PMP_GSCR_PROD_ID = 0,
459 SATA_PMP_GSCR_REV = 1,
460 SATA_PMP_GSCR_PORT_INFO = 2,
461 SATA_PMP_GSCR_ERROR = 32,
462 SATA_PMP_GSCR_ERROR_EN = 33,
463 SATA_PMP_GSCR_FEAT = 64,
464 SATA_PMP_GSCR_FEAT_EN = 96,
465
466 SATA_PMP_PSCR_STATUS = 0,
467 SATA_PMP_PSCR_ERROR = 1,
468 SATA_PMP_PSCR_CONTROL = 2,
469
470 SATA_PMP_FEAT_BIST = (1 << 0),
471 SATA_PMP_FEAT_PMREQ = (1 << 1),
472 SATA_PMP_FEAT_DYNSSC = (1 << 2),
473 SATA_PMP_FEAT_NOTIFY = (1 << 3),
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /* cable types */
476 ATA_CBL_NONE = 0,
477 ATA_CBL_PATA40 = 1,
478 ATA_CBL_PATA80 = 2,
Tejun Heoc88f90c2007-11-27 19:43:48 +0900479 ATA_CBL_PATA40_SHORT = 3, /* 40 wire cable to high UDMA spec */
480 ATA_CBL_PATA_UNK = 4, /* don't know, maybe 80c? */
481 ATA_CBL_PATA_IGN = 5, /* don't know, ignore cable handling */
482 ATA_CBL_SATA = 6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 /* SATA Status and Control Registers */
485 SCR_STATUS = 0,
486 SCR_ERROR = 1,
487 SCR_CONTROL = 2,
488 SCR_ACTIVE = 3,
489 SCR_NOTIFICATION = 4,
490
Tejun Heo9be1e972006-05-15 20:58:17 +0900491 /* SError bits */
492 SERR_DATA_RECOVERED = (1 << 0), /* recovered data error */
493 SERR_COMM_RECOVERED = (1 << 1), /* recovered comm failure */
494 SERR_DATA = (1 << 8), /* unrecovered data error */
495 SERR_PERSISTENT = (1 << 9), /* persistent data/comm error */
496 SERR_PROTOCOL = (1 << 10), /* protocol violation */
497 SERR_INTERNAL = (1 << 11), /* host internal error */
498 SERR_PHYRDY_CHG = (1 << 16), /* PHY RDY changed */
Robert Hancock1333e192007-10-02 11:22:02 -0400499 SERR_PHY_INT_ERR = (1 << 17), /* PHY internal error */
500 SERR_COMM_WAKE = (1 << 18), /* Comm wake */
501 SERR_10B_8B_ERR = (1 << 19), /* 10b to 8b decode error */
502 SERR_DISPARITY = (1 << 20), /* Disparity */
503 SERR_CRC = (1 << 21), /* CRC error */
504 SERR_HANDSHAKE = (1 << 22), /* Handshake error */
505 SERR_LINK_SEQ_ERR = (1 << 23), /* Link sequence error */
506 SERR_TRANS_ST_ERROR = (1 << 24), /* Transport state trans. error */
507 SERR_UNRECOG_FIS = (1 << 25), /* Unrecognized FIS */
Tejun Heo9be1e972006-05-15 20:58:17 +0900508 SERR_DEV_XCHG = (1 << 26), /* device exchanged */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509};
510
511enum ata_tf_protocols {
512 /* ATA taskfile protocols */
513 ATA_PROT_UNKNOWN, /* unknown/invalid */
514 ATA_PROT_NODATA, /* no data */
Albert Lee1dce5892007-06-07 15:49:22 +0800515 ATA_PROT_PIO, /* PIO data xfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 ATA_PROT_DMA, /* DMA */
Tejun Heo88e49032006-05-15 21:03:38 +0900517 ATA_PROT_NCQ, /* NCQ */
Tejun Heo0dc36882007-12-18 16:34:43 -0500518 ATAPI_PROT_NODATA, /* packet command, no data */
519 ATAPI_PROT_PIO, /* packet command, PIO data xfer*/
520 ATAPI_PROT_DMA, /* packet command with special DMA sauce */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521};
522
523enum ata_ioctls {
Arnd Bergmann287e6612016-02-11 14:16:27 +0100524 ATA_IOC_GET_IO32 = 0x309, /* HDIO_GET_32BIT */
525 ATA_IOC_SET_IO32 = 0x324, /* HDIO_SET_32BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526};
527
528/* core structures */
529
Tejun Heof60d7012010-05-10 21:41:41 +0200530struct ata_bmdma_prd {
Al Viro4ca4e432007-12-30 09:32:22 +0000531 __le32 addr;
532 __le32 flags_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533};
534
Tejun Heo405e66b2007-11-27 19:28:53 +0900535/*
536 * id tests
537 */
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200538#define ata_id_is_ata(id) (((id)[ATA_ID_CONFIG] & (1 << 15)) == 0)
539#define ata_id_has_lba(id) ((id)[ATA_ID_CAPABILITY] & (1 << 9))
540#define ata_id_has_dma(id) ((id)[ATA_ID_CAPABILITY] & (1 << 8))
Shane Huang583661a2012-09-07 22:38:20 +0800541#define ata_id_has_ncq(id) ((id)[ATA_ID_SATA_CAPABILITY] & (1 << 8))
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200542#define ata_id_queue_depth(id) (((id)[ATA_ID_QUEUE_DEPTH] & 0x1f) + 1)
Nicholas Krause0628ee72014-12-21 22:36:37 -0500543#define ata_id_removable(id) ((id)[ATA_ID_CONFIG] & (1 << 7))
Tejun Heo854c73a2007-09-23 13:14:11 +0900544#define ata_id_has_atapi_AN(id) \
Shane Huang583661a2012-09-07 22:38:20 +0800545 ((((id)[ATA_ID_SATA_CAPABILITY] != 0x0000) && \
546 ((id)[ATA_ID_SATA_CAPABILITY] != 0xffff)) && \
547 ((id)[ATA_ID_FEATURE_SUPP] & (1 << 5)))
Shaohua Li388539f2009-07-27 09:24:35 +0800548#define ata_id_has_fpdma_aa(id) \
Shane Huang583661a2012-09-07 22:38:20 +0800549 ((((id)[ATA_ID_SATA_CAPABILITY] != 0x0000) && \
550 ((id)[ATA_ID_SATA_CAPABILITY] != 0xffff)) && \
551 ((id)[ATA_ID_FEATURE_SUPP] & (1 << 2)))
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200552#define ata_id_iordy_disable(id) ((id)[ATA_ID_CAPABILITY] & (1 << 10))
553#define ata_id_has_iordy(id) ((id)[ATA_ID_CAPABILITY] & (1 << 11))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554#define ata_id_u32(id,n) \
555 (((u32) (id)[(n) + 1] << 16) | ((u32) (id)[(n)]))
556#define ata_id_u64(id,n) \
557 ( ((u64) (id)[(n) + 3] << 48) | \
558 ((u64) (id)[(n) + 2] << 32) | \
559 ((u64) (id)[(n) + 1] << 16) | \
560 ((u64) (id)[(n) + 0]) )
561
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200562#define ata_id_cdb_intr(id) (((id)[ATA_ID_CONFIG] & 0x60) == 0x20)
Shane Huang583661a2012-09-07 22:38:20 +0800563#define ata_id_has_da(id) ((id)[ATA_ID_SATA_CAPABILITY_2] & (1 << 4))
Shane Huang65fe1f02012-09-07 22:40:01 +0800564#define ata_id_has_devslp(id) ((id)[ATA_ID_FEATURE_SUPP] & (1 << 8))
Hannes Reinecke5b01e4b2016-04-04 11:43:54 +0200565#define ata_id_has_ncq_autosense(id) \
566 ((id)[ATA_ID_FEATURE_SUPP] & (1 << 7))
Albert Lee312f7da2005-09-27 17:38:03 +0800567
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400568static inline bool ata_id_has_hipm(const u16 *id)
569{
Shane Huang583661a2012-09-07 22:38:20 +0800570 u16 val = id[ATA_ID_SATA_CAPABILITY];
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400571
572 if (val == 0 || val == 0xffff)
573 return false;
574
575 return val & (1 << 9);
576}
577
578static inline bool ata_id_has_dipm(const u16 *id)
579{
Shane Huang583661a2012-09-07 22:38:20 +0800580 u16 val = id[ATA_ID_FEATURE_SUPP];
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400581
582 if (val == 0 || val == 0xffff)
583 return false;
584
585 return val & (1 << 3);
586}
587
Alan Coxae8d4ee2007-11-04 22:05:49 -0500588
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100589static inline bool ata_id_has_fua(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100590{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200591 if ((id[ATA_ID_CFSSE] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100592 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200593 return id[ATA_ID_CFSSE] & (1 << 6);
Alan Coxc7293872007-08-22 23:31:43 +0100594}
595
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100596static inline bool ata_id_has_flush(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100597{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200598 if ((id[ATA_ID_COMMAND_SET_2] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100599 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200600 return id[ATA_ID_COMMAND_SET_2] & (1 << 12);
Alan Coxc7293872007-08-22 23:31:43 +0100601}
602
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100603static inline bool ata_id_flush_enabled(const u16 *id)
Bartlomiej Zolnierkiewicz4b58f172008-10-10 22:39:30 +0200604{
605 if (ata_id_has_flush(id) == 0)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100606 return false;
Bartlomiej Zolnierkiewicz4b58f172008-10-10 22:39:30 +0200607 if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100608 return false;
Bartlomiej Zolnierkiewicz4b58f172008-10-10 22:39:30 +0200609 return id[ATA_ID_CFS_ENABLE_2] & (1 << 12);
610}
611
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100612static inline bool ata_id_has_flush_ext(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100613{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200614 if ((id[ATA_ID_COMMAND_SET_2] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100615 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200616 return id[ATA_ID_COMMAND_SET_2] & (1 << 13);
Alan Coxc7293872007-08-22 23:31:43 +0100617}
618
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100619static inline bool ata_id_flush_ext_enabled(const u16 *id)
Bartlomiej Zolnierkiewiczff2779b2008-10-10 22:39:31 +0200620{
621 if (ata_id_has_flush_ext(id) == 0)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100622 return false;
Bartlomiej Zolnierkiewiczff2779b2008-10-10 22:39:31 +0200623 if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100624 return false;
Bartlomiej Zolnierkiewiczff2779b2008-10-10 22:39:31 +0200625 /*
626 * some Maxtor disks have bit 13 defined incorrectly
627 * so check bit 10 too
628 */
629 return (id[ATA_ID_CFS_ENABLE_2] & 0x2400) == 0x2400;
630}
631
Grant Grundler295124d2010-08-17 10:56:53 -0700632static inline u32 ata_id_logical_sector_size(const u16 *id)
Christoph Hellwig18f0f972009-11-17 10:00:47 -0500633{
Grant Grundler295124d2010-08-17 10:56:53 -0700634 /* T13/1699-D Revision 6a, Sep 6, 2008. Page 128.
635 * IDENTIFY DEVICE data, word 117-118.
636 * 0xd000 ignores bit 13 (logical:physical > 1)
637 */
638 if ((id[ATA_ID_SECTOR_SIZE] & 0xd000) == 0x5000)
639 return (((id[ATA_ID_LOGICAL_SECTOR_SIZE+1] << 16)
640 + id[ATA_ID_LOGICAL_SECTOR_SIZE]) * sizeof(u16)) ;
641 return ATA_SECT_SIZE;
Christoph Hellwig18f0f972009-11-17 10:00:47 -0500642}
643
Grant Grundler295124d2010-08-17 10:56:53 -0700644static inline u8 ata_id_log2_per_physical_sector(const u16 *id)
Christoph Hellwig18f0f972009-11-17 10:00:47 -0500645{
Grant Grundler295124d2010-08-17 10:56:53 -0700646 /* T13/1699-D Revision 6a, Sep 6, 2008. Page 128.
647 * IDENTIFY DEVICE data, word 106.
648 * 0xe000 ignores bit 12 (logical sector > 512 bytes)
649 */
650 if ((id[ATA_ID_SECTOR_SIZE] & 0xe000) == 0x6000)
651 return (id[ATA_ID_SECTOR_SIZE] & 0xf);
652 return 0;
653}
654
655/* Offset of logical sectors relative to physical sectors.
656 *
657 * If device has more than one logical sector per physical sector
658 * (aka 512 byte emulation), vendors might offset the "sector 0" address
659 * so sector 63 is "naturally aligned" - e.g. FAT partition table.
660 * This avoids Read/Mod/Write penalties when using FAT partition table
661 * and updating "well aligned" (FS perspective) physical sectors on every
662 * transaction.
663 */
664static inline u16 ata_id_logical_sector_offset(const u16 *id,
665 u8 log2_per_phys)
666{
667 u16 word_209 = id[209];
668
669 if ((log2_per_phys > 1) && (word_209 & 0xc000) == 0x4000) {
670 u16 first = word_209 & 0x3fff;
671 if (first > 0)
672 return (1 << log2_per_phys) - first;
673 }
674 return 0;
Christoph Hellwig18f0f972009-11-17 10:00:47 -0500675}
676
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100677static inline bool ata_id_has_lba48(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100678{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200679 if ((id[ATA_ID_COMMAND_SET_2] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100680 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200681 if (!ata_id_u64(id, ATA_ID_LBA_CAPACITY_2))
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100682 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200683 return id[ATA_ID_COMMAND_SET_2] & (1 << 10);
Alan Coxc7293872007-08-22 23:31:43 +0100684}
685
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100686static inline bool ata_id_lba48_enabled(const u16 *id)
Bartlomiej Zolnierkiewicz942dcd82008-10-10 22:39:30 +0200687{
688 if (ata_id_has_lba48(id) == 0)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100689 return false;
Bartlomiej Zolnierkiewicz942dcd82008-10-10 22:39:30 +0200690 if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100691 return false;
Bartlomiej Zolnierkiewicz942dcd82008-10-10 22:39:30 +0200692 return id[ATA_ID_CFS_ENABLE_2] & (1 << 10);
693}
694
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100695static inline bool ata_id_hpa_enabled(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100696{
697 /* Yes children, word 83 valid bits cover word 82 data */
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200698 if ((id[ATA_ID_COMMAND_SET_2] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100699 return false;
Alan Coxc7293872007-08-22 23:31:43 +0100700 /* And 87 covers 85-87 */
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200701 if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100702 return false;
Alan Coxc7293872007-08-22 23:31:43 +0100703 /* Check command sets enabled as well as supported */
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200704 if ((id[ATA_ID_CFS_ENABLE_1] & (1 << 10)) == 0)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100705 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200706 return id[ATA_ID_COMMAND_SET_1] & (1 << 10);
Alan Coxc7293872007-08-22 23:31:43 +0100707}
708
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100709static inline bool ata_id_has_wcache(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100710{
711 /* Yes children, word 83 valid bits cover word 82 data */
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200712 if ((id[ATA_ID_COMMAND_SET_2] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100713 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200714 return id[ATA_ID_COMMAND_SET_1] & (1 << 5);
Alan Coxc7293872007-08-22 23:31:43 +0100715}
716
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100717static inline bool ata_id_has_pm(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100718{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200719 if ((id[ATA_ID_COMMAND_SET_2] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100720 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200721 return id[ATA_ID_COMMAND_SET_1] & (1 << 3);
Alan Coxc7293872007-08-22 23:31:43 +0100722}
723
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100724static inline bool ata_id_rahead_enabled(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100725{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200726 if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100727 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200728 return id[ATA_ID_CFS_ENABLE_1] & (1 << 6);
Alan Coxc7293872007-08-22 23:31:43 +0100729}
730
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100731static inline bool ata_id_wcache_enabled(const u16 *id)
Alan Coxc7293872007-08-22 23:31:43 +0100732{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200733 if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100734 return false;
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200735 return id[ATA_ID_CFS_ENABLE_1] & (1 << 5);
Alan Coxc7293872007-08-22 23:31:43 +0100736}
737
Hannes Reinecke9faa6432015-03-27 16:46:30 +0100738static inline bool ata_id_has_read_log_dma_ext(const u16 *id)
739{
Martin K. Petersen406c0572015-05-04 21:54:20 -0400740 /* Word 86 must have bit 15 set */
Hannes Reinecke9faa6432015-03-27 16:46:30 +0100741 if (!(id[ATA_ID_CFS_ENABLE_2] & (1 << 15)))
742 return false;
Martin K. Petersen406c0572015-05-04 21:54:20 -0400743
744 /* READ LOG DMA EXT support can be signaled either from word 119
745 * or from word 120. The format is the same for both words: Bit
746 * 15 must be cleared, bit 14 set and bit 3 set.
747 */
748 if ((id[ATA_ID_COMMAND_SET_3] & 0xC008) == 0x4008 ||
749 (id[ATA_ID_COMMAND_SET_4] & 0xC008) == 0x4008)
750 return true;
751
752 return false;
Hannes Reinecke9faa6432015-03-27 16:46:30 +0100753}
754
Hannes Reineckee87fd282016-04-04 11:43:55 +0200755static inline bool ata_id_has_sense_reporting(const u16 *id)
756{
757 if (!(id[ATA_ID_CFS_ENABLE_2] & (1 << 15)))
758 return false;
759 return id[ATA_ID_COMMAND_SET_3] & (1 << 6);
760}
761
762static inline bool ata_id_sense_reporting_enabled(const u16 *id)
763{
764 if (!(id[ATA_ID_CFS_ENABLE_2] & (1 << 15)))
765 return false;
766 return id[ATA_ID_COMMAND_SET_4] & (1 << 6);
767}
768
Alan Coxc7293872007-08-22 23:31:43 +0100769/**
770 * ata_id_major_version - get ATA level of drive
771 * @id: Identify data
772 *
773 * Caveats:
774 * ATA-1 considers identify optional
775 * ATA-2 introduces mandatory identify
776 * ATA-3 introduces word 80 and accurate reporting
777 *
778 * The practical impact of this is that ata_id_major_version cannot
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400779 * reliably report on drives below ATA3.
Alan Coxc7293872007-08-22 23:31:43 +0100780 */
781
Tejun Heo3d2ca912006-02-12 22:47:04 +0900782static inline unsigned int ata_id_major_version(const u16 *id)
783{
784 unsigned int mver;
785
Alan Coxb352e572006-08-10 18:52:12 +0100786 if (id[ATA_ID_MAJOR_VER] == 0xFFFF)
787 return 0;
788
Tejun Heo3d2ca912006-02-12 22:47:04 +0900789 for (mver = 14; mver >= 1; mver--)
790 if (id[ATA_ID_MAJOR_VER] & (1 << mver))
791 break;
792 return mver;
793}
794
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100795static inline bool ata_id_is_sata(const u16 *id)
Tejun Heo32d90912007-02-21 20:25:08 +0900796{
Bartlomiej Zolnierkiewicz367d7e72008-10-10 22:39:30 +0200797 /*
798 * See if word 93 is 0 AND drive is at least ATA-5 compatible
799 * verifying that word 80 by casting it to a signed type --
800 * this trick allows us to filter out the reserved values of
801 * 0x0000 and 0xffff along with the earlier ATA revisions...
802 */
803 if (id[ATA_ID_HW_CONFIG] == 0 && (short)id[ATA_ID_MAJOR_VER] >= 0x0020)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100804 return true;
805 return false;
Tejun Heo32d90912007-02-21 20:25:08 +0900806}
807
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100808static inline bool ata_id_has_tpm(const u16 *id)
Alan Coxae8d4ee2007-11-04 22:05:49 -0500809{
810 /* The TPM bits are only valid on ATA8 */
811 if (ata_id_major_version(id) < 8)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100812 return false;
Alan Coxae8d4ee2007-11-04 22:05:49 -0500813 if ((id[48] & 0xC000) != 0x4000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100814 return false;
Alan Coxae8d4ee2007-11-04 22:05:49 -0500815 return id[48] & (1 << 0);
816}
817
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100818static inline bool ata_id_has_dword_io(const u16 *id)
Alan Coxae8d4ee2007-11-04 22:05:49 -0500819{
820 /* ATA 8 reuses this flag for "trusted" computing */
821 if (ata_id_major_version(id) > 7)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100822 return false;
823 return id[ATA_ID_DWORD_IO] & (1 << 0);
Alan Coxae8d4ee2007-11-04 22:05:49 -0500824}
825
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100826static inline bool ata_id_has_unload(const u16 *id)
Elias Oltmannsea6ce532008-09-19 23:46:01 +0200827{
828 if (ata_id_major_version(id) >= 7 &&
829 (id[ATA_ID_CFSSE] & 0xC000) == 0x4000 &&
830 id[ATA_ID_CFSSE] & (1 << 13))
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100831 return true;
832 return false;
Elias Oltmannsea6ce532008-09-19 23:46:01 +0200833}
834
Hannes Reinecke6b3b9d72011-03-07 08:56:44 +0100835static inline bool ata_id_has_wwn(const u16 *id)
836{
837 return (id[ATA_ID_CSF_DEFAULT] & 0xC100) == 0x4100;
838}
839
Martin K. Petersen4bca3282009-05-15 00:40:35 -0400840static inline int ata_id_form_factor(const u16 *id)
841{
842 u16 val = id[168];
843
844 if (ata_id_major_version(id) < 7 || val == 0 || val == 0xffff)
845 return 0;
846
847 val &= 0xf;
848
849 if (val > 5)
850 return 0;
851
852 return val;
853}
854
855static inline int ata_id_rotation_rate(const u16 *id)
856{
857 u16 val = id[217];
858
859 if (ata_id_major_version(id) < 7 || val == 0 || val == 0xffff)
860 return 0;
861
862 if (val > 1 && val < 0x401)
863 return 0;
864
865 return val;
866}
867
Marc Carinoed369112013-08-24 23:22:50 -0700868static inline bool ata_id_has_ncq_send_and_recv(const u16 *id)
869{
870 return id[ATA_ID_SATA_CAPABILITY_2] & BIT(6);
871}
872
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100873static inline bool ata_id_has_trim(const u16 *id)
Matthew Wilcox0c659b82009-04-02 10:37:25 -0400874{
875 if (ata_id_major_version(id) >= 7 &&
876 (id[ATA_ID_DATA_SET_MGMT] & 1))
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100877 return true;
878 return false;
Matthew Wilcox0c659b82009-04-02 10:37:25 -0400879}
880
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100881static inline bool ata_id_has_zero_after_trim(const u16 *id)
Martin K. Petersene78db4d2009-11-26 22:46:03 -0500882{
883 /* DSM supported, deterministic read, and read zero after trim set */
884 if (ata_id_has_trim(id) &&
885 (id[ATA_ID_ADDITIONAL_SUPP] & 0x4020) == 0x4020)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100886 return true;
Martin K. Petersene78db4d2009-11-26 22:46:03 -0500887
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100888 return false;
Martin K. Petersene78db4d2009-11-26 22:46:03 -0500889}
890
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100891static inline bool ata_id_current_chs_valid(const u16 *id)
Albert Lee8bf62ece2005-05-12 15:29:42 -0400892{
Jeff Garzik9bec2e32006-08-31 00:02:15 -0400893 /* For ATA-1 devices, if the INITIALIZE DEVICE PARAMETERS command
894 has not been issued to the device then the values of
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200895 id[ATA_ID_CUR_CYLS] to id[ATA_ID_CUR_SECTORS] are vendor specific. */
896 return (id[ATA_ID_FIELD_VALID] & 1) && /* Current translation valid */
897 id[ATA_ID_CUR_CYLS] && /* cylinders in current translation */
898 id[ATA_ID_CUR_HEADS] && /* heads in current translation */
899 id[ATA_ID_CUR_HEADS] <= 16 &&
900 id[ATA_ID_CUR_SECTORS]; /* sectors in current translation */
Albert Lee8bf62ece2005-05-12 15:29:42 -0400901}
902
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100903static inline bool ata_id_is_cfa(const u16 *id)
Alan Coxb352e572006-08-10 18:52:12 +0100904{
Ben Gardner4b7d1c02010-02-23 12:41:22 -0600905 if ((id[ATA_ID_CONFIG] == 0x848A) || /* Traditional CF */
906 (id[ATA_ID_CONFIG] == 0x844A)) /* Delkin Devices CF */
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100907 return true;
Sergei Shtylyov2999b582009-02-01 20:46:39 +0400908 /*
909 * CF specs don't require specific value in the word 0 anymore and yet
910 * they forbid to report the ATA version in the word 80 and require the
911 * CFA feature set support to be indicated in the word 83 in this case.
912 * Unfortunately, some cards only follow either of this requirements,
913 * and while those that don't indicate CFA feature support need some
914 * sort of quirk list, it seems impractical for the ones that do...
915 */
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100916 return (id[ATA_ID_COMMAND_SET_2] & 0xC004) == 0x4004;
Alan Coxb352e572006-08-10 18:52:12 +0100917}
918
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100919static inline bool ata_id_is_ssd(const u16 *id)
Jens Axboe8bff7c62008-09-24 13:05:10 +0200920{
921 return id[ATA_ID_ROT_SPEED] == 0x01;
922}
923
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100924static inline bool ata_id_pio_need_iordy(const u16 *id, const u8 pio)
Bartlomiej Zolnierkiewicz6dae44f2009-06-15 18:52:52 +0200925{
926 /* CF spec. r4.1 Table 22 says no IORDY on PIO5 and PIO6. */
927 if (pio > 4 && ata_id_is_cfa(id))
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100928 return false;
Bartlomiej Zolnierkiewicz6dae44f2009-06-15 18:52:52 +0200929 /* For PIO3 and higher it is mandatory. */
930 if (pio > 2)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100931 return true;
Bartlomiej Zolnierkiewicz6dae44f2009-06-15 18:52:52 +0200932 /* Turn it on when possible. */
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100933 return ata_id_has_iordy(id);
Bartlomiej Zolnierkiewicz6dae44f2009-06-15 18:52:52 +0200934}
935
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100936static inline bool ata_drive_40wire(const u16 *dev_id)
Alan Coxfc085152006-10-10 14:28:11 -0700937{
Tejun Heo32d90912007-02-21 20:25:08 +0900938 if (ata_id_is_sata(dev_id))
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100939 return false; /* SATA */
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200940 if ((dev_id[ATA_ID_HW_CONFIG] & 0xE000) == 0x6000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100941 return false; /* 80 wire */
942 return true;
Alan Coxfc085152006-10-10 14:28:11 -0700943}
944
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100945static inline bool ata_drive_40wire_relaxed(const u16 *dev_id)
Alan Cox6bbfd532007-11-05 22:58:58 +0000946{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200947 if ((dev_id[ATA_ID_HW_CONFIG] & 0x2000) == 0x2000)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100948 return false; /* 80 wire */
949 return true;
Alan Cox6bbfd532007-11-05 22:58:58 +0000950}
951
Jeff Garzik057ace52005-10-22 14:27:05 -0400952static inline int atapi_cdb_len(const u16 *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200954 u16 tmp = dev_id[ATA_ID_CONFIG] & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 switch (tmp) {
956 case 0: return 12;
957 case 1: return 16;
958 default: return -1;
959 }
960}
961
Shan Haid8668fc2013-03-18 10:30:43 +0800962static inline int atapi_command_packet_set(const u16 *dev_id)
Tony Battersbyf8d8e572007-10-30 11:44:35 -0400963{
Bartlomiej Zolnierkiewicz37014c62008-08-18 21:40:05 +0200964 return (dev_id[ATA_ID_CONFIG] >> 8) & 0x1f;
Tony Battersbyf8d8e572007-10-30 11:44:35 -0400965}
966
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100967static inline bool atapi_id_dmadir(const u16 *dev_id)
Tejun Heo91163002008-02-21 13:25:50 +0900968{
969 return ata_id_major_version(dev_id) >= 7 && (dev_id[62] & 0x8000);
970}
971
Bartlomiej Zolnierkiewicza02227c2008-10-10 22:39:31 +0200972/*
973 * ata_id_is_lba_capacity_ok() performs a sanity check on
974 * the claimed LBA capacity value for the device.
975 *
976 * Returns 1 if LBA capacity looks sensible, 0 otherwise.
977 *
978 * It is called only once for each device.
979 */
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100980static inline bool ata_id_is_lba_capacity_ok(u16 *id)
Bartlomiej Zolnierkiewicza02227c2008-10-10 22:39:31 +0200981{
982 unsigned long lba_sects, chs_sects, head, tail;
983
984 /* No non-LBA info .. so valid! */
985 if (id[ATA_ID_CYLS] == 0)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +0100986 return true;
Bartlomiej Zolnierkiewicza02227c2008-10-10 22:39:31 +0200987
988 lba_sects = ata_id_u32(id, ATA_ID_LBA_CAPACITY);
989
990 /*
991 * The ATA spec tells large drives to return
992 * C/H/S = 16383/16/63 independent of their size.
993 * Some drives can be jumpered to use 15 heads instead of 16.
994 * Some drives can be jumpered to use 4092 cyls instead of 16383.
995 */
996 if ((id[ATA_ID_CYLS] == 16383 ||
997 (id[ATA_ID_CYLS] == 4092 && id[ATA_ID_CUR_CYLS] == 16383)) &&
998 id[ATA_ID_SECTORS] == 63 &&
999 (id[ATA_ID_HEADS] == 15 || id[ATA_ID_HEADS] == 16) &&
1000 (lba_sects >= 16383 * 63 * id[ATA_ID_HEADS]))
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +01001001 return true;
Bartlomiej Zolnierkiewicza02227c2008-10-10 22:39:31 +02001002
1003 chs_sects = id[ATA_ID_CYLS] * id[ATA_ID_HEADS] * id[ATA_ID_SECTORS];
1004
1005 /* perform a rough sanity check on lba_sects: within 10% is OK */
1006 if (lba_sects - chs_sects < chs_sects/10)
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +01001007 return true;
Bartlomiej Zolnierkiewicza02227c2008-10-10 22:39:31 +02001008
1009 /* some drives have the word order reversed */
1010 head = (lba_sects >> 16) & 0xffff;
1011 tail = lba_sects & 0xffff;
1012 lba_sects = head | (tail << 16);
1013
1014 if (lba_sects - chs_sects < chs_sects/10) {
1015 *(__le32 *)&id[ATA_ID_LBA_CAPACITY] = __cpu_to_le32(lba_sects);
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +01001016 return true; /* LBA capacity is (now) good */
Bartlomiej Zolnierkiewicza02227c2008-10-10 22:39:31 +02001017 }
1018
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +01001019 return false; /* LBA capacity value may be bad */
Bartlomiej Zolnierkiewicza02227c2008-10-10 22:39:31 +02001020}
1021
Bartlomiej Zolnierkiewicz93734a22008-10-10 22:39:31 +02001022static inline void ata_id_to_hd_driveid(u16 *id)
1023{
1024#ifdef __BIG_ENDIAN
1025 /* accessed in struct hd_driveid as 8-bit values */
1026 id[ATA_ID_MAX_MULTSECT] = __cpu_to_le16(id[ATA_ID_MAX_MULTSECT]);
1027 id[ATA_ID_CAPABILITY] = __cpu_to_le16(id[ATA_ID_CAPABILITY]);
1028 id[ATA_ID_OLD_PIO_MODES] = __cpu_to_le16(id[ATA_ID_OLD_PIO_MODES]);
1029 id[ATA_ID_OLD_DMA_MODES] = __cpu_to_le16(id[ATA_ID_OLD_DMA_MODES]);
1030 id[ATA_ID_MULTSECT] = __cpu_to_le16(id[ATA_ID_MULTSECT]);
1031
1032 /* as 32-bit values */
1033 *(u32 *)&id[ATA_ID_LBA_CAPACITY] = ata_id_u32(id, ATA_ID_LBA_CAPACITY);
1034 *(u32 *)&id[ATA_ID_SPG] = ata_id_u32(id, ATA_ID_SPG);
1035
1036 /* as 64-bit value */
1037 *(u64 *)&id[ATA_ID_LBA_CAPACITY_2] =
1038 ata_id_u64(id, ATA_ID_LBA_CAPACITY_2);
1039#endif
1040}
1041
Matthew Wilcox0c659b82009-04-02 10:37:25 -04001042/*
Martin K. Petersend0634c42009-11-26 12:00:43 -05001043 * Write LBA Range Entries to the buffer that will cover the extent from
1044 * sector to sector + count. This is used for TRIM and for ADD LBA(S)
1045 * TO NV CACHE PINNED SET.
Matthew Wilcox0c659b82009-04-02 10:37:25 -04001046 */
Martin K. Petersend0634c42009-11-26 12:00:43 -05001047static inline unsigned ata_set_lba_range_entries(void *_buffer,
1048 unsigned buf_size, u64 sector, unsigned long count)
Matthew Wilcox0c659b82009-04-02 10:37:25 -04001049{
1050 __le64 *buffer = _buffer;
Martin K. Petersend0634c42009-11-26 12:00:43 -05001051 unsigned i = 0, used_bytes;
Matthew Wilcox0c659b82009-04-02 10:37:25 -04001052
Martin K. Petersend0634c42009-11-26 12:00:43 -05001053 while (i < buf_size / 8 ) { /* 6-byte LBA + 2-byte range per entry */
Matthew Wilcox0c659b82009-04-02 10:37:25 -04001054 u64 entry = sector |
1055 ((u64)(count > 0xffff ? 0xffff : count) << 48);
1056 buffer[i++] = __cpu_to_le64(entry);
1057 if (count <= 0xffff)
1058 break;
1059 count -= 0xffff;
1060 sector += 0xffff;
1061 }
1062
Martin K. Petersend0634c42009-11-26 12:00:43 -05001063 used_bytes = ALIGN(i * 8, 512);
1064 memset(buffer + i, 0, used_bytes - i * 8);
1065 return used_bytes;
Matthew Wilcox0c659b82009-04-02 10:37:25 -04001066}
1067
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +01001068static inline bool ata_ok(u8 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 return ((status & (ATA_BUSY | ATA_DRDY | ATA_DF | ATA_DRQ | ATA_ERR))
1071 == ATA_DRDY);
1072}
1073
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +01001074static inline bool lba_28_ok(u64 block, u32 n_block)
Albert Leec6a33e22005-10-12 15:12:26 +08001075{
Mark Lord45c4d012010-04-07 13:52:08 -04001076 /* check the ending block number: must be LESS THAN 0x0fffffff */
1077 return ((block + n_block) < ((1 << 28) - 1)) && (n_block <= 256);
Albert Leec6a33e22005-10-12 15:12:26 +08001078}
1079
Hannes Reinecke4dce8ba2011-03-14 08:54:20 +01001080static inline bool lba_48_ok(u64 block, u32 n_block)
Albert Leec6a33e22005-10-12 15:12:26 +08001081{
1082 /* check the ending block number */
1083 return ((block + n_block - 1) < ((u64)1 << 48)) && (n_block <= 65536);
1084}
1085
Tejun Heo814600e2007-07-01 19:05:58 +09001086#define sata_pmp_gscr_vendor(gscr) ((gscr)[SATA_PMP_GSCR_PROD_ID] & 0xffff)
1087#define sata_pmp_gscr_devid(gscr) ((gscr)[SATA_PMP_GSCR_PROD_ID] >> 16)
1088#define sata_pmp_gscr_rev(gscr) (((gscr)[SATA_PMP_GSCR_REV] >> 8) & 0xff)
1089#define sata_pmp_gscr_ports(gscr) ((gscr)[SATA_PMP_GSCR_PORT_INFO] & 0xf)
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091#endif /* __LINUX_ATA_H__ */