Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010-2011 Freescale Semiconductor, Inc. |
| 3 | * Terry Lv <r65388@freescale.com> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <libata.h> |
| 9 | #include <ahci.h> |
| 10 | #include <fis.h> |
Pavel Herrmann | e46a435 | 2012-09-27 23:18:04 +0000 | [diff] [blame] | 11 | #include <sata.h> |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 12 | |
| 13 | #include <common.h> |
| 14 | #include <malloc.h> |
| 15 | #include <linux/ctype.h> |
| 16 | #include <asm/errno.h> |
| 17 | #include <asm/io.h> |
| 18 | #include <linux/bitops.h> |
| 19 | #include <asm/arch/clock.h> |
Tim Harvey | ca84d72 | 2014-05-07 22:23:35 -0700 | [diff] [blame] | 20 | #include <asm/arch/sys_proto.h> |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 21 | #include "dwc_ahsata.h" |
| 22 | |
| 23 | struct sata_port_regs { |
| 24 | u32 clb; |
| 25 | u32 clbu; |
| 26 | u32 fb; |
| 27 | u32 fbu; |
| 28 | u32 is; |
| 29 | u32 ie; |
| 30 | u32 cmd; |
| 31 | u32 res1[1]; |
| 32 | u32 tfd; |
| 33 | u32 sig; |
| 34 | u32 ssts; |
| 35 | u32 sctl; |
| 36 | u32 serr; |
| 37 | u32 sact; |
| 38 | u32 ci; |
| 39 | u32 sntf; |
| 40 | u32 res2[1]; |
| 41 | u32 dmacr; |
| 42 | u32 res3[1]; |
| 43 | u32 phycr; |
| 44 | u32 physr; |
| 45 | }; |
| 46 | |
| 47 | struct sata_host_regs { |
| 48 | u32 cap; |
| 49 | u32 ghc; |
| 50 | u32 is; |
| 51 | u32 pi; |
| 52 | u32 vs; |
| 53 | u32 ccc_ctl; |
| 54 | u32 ccc_ports; |
| 55 | u32 res1[2]; |
| 56 | u32 cap2; |
| 57 | u32 res2[30]; |
| 58 | u32 bistafr; |
| 59 | u32 bistcr; |
| 60 | u32 bistfctr; |
| 61 | u32 bistsr; |
| 62 | u32 bistdecr; |
| 63 | u32 res3[2]; |
| 64 | u32 oobr; |
| 65 | u32 res4[8]; |
| 66 | u32 timer1ms; |
| 67 | u32 res5[1]; |
| 68 | u32 gparam1r; |
| 69 | u32 gparam2r; |
| 70 | u32 pparamr; |
| 71 | u32 testr; |
| 72 | u32 versionr; |
| 73 | u32 idr; |
| 74 | }; |
| 75 | |
| 76 | #define MAX_DATA_BYTES_PER_SG (4 * 1024 * 1024) |
| 77 | #define MAX_BYTES_PER_TRANS (AHCI_MAX_SG * MAX_DATA_BYTES_PER_SG) |
| 78 | |
| 79 | #define writel_with_flush(a, b) do { writel(a, b); readl(b); } while (0) |
| 80 | |
| 81 | static int is_ready; |
| 82 | |
| 83 | static inline u32 ahci_port_base(u32 base, u32 port) |
| 84 | { |
| 85 | return base + 0x100 + (port * 0x80); |
| 86 | } |
| 87 | |
| 88 | static int waiting_for_cmd_completed(u8 *offset, |
| 89 | int timeout_msec, |
| 90 | u32 sign) |
| 91 | { |
| 92 | int i; |
| 93 | u32 status; |
| 94 | |
| 95 | for (i = 0; |
| 96 | ((status = readl(offset)) & sign) && i < timeout_msec; |
| 97 | ++i) |
| 98 | mdelay(1); |
| 99 | |
| 100 | return (i < timeout_msec) ? 0 : -1; |
| 101 | } |
| 102 | |
| 103 | static int ahci_setup_oobr(struct ahci_probe_ent *probe_ent, |
| 104 | int clk) |
| 105 | { |
| 106 | struct sata_host_regs *host_mmio = |
| 107 | (struct sata_host_regs *)probe_ent->mmio_base; |
| 108 | |
| 109 | writel(SATA_HOST_OOBR_WE, &(host_mmio->oobr)); |
| 110 | writel(0x02060b14, &(host_mmio->oobr)); |
| 111 | |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | static int ahci_host_init(struct ahci_probe_ent *probe_ent) |
| 116 | { |
| 117 | u32 tmp, cap_save, num_ports; |
| 118 | int i, j, timeout = 1000; |
| 119 | struct sata_port_regs *port_mmio = NULL; |
| 120 | struct sata_host_regs *host_mmio = |
| 121 | (struct sata_host_regs *)probe_ent->mmio_base; |
| 122 | int clk = mxc_get_clock(MXC_SATA_CLK); |
| 123 | |
| 124 | cap_save = readl(&(host_mmio->cap)); |
| 125 | cap_save |= SATA_HOST_CAP_SSS; |
| 126 | |
| 127 | /* global controller reset */ |
| 128 | tmp = readl(&(host_mmio->ghc)); |
| 129 | if ((tmp & SATA_HOST_GHC_HR) == 0) |
| 130 | writel_with_flush(tmp | SATA_HOST_GHC_HR, &(host_mmio->ghc)); |
| 131 | |
| 132 | while ((readl(&(host_mmio->ghc)) & SATA_HOST_GHC_HR) |
| 133 | && --timeout) |
| 134 | ; |
| 135 | |
| 136 | if (timeout <= 0) { |
| 137 | debug("controller reset failed (0x%x)\n", tmp); |
| 138 | return -1; |
| 139 | } |
| 140 | |
| 141 | /* Set timer 1ms */ |
| 142 | writel(clk / 1000, &(host_mmio->timer1ms)); |
| 143 | |
| 144 | ahci_setup_oobr(probe_ent, 0); |
| 145 | |
| 146 | writel_with_flush(SATA_HOST_GHC_AE, &(host_mmio->ghc)); |
| 147 | writel(cap_save, &(host_mmio->cap)); |
| 148 | num_ports = (cap_save & SATA_HOST_CAP_NP_MASK) + 1; |
| 149 | writel_with_flush((1 << num_ports) - 1, |
| 150 | &(host_mmio->pi)); |
| 151 | |
| 152 | /* |
| 153 | * Determine which Ports are implemented by the DWC_ahsata, |
| 154 | * by reading the PI register. This bit map value aids the |
| 155 | * software to determine how many Ports are available and |
| 156 | * which Port registers need to be initialized. |
| 157 | */ |
| 158 | probe_ent->cap = readl(&(host_mmio->cap)); |
| 159 | probe_ent->port_map = readl(&(host_mmio->pi)); |
| 160 | |
| 161 | /* Determine how many command slots the HBA supports */ |
| 162 | probe_ent->n_ports = |
| 163 | (probe_ent->cap & SATA_HOST_CAP_NP_MASK) + 1; |
| 164 | |
| 165 | debug("cap 0x%x port_map 0x%x n_ports %d\n", |
| 166 | probe_ent->cap, probe_ent->port_map, probe_ent->n_ports); |
| 167 | |
| 168 | for (i = 0; i < probe_ent->n_ports; i++) { |
| 169 | probe_ent->port[i].port_mmio = |
| 170 | ahci_port_base((u32)host_mmio, i); |
| 171 | port_mmio = |
| 172 | (struct sata_port_regs *)probe_ent->port[i].port_mmio; |
| 173 | |
| 174 | /* Ensure that the DWC_ahsata is in idle state */ |
| 175 | tmp = readl(&(port_mmio->cmd)); |
| 176 | |
| 177 | /* |
| 178 | * When P#CMD.ST, P#CMD.CR, P#CMD.FRE and P#CMD.FR |
| 179 | * are all cleared, the Port is in an idle state. |
| 180 | */ |
| 181 | if (tmp & (SATA_PORT_CMD_CR | SATA_PORT_CMD_FR | |
| 182 | SATA_PORT_CMD_FRE | SATA_PORT_CMD_ST)) { |
| 183 | |
| 184 | /* |
| 185 | * System software places a Port into the idle state by |
| 186 | * clearing P#CMD.ST and waiting for P#CMD.CR to return |
| 187 | * 0 when read. |
| 188 | */ |
| 189 | tmp &= ~SATA_PORT_CMD_ST; |
| 190 | writel_with_flush(tmp, &(port_mmio->cmd)); |
| 191 | |
| 192 | /* |
| 193 | * spec says 500 msecs for each bit, so |
| 194 | * this is slightly incorrect. |
| 195 | */ |
| 196 | mdelay(500); |
| 197 | |
| 198 | timeout = 1000; |
| 199 | while ((readl(&(port_mmio->cmd)) & SATA_PORT_CMD_CR) |
| 200 | && --timeout) |
| 201 | ; |
| 202 | |
| 203 | if (timeout <= 0) { |
| 204 | debug("port reset failed (0x%x)\n", tmp); |
| 205 | return -1; |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | /* Spin-up device */ |
| 210 | tmp = readl(&(port_mmio->cmd)); |
| 211 | writel((tmp | SATA_PORT_CMD_SUD), &(port_mmio->cmd)); |
| 212 | |
| 213 | /* Wait for spin-up to finish */ |
| 214 | timeout = 1000; |
| 215 | while (!(readl(&(port_mmio->cmd)) | SATA_PORT_CMD_SUD) |
| 216 | && --timeout) |
| 217 | ; |
| 218 | if (timeout <= 0) { |
| 219 | debug("Spin-Up can't finish!\n"); |
| 220 | return -1; |
| 221 | } |
| 222 | |
| 223 | for (j = 0; j < 100; ++j) { |
| 224 | mdelay(10); |
| 225 | tmp = readl(&(port_mmio->ssts)); |
| 226 | if (((tmp & SATA_PORT_SSTS_DET_MASK) == 0x3) || |
| 227 | ((tmp & SATA_PORT_SSTS_DET_MASK) == 0x1)) |
| 228 | break; |
| 229 | } |
| 230 | |
| 231 | /* Wait for COMINIT bit 26 (DIAG_X) in SERR */ |
| 232 | timeout = 1000; |
| 233 | while (!(readl(&(port_mmio->serr)) | SATA_PORT_SERR_DIAG_X) |
| 234 | && --timeout) |
| 235 | ; |
| 236 | if (timeout <= 0) { |
| 237 | debug("Can't find DIAG_X set!\n"); |
| 238 | return -1; |
| 239 | } |
| 240 | |
| 241 | /* |
| 242 | * For each implemented Port, clear the P#SERR |
| 243 | * register, by writing ones to each implemented\ |
| 244 | * bit location. |
| 245 | */ |
| 246 | tmp = readl(&(port_mmio->serr)); |
| 247 | debug("P#SERR 0x%x\n", |
| 248 | tmp); |
| 249 | writel(tmp, &(port_mmio->serr)); |
| 250 | |
| 251 | /* Ack any pending irq events for this port */ |
| 252 | tmp = readl(&(host_mmio->is)); |
| 253 | debug("IS 0x%x\n", tmp); |
| 254 | if (tmp) |
| 255 | writel(tmp, &(host_mmio->is)); |
| 256 | |
| 257 | writel(1 << i, &(host_mmio->is)); |
| 258 | |
| 259 | /* set irq mask (enables interrupts) */ |
| 260 | writel(DEF_PORT_IRQ, &(port_mmio->ie)); |
| 261 | |
| 262 | /* register linkup ports */ |
| 263 | tmp = readl(&(port_mmio->ssts)); |
| 264 | debug("Port %d status: 0x%x\n", i, tmp); |
| 265 | if ((tmp & SATA_PORT_SSTS_DET_MASK) == 0x03) |
| 266 | probe_ent->link_port_map |= (0x01 << i); |
| 267 | } |
| 268 | |
| 269 | tmp = readl(&(host_mmio->ghc)); |
| 270 | debug("GHC 0x%x\n", tmp); |
| 271 | writel(tmp | SATA_HOST_GHC_IE, &(host_mmio->ghc)); |
| 272 | tmp = readl(&(host_mmio->ghc)); |
| 273 | debug("GHC 0x%x\n", tmp); |
| 274 | |
| 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | static void ahci_print_info(struct ahci_probe_ent *probe_ent) |
| 279 | { |
| 280 | struct sata_host_regs *host_mmio = |
| 281 | (struct sata_host_regs *)probe_ent->mmio_base; |
| 282 | u32 vers, cap, impl, speed; |
| 283 | const char *speed_s; |
| 284 | const char *scc_s; |
| 285 | |
| 286 | vers = readl(&(host_mmio->vs)); |
| 287 | cap = probe_ent->cap; |
| 288 | impl = probe_ent->port_map; |
| 289 | |
| 290 | speed = (cap & SATA_HOST_CAP_ISS_MASK) |
| 291 | >> SATA_HOST_CAP_ISS_OFFSET; |
| 292 | if (speed == 1) |
| 293 | speed_s = "1.5"; |
| 294 | else if (speed == 2) |
| 295 | speed_s = "3"; |
| 296 | else |
| 297 | speed_s = "?"; |
| 298 | |
| 299 | scc_s = "SATA"; |
| 300 | |
| 301 | printf("AHCI %02x%02x.%02x%02x " |
| 302 | "%u slots %u ports %s Gbps 0x%x impl %s mode\n", |
| 303 | (vers >> 24) & 0xff, |
| 304 | (vers >> 16) & 0xff, |
| 305 | (vers >> 8) & 0xff, |
| 306 | vers & 0xff, |
| 307 | ((cap >> 8) & 0x1f) + 1, |
| 308 | (cap & 0x1f) + 1, |
| 309 | speed_s, |
| 310 | impl, |
| 311 | scc_s); |
| 312 | |
| 313 | printf("flags: " |
| 314 | "%s%s%s%s%s%s" |
| 315 | "%s%s%s%s%s%s%s\n", |
| 316 | cap & (1 << 31) ? "64bit " : "", |
| 317 | cap & (1 << 30) ? "ncq " : "", |
| 318 | cap & (1 << 28) ? "ilck " : "", |
| 319 | cap & (1 << 27) ? "stag " : "", |
| 320 | cap & (1 << 26) ? "pm " : "", |
| 321 | cap & (1 << 25) ? "led " : "", |
| 322 | cap & (1 << 24) ? "clo " : "", |
| 323 | cap & (1 << 19) ? "nz " : "", |
| 324 | cap & (1 << 18) ? "only " : "", |
| 325 | cap & (1 << 17) ? "pmp " : "", |
| 326 | cap & (1 << 15) ? "pio " : "", |
| 327 | cap & (1 << 14) ? "slum " : "", |
| 328 | cap & (1 << 13) ? "part " : ""); |
| 329 | } |
| 330 | |
| 331 | static int ahci_init_one(int pdev) |
| 332 | { |
| 333 | int rc; |
| 334 | struct ahci_probe_ent *probe_ent = NULL; |
| 335 | |
| 336 | probe_ent = malloc(sizeof(struct ahci_probe_ent)); |
| 337 | memset(probe_ent, 0, sizeof(struct ahci_probe_ent)); |
| 338 | probe_ent->dev = pdev; |
| 339 | |
| 340 | probe_ent->host_flags = ATA_FLAG_SATA |
| 341 | | ATA_FLAG_NO_LEGACY |
| 342 | | ATA_FLAG_MMIO |
| 343 | | ATA_FLAG_PIO_DMA |
| 344 | | ATA_FLAG_NO_ATAPI; |
| 345 | |
| 346 | probe_ent->mmio_base = CONFIG_DWC_AHSATA_BASE_ADDR; |
| 347 | |
| 348 | /* initialize adapter */ |
| 349 | rc = ahci_host_init(probe_ent); |
| 350 | if (rc) |
| 351 | goto err_out; |
| 352 | |
| 353 | ahci_print_info(probe_ent); |
| 354 | |
| 355 | /* Save the private struct to block device struct */ |
| 356 | sata_dev_desc[pdev].priv = (void *)probe_ent; |
| 357 | |
| 358 | return 0; |
| 359 | |
| 360 | err_out: |
| 361 | return rc; |
| 362 | } |
| 363 | |
| 364 | static int ahci_fill_sg(struct ahci_probe_ent *probe_ent, |
| 365 | u8 port, unsigned char *buf, int buf_len) |
| 366 | { |
| 367 | struct ahci_ioports *pp = &(probe_ent->port[port]); |
| 368 | struct ahci_sg *ahci_sg = pp->cmd_tbl_sg; |
| 369 | u32 sg_count, max_bytes; |
| 370 | int i; |
| 371 | |
| 372 | max_bytes = MAX_DATA_BYTES_PER_SG; |
| 373 | sg_count = ((buf_len - 1) / max_bytes) + 1; |
| 374 | if (sg_count > AHCI_MAX_SG) { |
| 375 | printf("Error:Too much sg!\n"); |
| 376 | return -1; |
| 377 | } |
| 378 | |
| 379 | for (i = 0; i < sg_count; i++) { |
| 380 | ahci_sg->addr = |
| 381 | cpu_to_le32((u32)buf + i * max_bytes); |
| 382 | ahci_sg->addr_hi = 0; |
| 383 | ahci_sg->flags_size = cpu_to_le32(0x3fffff & |
| 384 | (buf_len < max_bytes |
| 385 | ? (buf_len - 1) |
| 386 | : (max_bytes - 1))); |
| 387 | ahci_sg++; |
| 388 | buf_len -= max_bytes; |
| 389 | } |
| 390 | |
| 391 | return sg_count; |
| 392 | } |
| 393 | |
| 394 | static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 cmd_slot, u32 opts) |
| 395 | { |
| 396 | struct ahci_cmd_hdr *cmd_hdr = (struct ahci_cmd_hdr *)(pp->cmd_slot + |
| 397 | AHCI_CMD_SLOT_SZ * cmd_slot); |
| 398 | |
| 399 | memset(cmd_hdr, 0, AHCI_CMD_SLOT_SZ); |
| 400 | cmd_hdr->opts = cpu_to_le32(opts); |
| 401 | cmd_hdr->status = 0; |
| 402 | cmd_hdr->tbl_addr = cpu_to_le32(pp->cmd_tbl & 0xffffffff); |
| 403 | cmd_hdr->tbl_addr_hi = 0; |
| 404 | } |
| 405 | |
| 406 | #define AHCI_GET_CMD_SLOT(c) ((c) ? ffs(c) : 0) |
| 407 | |
| 408 | static int ahci_exec_ata_cmd(struct ahci_probe_ent *probe_ent, |
| 409 | u8 port, struct sata_fis_h2d *cfis, |
| 410 | u8 *buf, u32 buf_len, s32 is_write) |
| 411 | { |
| 412 | struct ahci_ioports *pp = &(probe_ent->port[port]); |
| 413 | struct sata_port_regs *port_mmio = |
| 414 | (struct sata_port_regs *)pp->port_mmio; |
| 415 | u32 opts; |
| 416 | int sg_count = 0, cmd_slot = 0; |
| 417 | |
| 418 | cmd_slot = AHCI_GET_CMD_SLOT(readl(&(port_mmio->ci))); |
| 419 | if (32 == cmd_slot) { |
| 420 | printf("Can't find empty command slot!\n"); |
| 421 | return 0; |
| 422 | } |
| 423 | |
| 424 | /* Check xfer length */ |
| 425 | if (buf_len > MAX_BYTES_PER_TRANS) { |
| 426 | printf("Max transfer length is %dB\n\r", |
| 427 | MAX_BYTES_PER_TRANS); |
| 428 | return 0; |
| 429 | } |
| 430 | |
| 431 | memcpy((u8 *)(pp->cmd_tbl), cfis, sizeof(struct sata_fis_h2d)); |
| 432 | if (buf && buf_len) |
| 433 | sg_count = ahci_fill_sg(probe_ent, port, buf, buf_len); |
| 434 | opts = (sizeof(struct sata_fis_h2d) >> 2) | (sg_count << 16); |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 435 | if (is_write) { |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 436 | opts |= 0x40; |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 437 | flush_cache((ulong)buf, buf_len); |
| 438 | } |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 439 | ahci_fill_cmd_slot(pp, cmd_slot, opts); |
| 440 | |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 441 | flush_cache((int)(pp->cmd_slot), AHCI_PORT_PRIV_DMA_SZ); |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 442 | writel_with_flush(1 << cmd_slot, &(port_mmio->ci)); |
| 443 | |
| 444 | if (waiting_for_cmd_completed((u8 *)&(port_mmio->ci), |
| 445 | 10000, 0x1 << cmd_slot)) { |
| 446 | printf("timeout exit!\n"); |
| 447 | return -1; |
| 448 | } |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 449 | invalidate_dcache_range((int)(pp->cmd_slot), |
| 450 | (int)(pp->cmd_slot)+AHCI_PORT_PRIV_DMA_SZ); |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 451 | debug("ahci_exec_ata_cmd: %d byte transferred.\n", |
| 452 | pp->cmd_slot->status); |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 453 | if (!is_write) |
| 454 | invalidate_dcache_range((ulong)buf, (ulong)buf+buf_len); |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 455 | |
| 456 | return buf_len; |
| 457 | } |
| 458 | |
| 459 | static void ahci_set_feature(u8 dev, u8 port) |
| 460 | { |
| 461 | struct ahci_probe_ent *probe_ent = |
| 462 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 463 | struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); |
| 464 | struct sata_fis_h2d *cfis = &h2d; |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 465 | |
| 466 | memset(cfis, 0, sizeof(struct sata_fis_h2d)); |
| 467 | cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 468 | cfis->pm_port_c = 1 << 7; |
| 469 | cfis->command = ATA_CMD_SET_FEATURES; |
| 470 | cfis->features = SETFEATURES_XFER; |
| 471 | cfis->sector_count = ffs(probe_ent->udma_mask + 1) + 0x3e; |
| 472 | |
| 473 | ahci_exec_ata_cmd(probe_ent, port, cfis, NULL, 0, READ_CMD); |
| 474 | } |
| 475 | |
| 476 | static int ahci_port_start(struct ahci_probe_ent *probe_ent, |
| 477 | u8 port) |
| 478 | { |
| 479 | struct ahci_ioports *pp = &(probe_ent->port[port]); |
| 480 | struct sata_port_regs *port_mmio = |
| 481 | (struct sata_port_regs *)pp->port_mmio; |
| 482 | u32 port_status; |
| 483 | u32 mem; |
| 484 | int timeout = 10000000; |
| 485 | |
| 486 | debug("Enter start port: %d\n", port); |
| 487 | port_status = readl(&(port_mmio->ssts)); |
| 488 | debug("Port %d status: %x\n", port, port_status); |
| 489 | if ((port_status & 0xf) != 0x03) { |
| 490 | printf("No Link on this port!\n"); |
| 491 | return -1; |
| 492 | } |
| 493 | |
| 494 | mem = (u32)malloc(AHCI_PORT_PRIV_DMA_SZ + 1024); |
| 495 | if (!mem) { |
| 496 | free(pp); |
| 497 | printf("No mem for table!\n"); |
| 498 | return -ENOMEM; |
| 499 | } |
| 500 | |
| 501 | mem = (mem + 0x400) & (~0x3ff); /* Aligned to 1024-bytes */ |
| 502 | memset((u8 *)mem, 0, AHCI_PORT_PRIV_DMA_SZ); |
| 503 | |
| 504 | /* |
| 505 | * First item in chunk of DMA memory: 32-slot command table, |
| 506 | * 32 bytes each in size |
| 507 | */ |
| 508 | pp->cmd_slot = (struct ahci_cmd_hdr *)mem; |
| 509 | debug("cmd_slot = 0x%x\n", (unsigned int) pp->cmd_slot); |
| 510 | mem += (AHCI_CMD_SLOT_SZ * DWC_AHSATA_MAX_CMD_SLOTS); |
| 511 | |
| 512 | /* |
| 513 | * Second item: Received-FIS area, 256-Byte aligned |
| 514 | */ |
| 515 | pp->rx_fis = mem; |
| 516 | mem += AHCI_RX_FIS_SZ; |
| 517 | |
| 518 | /* |
| 519 | * Third item: data area for storing a single command |
| 520 | * and its scatter-gather table |
| 521 | */ |
| 522 | pp->cmd_tbl = mem; |
| 523 | debug("cmd_tbl_dma = 0x%x\n", pp->cmd_tbl); |
| 524 | |
| 525 | mem += AHCI_CMD_TBL_HDR; |
| 526 | |
| 527 | writel_with_flush(0x00004444, &(port_mmio->dmacr)); |
| 528 | pp->cmd_tbl_sg = (struct ahci_sg *)mem; |
| 529 | writel_with_flush((u32)pp->cmd_slot, &(port_mmio->clb)); |
| 530 | writel_with_flush(pp->rx_fis, &(port_mmio->fb)); |
| 531 | |
| 532 | /* Enable FRE */ |
| 533 | writel_with_flush((SATA_PORT_CMD_FRE | readl(&(port_mmio->cmd))), |
| 534 | &(port_mmio->cmd)); |
| 535 | |
| 536 | /* Wait device ready */ |
| 537 | while ((readl(&(port_mmio->tfd)) & (SATA_PORT_TFD_STS_ERR | |
| 538 | SATA_PORT_TFD_STS_DRQ | SATA_PORT_TFD_STS_BSY)) |
| 539 | && --timeout) |
| 540 | ; |
| 541 | if (timeout <= 0) { |
| 542 | debug("Device not ready for BSY, DRQ and" |
| 543 | "ERR in TFD!\n"); |
| 544 | return -1; |
| 545 | } |
| 546 | |
| 547 | writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX | |
| 548 | PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP | |
| 549 | PORT_CMD_START, &(port_mmio->cmd)); |
| 550 | |
| 551 | debug("Exit start port %d\n", port); |
| 552 | |
| 553 | return 0; |
| 554 | } |
| 555 | |
| 556 | int init_sata(int dev) |
| 557 | { |
| 558 | int i; |
| 559 | u32 linkmap; |
| 560 | struct ahci_probe_ent *probe_ent = NULL; |
| 561 | |
Tim Harvey | ca84d72 | 2014-05-07 22:23:35 -0700 | [diff] [blame] | 562 | #if defined(CONFIG_MX6) |
| 563 | if (!is_cpu_type(MXC_CPU_MX6Q) && !is_cpu_type(MXC_CPU_MX6D)) |
| 564 | return 1; |
| 565 | #endif |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 566 | if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) { |
| 567 | printf("The sata index %d is out of ranges\n\r", dev); |
| 568 | return -1; |
| 569 | } |
| 570 | |
| 571 | ahci_init_one(dev); |
| 572 | |
| 573 | probe_ent = (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
| 574 | linkmap = probe_ent->link_port_map; |
| 575 | |
| 576 | if (0 == linkmap) { |
| 577 | printf("No port device detected!\n"); |
| 578 | return 1; |
| 579 | } |
| 580 | |
| 581 | for (i = 0; i < probe_ent->n_ports; i++) { |
| 582 | if ((linkmap >> i) && ((linkmap >> i) & 0x01)) { |
| 583 | if (ahci_port_start(probe_ent, (u8)i)) { |
| 584 | printf("Can not start port %d\n", i); |
| 585 | return 1; |
| 586 | } |
| 587 | probe_ent->hard_port_no = i; |
| 588 | break; |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | return 0; |
| 593 | } |
| 594 | |
Nikita Kiryanov | 10ee8ec | 2014-11-21 12:47:23 +0200 | [diff] [blame] | 595 | int reset_sata(int dev) |
| 596 | { |
Soeren Moch | dd1c8f1 | 2014-11-27 10:11:41 +0100 | [diff] [blame] | 597 | struct ahci_probe_ent *probe_ent; |
| 598 | struct sata_host_regs *host_mmio; |
Nikita Kiryanov | 10ee8ec | 2014-11-21 12:47:23 +0200 | [diff] [blame] | 599 | |
| 600 | if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) { |
| 601 | printf("The sata index %d is out of ranges\n\r", dev); |
| 602 | return -1; |
| 603 | } |
| 604 | |
Soeren Moch | dd1c8f1 | 2014-11-27 10:11:41 +0100 | [diff] [blame] | 605 | probe_ent = (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
| 606 | if (NULL == probe_ent) |
| 607 | /* not initialized, so nothing to reset */ |
| 608 | return 0; |
| 609 | |
| 610 | host_mmio = (struct sata_host_regs *)probe_ent->mmio_base; |
Nikita Kiryanov | 10ee8ec | 2014-11-21 12:47:23 +0200 | [diff] [blame] | 611 | setbits_le32(&host_mmio->ghc, SATA_HOST_GHC_HR); |
| 612 | while (readl(&host_mmio->ghc) & SATA_HOST_GHC_HR) |
| 613 | udelay(100); |
| 614 | |
Nikita Kiryanov | 10ee8ec | 2014-11-21 12:47:23 +0200 | [diff] [blame] | 615 | return 0; |
| 616 | } |
| 617 | |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 618 | static void dwc_ahsata_print_info(int dev) |
| 619 | { |
| 620 | block_dev_desc_t *pdev = &(sata_dev_desc[dev]); |
| 621 | |
| 622 | printf("SATA Device Info:\n\r"); |
| 623 | #ifdef CONFIG_SYS_64BIT_LBA |
| 624 | printf("S/N: %s\n\rProduct model number: %s\n\r" |
| 625 | "Firmware version: %s\n\rCapacity: %lld sectors\n\r", |
| 626 | pdev->product, pdev->vendor, pdev->revision, pdev->lba); |
| 627 | #else |
| 628 | printf("S/N: %s\n\rProduct model number: %s\n\r" |
| 629 | "Firmware version: %s\n\rCapacity: %ld sectors\n\r", |
| 630 | pdev->product, pdev->vendor, pdev->revision, pdev->lba); |
| 631 | #endif |
| 632 | } |
| 633 | |
| 634 | static void dwc_ahsata_identify(int dev, u16 *id) |
| 635 | { |
| 636 | struct ahci_probe_ent *probe_ent = |
| 637 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 638 | struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); |
| 639 | struct sata_fis_h2d *cfis = &h2d; |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 640 | u8 port = probe_ent->hard_port_no; |
| 641 | |
| 642 | memset(cfis, 0, sizeof(struct sata_fis_h2d)); |
| 643 | |
| 644 | cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 645 | cfis->pm_port_c = 0x80; /* is command */ |
| 646 | cfis->command = ATA_CMD_ID_ATA; |
| 647 | |
| 648 | ahci_exec_ata_cmd(probe_ent, port, cfis, |
| 649 | (u8 *)id, ATA_ID_WORDS * 2, READ_CMD); |
| 650 | ata_swap_buf_le16(id, ATA_ID_WORDS); |
| 651 | } |
| 652 | |
| 653 | static void dwc_ahsata_xfer_mode(int dev, u16 *id) |
| 654 | { |
| 655 | struct ahci_probe_ent *probe_ent = |
| 656 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
| 657 | |
| 658 | probe_ent->pio_mask = id[ATA_ID_PIO_MODES]; |
| 659 | probe_ent->udma_mask = id[ATA_ID_UDMA_MODES]; |
| 660 | debug("pio %04x, udma %04x\n\r", |
| 661 | probe_ent->pio_mask, probe_ent->udma_mask); |
| 662 | } |
| 663 | |
| 664 | static u32 dwc_ahsata_rw_cmd(int dev, u32 start, u32 blkcnt, |
| 665 | u8 *buffer, int is_write) |
| 666 | { |
| 667 | struct ahci_probe_ent *probe_ent = |
| 668 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 669 | struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); |
| 670 | struct sata_fis_h2d *cfis = &h2d; |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 671 | u8 port = probe_ent->hard_port_no; |
| 672 | u32 block; |
| 673 | |
| 674 | block = start; |
| 675 | |
| 676 | memset(cfis, 0, sizeof(struct sata_fis_h2d)); |
| 677 | |
| 678 | cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 679 | cfis->pm_port_c = 0x80; /* is command */ |
| 680 | cfis->command = (is_write) ? ATA_CMD_WRITE : ATA_CMD_READ; |
| 681 | cfis->device = ATA_LBA; |
| 682 | |
| 683 | cfis->device |= (block >> 24) & 0xf; |
| 684 | cfis->lba_high = (block >> 16) & 0xff; |
| 685 | cfis->lba_mid = (block >> 8) & 0xff; |
| 686 | cfis->lba_low = block & 0xff; |
| 687 | cfis->sector_count = (u8)(blkcnt & 0xff); |
| 688 | |
| 689 | if (ahci_exec_ata_cmd(probe_ent, port, cfis, |
| 690 | buffer, ATA_SECT_SIZE * blkcnt, is_write) > 0) |
| 691 | return blkcnt; |
| 692 | else |
| 693 | return 0; |
| 694 | } |
| 695 | |
| 696 | void dwc_ahsata_flush_cache(int dev) |
| 697 | { |
| 698 | struct ahci_probe_ent *probe_ent = |
| 699 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 700 | struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); |
| 701 | struct sata_fis_h2d *cfis = &h2d; |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 702 | u8 port = probe_ent->hard_port_no; |
| 703 | |
| 704 | memset(cfis, 0, sizeof(struct sata_fis_h2d)); |
| 705 | |
| 706 | cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 707 | cfis->pm_port_c = 0x80; /* is command */ |
| 708 | cfis->command = ATA_CMD_FLUSH; |
| 709 | |
| 710 | ahci_exec_ata_cmd(probe_ent, port, cfis, NULL, 0, 0); |
| 711 | } |
| 712 | |
| 713 | static u32 dwc_ahsata_rw_cmd_ext(int dev, u32 start, lbaint_t blkcnt, |
| 714 | u8 *buffer, int is_write) |
| 715 | { |
| 716 | struct ahci_probe_ent *probe_ent = |
| 717 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 718 | struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); |
| 719 | struct sata_fis_h2d *cfis = &h2d; |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 720 | u8 port = probe_ent->hard_port_no; |
| 721 | u64 block; |
| 722 | |
| 723 | block = (u64)start; |
| 724 | |
| 725 | memset(cfis, 0, sizeof(struct sata_fis_h2d)); |
| 726 | |
| 727 | cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 728 | cfis->pm_port_c = 0x80; /* is command */ |
| 729 | |
| 730 | cfis->command = (is_write) ? ATA_CMD_WRITE_EXT |
| 731 | : ATA_CMD_READ_EXT; |
| 732 | |
| 733 | cfis->lba_high_exp = (block >> 40) & 0xff; |
| 734 | cfis->lba_mid_exp = (block >> 32) & 0xff; |
| 735 | cfis->lba_low_exp = (block >> 24) & 0xff; |
| 736 | cfis->lba_high = (block >> 16) & 0xff; |
| 737 | cfis->lba_mid = (block >> 8) & 0xff; |
| 738 | cfis->lba_low = block & 0xff; |
| 739 | cfis->device = ATA_LBA; |
| 740 | cfis->sector_count_exp = (blkcnt >> 8) & 0xff; |
| 741 | cfis->sector_count = blkcnt & 0xff; |
| 742 | |
| 743 | if (ahci_exec_ata_cmd(probe_ent, port, cfis, buffer, |
| 744 | ATA_SECT_SIZE * blkcnt, is_write) > 0) |
| 745 | return blkcnt; |
| 746 | else |
| 747 | return 0; |
| 748 | } |
| 749 | |
| 750 | u32 dwc_ahsata_rw_ncq_cmd(int dev, u32 start, lbaint_t blkcnt, |
| 751 | u8 *buffer, int is_write) |
| 752 | { |
| 753 | struct ahci_probe_ent *probe_ent = |
| 754 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 755 | struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); |
| 756 | struct sata_fis_h2d *cfis = &h2d; |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 757 | u8 port = probe_ent->hard_port_no; |
| 758 | u64 block; |
| 759 | |
| 760 | if (sata_dev_desc[dev].lba48 != 1) { |
| 761 | printf("execute FPDMA command on non-LBA48 hard disk\n\r"); |
| 762 | return -1; |
| 763 | } |
| 764 | |
| 765 | block = (u64)start; |
| 766 | |
| 767 | memset(cfis, 0, sizeof(struct sata_fis_h2d)); |
| 768 | |
| 769 | cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 770 | cfis->pm_port_c = 0x80; /* is command */ |
| 771 | |
| 772 | cfis->command = (is_write) ? ATA_CMD_FPDMA_WRITE |
| 773 | : ATA_CMD_FPDMA_READ; |
| 774 | |
| 775 | cfis->lba_high_exp = (block >> 40) & 0xff; |
| 776 | cfis->lba_mid_exp = (block >> 32) & 0xff; |
| 777 | cfis->lba_low_exp = (block >> 24) & 0xff; |
| 778 | cfis->lba_high = (block >> 16) & 0xff; |
| 779 | cfis->lba_mid = (block >> 8) & 0xff; |
| 780 | cfis->lba_low = block & 0xff; |
| 781 | |
| 782 | cfis->device = ATA_LBA; |
| 783 | cfis->features_exp = (blkcnt >> 8) & 0xff; |
| 784 | cfis->features = blkcnt & 0xff; |
| 785 | |
| 786 | /* Use the latest queue */ |
| 787 | ahci_exec_ata_cmd(probe_ent, port, cfis, |
| 788 | buffer, ATA_SECT_SIZE * blkcnt, is_write); |
| 789 | |
| 790 | return blkcnt; |
| 791 | } |
| 792 | |
| 793 | void dwc_ahsata_flush_cache_ext(int dev) |
| 794 | { |
| 795 | struct ahci_probe_ent *probe_ent = |
| 796 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 797 | struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN); |
| 798 | struct sata_fis_h2d *cfis = &h2d; |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 799 | u8 port = probe_ent->hard_port_no; |
| 800 | |
| 801 | memset(cfis, 0, sizeof(struct sata_fis_h2d)); |
| 802 | |
| 803 | cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 804 | cfis->pm_port_c = 0x80; /* is command */ |
| 805 | cfis->command = ATA_CMD_FLUSH_EXT; |
| 806 | |
| 807 | ahci_exec_ata_cmd(probe_ent, port, cfis, NULL, 0, 0); |
| 808 | } |
| 809 | |
| 810 | static void dwc_ahsata_init_wcache(int dev, u16 *id) |
| 811 | { |
| 812 | struct ahci_probe_ent *probe_ent = |
| 813 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
| 814 | |
| 815 | if (ata_id_has_wcache(id) && ata_id_wcache_enabled(id)) |
| 816 | probe_ent->flags |= SATA_FLAG_WCACHE; |
| 817 | if (ata_id_has_flush(id)) |
| 818 | probe_ent->flags |= SATA_FLAG_FLUSH; |
| 819 | if (ata_id_has_flush_ext(id)) |
| 820 | probe_ent->flags |= SATA_FLAG_FLUSH_EXT; |
| 821 | } |
| 822 | |
| 823 | u32 ata_low_level_rw_lba48(int dev, u32 blknr, lbaint_t blkcnt, |
Tom Rini | dac8757 | 2012-09-29 07:53:06 -0700 | [diff] [blame] | 824 | const void *buffer, int is_write) |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 825 | { |
| 826 | u32 start, blks; |
| 827 | u8 *addr; |
| 828 | int max_blks; |
| 829 | |
| 830 | start = blknr; |
| 831 | blks = blkcnt; |
| 832 | addr = (u8 *)buffer; |
| 833 | |
| 834 | max_blks = ATA_MAX_SECTORS_LBA48; |
| 835 | |
| 836 | do { |
| 837 | if (blks > max_blks) { |
| 838 | if (max_blks != dwc_ahsata_rw_cmd_ext(dev, start, |
| 839 | max_blks, addr, is_write)) |
| 840 | return 0; |
| 841 | start += max_blks; |
| 842 | blks -= max_blks; |
| 843 | addr += ATA_SECT_SIZE * max_blks; |
| 844 | } else { |
| 845 | if (blks != dwc_ahsata_rw_cmd_ext(dev, start, |
| 846 | blks, addr, is_write)) |
| 847 | return 0; |
| 848 | start += blks; |
| 849 | blks = 0; |
| 850 | addr += ATA_SECT_SIZE * blks; |
| 851 | } |
| 852 | } while (blks != 0); |
| 853 | |
| 854 | return blkcnt; |
| 855 | } |
| 856 | |
| 857 | u32 ata_low_level_rw_lba28(int dev, u32 blknr, lbaint_t blkcnt, |
Tom Rini | dac8757 | 2012-09-29 07:53:06 -0700 | [diff] [blame] | 858 | const void *buffer, int is_write) |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 859 | { |
| 860 | u32 start, blks; |
| 861 | u8 *addr; |
| 862 | int max_blks; |
| 863 | |
| 864 | start = blknr; |
| 865 | blks = blkcnt; |
| 866 | addr = (u8 *)buffer; |
| 867 | |
| 868 | max_blks = ATA_MAX_SECTORS; |
| 869 | do { |
| 870 | if (blks > max_blks) { |
| 871 | if (max_blks != dwc_ahsata_rw_cmd(dev, start, |
| 872 | max_blks, addr, is_write)) |
| 873 | return 0; |
| 874 | start += max_blks; |
| 875 | blks -= max_blks; |
| 876 | addr += ATA_SECT_SIZE * max_blks; |
| 877 | } else { |
| 878 | if (blks != dwc_ahsata_rw_cmd(dev, start, |
| 879 | blks, addr, is_write)) |
| 880 | return 0; |
| 881 | start += blks; |
| 882 | blks = 0; |
| 883 | addr += ATA_SECT_SIZE * blks; |
| 884 | } |
| 885 | } while (blks != 0); |
| 886 | |
| 887 | return blkcnt; |
| 888 | } |
| 889 | |
Nikita Kiryanov | dc383dd | 2014-08-20 15:08:53 +0300 | [diff] [blame] | 890 | int sata_port_status(int dev, int port) |
| 891 | { |
| 892 | struct sata_port_regs *port_mmio; |
| 893 | struct ahci_probe_ent *probe_ent = NULL; |
| 894 | |
| 895 | if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) |
| 896 | return -EINVAL; |
| 897 | |
| 898 | if (sata_dev_desc[dev].priv == NULL) |
| 899 | return -ENODEV; |
| 900 | |
| 901 | probe_ent = (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
| 902 | port_mmio = (struct sata_port_regs *)probe_ent->port[port].port_mmio; |
| 903 | |
Nikita Kiryanov | 0029d6c | 2014-10-28 14:59:29 +0200 | [diff] [blame] | 904 | return readl(&(port_mmio->ssts)) & SATA_PORT_SSTS_DET_MASK; |
Nikita Kiryanov | dc383dd | 2014-08-20 15:08:53 +0300 | [diff] [blame] | 905 | } |
| 906 | |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 907 | /* |
| 908 | * SATA interface between low level driver and command layer |
| 909 | */ |
Tom Rini | dac8757 | 2012-09-29 07:53:06 -0700 | [diff] [blame] | 910 | ulong sata_read(int dev, ulong blknr, lbaint_t blkcnt, void *buffer) |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 911 | { |
| 912 | u32 rc; |
| 913 | |
| 914 | if (sata_dev_desc[dev].lba48) |
| 915 | rc = ata_low_level_rw_lba48(dev, blknr, blkcnt, |
| 916 | buffer, READ_CMD); |
| 917 | else |
| 918 | rc = ata_low_level_rw_lba28(dev, blknr, blkcnt, |
| 919 | buffer, READ_CMD); |
| 920 | return rc; |
| 921 | } |
| 922 | |
Tom Rini | dac8757 | 2012-09-29 07:53:06 -0700 | [diff] [blame] | 923 | ulong sata_write(int dev, ulong blknr, lbaint_t blkcnt, const void *buffer) |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 924 | { |
| 925 | u32 rc; |
| 926 | struct ahci_probe_ent *probe_ent = |
| 927 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
| 928 | u32 flags = probe_ent->flags; |
| 929 | |
| 930 | if (sata_dev_desc[dev].lba48) { |
| 931 | rc = ata_low_level_rw_lba48(dev, blknr, blkcnt, |
| 932 | buffer, WRITE_CMD); |
| 933 | if ((flags & SATA_FLAG_WCACHE) && |
| 934 | (flags & SATA_FLAG_FLUSH_EXT)) |
| 935 | dwc_ahsata_flush_cache_ext(dev); |
| 936 | } else { |
| 937 | rc = ata_low_level_rw_lba28(dev, blknr, blkcnt, |
| 938 | buffer, WRITE_CMD); |
| 939 | if ((flags & SATA_FLAG_WCACHE) && |
| 940 | (flags & SATA_FLAG_FLUSH)) |
| 941 | dwc_ahsata_flush_cache(dev); |
| 942 | } |
| 943 | return rc; |
| 944 | } |
| 945 | |
| 946 | int scan_sata(int dev) |
| 947 | { |
| 948 | u8 serial[ATA_ID_SERNO_LEN + 1] = { 0 }; |
| 949 | u8 firmware[ATA_ID_FW_REV_LEN + 1] = { 0 }; |
| 950 | u8 product[ATA_ID_PROD_LEN + 1] = { 0 }; |
| 951 | u16 *id; |
| 952 | u64 n_sectors; |
| 953 | struct ahci_probe_ent *probe_ent = |
| 954 | (struct ahci_probe_ent *)sata_dev_desc[dev].priv; |
| 955 | u8 port = probe_ent->hard_port_no; |
| 956 | block_dev_desc_t *pdev = &(sata_dev_desc[dev]); |
| 957 | |
Eric Nelson | 2dbe64c | 2013-06-15 16:09:55 -0700 | [diff] [blame] | 958 | id = (u16 *)memalign(ARCH_DMA_MINALIGN, |
| 959 | roundup(ARCH_DMA_MINALIGN, |
| 960 | (ATA_ID_WORDS * 2))); |
Stefano Babic | 9f472e6 | 2012-02-22 00:24:39 +0000 | [diff] [blame] | 961 | if (!id) { |
| 962 | printf("id malloc failed\n\r"); |
| 963 | return -1; |
| 964 | } |
| 965 | |
| 966 | /* Identify device to get information */ |
| 967 | dwc_ahsata_identify(dev, id); |
| 968 | |
| 969 | /* Serial number */ |
| 970 | ata_id_c_string(id, serial, ATA_ID_SERNO, sizeof(serial)); |
| 971 | memcpy(pdev->product, serial, sizeof(serial)); |
| 972 | |
| 973 | /* Firmware version */ |
| 974 | ata_id_c_string(id, firmware, ATA_ID_FW_REV, sizeof(firmware)); |
| 975 | memcpy(pdev->revision, firmware, sizeof(firmware)); |
| 976 | |
| 977 | /* Product model */ |
| 978 | ata_id_c_string(id, product, ATA_ID_PROD, sizeof(product)); |
| 979 | memcpy(pdev->vendor, product, sizeof(product)); |
| 980 | |
| 981 | /* Totoal sectors */ |
| 982 | n_sectors = ata_id_n_sectors(id); |
| 983 | pdev->lba = (u32)n_sectors; |
| 984 | |
| 985 | pdev->type = DEV_TYPE_HARDDISK; |
| 986 | pdev->blksz = ATA_SECT_SIZE; |
| 987 | pdev->lun = 0 ; |
| 988 | |
| 989 | /* Check if support LBA48 */ |
| 990 | if (ata_id_has_lba48(id)) { |
| 991 | pdev->lba48 = 1; |
| 992 | debug("Device support LBA48\n\r"); |
| 993 | } |
| 994 | |
| 995 | /* Get the NCQ queue depth from device */ |
| 996 | probe_ent->flags &= (~SATA_FLAG_Q_DEP_MASK); |
| 997 | probe_ent->flags |= ata_id_queue_depth(id); |
| 998 | |
| 999 | /* Get the xfer mode from device */ |
| 1000 | dwc_ahsata_xfer_mode(dev, id); |
| 1001 | |
| 1002 | /* Get the write cache status from device */ |
| 1003 | dwc_ahsata_init_wcache(dev, id); |
| 1004 | |
| 1005 | /* Set the xfer mode to highest speed */ |
| 1006 | ahci_set_feature(dev, port); |
| 1007 | |
| 1008 | free((void *)id); |
| 1009 | |
| 1010 | dwc_ahsata_print_info(dev); |
| 1011 | |
| 1012 | is_ready = 1; |
| 1013 | |
| 1014 | return 0; |
| 1015 | } |