Deleted Added
sdiff udiff text old ( 44566 ) new ( 45095 )
full compact
1/*-
2 * Copyright (c) 1998,1999 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $Id: ata-all.h,v 1.3 1999/03/05 09:43:30 sos Exp $
29 */
30
31/* ATA register defines */
32#define ATA_DATA 0x00 /* data register */
33#define ATA_ERROR 0x01 /* (R) error register */
34#define ATA_PRECOMP 0x01 /* (W) precompensation */
35#define ATA_COUNT 0x02 /* sector count */
36#define ATA_I_CMD 0x01 /* cmd (1) | data (0) */
37#define ATA_I_IN 0x02 /* read (1) | write (0) */
38#define ATA_I_RELEASE 0x04 /* released bus (1) */
39
40#define ATA_SECTOR 0x03 /* sector # */
41#define ATA_CYL_LSB 0x04 /* cylinder# LSB */
42#define ATA_CYL_MSB 0x05 /* cylinder# MSB */
43#define ATA_DRIVE 0x06 /* Sector/Drive/Head register */
44#define ATA_D_IBM 0xa0 /* 512 byte sectors, ECC */
45
46#define ATA_CMD 0x07 /* command register */
47#define ATA_C_ATA_IDENTIFY 0xec /* get ATA params */
48#define ATA_C_ATAPI_IDENTIFY 0xa1 /* get ATAPI params*/
49#define ATA_C_READ 0x20 /* read command */
50#define ATA_C_WRITE 0x30 /* write command */
51#define ATA_C_READ_MULTI 0xc4 /* read multi command */
52#define ATA_C_WRITE_MULTI 0xc5 /* write multi command */
53#define ATA_C_SET_MULTI 0xc6 /* set multi size command */
54#define ATA_C_PACKET_CMD 0xa0 /* set multi size command */
55
56#define ATA_STATUS 0x07 /* status register */
57#define ATA_S_ERROR 0x01 /* error */
58#define ATA_S_INDEX 0x02 /* index */
59#define ATA_S_CORR 0x04 /* data corrected */
60#define ATA_S_DRQ 0x08 /* data request */
61#define ATA_S_DSC 0x10 /* drive Seek Completed */
62#define ATA_S_DWF 0x20 /* drive write fault */
63#define ATA_S_DRDY 0x40 /* drive ready */
64#define ATA_S_BSY 0x80 /* busy */
65
66#define ATA_ALTPORT 0x206 /* alternate Status register */
67#define ATA_A_IDS 0x02 /* disable interrupts */
68#define ATA_A_RESET 0x04 /* RESET controller */
69#define ATA_A_4BIT 0x08 /* 4 head bits */
70
71/* Misc defines */
72#define ATA_MASTER 0x00
73#define ATA_SLAVE 0x10
74#define ATA_IOSIZE 0x08
75#define ATA_OP_FINISHED 0x00
76#define ATA_OP_CONTINUES 0x01
77
78/* Devices types */
79#define ATA_ATA_MASTER 0x01
80#define ATA_ATA_SLAVE 0x02
81#define ATA_ATAPI_MASTER 0x04
82#define ATA_ATAPI_SLAVE 0x08
83
84/* Structure describing an ATA device */
85struct ata_softc {
86 u_int32_t unit; /* this instance's number */
87 u_int32_t ioaddr; /* port addr */
88 u_int32_t altioaddr; /* alternate port addr */
89 void *dmacookie; /* handle for DMA services */
90 int32_t flags; /* controller flags */
91#define ATA_F_SLAVE_ONLY 0x0001
92
93 int32_t devices; /* what is present */
94 u_int8_t status; /* last controller status */
95 u_int8_t error; /* last controller error */
96 int32_t active; /* active processing request */
97#define ATA_IDLE 0x0
98#define ATA_IMMEDIATE 0x0
99#define ATA_WAIT_INTR 0x1
100#define ATA_IGNORE_INTR 0x2

--- 5 unchanged lines hidden (view full) ---

106};
107
108#define MAXATA 8
109
110extern struct ata_softc *atadevices[];
111
112/* public prototypes */
113void ata_start(struct ata_softc *);
114int32_t ata_wait(struct ata_softc *, u_int8_t);
115int32_t ata_command(struct ata_softc *, int32_t, u_int32_t, u_int32_t, u_int32_t, u_int32_t, u_int32_t, int32_t);
116void bswap(int8_t *, int32_t);
117void btrim(int8_t *, int32_t);
118void bpack(int8_t *, int8_t *, int32_t);
119