mmc: fsl_esdhc: Fix SDR104 and HS200 support
[oweals/u-boot.git] / include / ata.h
index 23967695890e4730e070567c7f019ca64846d0bf..3d870c973f2c0bf53fc2615cfeaa39a7076e20b2 100644 (file)
@@ -1,33 +1,13 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * (C) Copyright 2000
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
  */
 
 /*
  * Most of the following information was derived from the document
- * "Information Technology - AT Attachment-3 Interface (ATA-3)"
- * which can be found at:
- * http://www.dt.wdc.com/ata/ata-3/ata3r5v.zip
- * ftp://poctok.iae.nsk.su/pub/asm/Documents/IDE/ATA3R5V.ZIP
- * ftp://ftp.fee.vutbr.cz/pub/doc/io/ata/ata-3/ata3r5v.zip
+ * "Information Technology - AT Attachment-3 Interface (ATA-3)",
+ * ANSI X3.298-1997.
  */
 
 #ifndef        _ATA_H
  * 8-bit (register) and 16-bit (data) accesses might use different
  * address spaces. This is implemented by the following definitions.
  */
-#ifndef CFG_ATA_STRIDE
-#define CFG_ATA_STRIDE 1
+#ifndef CONFIG_SYS_ATA_STRIDE
+#define CONFIG_SYS_ATA_STRIDE  1
 #endif
 
-#define ATA_IO_DATA(x) (CFG_ATA_DATA_OFFSET+((x) * CFG_ATA_STRIDE))
-#define ATA_IO_REG(x)  (CFG_ATA_REG_OFFSET +((x) * CFG_ATA_STRIDE))
-#define ATA_IO_ALT(x)  (CFG_ATA_ALT_OFFSET +((x) * CFG_ATA_STRIDE))
+#define ATA_IO_DATA(x) (CONFIG_SYS_ATA_DATA_OFFSET+((x) * CONFIG_SYS_ATA_STRIDE))
+#define ATA_IO_REG(x)  (CONFIG_SYS_ATA_REG_OFFSET +((x) * CONFIG_SYS_ATA_STRIDE))
+#define ATA_IO_ALT(x)  (CONFIG_SYS_ATA_ALT_OFFSET +((x) * CONFIG_SYS_ATA_STRIDE))
 
 /*
  * I/O Register Descriptions
 /*
  * Device / Head Register Bits
  */
+#ifndef ATA_DEVICE
 #define ATA_DEVICE(x)  ((x & 1)<<4)
+#endif /* ATA_DEVICE */
 #define ATA_LBA                0xE0
 
-/*
- * ATA Commands (only mandatory commands listed here)
- */
-#define ATA_CMD_READ   0x20    /* Read Sectors (with retries)  */
-#define ATA_CMD_READN  0x21    /* Read Sectors ( no  retries)  */
-#define ATA_CMD_WRITE  0x30    /* Write Sectores (with retries)*/
-#define ATA_CMD_WRITEN 0x31    /* Write Sectors  ( no  retries)*/
-#define ATA_CMD_VRFY   0x40    /* Read Verify  (with retries)  */
-#define ATA_CMD_VRFYN  0x41    /* Read verify  ( no  retries)  */
-#define ATA_CMD_SEEK   0x70    /* Seek                         */
-#define ATA_CMD_DIAG   0x90    /* Execute Device Diagnostic    */
-#define ATA_CMD_INIT   0x91    /* Initialize Device Parameters */
-#define ATA_CMD_RD_MULT        0xC4    /* Read Multiple                */
-#define ATA_CMD_WR_MULT        0xC5    /* Write Multiple               */
-#define ATA_CMD_SETMULT        0xC6    /* Set Multiple Mode            */
-#define ATA_CMD_RD_DMA 0xC8    /* Read DMA (with retries)      */
-#define ATA_CMD_RD_DMAN        0xC9    /* Read DMS ( no  retries)      */
-#define ATA_CMD_WR_DMA 0xCA    /* Write DMA (with retries)     */
-#define ATA_CMD_WR_DMAN        0xCB    /* Write DMA ( no  retires)     */
-#define ATA_CMD_IDENT  0xEC    /* Identify Device              */
-#define ATA_CMD_SETF   0xEF    /* Set Features                 */
-#define ATA_CMD_CHK_PWR        0xE5    /* Check Power Mode             */
-
-#define ATA_CMD_READ_EXT 0x24  /* Read Sectors (with retries)  with 48bit addressing */
-#define ATA_CMD_WRITE_EXT      0x34    /* Write Sectores (with retries) with 48bit addressing */
-#define ATA_CMD_VRFY_EXT       0x42    /* Read Verify  (with retries)  with 48bit addressing */
-
 /*
  * ATAPI Commands
  */
-#define ATAPI_CMD_IDENT 0xA1 /* Identify AT Atachment Packed Interface Device */
-#define ATAPI_CMD_PACKET 0xA0 /* Packed Command */
-
-
 #define ATAPI_CMD_INQUIRY 0x12
 #define ATAPI_CMD_REQ_SENSE 0x03
 #define ATAPI_CMD_READ_CAP 0x25
 
 #define ATA_BLOCKSIZE  512     /* bytes */
 #define ATA_BLOCKSHIFT 9       /* 2 ^ ATA_BLOCKSIZESHIFT = 512 */
-#define ATA_SECTORWORDS        (512 / sizeof(unsigned long))
+#define ATA_SECTORWORDS        (512 / sizeof(uint32_t))
 
 #ifndef ATA_RESET_TIME
 #define ATA_RESET_TIME 60      /* spec allows up to 31 seconds */