]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/block/fsl_sata.h
part/dev_desc: Add log2 of blocksize to block_dev_desc data struct
[karo-tx-uboot.git] / drivers / block / fsl_sata.h
1 /*
2  * Copyright (C) 2007-2008 Freescale Semiconductor, Inc.
3  *              Dave Liu <daveliu@freescale.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of
8  * the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18  * MA 02111-1307 USA
19  */
20
21 #ifndef __FSL_SATA_H__
22 #define __FSL_SATA_H__
23
24 #define SATA_HC_MAX_NUM         4 /* Max host controller numbers */
25 #define SATA_HC_MAX_CMD         16 /* Max command queue depth per host controller */
26 #define SATA_HC_MAX_PORT        16 /* Max port number per host controller */
27
28 /*
29 * SATA Host Controller Registers
30 */
31 typedef struct fsl_sata_reg {
32         /* SATA command registers */
33         u32 cqr;                /* Command queue register */
34         u8 res1[0x4];
35         u32 car;                /* Command active register */
36         u8 res2[0x4];
37         u32 ccr;                /* Command completed register */
38         u8 res3[0x4];
39         u32 cer;                /* Command error register */
40         u8 res4[0x4];
41         u32 der;                /* Device error register */
42         u32 chba;               /* Command header base address */
43         u32 hstatus;            /* Host status register */
44         u32 hcontrol;           /* Host control register */
45         u32 cqpmp;              /* Port number queue register */
46         u32 sig;                /* Signature register */
47         u32 icc;                /* Interrupt coalescing control register */
48         u8 res5[0xc4];
49
50         /* SATA supperset registers */
51         u32 sstatus;            /* SATA interface status register */
52         u32 serror;             /* SATA interface error register */
53         u32 scontrol;           /* SATA interface control register */
54         u32 snotification;      /* SATA interface notification register */
55         u8 res6[0x30];
56
57         /* SATA control status registers */
58         u32 transcfg;           /* Transport layer configuration */
59         u32 transstatus;        /* Transport layer status */
60         u32 linkcfg;            /* Link layer configuration */
61         u32 linkcfg1;           /* Link layer configuration1 */
62         u32 linkcfg2;           /* Link layer configuration2 */
63         u32 linkstatus;         /* Link layer status */
64         u32 linkstatus1;        /* Link layer status1 */
65         u32 phyctrlcfg;         /* PHY control configuration */
66         u8 res7[0x2b0];
67
68         /* SATA system control registers */
69         u32 syspr;              /* System priority register - big endian */
70         u8 res8[0xbec];
71 } __attribute__ ((packed)) fsl_sata_reg_t;
72
73 /* HStatus register
74 */
75 #define HSTATUS_ONOFF                   0x80000000 /* Online/offline status */
76 #define HSTATUS_FORCE_OFFLINE           0x40000000 /* In process going offline */
77 #define HSTATUS_BIST_ERR                0x20000000
78
79 /* Fatal error */
80 #define HSTATUS_MASTER_ERR              0x00004000
81 #define HSTATUS_DATA_UNDERRUN           0x00002000
82 #define HSTATUS_DATA_OVERRUN            0x00001000
83 #define HSTATUS_CRC_ERR_TX              0x00000800
84 #define HSTATUS_CRC_ERR_RX              0x00000400
85 #define HSTATUS_FIFO_OVERFLOW_TX        0x00000200
86 #define HSTATUS_FIFO_OVERFLOW_RX        0x00000100
87 #define HSTATUS_FATAL_ERR_ALL           (HSTATUS_MASTER_ERR | \
88                                         HSTATUS_DATA_UNDERRUN | \
89                                         HSTATUS_DATA_OVERRUN | \
90                                         HSTATUS_CRC_ERR_TX | \
91                                         HSTATUS_CRC_ERR_RX | \
92                                         HSTATUS_FIFO_OVERFLOW_TX | \
93                                         HSTATUS_FIFO_OVERFLOW_RX)
94 /* Interrupt status */
95 #define HSTATUS_FATAL_ERR               0x00000020
96 #define HSTATUS_PHY_RDY                 0x00000010
97 #define HSTATUS_SIGNATURE               0x00000008
98 #define HSTATUS_SNOTIFY                 0x00000004
99 #define HSTATUS_DEVICE_ERR              0x00000002
100 #define HSTATUS_CMD_COMPLETE            0x00000001
101
102 /* HControl register
103 */
104 #define HCONTROL_ONOFF                  0x80000000 /* Online or offline request */
105 #define HCONTROL_FORCE_OFFLINE          0x40000000 /* Force offline request */
106 #define HCONTROL_ENTERPRISE_EN          0x10000000 /* Enterprise mode enabled */
107 #define HCONTROL_HDR_SNOOP              0x00000400 /* Command header snoop */
108 #define HCONTROL_PMP_ATTACHED           0x00000200 /* Port multiplier attached */
109
110 /* Interrupt enable */
111 #define HCONTROL_FATAL_ERR              0x00000020
112 #define HCONTROL_PHY_RDY                0x00000010
113 #define HCONTROL_SIGNATURE              0x00000008
114 #define HCONTROL_SNOTIFY                0x00000004
115 #define HCONTROL_DEVICE_ERR             0x00000002
116 #define HCONTROL_CMD_COMPLETE           0x00000001
117
118 #define HCONTROL_INT_EN_ALL             (HCONTROL_FATAL_ERR | \
119                                         HCONTROL_PHY_RDY | \
120                                         HCONTROL_SIGNATURE | \
121                                         HCONTROL_SNOTIFY | \
122                                         HCONTROL_DEVICE_ERR | \
123                                         HCONTROL_CMD_COMPLETE)
124
125 /* SStatus register
126 */
127 #define SSTATUS_IPM_MASK                0x00000780
128 #define SSTATUS_IPM_NOPRESENT           0x00000000
129 #define SSTATUS_IPM_ACTIVE              0x00000080
130 #define SSTATUS_IPM_PATIAL              0x00000100
131 #define SSTATUS_IPM_SLUMBER             0x00000300
132
133 #define SSTATUS_SPD_MASK                0x000000f0
134 #define SSTATUS_SPD_GEN1                0x00000010
135 #define SSTATUS_SPD_GEN2                0x00000020
136
137 #define SSTATUS_DET_MASK                0x0000000f
138 #define SSTATUS_DET_NODEVICE            0x00000000
139 #define SSTATUS_DET_DISCONNECT          0x00000001
140 #define SSTATUS_DET_CONNECT             0x00000003
141 #define SSTATUS_DET_PHY_OFFLINE         0x00000004
142
143 /* SControl register
144 */
145 #define SCONTROL_SPM_MASK               0x0000f000
146 #define SCONTROL_SPM_GO_PARTIAL         0x00001000
147 #define SCONTROL_SPM_GO_SLUMBER         0x00002000
148 #define SCONTROL_SPM_GO_ACTIVE          0x00004000
149
150 #define SCONTROL_IPM_MASK               0x00000f00
151 #define SCONTROL_IPM_NO_RESTRICT        0x00000000
152 #define SCONTROL_IPM_PARTIAL            0x00000100
153 #define SCONTROL_IPM_SLUMBER            0x00000200
154 #define SCONTROL_IPM_PART_SLUM          0x00000300
155
156 #define SCONTROL_SPD_MASK               0x000000f0
157 #define SCONTROL_SPD_NO_RESTRICT        0x00000000
158 #define SCONTROL_SPD_GEN1               0x00000010
159 #define SCONTROL_SPD_GEN2               0x00000020
160
161 #define SCONTROL_DET_MASK               0x0000000f
162 #define SCONTROL_DET_HRESET             0x00000001
163 #define SCONTROL_DET_DISABLE            0x00000004
164
165 /* TransCfg register
166 */
167 #define TRANSCFG_DFIS_SIZE_SHIFT        16
168 #define TRANSCFG_RX_WATER_MARK_MASK     0x0000001f
169
170 /* PhyCtrlCfg register
171 */
172 #define PHYCTRLCFG_FPRFTI_MASK          0x00000018
173 #define PHYCTRLCFG_LOOPBACK_MASK        0x0000000e
174
175 /*
176 * Command Header Entry
177 */
178 typedef struct cmd_hdr_entry {
179         __le32 cda;             /* Command Descriptor Address,
180                                    4 bytes aligned */
181         __le32 prde_fis_len;    /* Number of PRD entries and FIS length */
182         __le32 ttl;             /* Total transfer length */
183         __le32 attribute;       /* the attribute of command */
184 } __attribute__ ((packed)) cmd_hdr_entry_t;
185
186 #define SATA_HC_CMD_HDR_ENTRY_SIZE      sizeof(struct cmd_hdr_entry)
187
188 /* cda
189 */
190 #define CMD_HDR_CDA_ALIGN       4
191
192 /* prde_fis_len
193 */
194 #define CMD_HDR_PRD_ENTRY_SHIFT 16
195 #define CMD_HDR_PRD_ENTRY_MASK  0x003f0000
196 #define CMD_HDR_FIS_LEN_SHIFT   2
197
198 /* attribute
199 */
200 #define CMD_HDR_ATTR_RES        0x00000800 /* Reserved bit, should be 1 */
201 #define CMD_HDR_ATTR_VBIST      0x00000400 /* Vendor BIST */
202 #define CMD_HDR_ATTR_SNOOP      0x00000200 /* Snoop enable for all descriptor */
203 #define CMD_HDR_ATTR_FPDMA      0x00000100 /* FPDMA queued command */
204 #define CMD_HDR_ATTR_RESET      0x00000080 /* Reset - a SRST or device reset */
205 #define CMD_HDR_ATTR_BIST       0x00000040 /* BIST - require the host to enter BIST mode */
206 #define CMD_HDR_ATTR_ATAPI      0x00000020 /* ATAPI command */
207 #define CMD_HDR_ATTR_TAG        0x0000001f /* TAG mask */
208
209 /* command type
210 */
211 enum cmd_type {
212         CMD_VENDOR_BIST,
213         CMD_BIST,
214         CMD_RESET,      /* SRST or device reset */
215         CMD_ATAPI,
216         CMD_NCQ,
217         CMD_ATA,        /* None of all above */
218 };
219
220 /*
221 * Command Header Table
222 */
223 typedef struct cmd_hdr_tbl {
224         cmd_hdr_entry_t cmd_slot[SATA_HC_MAX_CMD];
225 } __attribute__ ((packed)) cmd_hdr_tbl_t;
226
227 #define SATA_HC_CMD_HDR_TBL_SIZE        sizeof(struct cmd_hdr_tbl)
228 #define SATA_HC_CMD_HDR_TBL_ALIGN       4
229
230 /*
231 * PRD entry - Physical Region Descriptor entry
232 */
233 typedef struct prd_entry {
234         __le32 dba;     /* Data base address, 4 bytes aligned */
235         u32 res1;
236         u32 res2;
237         __le32 ext_c_ddc; /* Indirect PRD flags, snoop and data word count */
238 } __attribute__ ((packed)) prd_entry_t;
239
240 #define SATA_HC_CMD_DESC_PRD_SIZE       sizeof(struct prd_entry)
241
242 /* dba
243 */
244 #define PRD_ENTRY_DBA_ALIGN     4
245
246 /* ext_c_ddc
247 */
248 #define PRD_ENTRY_EXT           0x80000000 /* extension flag */
249 #ifdef CONFIG_FSL_SATA_V2
250 #define PRD_ENTRY_DATA_SNOOP    0x10000000 /* Data snoop enable */
251 #else
252 #define PRD_ENTRY_DATA_SNOOP    0x00400000 /* Data snoop enable */
253 #endif
254 #define PRD_ENTRY_LEN_MASK      0x003fffff /* Data word count */
255
256 #define PRD_ENTRY_MAX_XFER_SZ   (PRD_ENTRY_LEN_MASK + 1)
257
258 /*
259  * This SATA host controller supports a max of 16 direct PRD entries, but if use
260  * chained indirect PRD entries, then the contollers supports upto a max of 63
261  * entries including direct and indirect PRD entries.
262  * The PRDT is an array of 63 PRD entries contigiously, but the PRD entries#15
263  * will be setup as an indirect descriptor, pointing to it's next (contigious)
264  * PRD entries#16.
265  */
266 #define SATA_HC_MAX_PRD         63 /* Max PRD entry numbers per command */
267 #define SATA_HC_MAX_PRD_DIRECT  16 /* Direct PRDT entries */
268 #define SATA_HC_MAX_PRD_USABLE  (SATA_HC_MAX_PRD - 1)
269 #define SATA_HC_MAX_XFER_LEN    0x4000000
270
271 /*
272 * PRDT - Physical Region Descriptor Table
273 */
274 typedef struct prdt {
275         prd_entry_t prdt[SATA_HC_MAX_PRD];
276 } __attribute__ ((packed)) prdt_t;
277
278 /*
279 * Command Descriptor
280 */
281 #define SATA_HC_CMD_DESC_CFIS_SIZE      32 /* bytes */
282 #define SATA_HC_CMD_DESC_SFIS_SIZE      32 /* bytes */
283 #define SATA_HC_CMD_DESC_ACMD_SIZE      16 /* bytes */
284 #define SATA_HC_CMD_DESC_RES            16 /* bytes */
285
286 typedef struct cmd_desc {
287         u8 cfis[SATA_HC_CMD_DESC_CFIS_SIZE];
288         u8 sfis[SATA_HC_CMD_DESC_SFIS_SIZE];
289         u8 acmd[SATA_HC_CMD_DESC_ACMD_SIZE];
290         u8 res[SATA_HC_CMD_DESC_RES];
291         prd_entry_t prdt[SATA_HC_MAX_PRD];
292 } __attribute__ ((packed)) cmd_desc_t;
293
294 #define SATA_HC_CMD_DESC_SIZE           sizeof(struct cmd_desc)
295 #define SATA_HC_CMD_DESC_ALIGN          4
296
297 /*
298  * SATA device driver info
299  */
300 typedef struct fsl_sata_info {
301         u32     sata_reg_base;
302         u32     flags;
303 } fsl_sata_info_t;
304
305 #define FLAGS_DMA       0x00000000
306 #define FLAGS_FPDMA     0x00000001
307
308 /*
309  * SATA device driver struct
310  */
311 typedef struct fsl_sata {
312         char            name[12];
313         fsl_sata_reg_t  *reg_base;              /* the base address of controller register */
314         void            *cmd_hdr_tbl_offset;    /* alloc address of command header table */
315         cmd_hdr_tbl_t   *cmd_hdr;               /* aligned address of command header table */
316         void            *cmd_desc_offset;       /* alloc address of command descriptor */
317         cmd_desc_t      *cmd_desc;              /* aligned address of command descriptor */
318         int             link;                   /* PHY link status */
319         /* device attribute */
320         int             ata_device_type;        /* device type */
321         int             lba48;
322         int             queue_depth;            /* Max NCQ queue depth */
323         u16             pio;
324         u16             mwdma;
325         u16             udma;
326         int             wcache;
327         int             flush;
328         int             flush_ext;
329 } fsl_sata_t;
330
331 #define READ_CMD        0
332 #define WRITE_CMD       1
333
334 #endif /* __FSL_SATA_H__ */