2013-10-04 18:31:38 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2013 Zhixiang Yu <zcore@freebsd.org>
|
2016-07-08 21:25:37 +00:00
|
|
|
* Copyright (c) 2015-2016 Alexander Motin <mav@FreeBSD.org>
|
2013-10-04 18:31:38 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/linker_set.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/disk.h>
|
|
|
|
#include <sys/ata.h>
|
|
|
|
#include <sys/endian.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <pthread.h>
|
2014-10-17 11:37:50 +00:00
|
|
|
#include <pthread_np.h>
|
2013-10-04 18:31:38 +00:00
|
|
|
#include <inttypes.h>
|
2015-03-15 15:29:03 +00:00
|
|
|
#include <md5.h>
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
#include "bhyverun.h"
|
|
|
|
#include "pci_emul.h"
|
|
|
|
#include "ahci.h"
|
|
|
|
#include "block_if.h"
|
|
|
|
|
2016-07-08 21:25:37 +00:00
|
|
|
#define DEF_PORTS 6 /* Intel ICH8 AHCI supports 6 ports */
|
|
|
|
#define MAX_PORTS 32 /* AHCI supports 32 ports */
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
#define PxSIG_ATA 0x00000101 /* ATA drive */
|
|
|
|
#define PxSIG_ATAPI 0xeb140101 /* ATAPI drive */
|
|
|
|
|
|
|
|
enum sata_fis_type {
|
|
|
|
FIS_TYPE_REGH2D = 0x27, /* Register FIS - host to device */
|
|
|
|
FIS_TYPE_REGD2H = 0x34, /* Register FIS - device to host */
|
|
|
|
FIS_TYPE_DMAACT = 0x39, /* DMA activate FIS - device to host */
|
|
|
|
FIS_TYPE_DMASETUP = 0x41, /* DMA setup FIS - bidirectional */
|
|
|
|
FIS_TYPE_DATA = 0x46, /* Data FIS - bidirectional */
|
|
|
|
FIS_TYPE_BIST = 0x58, /* BIST activate FIS - bidirectional */
|
|
|
|
FIS_TYPE_PIOSETUP = 0x5F, /* PIO setup FIS - device to host */
|
|
|
|
FIS_TYPE_SETDEVBITS = 0xA1, /* Set dev bits FIS - device to host */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SCSI opcodes
|
|
|
|
*/
|
|
|
|
#define TEST_UNIT_READY 0x00
|
|
|
|
#define REQUEST_SENSE 0x03
|
|
|
|
#define INQUIRY 0x12
|
|
|
|
#define START_STOP_UNIT 0x1B
|
|
|
|
#define PREVENT_ALLOW 0x1E
|
|
|
|
#define READ_CAPACITY 0x25
|
|
|
|
#define READ_10 0x28
|
|
|
|
#define POSITION_TO_ELEMENT 0x2B
|
|
|
|
#define READ_TOC 0x43
|
|
|
|
#define GET_EVENT_STATUS_NOTIFICATION 0x4A
|
|
|
|
#define MODE_SENSE_10 0x5A
|
2015-03-14 12:18:26 +00:00
|
|
|
#define REPORT_LUNS 0xA0
|
2013-10-04 18:31:38 +00:00
|
|
|
#define READ_12 0xA8
|
|
|
|
#define READ_CD 0xBE
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SCSI mode page codes
|
|
|
|
*/
|
|
|
|
#define MODEPAGE_RW_ERROR_RECOVERY 0x01
|
|
|
|
#define MODEPAGE_CD_CAPABILITIES 0x2A
|
|
|
|
|
2014-03-16 12:33:40 +00:00
|
|
|
/*
|
|
|
|
* ATA commands
|
|
|
|
*/
|
|
|
|
#define ATA_SF_ENAB_SATA_SF 0x10
|
|
|
|
#define ATA_SATA_SF_AN 0x05
|
|
|
|
#define ATA_SF_DIS_SATA_SF 0x90
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
/*
|
|
|
|
* Debug printf
|
|
|
|
*/
|
|
|
|
#ifdef AHCI_DEBUG
|
|
|
|
static FILE *dbg;
|
|
|
|
#define DPRINTF(format, arg...) do{fprintf(dbg, format, ##arg);fflush(dbg);}while(0)
|
|
|
|
#else
|
|
|
|
#define DPRINTF(format, arg...)
|
|
|
|
#endif
|
|
|
|
#define WPRINTF(format, arg...) printf(format, ##arg)
|
|
|
|
|
|
|
|
struct ahci_ioreq {
|
|
|
|
struct blockif_req io_req;
|
|
|
|
struct ahci_port *io_pr;
|
2014-10-17 11:37:50 +00:00
|
|
|
STAILQ_ENTRY(ahci_ioreq) io_flist;
|
|
|
|
TAILQ_ENTRY(ahci_ioreq) io_blist;
|
2013-10-04 18:31:38 +00:00
|
|
|
uint8_t *cfis;
|
|
|
|
uint32_t len;
|
|
|
|
uint32_t done;
|
|
|
|
int slot;
|
2015-04-17 20:20:55 +00:00
|
|
|
int more;
|
2013-10-04 18:31:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ahci_port {
|
|
|
|
struct blockif_ctxt *bctx;
|
|
|
|
struct pci_ahci_softc *pr_sc;
|
2013-10-08 19:39:21 +00:00
|
|
|
uint8_t *cmd_lst;
|
|
|
|
uint8_t *rfis;
|
2015-03-15 15:29:03 +00:00
|
|
|
char ident[20 + 1];
|
2016-07-08 21:30:18 +00:00
|
|
|
int port;
|
2013-10-04 18:31:38 +00:00
|
|
|
int atapi;
|
|
|
|
int reset;
|
2015-05-06 09:59:19 +00:00
|
|
|
int waitforclear;
|
2013-10-04 18:31:38 +00:00
|
|
|
int mult_sectors;
|
|
|
|
uint8_t xfermode;
|
2015-03-14 08:45:54 +00:00
|
|
|
uint8_t err_cfis[20];
|
2013-10-04 18:31:38 +00:00
|
|
|
uint8_t sense_key;
|
|
|
|
uint8_t asc;
|
2015-05-04 19:55:01 +00:00
|
|
|
u_int ccs;
|
2014-03-18 23:25:35 +00:00
|
|
|
uint32_t pending;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
uint32_t clb;
|
|
|
|
uint32_t clbu;
|
|
|
|
uint32_t fb;
|
|
|
|
uint32_t fbu;
|
|
|
|
uint32_t is;
|
|
|
|
uint32_t ie;
|
|
|
|
uint32_t cmd;
|
|
|
|
uint32_t unused0;
|
|
|
|
uint32_t tfd;
|
|
|
|
uint32_t sig;
|
|
|
|
uint32_t ssts;
|
|
|
|
uint32_t sctl;
|
|
|
|
uint32_t serr;
|
|
|
|
uint32_t sact;
|
|
|
|
uint32_t ci;
|
|
|
|
uint32_t sntf;
|
|
|
|
uint32_t fbs;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* i/o request info
|
|
|
|
*/
|
|
|
|
struct ahci_ioreq *ioreq;
|
|
|
|
int ioqsz;
|
|
|
|
STAILQ_HEAD(ahci_fhead, ahci_ioreq) iofhd;
|
2014-10-17 11:37:50 +00:00
|
|
|
TAILQ_HEAD(ahci_bhead, ahci_ioreq) iobhd;
|
2013-10-04 18:31:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ahci_cmd_hdr {
|
|
|
|
uint16_t flags;
|
|
|
|
uint16_t prdtl;
|
|
|
|
uint32_t prdbc;
|
|
|
|
uint64_t ctba;
|
|
|
|
uint32_t reserved[4];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ahci_prdt_entry {
|
|
|
|
uint64_t dba;
|
|
|
|
uint32_t reserved;
|
2013-11-26 03:00:54 +00:00
|
|
|
#define DBCMASK 0x3fffff
|
2013-10-04 18:31:38 +00:00
|
|
|
uint32_t dbc;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pci_ahci_softc {
|
|
|
|
struct pci_devinst *asc_pi;
|
|
|
|
pthread_mutex_t mtx;
|
|
|
|
int ports;
|
|
|
|
uint32_t cap;
|
|
|
|
uint32_t ghc;
|
|
|
|
uint32_t is;
|
|
|
|
uint32_t pi;
|
|
|
|
uint32_t vs;
|
|
|
|
uint32_t ccc_ctl;
|
|
|
|
uint32_t ccc_pts;
|
|
|
|
uint32_t em_loc;
|
|
|
|
uint32_t em_ctl;
|
|
|
|
uint32_t cap2;
|
|
|
|
uint32_t bohc;
|
2014-04-28 18:41:25 +00:00
|
|
|
uint32_t lintr;
|
2013-10-04 18:31:38 +00:00
|
|
|
struct ahci_port port[MAX_PORTS];
|
|
|
|
};
|
|
|
|
#define ahci_ctx(sc) ((sc)->asc_pi->pi_vmctx)
|
|
|
|
|
2015-05-04 19:55:01 +00:00
|
|
|
static void ahci_handle_port(struct ahci_port *p);
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
static inline void lba_to_msf(uint8_t *buf, int lba)
|
|
|
|
{
|
|
|
|
lba += 150;
|
|
|
|
buf[0] = (lba / 75) / 60;
|
|
|
|
buf[1] = (lba / 75) % 60;
|
|
|
|
buf[2] = lba % 75;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-07-08 21:30:18 +00:00
|
|
|
* Generate HBA interrupts on global IS register write.
|
2013-10-04 18:31:38 +00:00
|
|
|
*/
|
|
|
|
static void
|
2016-07-08 21:30:18 +00:00
|
|
|
ahci_generate_intr(struct pci_ahci_softc *sc, uint32_t mask)
|
2013-10-04 18:31:38 +00:00
|
|
|
{
|
2016-07-08 21:30:18 +00:00
|
|
|
struct pci_devinst *pi = sc->asc_pi;
|
|
|
|
struct ahci_port *p;
|
|
|
|
int i, nmsg;
|
|
|
|
uint32_t mmask;
|
2014-04-28 18:41:25 +00:00
|
|
|
|
2016-07-08 21:30:18 +00:00
|
|
|
/* Update global IS from PxIS/PxIE. */
|
2013-10-04 18:31:38 +00:00
|
|
|
for (i = 0; i < sc->ports; i++) {
|
2016-07-08 21:30:18 +00:00
|
|
|
p = &sc->port[i];
|
|
|
|
if (p->is & p->ie)
|
2013-10-04 18:31:38 +00:00
|
|
|
sc->is |= (1 << i);
|
|
|
|
}
|
2016-07-08 21:30:18 +00:00
|
|
|
DPRINTF("%s(%08x) %08x\n", __func__, mask, sc->is);
|
|
|
|
|
|
|
|
/* If there is nothing enabled -- clear legacy interrupt and exit. */
|
|
|
|
if (sc->is == 0 || (sc->ghc & AHCI_GHC_IE) == 0) {
|
|
|
|
if (sc->lintr) {
|
|
|
|
pci_lintr_deassert(pi);
|
|
|
|
sc->lintr = 0;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2016-07-08 21:30:18 +00:00
|
|
|
/* If there is anything and no MSI -- assert legacy interrupt. */
|
|
|
|
nmsg = pci_msi_maxmsgnum(pi);
|
|
|
|
if (nmsg == 0) {
|
|
|
|
if (!sc->lintr) {
|
2014-04-28 18:41:25 +00:00
|
|
|
sc->lintr = 1;
|
|
|
|
pci_lintr_assert(pi);
|
|
|
|
}
|
2016-07-08 21:30:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Assert respective MSIs for ports that were touched. */
|
|
|
|
for (i = 0; i < nmsg; i++) {
|
|
|
|
if (sc->ports <= nmsg || i < nmsg - 1)
|
|
|
|
mmask = 1 << i;
|
|
|
|
else
|
|
|
|
mmask = 0xffffffff << i;
|
|
|
|
if (sc->is & mask && mmask & mask)
|
|
|
|
pci_generate_msi(pi, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate HBA interrupt on specific port event.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
ahci_port_intr(struct ahci_port *p)
|
|
|
|
{
|
|
|
|
struct pci_ahci_softc *sc = p->pr_sc;
|
|
|
|
struct pci_devinst *pi = sc->asc_pi;
|
|
|
|
int nmsg;
|
|
|
|
|
|
|
|
DPRINTF("%s(%d) %08x/%08x %08x\n", __func__,
|
|
|
|
p->port, p->is, p->ie, sc->is);
|
|
|
|
|
|
|
|
/* If there is nothing enabled -- we are done. */
|
|
|
|
if ((p->is & p->ie) == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* In case of non-shared MSI always generate interrupt. */
|
|
|
|
nmsg = pci_msi_maxmsgnum(pi);
|
|
|
|
if (sc->ports <= nmsg || p->port < nmsg - 1) {
|
|
|
|
sc->is |= (1 << p->port);
|
|
|
|
if ((sc->ghc & AHCI_GHC_IE) == 0)
|
|
|
|
return;
|
|
|
|
pci_generate_msi(pi, p->port);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If IS for this port is already set -- do nothing. */
|
|
|
|
if (sc->is & (1 << p->port))
|
|
|
|
return;
|
|
|
|
|
|
|
|
sc->is |= (1 << p->port);
|
|
|
|
|
|
|
|
/* If interrupts are enabled -- generate one. */
|
|
|
|
if ((sc->ghc & AHCI_GHC_IE) == 0)
|
|
|
|
return;
|
|
|
|
if (nmsg > 0) {
|
|
|
|
pci_generate_msi(pi, nmsg - 1);
|
|
|
|
} else if (!sc->lintr) {
|
|
|
|
sc->lintr = 1;
|
|
|
|
pci_lintr_assert(pi);
|
2014-04-28 18:41:25 +00:00
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_write_fis(struct ahci_port *p, enum sata_fis_type ft, uint8_t *fis)
|
|
|
|
{
|
|
|
|
int offset, len, irq;
|
|
|
|
|
2013-10-08 19:39:21 +00:00
|
|
|
if (p->rfis == NULL || !(p->cmd & AHCI_P_CMD_FRE))
|
2013-10-04 18:31:38 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch (ft) {
|
|
|
|
case FIS_TYPE_REGD2H:
|
|
|
|
offset = 0x40;
|
|
|
|
len = 20;
|
2015-05-03 07:43:58 +00:00
|
|
|
irq = (fis[1] & (1 << 6)) ? AHCI_P_IX_DHR : 0;
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
case FIS_TYPE_SETDEVBITS:
|
|
|
|
offset = 0x58;
|
|
|
|
len = 8;
|
2015-05-03 07:43:58 +00:00
|
|
|
irq = (fis[1] & (1 << 6)) ? AHCI_P_IX_SDB : 0;
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
case FIS_TYPE_PIOSETUP:
|
|
|
|
offset = 0x20;
|
|
|
|
len = 20;
|
2015-05-03 07:43:58 +00:00
|
|
|
irq = (fis[1] & (1 << 6)) ? AHCI_P_IX_PS : 0;
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WPRINTF("unsupported fis type %d\n", ft);
|
|
|
|
return;
|
|
|
|
}
|
2015-05-06 09:59:19 +00:00
|
|
|
if (fis[2] & ATA_S_ERROR) {
|
|
|
|
p->waitforclear = 1;
|
2015-05-03 07:43:58 +00:00
|
|
|
irq |= AHCI_P_IX_TFE;
|
2015-05-06 09:59:19 +00:00
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
memcpy(p->rfis + offset, fis, len);
|
|
|
|
if (irq) {
|
2016-07-08 21:30:18 +00:00
|
|
|
if (~p->is & irq) {
|
|
|
|
p->is |= irq;
|
|
|
|
ahci_port_intr(p);
|
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 00:32:14 +00:00
|
|
|
static void
|
|
|
|
ahci_write_fis_piosetup(struct ahci_port *p)
|
|
|
|
{
|
|
|
|
uint8_t fis[20];
|
|
|
|
|
|
|
|
memset(fis, 0, sizeof(fis));
|
|
|
|
fis[0] = FIS_TYPE_PIOSETUP;
|
|
|
|
ahci_write_fis(p, FIS_TYPE_PIOSETUP, fis);
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
static void
|
2015-03-14 08:45:54 +00:00
|
|
|
ahci_write_fis_sdb(struct ahci_port *p, int slot, uint8_t *cfis, uint32_t tfd)
|
2013-10-04 18:31:38 +00:00
|
|
|
{
|
|
|
|
uint8_t fis[8];
|
|
|
|
uint8_t error;
|
|
|
|
|
|
|
|
error = (tfd >> 8) & 0xff;
|
2015-05-03 07:43:58 +00:00
|
|
|
tfd &= 0x77;
|
2013-10-04 18:31:38 +00:00
|
|
|
memset(fis, 0, sizeof(fis));
|
2015-03-14 08:45:54 +00:00
|
|
|
fis[0] = FIS_TYPE_SETDEVBITS;
|
|
|
|
fis[1] = (1 << 6);
|
2015-05-03 07:43:58 +00:00
|
|
|
fis[2] = tfd;
|
2015-03-14 08:45:54 +00:00
|
|
|
fis[3] = error;
|
|
|
|
if (fis[2] & ATA_S_ERROR) {
|
|
|
|
p->err_cfis[0] = slot;
|
2015-05-03 07:43:58 +00:00
|
|
|
p->err_cfis[2] = tfd;
|
2015-03-14 08:45:54 +00:00
|
|
|
p->err_cfis[3] = error;
|
|
|
|
memcpy(&p->err_cfis[4], cfis + 4, 16);
|
|
|
|
} else {
|
|
|
|
*(uint32_t *)(fis + 4) = (1 << slot);
|
|
|
|
p->sact &= ~(1 << slot);
|
|
|
|
}
|
2015-05-03 07:43:58 +00:00
|
|
|
p->tfd &= ~0x77;
|
|
|
|
p->tfd |= tfd;
|
2013-10-04 18:31:38 +00:00
|
|
|
ahci_write_fis(p, FIS_TYPE_SETDEVBITS, fis);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_write_fis_d2h(struct ahci_port *p, int slot, uint8_t *cfis, uint32_t tfd)
|
|
|
|
{
|
|
|
|
uint8_t fis[20];
|
|
|
|
uint8_t error;
|
|
|
|
|
|
|
|
error = (tfd >> 8) & 0xff;
|
|
|
|
memset(fis, 0, sizeof(fis));
|
|
|
|
fis[0] = FIS_TYPE_REGD2H;
|
|
|
|
fis[1] = (1 << 6);
|
|
|
|
fis[2] = tfd & 0xff;
|
|
|
|
fis[3] = error;
|
|
|
|
fis[4] = cfis[4];
|
|
|
|
fis[5] = cfis[5];
|
|
|
|
fis[6] = cfis[6];
|
|
|
|
fis[7] = cfis[7];
|
|
|
|
fis[8] = cfis[8];
|
|
|
|
fis[9] = cfis[9];
|
|
|
|
fis[10] = cfis[10];
|
|
|
|
fis[11] = cfis[11];
|
|
|
|
fis[12] = cfis[12];
|
|
|
|
fis[13] = cfis[13];
|
2015-03-14 08:45:54 +00:00
|
|
|
if (fis[2] & ATA_S_ERROR) {
|
|
|
|
p->err_cfis[0] = 0x80;
|
|
|
|
p->err_cfis[2] = tfd & 0xff;
|
|
|
|
p->err_cfis[3] = error;
|
|
|
|
memcpy(&p->err_cfis[4], cfis + 4, 16);
|
|
|
|
} else
|
2014-07-30 18:47:31 +00:00
|
|
|
p->ci &= ~(1 << slot);
|
2013-10-04 18:31:38 +00:00
|
|
|
p->tfd = tfd;
|
|
|
|
ahci_write_fis(p, FIS_TYPE_REGD2H, fis);
|
|
|
|
}
|
|
|
|
|
2015-05-03 07:43:58 +00:00
|
|
|
static void
|
|
|
|
ahci_write_fis_d2h_ncq(struct ahci_port *p, int slot)
|
|
|
|
{
|
|
|
|
uint8_t fis[20];
|
|
|
|
|
|
|
|
p->tfd = ATA_S_READY | ATA_S_DSC;
|
|
|
|
memset(fis, 0, sizeof(fis));
|
|
|
|
fis[0] = FIS_TYPE_REGD2H;
|
|
|
|
fis[1] = 0; /* No interrupt */
|
|
|
|
fis[2] = p->tfd; /* Status */
|
|
|
|
fis[3] = 0; /* No error */
|
|
|
|
p->ci &= ~(1 << slot);
|
|
|
|
ahci_write_fis(p, FIS_TYPE_REGD2H, fis);
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
static void
|
|
|
|
ahci_write_reset_fis_d2h(struct ahci_port *p)
|
|
|
|
{
|
|
|
|
uint8_t fis[20];
|
|
|
|
|
|
|
|
memset(fis, 0, sizeof(fis));
|
|
|
|
fis[0] = FIS_TYPE_REGD2H;
|
|
|
|
fis[3] = 1;
|
|
|
|
fis[4] = 1;
|
|
|
|
if (p->atapi) {
|
|
|
|
fis[5] = 0x14;
|
|
|
|
fis[6] = 0xeb;
|
|
|
|
}
|
|
|
|
fis[12] = 1;
|
|
|
|
ahci_write_fis(p, FIS_TYPE_REGD2H, fis);
|
|
|
|
}
|
|
|
|
|
2014-10-17 11:37:50 +00:00
|
|
|
static void
|
|
|
|
ahci_check_stopped(struct ahci_port *p)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If we are no longer processing the command list and nothing
|
2014-11-03 12:55:31 +00:00
|
|
|
* is in-flight, clear the running bit, the current command
|
|
|
|
* slot, the command issue and active bits.
|
2014-10-17 11:37:50 +00:00
|
|
|
*/
|
|
|
|
if (!(p->cmd & AHCI_P_CMD_ST)) {
|
2014-11-03 12:55:31 +00:00
|
|
|
if (p->pending == 0) {
|
2015-05-04 19:55:01 +00:00
|
|
|
p->ccs = 0;
|
2014-10-17 11:37:50 +00:00
|
|
|
p->cmd &= ~(AHCI_P_CMD_CR | AHCI_P_CMD_CCS_MASK);
|
2014-11-03 12:55:31 +00:00
|
|
|
p->ci = 0;
|
|
|
|
p->sact = 0;
|
2015-05-06 09:59:19 +00:00
|
|
|
p->waitforclear = 0;
|
2014-11-03 12:55:31 +00:00
|
|
|
}
|
2014-10-17 11:37:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_port_stop(struct ahci_port *p)
|
|
|
|
{
|
|
|
|
struct ahci_ioreq *aior;
|
|
|
|
uint8_t *cfis;
|
|
|
|
int slot;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
assert(pthread_mutex_isowned_np(&p->pr_sc->mtx));
|
|
|
|
|
|
|
|
TAILQ_FOREACH(aior, &p->iobhd, io_blist) {
|
|
|
|
/*
|
|
|
|
* Try to cancel the outstanding blockif request.
|
|
|
|
*/
|
|
|
|
error = blockif_cancel(p->bctx, &aior->io_req);
|
|
|
|
if (error != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
slot = aior->slot;
|
|
|
|
cfis = aior->cfis;
|
|
|
|
if (cfis[2] == ATA_WRITE_FPDMA_QUEUED ||
|
2015-05-02 14:43:37 +00:00
|
|
|
cfis[2] == ATA_READ_FPDMA_QUEUED ||
|
|
|
|
cfis[2] == ATA_SEND_FPDMA_QUEUED)
|
2016-04-05 19:30:19 +00:00
|
|
|
p->sact &= ~(1 << slot); /* NCQ */
|
2014-10-17 11:37:50 +00:00
|
|
|
else
|
|
|
|
p->ci &= ~(1 << slot);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This command is now done.
|
|
|
|
*/
|
|
|
|
p->pending &= ~(1 << slot);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Delete the blockif request from the busy list
|
|
|
|
*/
|
|
|
|
TAILQ_REMOVE(&p->iobhd, aior, io_blist);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Move the blockif request back to the free list
|
|
|
|
*/
|
|
|
|
STAILQ_INSERT_TAIL(&p->iofhd, aior, io_flist);
|
|
|
|
}
|
|
|
|
|
|
|
|
ahci_check_stopped(p);
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
static void
|
|
|
|
ahci_port_reset(struct ahci_port *pr)
|
|
|
|
{
|
|
|
|
pr->serr = 0;
|
|
|
|
pr->sact = 0;
|
|
|
|
pr->xfermode = ATA_UDMA6;
|
|
|
|
pr->mult_sectors = 128;
|
|
|
|
|
|
|
|
if (!pr->bctx) {
|
|
|
|
pr->ssts = ATA_SS_DET_NO_DEVICE;
|
|
|
|
pr->sig = 0xFFFFFFFF;
|
|
|
|
pr->tfd = 0x7F;
|
|
|
|
return;
|
|
|
|
}
|
2015-03-13 20:14:35 +00:00
|
|
|
pr->ssts = ATA_SS_DET_PHY_ONLINE | ATA_SS_IPM_ACTIVE;
|
|
|
|
if (pr->sctl & ATA_SC_SPD_MASK)
|
|
|
|
pr->ssts |= (pr->sctl & ATA_SC_SPD_MASK);
|
|
|
|
else
|
|
|
|
pr->ssts |= ATA_SS_SPD_GEN3;
|
2013-10-04 18:31:38 +00:00
|
|
|
pr->tfd = (1 << 8) | ATA_S_DSC | ATA_S_DMA;
|
|
|
|
if (!pr->atapi) {
|
|
|
|
pr->sig = PxSIG_ATA;
|
|
|
|
pr->tfd |= ATA_S_READY;
|
|
|
|
} else
|
|
|
|
pr->sig = PxSIG_ATAPI;
|
|
|
|
ahci_write_reset_fis_d2h(pr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_reset(struct pci_ahci_softc *sc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
sc->ghc = AHCI_GHC_AE;
|
|
|
|
sc->is = 0;
|
2014-04-28 18:41:25 +00:00
|
|
|
|
|
|
|
if (sc->lintr) {
|
|
|
|
pci_lintr_deassert(sc->asc_pi);
|
|
|
|
sc->lintr = 0;
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
for (i = 0; i < sc->ports; i++) {
|
|
|
|
sc->port[i].ie = 0;
|
|
|
|
sc->port[i].is = 0;
|
2015-05-02 16:11:29 +00:00
|
|
|
sc->port[i].cmd = (AHCI_P_CMD_SUD | AHCI_P_CMD_POD);
|
|
|
|
if (sc->port[i].bctx)
|
|
|
|
sc->port[i].cmd |= AHCI_P_CMD_CPS;
|
2015-03-13 20:14:35 +00:00
|
|
|
sc->port[i].sctl = 0;
|
2013-10-04 18:31:38 +00:00
|
|
|
ahci_port_reset(&sc->port[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ata_string(uint8_t *dest, const char *src, int len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
if (*src)
|
|
|
|
dest[i ^ 1] = *src++;
|
|
|
|
else
|
|
|
|
dest[i ^ 1] = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_string(uint8_t *dest, const char *src, int len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
if (*src)
|
|
|
|
dest[i] = *src++;
|
|
|
|
else
|
|
|
|
dest[i] = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
/*
|
|
|
|
* Build up the iovec based on the PRDT, 'done' and 'len'.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
ahci_build_iov(struct ahci_port *p, struct ahci_ioreq *aior,
|
|
|
|
struct ahci_prdt_entry *prdt, uint16_t prdtl)
|
|
|
|
{
|
|
|
|
struct blockif_req *breq = &aior->io_req;
|
|
|
|
int i, j, skip, todo, left, extra;
|
|
|
|
uint32_t dbcsz;
|
|
|
|
|
|
|
|
/* Copy part of PRDT between 'done' and 'len' bytes into the iov. */
|
|
|
|
skip = aior->done;
|
|
|
|
left = aior->len - aior->done;
|
|
|
|
todo = 0;
|
|
|
|
for (i = 0, j = 0; i < prdtl && j < BLOCKIF_IOV_MAX && left > 0;
|
|
|
|
i++, prdt++) {
|
|
|
|
dbcsz = (prdt->dbc & DBCMASK) + 1;
|
|
|
|
/* Skip already done part of the PRDT */
|
|
|
|
if (dbcsz <= skip) {
|
|
|
|
skip -= dbcsz;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
dbcsz -= skip;
|
|
|
|
if (dbcsz > left)
|
|
|
|
dbcsz = left;
|
|
|
|
breq->br_iov[j].iov_base = paddr_guest2host(ahci_ctx(p->pr_sc),
|
|
|
|
prdt->dba + skip, dbcsz);
|
|
|
|
breq->br_iov[j].iov_len = dbcsz;
|
|
|
|
todo += dbcsz;
|
|
|
|
left -= dbcsz;
|
|
|
|
skip = 0;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we got limited by IOV length, round I/O down to sector size. */
|
|
|
|
if (j == BLOCKIF_IOV_MAX) {
|
|
|
|
extra = todo % blockif_sectsz(p->bctx);
|
|
|
|
todo -= extra;
|
|
|
|
assert(todo > 0);
|
|
|
|
while (extra > 0) {
|
|
|
|
if (breq->br_iov[j - 1].iov_len > extra) {
|
|
|
|
breq->br_iov[j - 1].iov_len -= extra;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra -= breq->br_iov[j - 1].iov_len;
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
breq->br_iovcnt = j;
|
2015-04-18 20:10:19 +00:00
|
|
|
breq->br_resid = todo;
|
2015-04-17 20:20:55 +00:00
|
|
|
aior->done += todo;
|
|
|
|
aior->more = (aior->done < aior->len && i < prdtl);
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
static void
|
2015-04-17 20:20:55 +00:00
|
|
|
ahci_handle_rw(struct ahci_port *p, int slot, uint8_t *cfis, uint32_t done)
|
2013-10-04 18:31:38 +00:00
|
|
|
{
|
|
|
|
struct ahci_ioreq *aior;
|
|
|
|
struct blockif_req *breq;
|
|
|
|
struct ahci_prdt_entry *prdt;
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
|
|
|
uint64_t lba;
|
|
|
|
uint32_t len;
|
2015-05-03 07:43:58 +00:00
|
|
|
int err, first, ncq, readop;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
prdt = (struct ahci_prdt_entry *)(cfis + 0x80);
|
2013-10-08 19:39:21 +00:00
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + slot * AHCI_CL_SIZE);
|
2013-10-04 18:31:38 +00:00
|
|
|
ncq = 0;
|
|
|
|
readop = 1;
|
2015-05-03 07:43:58 +00:00
|
|
|
first = (done == 0);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2015-03-13 18:35:38 +00:00
|
|
|
if (cfis[2] == ATA_WRITE || cfis[2] == ATA_WRITE48 ||
|
|
|
|
cfis[2] == ATA_WRITE_MUL || cfis[2] == ATA_WRITE_MUL48 ||
|
|
|
|
cfis[2] == ATA_WRITE_DMA || cfis[2] == ATA_WRITE_DMA48 ||
|
|
|
|
cfis[2] == ATA_WRITE_FPDMA_QUEUED)
|
2013-10-04 18:31:38 +00:00
|
|
|
readop = 0;
|
|
|
|
|
|
|
|
if (cfis[2] == ATA_WRITE_FPDMA_QUEUED ||
|
2015-03-13 18:35:38 +00:00
|
|
|
cfis[2] == ATA_READ_FPDMA_QUEUED) {
|
2013-10-04 18:31:38 +00:00
|
|
|
lba = ((uint64_t)cfis[10] << 40) |
|
|
|
|
((uint64_t)cfis[9] << 32) |
|
|
|
|
((uint64_t)cfis[8] << 24) |
|
|
|
|
((uint64_t)cfis[6] << 16) |
|
|
|
|
((uint64_t)cfis[5] << 8) |
|
|
|
|
cfis[4];
|
|
|
|
len = cfis[11] << 8 | cfis[3];
|
|
|
|
if (!len)
|
|
|
|
len = 65536;
|
|
|
|
ncq = 1;
|
2015-03-13 18:35:38 +00:00
|
|
|
} else if (cfis[2] == ATA_READ48 || cfis[2] == ATA_WRITE48 ||
|
|
|
|
cfis[2] == ATA_READ_MUL48 || cfis[2] == ATA_WRITE_MUL48 ||
|
|
|
|
cfis[2] == ATA_READ_DMA48 || cfis[2] == ATA_WRITE_DMA48) {
|
2013-10-04 18:31:38 +00:00
|
|
|
lba = ((uint64_t)cfis[10] << 40) |
|
|
|
|
((uint64_t)cfis[9] << 32) |
|
|
|
|
((uint64_t)cfis[8] << 24) |
|
|
|
|
((uint64_t)cfis[6] << 16) |
|
|
|
|
((uint64_t)cfis[5] << 8) |
|
|
|
|
cfis[4];
|
|
|
|
len = cfis[13] << 8 | cfis[12];
|
|
|
|
if (!len)
|
|
|
|
len = 65536;
|
|
|
|
} else {
|
|
|
|
lba = ((cfis[7] & 0xf) << 24) | (cfis[6] << 16) |
|
|
|
|
(cfis[5] << 8) | cfis[4];
|
|
|
|
len = cfis[12];
|
|
|
|
if (!len)
|
|
|
|
len = 256;
|
|
|
|
}
|
|
|
|
lba *= blockif_sectsz(p->bctx);
|
|
|
|
len *= blockif_sectsz(p->bctx);
|
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
/* Pull request off free list */
|
2013-10-04 18:31:38 +00:00
|
|
|
aior = STAILQ_FIRST(&p->iofhd);
|
|
|
|
assert(aior != NULL);
|
2014-10-17 11:37:50 +00:00
|
|
|
STAILQ_REMOVE_HEAD(&p->iofhd, io_flist);
|
2015-04-17 20:20:55 +00:00
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
aior->cfis = cfis;
|
|
|
|
aior->slot = slot;
|
|
|
|
aior->len = len;
|
|
|
|
aior->done = done;
|
|
|
|
breq = &aior->io_req;
|
|
|
|
breq->br_offset = lba + done;
|
2015-04-17 20:20:55 +00:00
|
|
|
ahci_build_iov(p, aior, prdt, hdr->prdtl);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
/* Mark this command in-flight. */
|
2014-10-17 11:37:50 +00:00
|
|
|
p->pending |= 1 << slot;
|
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
/* Stuff request onto busy list. */
|
2014-10-17 11:37:50 +00:00
|
|
|
TAILQ_INSERT_HEAD(&p->iobhd, aior, io_blist);
|
|
|
|
|
2015-05-03 07:43:58 +00:00
|
|
|
if (ncq && first)
|
|
|
|
ahci_write_fis_d2h_ncq(p, slot);
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
if (readop)
|
|
|
|
err = blockif_read(p->bctx, breq);
|
|
|
|
else
|
|
|
|
err = blockif_write(p->bctx, breq);
|
|
|
|
assert(err == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_handle_flush(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
struct ahci_ioreq *aior;
|
|
|
|
struct blockif_req *breq;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pull request off free list
|
|
|
|
*/
|
|
|
|
aior = STAILQ_FIRST(&p->iofhd);
|
|
|
|
assert(aior != NULL);
|
2014-10-17 11:37:50 +00:00
|
|
|
STAILQ_REMOVE_HEAD(&p->iofhd, io_flist);
|
2013-10-04 18:31:38 +00:00
|
|
|
aior->cfis = cfis;
|
|
|
|
aior->slot = slot;
|
|
|
|
aior->len = 0;
|
2014-01-22 01:57:52 +00:00
|
|
|
aior->done = 0;
|
2015-04-17 20:20:55 +00:00
|
|
|
aior->more = 0;
|
2013-10-04 18:31:38 +00:00
|
|
|
breq = &aior->io_req;
|
|
|
|
|
2014-10-17 11:37:50 +00:00
|
|
|
/*
|
|
|
|
* Mark this command in-flight.
|
|
|
|
*/
|
|
|
|
p->pending |= 1 << slot;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stuff request onto busy list
|
|
|
|
*/
|
|
|
|
TAILQ_INSERT_HEAD(&p->iobhd, aior, io_blist);
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
err = blockif_flush(p->bctx, breq);
|
|
|
|
assert(err == 0);
|
|
|
|
}
|
|
|
|
|
2015-03-13 16:43:52 +00:00
|
|
|
static inline void
|
|
|
|
read_prdt(struct ahci_port *p, int slot, uint8_t *cfis,
|
|
|
|
void *buf, int size)
|
|
|
|
{
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
|
|
|
struct ahci_prdt_entry *prdt;
|
|
|
|
void *to;
|
|
|
|
int i, len;
|
|
|
|
|
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + slot * AHCI_CL_SIZE);
|
|
|
|
len = size;
|
|
|
|
to = buf;
|
|
|
|
prdt = (struct ahci_prdt_entry *)(cfis + 0x80);
|
|
|
|
for (i = 0; i < hdr->prdtl && len; i++) {
|
|
|
|
uint8_t *ptr;
|
|
|
|
uint32_t dbcsz;
|
|
|
|
int sublen;
|
|
|
|
|
|
|
|
dbcsz = (prdt->dbc & DBCMASK) + 1;
|
|
|
|
ptr = paddr_guest2host(ahci_ctx(p->pr_sc), prdt->dba, dbcsz);
|
2016-04-22 06:25:32 +00:00
|
|
|
sublen = MIN(len, dbcsz);
|
2015-03-13 16:43:52 +00:00
|
|
|
memcpy(to, ptr, sublen);
|
|
|
|
len -= sublen;
|
|
|
|
to += sublen;
|
|
|
|
prdt++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_handle_dsm_trim(struct ahci_port *p, int slot, uint8_t *cfis, uint32_t done)
|
|
|
|
{
|
|
|
|
struct ahci_ioreq *aior;
|
|
|
|
struct blockif_req *breq;
|
|
|
|
uint8_t *entry;
|
|
|
|
uint64_t elba;
|
|
|
|
uint32_t len, elen;
|
2015-05-03 07:43:58 +00:00
|
|
|
int err, first, ncq;
|
2015-03-13 16:43:52 +00:00
|
|
|
uint8_t buf[512];
|
|
|
|
|
2015-05-03 07:43:58 +00:00
|
|
|
first = (done == 0);
|
2015-03-14 09:46:43 +00:00
|
|
|
if (cfis[2] == ATA_DATA_SET_MANAGEMENT) {
|
|
|
|
len = (uint16_t)cfis[13] << 8 | cfis[12];
|
|
|
|
len *= 512;
|
2015-05-03 07:43:58 +00:00
|
|
|
ncq = 0;
|
2015-03-14 09:46:43 +00:00
|
|
|
} else { /* ATA_SEND_FPDMA_QUEUED */
|
|
|
|
len = (uint16_t)cfis[11] << 8 | cfis[3];
|
|
|
|
len *= 512;
|
2015-05-03 07:43:58 +00:00
|
|
|
ncq = 1;
|
2015-03-14 09:46:43 +00:00
|
|
|
}
|
2015-03-13 16:43:52 +00:00
|
|
|
read_prdt(p, slot, cfis, buf, sizeof(buf));
|
|
|
|
|
|
|
|
next:
|
|
|
|
entry = &buf[done];
|
|
|
|
elba = ((uint64_t)entry[5] << 40) |
|
|
|
|
((uint64_t)entry[4] << 32) |
|
|
|
|
((uint64_t)entry[3] << 24) |
|
|
|
|
((uint64_t)entry[2] << 16) |
|
|
|
|
((uint64_t)entry[1] << 8) |
|
|
|
|
entry[0];
|
|
|
|
elen = (uint16_t)entry[7] << 8 | entry[6];
|
|
|
|
done += 8;
|
|
|
|
if (elen == 0) {
|
|
|
|
if (done >= len) {
|
2016-07-17 14:13:47 +00:00
|
|
|
if (ncq) {
|
|
|
|
if (first)
|
|
|
|
ahci_write_fis_d2h_ncq(p, slot);
|
|
|
|
ahci_write_fis_sdb(p, slot, cfis,
|
|
|
|
ATA_S_READY | ATA_S_DSC);
|
|
|
|
} else {
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
ATA_S_READY | ATA_S_DSC);
|
|
|
|
}
|
2015-03-13 16:43:52 +00:00
|
|
|
p->pending &= ~(1 << slot);
|
|
|
|
ahci_check_stopped(p);
|
2015-05-04 19:55:01 +00:00
|
|
|
if (!first)
|
|
|
|
ahci_handle_port(p);
|
2015-03-13 16:43:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pull request off free list
|
|
|
|
*/
|
|
|
|
aior = STAILQ_FIRST(&p->iofhd);
|
|
|
|
assert(aior != NULL);
|
|
|
|
STAILQ_REMOVE_HEAD(&p->iofhd, io_flist);
|
|
|
|
aior->cfis = cfis;
|
|
|
|
aior->slot = slot;
|
|
|
|
aior->len = len;
|
|
|
|
aior->done = done;
|
2015-04-17 20:20:55 +00:00
|
|
|
aior->more = (len != done);
|
2015-03-13 16:43:52 +00:00
|
|
|
|
|
|
|
breq = &aior->io_req;
|
|
|
|
breq->br_offset = elba * blockif_sectsz(p->bctx);
|
2015-04-18 20:10:19 +00:00
|
|
|
breq->br_resid = elen * blockif_sectsz(p->bctx);
|
2015-03-13 16:43:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mark this command in-flight.
|
|
|
|
*/
|
|
|
|
p->pending |= 1 << slot;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stuff request onto busy list
|
|
|
|
*/
|
|
|
|
TAILQ_INSERT_HEAD(&p->iobhd, aior, io_blist);
|
|
|
|
|
2015-05-03 07:43:58 +00:00
|
|
|
if (ncq && first)
|
|
|
|
ahci_write_fis_d2h_ncq(p, slot);
|
|
|
|
|
2015-03-13 16:43:52 +00:00
|
|
|
err = blockif_delete(p->bctx, breq);
|
|
|
|
assert(err == 0);
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
static inline void
|
|
|
|
write_prdt(struct ahci_port *p, int slot, uint8_t *cfis,
|
|
|
|
void *buf, int size)
|
|
|
|
{
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
|
|
|
struct ahci_prdt_entry *prdt;
|
|
|
|
void *from;
|
|
|
|
int i, len;
|
|
|
|
|
2013-10-08 19:39:21 +00:00
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + slot * AHCI_CL_SIZE);
|
2013-10-04 18:31:38 +00:00
|
|
|
len = size;
|
|
|
|
from = buf;
|
|
|
|
prdt = (struct ahci_prdt_entry *)(cfis + 0x80);
|
|
|
|
for (i = 0; i < hdr->prdtl && len; i++) {
|
2013-11-26 03:00:54 +00:00
|
|
|
uint8_t *ptr;
|
|
|
|
uint32_t dbcsz;
|
2014-04-09 14:50:55 +00:00
|
|
|
int sublen;
|
2013-11-26 03:00:54 +00:00
|
|
|
|
|
|
|
dbcsz = (prdt->dbc & DBCMASK) + 1;
|
|
|
|
ptr = paddr_guest2host(ahci_ctx(p->pr_sc), prdt->dba, dbcsz);
|
2016-04-22 06:25:32 +00:00
|
|
|
sublen = MIN(len, dbcsz);
|
2014-04-09 14:50:55 +00:00
|
|
|
memcpy(ptr, from, sublen);
|
|
|
|
len -= sublen;
|
|
|
|
from += sublen;
|
2013-10-04 18:31:38 +00:00
|
|
|
prdt++;
|
|
|
|
}
|
|
|
|
hdr->prdbc = size - len;
|
|
|
|
}
|
|
|
|
|
2015-03-14 14:06:37 +00:00
|
|
|
static void
|
|
|
|
ahci_checksum(uint8_t *buf, int size)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
uint8_t sum = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < size - 1; i++)
|
|
|
|
sum += buf[i];
|
|
|
|
buf[size - 1] = 0x100 - sum;
|
|
|
|
}
|
|
|
|
|
2015-03-14 08:45:54 +00:00
|
|
|
static void
|
|
|
|
ahci_handle_read_log(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
|
|
|
uint8_t buf[512];
|
|
|
|
|
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + slot * AHCI_CL_SIZE);
|
|
|
|
if (p->atapi || hdr->prdtl == 0 || cfis[4] != 0x10 ||
|
|
|
|
cfis[5] != 0 || cfis[9] != 0 || cfis[12] != 1 || cfis[13] != 0) {
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
memcpy(buf, p->err_cfis, sizeof(p->err_cfis));
|
2015-03-14 14:06:37 +00:00
|
|
|
ahci_checksum(buf, sizeof(buf));
|
2015-03-14 08:45:54 +00:00
|
|
|
|
|
|
|
if (cfis[2] == ATA_READ_LOG_EXT)
|
|
|
|
ahci_write_fis_piosetup(p);
|
|
|
|
write_prdt(p, slot, cfis, (void *)buf, sizeof(buf));
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_DSC | ATA_S_READY);
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
static void
|
|
|
|
handle_identify(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
|
|
|
|
2013-10-08 19:39:21 +00:00
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + slot * AHCI_CL_SIZE);
|
2013-10-04 18:31:38 +00:00
|
|
|
if (p->atapi || hdr->prdtl == 0) {
|
2015-03-13 18:04:07 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
|
2013-10-04 18:31:38 +00:00
|
|
|
} else {
|
|
|
|
uint16_t buf[256];
|
|
|
|
uint64_t sectors;
|
2015-03-15 08:09:56 +00:00
|
|
|
int sectsz, psectsz, psectoff, candelete, ro;
|
2014-07-15 00:27:08 +00:00
|
|
|
uint16_t cyl;
|
|
|
|
uint8_t sech, heads;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2015-03-15 08:09:56 +00:00
|
|
|
ro = blockif_is_ro(p->bctx);
|
2015-03-13 16:43:52 +00:00
|
|
|
candelete = blockif_candelete(p->bctx);
|
2015-03-05 12:21:12 +00:00
|
|
|
sectsz = blockif_sectsz(p->bctx);
|
|
|
|
sectors = blockif_size(p->bctx) / sectsz;
|
2014-07-15 00:27:08 +00:00
|
|
|
blockif_chs(p->bctx, &cyl, &heads, &sech);
|
2015-03-05 12:21:12 +00:00
|
|
|
blockif_psectsz(p->bctx, &psectsz, &psectoff);
|
2013-10-04 18:31:38 +00:00
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
buf[0] = 0x0040;
|
2014-07-15 00:27:08 +00:00
|
|
|
buf[1] = cyl;
|
|
|
|
buf[3] = heads;
|
|
|
|
buf[6] = sech;
|
2015-03-15 15:29:03 +00:00
|
|
|
ata_string((uint8_t *)(buf+10), p->ident, 20);
|
2013-10-04 18:31:38 +00:00
|
|
|
ata_string((uint8_t *)(buf+23), "001", 8);
|
|
|
|
ata_string((uint8_t *)(buf+27), "BHYVE SATA DISK", 40);
|
|
|
|
buf[47] = (0x8000 | 128);
|
2015-10-05 14:57:45 +00:00
|
|
|
buf[48] = 0;
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[49] = (1 << 8 | 1 << 9 | 1 << 11);
|
|
|
|
buf[50] = (1 << 14);
|
|
|
|
buf[53] = (1 << 1 | 1 << 2);
|
|
|
|
if (p->mult_sectors)
|
|
|
|
buf[59] = (0x100 | p->mult_sectors);
|
2015-03-13 20:14:35 +00:00
|
|
|
if (sectors <= 0x0fffffff) {
|
|
|
|
buf[60] = sectors;
|
|
|
|
buf[61] = (sectors >> 16);
|
|
|
|
} else {
|
|
|
|
buf[60] = 0xffff;
|
|
|
|
buf[61] = 0x0fff;
|
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[63] = 0x7;
|
|
|
|
if (p->xfermode & ATA_WDMA0)
|
|
|
|
buf[63] |= (1 << ((p->xfermode & 7) + 8));
|
|
|
|
buf[64] = 0x3;
|
2015-03-13 20:14:35 +00:00
|
|
|
buf[65] = 120;
|
|
|
|
buf[66] = 120;
|
|
|
|
buf[67] = 120;
|
|
|
|
buf[68] = 120;
|
2015-03-13 16:43:52 +00:00
|
|
|
buf[69] = 0;
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[75] = 31;
|
2015-03-13 20:14:35 +00:00
|
|
|
buf[76] = (ATA_SATA_GEN1 | ATA_SATA_GEN2 | ATA_SATA_GEN3 |
|
|
|
|
ATA_SUPPORT_NCQ);
|
2015-03-14 09:46:43 +00:00
|
|
|
buf[77] = (ATA_SUPPORT_RCVSND_FPDMA_QUEUED |
|
|
|
|
(p->ssts & ATA_SS_SPD_MASK) >> 3);
|
2015-03-14 12:18:26 +00:00
|
|
|
buf[80] = 0x3f0;
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[81] = 0x28;
|
2015-03-13 20:14:35 +00:00
|
|
|
buf[82] = (ATA_SUPPORT_POWERMGT | ATA_SUPPORT_WRITECACHE|
|
|
|
|
ATA_SUPPORT_LOOKAHEAD | ATA_SUPPORT_NOP);
|
|
|
|
buf[83] = (ATA_SUPPORT_ADDRESS48 | ATA_SUPPORT_FLUSHCACHE |
|
|
|
|
ATA_SUPPORT_FLUSHCACHE48 | 1 << 14);
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[84] = (1 << 14);
|
2015-03-13 20:14:35 +00:00
|
|
|
buf[85] = (ATA_SUPPORT_POWERMGT | ATA_SUPPORT_WRITECACHE|
|
|
|
|
ATA_SUPPORT_LOOKAHEAD | ATA_SUPPORT_NOP);
|
|
|
|
buf[86] = (ATA_SUPPORT_ADDRESS48 | ATA_SUPPORT_FLUSHCACHE |
|
2015-03-14 08:45:54 +00:00
|
|
|
ATA_SUPPORT_FLUSHCACHE48 | 1 << 15);
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[87] = (1 << 14);
|
|
|
|
buf[88] = 0x7f;
|
|
|
|
if (p->xfermode & ATA_UDMA0)
|
|
|
|
buf[88] |= (1 << ((p->xfermode & 7) + 8));
|
|
|
|
buf[100] = sectors;
|
|
|
|
buf[101] = (sectors >> 16);
|
|
|
|
buf[102] = (sectors >> 32);
|
|
|
|
buf[103] = (sectors >> 48);
|
2015-03-15 08:09:56 +00:00
|
|
|
if (candelete && !ro) {
|
2015-03-13 16:43:52 +00:00
|
|
|
buf[69] |= ATA_SUPPORT_RZAT | ATA_SUPPORT_DRAT;
|
|
|
|
buf[105] = 1;
|
|
|
|
buf[169] = ATA_SUPPORT_DSM_TRIM;
|
|
|
|
}
|
2015-03-05 12:21:12 +00:00
|
|
|
buf[106] = 0x4000;
|
|
|
|
buf[209] = 0x4000;
|
|
|
|
if (psectsz > sectsz) {
|
|
|
|
buf[106] |= 0x2000;
|
|
|
|
buf[106] |= ffsl(psectsz / sectsz) - 1;
|
|
|
|
buf[209] |= (psectoff / sectsz);
|
|
|
|
}
|
|
|
|
if (sectsz > 512) {
|
|
|
|
buf[106] |= 0x1000;
|
|
|
|
buf[117] = sectsz / 2;
|
|
|
|
buf[118] = ((sectsz / 2) >> 16);
|
|
|
|
}
|
2015-03-14 08:45:54 +00:00
|
|
|
buf[119] = (ATA_SUPPORT_RWLOGDMAEXT | 1 << 14);
|
|
|
|
buf[120] = (ATA_SUPPORT_RWLOGDMAEXT | 1 << 14);
|
2015-03-13 20:14:35 +00:00
|
|
|
buf[222] = 0x1020;
|
2015-03-14 14:06:37 +00:00
|
|
|
buf[255] = 0x00a5;
|
|
|
|
ahci_checksum((uint8_t *)buf, sizeof(buf));
|
2014-02-12 00:32:14 +00:00
|
|
|
ahci_write_fis_piosetup(p);
|
2013-10-04 18:31:38 +00:00
|
|
|
write_prdt(p, slot, cfis, (void *)buf, sizeof(buf));
|
2015-03-13 18:04:07 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_DSC | ATA_S_READY);
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_atapi_identify(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
if (!p->atapi) {
|
2015-03-13 18:04:07 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
|
2013-10-04 18:31:38 +00:00
|
|
|
} else {
|
|
|
|
uint16_t buf[256];
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
buf[0] = (2 << 14 | 5 << 8 | 1 << 7 | 2 << 5);
|
2015-03-15 15:29:03 +00:00
|
|
|
ata_string((uint8_t *)(buf+10), p->ident, 20);
|
2013-10-04 18:31:38 +00:00
|
|
|
ata_string((uint8_t *)(buf+23), "001", 8);
|
|
|
|
ata_string((uint8_t *)(buf+27), "BHYVE SATA DVD ROM", 40);
|
|
|
|
buf[49] = (1 << 9 | 1 << 8);
|
|
|
|
buf[50] = (1 << 14 | 1);
|
|
|
|
buf[53] = (1 << 2 | 1 << 1);
|
|
|
|
buf[62] = 0x3f;
|
|
|
|
buf[63] = 7;
|
2015-03-14 12:18:26 +00:00
|
|
|
if (p->xfermode & ATA_WDMA0)
|
|
|
|
buf[63] |= (1 << ((p->xfermode & 7) + 8));
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[64] = 3;
|
2015-03-14 12:18:26 +00:00
|
|
|
buf[65] = 120;
|
|
|
|
buf[66] = 120;
|
|
|
|
buf[67] = 120;
|
|
|
|
buf[68] = 120;
|
|
|
|
buf[76] = (ATA_SATA_GEN1 | ATA_SATA_GEN2 | ATA_SATA_GEN3);
|
|
|
|
buf[77] = ((p->ssts & ATA_SS_SPD_MASK) >> 3);
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[78] = (1 << 5);
|
2015-03-14 12:18:26 +00:00
|
|
|
buf[80] = 0x3f0;
|
|
|
|
buf[82] = (ATA_SUPPORT_POWERMGT | ATA_SUPPORT_PACKET |
|
|
|
|
ATA_SUPPORT_RESET | ATA_SUPPORT_NOP);
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[83] = (1 << 14);
|
|
|
|
buf[84] = (1 << 14);
|
2015-03-14 12:18:26 +00:00
|
|
|
buf[85] = (ATA_SUPPORT_POWERMGT | ATA_SUPPORT_PACKET |
|
|
|
|
ATA_SUPPORT_RESET | ATA_SUPPORT_NOP);
|
2013-10-04 18:31:38 +00:00
|
|
|
buf[87] = (1 << 14);
|
2015-03-14 12:18:26 +00:00
|
|
|
buf[88] = 0x7f;
|
|
|
|
if (p->xfermode & ATA_UDMA0)
|
|
|
|
buf[88] |= (1 << ((p->xfermode & 7) + 8));
|
|
|
|
buf[222] = 0x1020;
|
2015-03-14 14:06:37 +00:00
|
|
|
buf[255] = 0x00a5;
|
|
|
|
ahci_checksum((uint8_t *)buf, sizeof(buf));
|
2014-02-12 00:32:14 +00:00
|
|
|
ahci_write_fis_piosetup(p);
|
2013-10-04 18:31:38 +00:00
|
|
|
write_prdt(p, slot, cfis, (void *)buf, sizeof(buf));
|
2015-03-13 18:04:07 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_DSC | ATA_S_READY);
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_inquiry(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t buf[36];
|
|
|
|
uint8_t *acmd;
|
|
|
|
int len;
|
2015-03-14 12:18:26 +00:00
|
|
|
uint32_t tfd;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
acmd = cfis + 0x40;
|
|
|
|
|
2015-03-14 12:18:26 +00:00
|
|
|
if (acmd[1] & 1) { /* VPD */
|
|
|
|
if (acmd[2] == 0) { /* Supported VPD pages */
|
|
|
|
buf[0] = 0x05;
|
|
|
|
buf[1] = 0;
|
|
|
|
buf[2] = 0;
|
|
|
|
buf[3] = 1;
|
|
|
|
buf[4] = 0;
|
|
|
|
len = 4 + buf[3];
|
|
|
|
} else {
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x24;
|
|
|
|
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, tfd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
buf[0] = 0x05;
|
|
|
|
buf[1] = 0x80;
|
|
|
|
buf[2] = 0x00;
|
|
|
|
buf[3] = 0x21;
|
|
|
|
buf[4] = 31;
|
|
|
|
buf[5] = 0;
|
|
|
|
buf[6] = 0;
|
|
|
|
buf[7] = 0;
|
|
|
|
atapi_string(buf + 8, "BHYVE", 8);
|
|
|
|
atapi_string(buf + 16, "BHYVE DVD-ROM", 16);
|
|
|
|
atapi_string(buf + 32, "001", 4);
|
|
|
|
len = sizeof(buf);
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
if (len > acmd[4])
|
|
|
|
len = acmd[4];
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
write_prdt(p, slot, cfis, buf, len);
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_read_capacity(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t buf[8];
|
|
|
|
uint64_t sectors;
|
|
|
|
|
2013-10-22 19:55:04 +00:00
|
|
|
sectors = blockif_size(p->bctx) / 2048;
|
2013-10-04 18:31:38 +00:00
|
|
|
be32enc(buf, sectors - 1);
|
|
|
|
be32enc(buf + 4, 2048);
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
write_prdt(p, slot, cfis, buf, sizeof(buf));
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_read_toc(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t *acmd;
|
|
|
|
uint8_t format;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
acmd = cfis + 0x40;
|
|
|
|
|
|
|
|
len = be16dec(acmd + 7);
|
|
|
|
format = acmd[9] >> 6;
|
|
|
|
switch (format) {
|
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
int msf, size;
|
|
|
|
uint64_t sectors;
|
|
|
|
uint8_t start_track, buf[20], *bp;
|
|
|
|
|
|
|
|
msf = (acmd[1] >> 1) & 1;
|
|
|
|
start_track = acmd[6];
|
|
|
|
if (start_track > 1 && start_track != 0xaa) {
|
|
|
|
uint32_t tfd;
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x24;
|
|
|
|
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, tfd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bp = buf + 2;
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 1;
|
|
|
|
if (start_track <= 1) {
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0x14;
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 0;
|
|
|
|
if (msf) {
|
|
|
|
*bp++ = 0;
|
|
|
|
lba_to_msf(bp, 0);
|
|
|
|
bp += 3;
|
|
|
|
} else {
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0x14;
|
|
|
|
*bp++ = 0xaa;
|
|
|
|
*bp++ = 0;
|
|
|
|
sectors = blockif_size(p->bctx) / blockif_sectsz(p->bctx);
|
|
|
|
sectors >>= 2;
|
|
|
|
if (msf) {
|
|
|
|
*bp++ = 0;
|
|
|
|
lba_to_msf(bp, sectors);
|
|
|
|
bp += 3;
|
|
|
|
} else {
|
|
|
|
be32enc(bp, sectors);
|
|
|
|
bp += 4;
|
|
|
|
}
|
|
|
|
size = bp - buf;
|
|
|
|
be16enc(buf, size - 2);
|
|
|
|
if (len > size)
|
|
|
|
len = size;
|
|
|
|
write_prdt(p, slot, cfis, buf, len);
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
uint8_t buf[12];
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
buf[1] = 0xa;
|
|
|
|
buf[2] = 0x1;
|
|
|
|
buf[3] = 0x1;
|
|
|
|
if (len > sizeof(buf))
|
|
|
|
len = sizeof(buf);
|
|
|
|
write_prdt(p, slot, cfis, buf, len);
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
int msf, size;
|
|
|
|
uint64_t sectors;
|
2016-01-26 07:17:21 +00:00
|
|
|
uint8_t *bp, buf[50];
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
msf = (acmd[1] >> 1) & 1;
|
|
|
|
bp = buf + 2;
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 1;
|
|
|
|
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 0x14;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0xa0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 0x14;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0xa1;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 0x14;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0xa2;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
sectors = blockif_size(p->bctx) / blockif_sectsz(p->bctx);
|
|
|
|
sectors >>= 2;
|
|
|
|
if (msf) {
|
|
|
|
*bp++ = 0;
|
|
|
|
lba_to_msf(bp, sectors);
|
|
|
|
bp += 3;
|
|
|
|
} else {
|
|
|
|
be32enc(bp, sectors);
|
|
|
|
bp += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 0x14;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 1;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
if (msf) {
|
|
|
|
*bp++ = 0;
|
|
|
|
lba_to_msf(bp, 0);
|
|
|
|
bp += 3;
|
|
|
|
} else {
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
*bp++ = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = bp - buf;
|
|
|
|
be16enc(buf, size - 2);
|
|
|
|
if (len > size)
|
|
|
|
len = size;
|
|
|
|
write_prdt(p, slot, cfis, buf, len);
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
uint32_t tfd;
|
|
|
|
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x24;
|
|
|
|
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, tfd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-14 12:18:26 +00:00
|
|
|
static void
|
|
|
|
atapi_report_luns(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t buf[16];
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
buf[3] = 8;
|
|
|
|
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
write_prdt(p, slot, cfis, buf, sizeof(buf));
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
static void
|
2015-04-17 20:20:55 +00:00
|
|
|
atapi_read(struct ahci_port *p, int slot, uint8_t *cfis, uint32_t done)
|
2013-10-04 18:31:38 +00:00
|
|
|
{
|
|
|
|
struct ahci_ioreq *aior;
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
|
|
|
struct ahci_prdt_entry *prdt;
|
|
|
|
struct blockif_req *breq;
|
|
|
|
uint8_t *acmd;
|
|
|
|
uint64_t lba;
|
|
|
|
uint32_t len;
|
2015-04-17 20:20:55 +00:00
|
|
|
int err;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
acmd = cfis + 0x40;
|
2013-10-08 19:39:21 +00:00
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + slot * AHCI_CL_SIZE);
|
2013-10-04 18:31:38 +00:00
|
|
|
prdt = (struct ahci_prdt_entry *)(cfis + 0x80);
|
|
|
|
|
|
|
|
lba = be32dec(acmd + 2);
|
|
|
|
if (acmd[0] == READ_10)
|
|
|
|
len = be16dec(acmd + 7);
|
|
|
|
else
|
|
|
|
len = be32dec(acmd + 6);
|
|
|
|
if (len == 0) {
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
}
|
|
|
|
lba *= 2048;
|
|
|
|
len *= 2048;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pull request off free list
|
|
|
|
*/
|
|
|
|
aior = STAILQ_FIRST(&p->iofhd);
|
|
|
|
assert(aior != NULL);
|
2014-10-17 11:37:50 +00:00
|
|
|
STAILQ_REMOVE_HEAD(&p->iofhd, io_flist);
|
2013-10-04 18:31:38 +00:00
|
|
|
aior->cfis = cfis;
|
|
|
|
aior->slot = slot;
|
|
|
|
aior->len = len;
|
|
|
|
aior->done = done;
|
|
|
|
breq = &aior->io_req;
|
|
|
|
breq->br_offset = lba + done;
|
2015-04-17 20:20:55 +00:00
|
|
|
ahci_build_iov(p, aior, prdt, hdr->prdtl);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
/* Mark this command in-flight. */
|
2014-10-17 11:37:50 +00:00
|
|
|
p->pending |= 1 << slot;
|
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
/* Stuff request onto busy list. */
|
2014-10-17 11:37:50 +00:00
|
|
|
TAILQ_INSERT_HEAD(&p->iobhd, aior, io_blist);
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
err = blockif_read(p->bctx, breq);
|
|
|
|
assert(err == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_request_sense(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t buf[64];
|
|
|
|
uint8_t *acmd;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
acmd = cfis + 0x40;
|
|
|
|
len = acmd[4];
|
|
|
|
if (len > sizeof(buf))
|
|
|
|
len = sizeof(buf);
|
|
|
|
memset(buf, 0, len);
|
|
|
|
buf[0] = 0x70 | (1 << 7);
|
|
|
|
buf[2] = p->sense_key;
|
|
|
|
buf[7] = 10;
|
|
|
|
buf[12] = p->asc;
|
|
|
|
write_prdt(p, slot, cfis, buf, len);
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_start_stop_unit(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t *acmd = cfis + 0x40;
|
|
|
|
uint32_t tfd;
|
|
|
|
|
|
|
|
switch (acmd[4] & 3) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 3:
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
tfd = ATA_S_READY | ATA_S_DSC;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* TODO eject media */
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x53;
|
|
|
|
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, tfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_mode_sense(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t *acmd;
|
|
|
|
uint32_t tfd;
|
|
|
|
uint8_t pc, code;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
acmd = cfis + 0x40;
|
|
|
|
len = be16dec(acmd + 7);
|
|
|
|
pc = acmd[2] >> 6;
|
|
|
|
code = acmd[2] & 0x3f;
|
|
|
|
|
|
|
|
switch (pc) {
|
|
|
|
case 0:
|
|
|
|
switch (code) {
|
|
|
|
case MODEPAGE_RW_ERROR_RECOVERY:
|
|
|
|
{
|
|
|
|
uint8_t buf[16];
|
|
|
|
|
|
|
|
if (len > sizeof(buf))
|
|
|
|
len = sizeof(buf);
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
be16enc(buf, 16 - 2);
|
|
|
|
buf[2] = 0x70;
|
|
|
|
buf[8] = 0x01;
|
|
|
|
buf[9] = 16 - 10;
|
|
|
|
buf[11] = 0x05;
|
|
|
|
write_prdt(p, slot, cfis, buf, len);
|
|
|
|
tfd = ATA_S_READY | ATA_S_DSC;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MODEPAGE_CD_CAPABILITIES:
|
|
|
|
{
|
|
|
|
uint8_t buf[30];
|
|
|
|
|
|
|
|
if (len > sizeof(buf))
|
|
|
|
len = sizeof(buf);
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
be16enc(buf, 30 - 2);
|
|
|
|
buf[2] = 0x70;
|
|
|
|
buf[8] = 0x2A;
|
|
|
|
buf[9] = 30 - 10;
|
|
|
|
buf[10] = 0x08;
|
|
|
|
buf[12] = 0x71;
|
|
|
|
be16enc(&buf[18], 2);
|
|
|
|
be16enc(&buf[20], 512);
|
|
|
|
write_prdt(p, slot, cfis, buf, len);
|
|
|
|
tfd = ATA_S_READY | ATA_S_DSC;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x39;
|
|
|
|
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
|
|
|
|
break;
|
|
|
|
error:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x24;
|
|
|
|
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, tfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_get_event_status_notification(struct ahci_port *p, int slot,
|
|
|
|
uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t *acmd;
|
|
|
|
uint32_t tfd;
|
|
|
|
|
|
|
|
acmd = cfis + 0x40;
|
|
|
|
|
|
|
|
/* we don't support asynchronous operation */
|
|
|
|
if (!(acmd[1] & 1)) {
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x24;
|
|
|
|
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
|
|
|
|
} else {
|
|
|
|
uint8_t buf[8];
|
|
|
|
int len;
|
|
|
|
|
|
|
|
len = be16dec(acmd + 7);
|
|
|
|
if (len > sizeof(buf))
|
|
|
|
len = sizeof(buf);
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
be16enc(buf, 8 - 2);
|
|
|
|
buf[2] = 0x04;
|
|
|
|
buf[3] = 0x10;
|
|
|
|
buf[5] = 0x02;
|
|
|
|
write_prdt(p, slot, cfis, buf, len);
|
|
|
|
tfd = ATA_S_READY | ATA_S_DSC;
|
|
|
|
}
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, tfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_packet_cmd(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
uint8_t *acmd;
|
|
|
|
|
|
|
|
acmd = cfis + 0x40;
|
|
|
|
|
|
|
|
#ifdef AHCI_DEBUG
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
DPRINTF("ACMD:");
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
DPRINTF("%02x ", acmd[i]);
|
|
|
|
DPRINTF("\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (acmd[0]) {
|
|
|
|
case TEST_UNIT_READY:
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
break;
|
|
|
|
case INQUIRY:
|
|
|
|
atapi_inquiry(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
case READ_CAPACITY:
|
|
|
|
atapi_read_capacity(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
case PREVENT_ALLOW:
|
|
|
|
/* TODO */
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
break;
|
|
|
|
case READ_TOC:
|
|
|
|
atapi_read_toc(p, slot, cfis);
|
|
|
|
break;
|
2015-03-14 12:18:26 +00:00
|
|
|
case REPORT_LUNS:
|
|
|
|
atapi_report_luns(p, slot, cfis);
|
|
|
|
break;
|
2013-10-04 18:31:38 +00:00
|
|
|
case READ_10:
|
|
|
|
case READ_12:
|
2015-04-17 20:20:55 +00:00
|
|
|
atapi_read(p, slot, cfis, 0);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
case REQUEST_SENSE:
|
|
|
|
atapi_request_sense(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
case START_STOP_UNIT:
|
|
|
|
atapi_start_stop_unit(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
case MODE_SENSE_10:
|
|
|
|
atapi_mode_sense(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
case GET_EVENT_STATUS_NOTIFICATION:
|
|
|
|
atapi_get_event_status_notification(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x20;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, (p->sense_key << 12) |
|
|
|
|
ATA_S_READY | ATA_S_ERROR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_handle_cmd(struct ahci_port *p, int slot, uint8_t *cfis)
|
|
|
|
{
|
|
|
|
|
2015-05-03 07:43:58 +00:00
|
|
|
p->tfd |= ATA_S_BUSY;
|
2013-10-04 18:31:38 +00:00
|
|
|
switch (cfis[2]) {
|
|
|
|
case ATA_ATA_IDENTIFY:
|
|
|
|
handle_identify(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
case ATA_SETFEATURES:
|
|
|
|
{
|
|
|
|
switch (cfis[3]) {
|
2014-03-16 12:33:40 +00:00
|
|
|
case ATA_SF_ENAB_SATA_SF:
|
|
|
|
switch (cfis[12]) {
|
|
|
|
case ATA_SATA_SF_AN:
|
|
|
|
p->tfd = ATA_S_DSC | ATA_S_READY;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
p->tfd = ATA_S_ERROR | ATA_S_READY;
|
|
|
|
p->tfd |= (ATA_ERROR_ABORT << 8);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2013-10-04 18:31:38 +00:00
|
|
|
case ATA_SF_ENAB_WCACHE:
|
|
|
|
case ATA_SF_DIS_WCACHE:
|
|
|
|
case ATA_SF_ENAB_RCACHE:
|
|
|
|
case ATA_SF_DIS_RCACHE:
|
|
|
|
p->tfd = ATA_S_DSC | ATA_S_READY;
|
|
|
|
break;
|
|
|
|
case ATA_SF_SETXFER:
|
|
|
|
{
|
|
|
|
switch (cfis[12] & 0xf8) {
|
|
|
|
case ATA_PIO:
|
|
|
|
case ATA_PIO0:
|
|
|
|
break;
|
|
|
|
case ATA_WDMA0:
|
|
|
|
case ATA_UDMA0:
|
|
|
|
p->xfermode = (cfis[12] & 0x7);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p->tfd = ATA_S_DSC | ATA_S_READY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
p->tfd = ATA_S_ERROR | ATA_S_READY;
|
|
|
|
p->tfd |= (ATA_ERROR_ABORT << 8);
|
|
|
|
break;
|
|
|
|
}
|
2014-02-12 00:32:14 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis, p->tfd);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ATA_SET_MULTI:
|
|
|
|
if (cfis[12] != 0 &&
|
2013-10-08 19:39:21 +00:00
|
|
|
(cfis[12] > 128 || (cfis[12] & (cfis[12] - 1)))) {
|
2013-10-04 18:31:38 +00:00
|
|
|
p->tfd = ATA_S_ERROR | ATA_S_READY;
|
|
|
|
p->tfd |= (ATA_ERROR_ABORT << 8);
|
|
|
|
} else {
|
|
|
|
p->mult_sectors = cfis[12];
|
|
|
|
p->tfd = ATA_S_DSC | ATA_S_READY;
|
|
|
|
}
|
2015-03-13 18:04:07 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis, p->tfd);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
2015-03-13 18:35:38 +00:00
|
|
|
case ATA_READ:
|
|
|
|
case ATA_WRITE:
|
|
|
|
case ATA_READ48:
|
|
|
|
case ATA_WRITE48:
|
|
|
|
case ATA_READ_MUL:
|
|
|
|
case ATA_WRITE_MUL:
|
|
|
|
case ATA_READ_MUL48:
|
|
|
|
case ATA_WRITE_MUL48:
|
2013-10-04 18:31:38 +00:00
|
|
|
case ATA_READ_DMA:
|
|
|
|
case ATA_WRITE_DMA:
|
|
|
|
case ATA_READ_DMA48:
|
|
|
|
case ATA_WRITE_DMA48:
|
|
|
|
case ATA_READ_FPDMA_QUEUED:
|
|
|
|
case ATA_WRITE_FPDMA_QUEUED:
|
2015-04-17 20:20:55 +00:00
|
|
|
ahci_handle_rw(p, slot, cfis, 0);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
case ATA_FLUSHCACHE:
|
|
|
|
case ATA_FLUSHCACHE48:
|
|
|
|
ahci_handle_flush(p, slot, cfis);
|
|
|
|
break;
|
2015-03-13 16:43:52 +00:00
|
|
|
case ATA_DATA_SET_MANAGEMENT:
|
|
|
|
if (cfis[11] == 0 && cfis[3] == ATA_DSM_TRIM &&
|
|
|
|
cfis[13] == 0 && cfis[12] == 1) {
|
|
|
|
ahci_handle_dsm_trim(p, slot, cfis, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
|
|
|
|
break;
|
2015-03-14 09:46:43 +00:00
|
|
|
case ATA_SEND_FPDMA_QUEUED:
|
|
|
|
if ((cfis[13] & 0x1f) == ATA_SFPDMA_DSM &&
|
|
|
|
cfis[17] == 0 && cfis[16] == ATA_DSM_TRIM &&
|
2016-07-17 14:13:47 +00:00
|
|
|
cfis[11] == 0 && cfis[3] == 1) {
|
2015-03-14 09:46:43 +00:00
|
|
|
ahci_handle_dsm_trim(p, slot, cfis, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
|
|
|
|
break;
|
2015-03-14 08:45:54 +00:00
|
|
|
case ATA_READ_LOG_EXT:
|
|
|
|
case ATA_READ_LOG_DMA_EXT:
|
|
|
|
ahci_handle_read_log(p, slot, cfis);
|
|
|
|
break;
|
2015-10-05 14:57:45 +00:00
|
|
|
case ATA_SECURITY_FREEZE_LOCK:
|
|
|
|
case ATA_SMART_CMD:
|
2013-10-04 18:31:38 +00:00
|
|
|
case ATA_NOP:
|
2015-03-14 10:38:25 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
|
|
|
|
break;
|
2015-08-17 05:59:36 +00:00
|
|
|
case ATA_CHECK_POWER_MODE:
|
|
|
|
cfis[12] = 0xff; /* always on */
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
break;
|
2015-03-14 10:38:25 +00:00
|
|
|
case ATA_STANDBY_CMD:
|
2013-10-04 18:31:38 +00:00
|
|
|
case ATA_STANDBY_IMMEDIATE:
|
2015-03-14 10:38:25 +00:00
|
|
|
case ATA_IDLE_CMD:
|
2013-10-04 18:31:38 +00:00
|
|
|
case ATA_IDLE_IMMEDIATE:
|
|
|
|
case ATA_SLEEP:
|
2015-08-17 05:59:36 +00:00
|
|
|
case ATA_READ_VERIFY:
|
|
|
|
case ATA_READ_VERIFY48:
|
2013-10-04 18:31:38 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis, ATA_S_READY | ATA_S_DSC);
|
|
|
|
break;
|
|
|
|
case ATA_ATAPI_IDENTIFY:
|
|
|
|
handle_atapi_identify(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
case ATA_PACKET_CMD:
|
|
|
|
if (!p->atapi) {
|
2015-03-13 18:04:07 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
|
2013-10-04 18:31:38 +00:00
|
|
|
} else
|
|
|
|
handle_packet_cmd(p, slot, cfis);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WPRINTF("Unsupported cmd:%02x\n", cfis[2]);
|
2015-03-13 18:04:07 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis,
|
|
|
|
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_handle_slot(struct ahci_port *p, int slot)
|
|
|
|
{
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
2016-07-06 04:58:42 +00:00
|
|
|
#ifdef AHCI_DEBUG
|
2013-10-04 18:31:38 +00:00
|
|
|
struct ahci_prdt_entry *prdt;
|
2016-07-06 04:58:42 +00:00
|
|
|
#endif
|
2013-10-04 18:31:38 +00:00
|
|
|
struct pci_ahci_softc *sc;
|
|
|
|
uint8_t *cfis;
|
2016-07-06 04:58:42 +00:00
|
|
|
#ifdef AHCI_DEBUG
|
2016-07-08 21:30:18 +00:00
|
|
|
int cfl, i;
|
2016-07-06 04:58:42 +00:00
|
|
|
#endif
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
sc = p->pr_sc;
|
2013-10-08 19:39:21 +00:00
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + slot * AHCI_CL_SIZE);
|
2016-07-06 04:58:42 +00:00
|
|
|
#ifdef AHCI_DEBUG
|
2013-10-04 18:31:38 +00:00
|
|
|
cfl = (hdr->flags & 0x1f) * 4;
|
2016-07-06 04:58:42 +00:00
|
|
|
#endif
|
2013-10-04 18:31:38 +00:00
|
|
|
cfis = paddr_guest2host(ahci_ctx(sc), hdr->ctba,
|
|
|
|
0x80 + hdr->prdtl * sizeof(struct ahci_prdt_entry));
|
2016-07-06 04:58:42 +00:00
|
|
|
#ifdef AHCI_DEBUG
|
2013-10-04 18:31:38 +00:00
|
|
|
prdt = (struct ahci_prdt_entry *)(cfis + 0x80);
|
|
|
|
|
|
|
|
DPRINTF("\ncfis:");
|
|
|
|
for (i = 0; i < cfl; i++) {
|
|
|
|
if (i % 10 == 0)
|
|
|
|
DPRINTF("\n");
|
|
|
|
DPRINTF("%02x ", cfis[i]);
|
|
|
|
}
|
|
|
|
DPRINTF("\n");
|
|
|
|
|
|
|
|
for (i = 0; i < hdr->prdtl; i++) {
|
|
|
|
DPRINTF("%d@%08"PRIx64"\n", prdt->dbc & 0x3fffff, prdt->dba);
|
|
|
|
prdt++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (cfis[0] != FIS_TYPE_REGH2D) {
|
|
|
|
WPRINTF("Not a H2D FIS:%02x\n", cfis[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cfis[1] & 0x80) {
|
|
|
|
ahci_handle_cmd(p, slot, cfis);
|
|
|
|
} else {
|
|
|
|
if (cfis[15] & (1 << 2))
|
|
|
|
p->reset = 1;
|
|
|
|
else if (p->reset) {
|
|
|
|
p->reset = 0;
|
|
|
|
ahci_port_reset(p);
|
|
|
|
}
|
|
|
|
p->ci &= ~(1 << slot);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ahci_handle_port(struct ahci_port *p)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!(p->cmd & AHCI_P_CMD_ST))
|
|
|
|
return;
|
|
|
|
|
2014-03-18 23:25:35 +00:00
|
|
|
/*
|
|
|
|
* Search for any new commands to issue ignoring those that
|
2015-05-04 19:55:01 +00:00
|
|
|
* are already in-flight. Stop if device is busy or in error.
|
2014-03-18 23:25:35 +00:00
|
|
|
*/
|
2015-05-04 19:55:01 +00:00
|
|
|
for (; (p->ci & ~p->pending) != 0; p->ccs = ((p->ccs + 1) & 31)) {
|
2015-05-06 09:59:19 +00:00
|
|
|
if ((p->tfd & (ATA_S_BUSY | ATA_S_DRQ)) != 0)
|
|
|
|
break;
|
|
|
|
if (p->waitforclear)
|
2015-05-04 19:55:01 +00:00
|
|
|
break;
|
|
|
|
if ((p->ci & ~p->pending & (1 << p->ccs)) != 0) {
|
2014-07-30 18:47:31 +00:00
|
|
|
p->cmd &= ~AHCI_P_CMD_CCS_MASK;
|
2015-05-04 19:55:01 +00:00
|
|
|
p->cmd |= p->ccs << AHCI_P_CMD_CCS_SHIFT;
|
|
|
|
ahci_handle_slot(p, p->ccs);
|
2014-07-30 18:47:31 +00:00
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* blockif callback routine - this runs in the context of the blockif
|
|
|
|
* i/o thread, so the mutex needs to be acquired.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
ata_ioreq_cb(struct blockif_req *br, int err)
|
|
|
|
{
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
|
|
|
struct ahci_ioreq *aior;
|
|
|
|
struct ahci_port *p;
|
|
|
|
struct pci_ahci_softc *sc;
|
|
|
|
uint32_t tfd;
|
|
|
|
uint8_t *cfis;
|
2015-04-17 20:20:55 +00:00
|
|
|
int slot, ncq, dsm;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
DPRINTF("%s %d\n", __func__, err);
|
|
|
|
|
2015-03-20 16:05:13 +00:00
|
|
|
ncq = dsm = 0;
|
2013-10-04 18:31:38 +00:00
|
|
|
aior = br->br_param;
|
|
|
|
p = aior->io_pr;
|
|
|
|
cfis = aior->cfis;
|
|
|
|
slot = aior->slot;
|
|
|
|
sc = p->pr_sc;
|
2013-10-08 19:39:21 +00:00
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + slot * AHCI_CL_SIZE);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
if (cfis[2] == ATA_WRITE_FPDMA_QUEUED ||
|
2015-03-14 09:46:43 +00:00
|
|
|
cfis[2] == ATA_READ_FPDMA_QUEUED ||
|
|
|
|
cfis[2] == ATA_SEND_FPDMA_QUEUED)
|
2013-10-04 18:31:38 +00:00
|
|
|
ncq = 1;
|
2015-03-14 09:46:43 +00:00
|
|
|
if (cfis[2] == ATA_DATA_SET_MANAGEMENT ||
|
|
|
|
(cfis[2] == ATA_SEND_FPDMA_QUEUED &&
|
|
|
|
(cfis[13] & 0x1f) == ATA_SFPDMA_DSM))
|
2015-03-13 16:43:52 +00:00
|
|
|
dsm = 1;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
pthread_mutex_lock(&sc->mtx);
|
|
|
|
|
2014-10-17 11:37:50 +00:00
|
|
|
/*
|
|
|
|
* Delete the blockif request from the busy list
|
|
|
|
*/
|
|
|
|
TAILQ_REMOVE(&p->iobhd, aior, io_blist);
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
/*
|
|
|
|
* Move the blockif request back to the free list
|
|
|
|
*/
|
2014-10-17 11:37:50 +00:00
|
|
|
STAILQ_INSERT_TAIL(&p->iofhd, aior, io_flist);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2015-03-13 20:56:17 +00:00
|
|
|
if (!err)
|
|
|
|
hdr->prdbc = aior->done;
|
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
if (!err && aior->more) {
|
|
|
|
if (dsm)
|
2015-03-13 16:43:52 +00:00
|
|
|
ahci_handle_dsm_trim(p, slot, cfis, aior->done);
|
2015-04-17 20:20:55 +00:00
|
|
|
else
|
|
|
|
ahci_handle_rw(p, slot, cfis, aior->done);
|
|
|
|
goto out;
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
if (!err)
|
2013-10-04 18:31:38 +00:00
|
|
|
tfd = ATA_S_READY | ATA_S_DSC;
|
2015-04-17 20:20:55 +00:00
|
|
|
else
|
2013-10-04 18:31:38 +00:00
|
|
|
tfd = (ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR;
|
2015-03-14 08:45:54 +00:00
|
|
|
if (ncq)
|
|
|
|
ahci_write_fis_sdb(p, slot, cfis, tfd);
|
|
|
|
else
|
2013-10-04 18:31:38 +00:00
|
|
|
ahci_write_fis_d2h(p, slot, cfis, tfd);
|
|
|
|
|
2014-10-17 11:37:50 +00:00
|
|
|
/*
|
|
|
|
* This command is now complete.
|
|
|
|
*/
|
|
|
|
p->pending &= ~(1 << slot);
|
|
|
|
|
|
|
|
ahci_check_stopped(p);
|
2015-05-04 19:55:01 +00:00
|
|
|
ahci_handle_port(p);
|
2013-10-04 18:31:38 +00:00
|
|
|
out:
|
|
|
|
pthread_mutex_unlock(&sc->mtx);
|
|
|
|
DPRINTF("%s exit\n", __func__);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
atapi_ioreq_cb(struct blockif_req *br, int err)
|
|
|
|
{
|
|
|
|
struct ahci_cmd_hdr *hdr;
|
|
|
|
struct ahci_ioreq *aior;
|
|
|
|
struct ahci_port *p;
|
|
|
|
struct pci_ahci_softc *sc;
|
|
|
|
uint8_t *cfis;
|
|
|
|
uint32_t tfd;
|
2015-04-17 20:20:55 +00:00
|
|
|
int slot;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
DPRINTF("%s %d\n", __func__, err);
|
|
|
|
|
|
|
|
aior = br->br_param;
|
|
|
|
p = aior->io_pr;
|
|
|
|
cfis = aior->cfis;
|
|
|
|
slot = aior->slot;
|
|
|
|
sc = p->pr_sc;
|
2013-10-08 19:39:21 +00:00
|
|
|
hdr = (struct ahci_cmd_hdr *)(p->cmd_lst + aior->slot * AHCI_CL_SIZE);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
pthread_mutex_lock(&sc->mtx);
|
|
|
|
|
2014-10-17 11:37:50 +00:00
|
|
|
/*
|
|
|
|
* Delete the blockif request from the busy list
|
|
|
|
*/
|
|
|
|
TAILQ_REMOVE(&p->iobhd, aior, io_blist);
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
/*
|
|
|
|
* Move the blockif request back to the free list
|
|
|
|
*/
|
2014-10-17 11:37:50 +00:00
|
|
|
STAILQ_INSERT_TAIL(&p->iofhd, aior, io_flist);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2015-03-13 20:56:17 +00:00
|
|
|
if (!err)
|
|
|
|
hdr->prdbc = aior->done;
|
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
if (!err && aior->more) {
|
|
|
|
atapi_read(p, slot, cfis, aior->done);
|
2013-10-04 18:31:38 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2015-04-17 20:20:55 +00:00
|
|
|
if (!err) {
|
2013-10-04 18:31:38 +00:00
|
|
|
tfd = ATA_S_READY | ATA_S_DSC;
|
|
|
|
} else {
|
|
|
|
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
|
|
|
|
p->asc = 0x21;
|
|
|
|
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
|
|
|
|
}
|
|
|
|
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
|
|
|
|
ahci_write_fis_d2h(p, slot, cfis, tfd);
|
|
|
|
|
2014-10-17 11:37:50 +00:00
|
|
|
/*
|
|
|
|
* This command is now complete.
|
|
|
|
*/
|
|
|
|
p->pending &= ~(1 << slot);
|
|
|
|
|
|
|
|
ahci_check_stopped(p);
|
2015-05-04 19:55:01 +00:00
|
|
|
ahci_handle_port(p);
|
2013-10-04 18:31:38 +00:00
|
|
|
out:
|
|
|
|
pthread_mutex_unlock(&sc->mtx);
|
|
|
|
DPRINTF("%s exit\n", __func__);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pci_ahci_ioreq_init(struct ahci_port *pr)
|
|
|
|
{
|
|
|
|
struct ahci_ioreq *vr;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
pr->ioqsz = blockif_queuesz(pr->bctx);
|
|
|
|
pr->ioreq = calloc(pr->ioqsz, sizeof(struct ahci_ioreq));
|
|
|
|
STAILQ_INIT(&pr->iofhd);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add all i/o request entries to the free queue
|
|
|
|
*/
|
|
|
|
for (i = 0; i < pr->ioqsz; i++) {
|
|
|
|
vr = &pr->ioreq[i];
|
|
|
|
vr->io_pr = pr;
|
|
|
|
if (!pr->atapi)
|
|
|
|
vr->io_req.br_callback = ata_ioreq_cb;
|
|
|
|
else
|
|
|
|
vr->io_req.br_callback = atapi_ioreq_cb;
|
|
|
|
vr->io_req.br_param = vr;
|
2014-10-17 11:37:50 +00:00
|
|
|
STAILQ_INSERT_TAIL(&pr->iofhd, vr, io_flist);
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
2014-10-17 11:37:50 +00:00
|
|
|
|
|
|
|
TAILQ_INIT(&pr->iobhd);
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pci_ahci_port_write(struct pci_ahci_softc *sc, uint64_t offset, uint64_t value)
|
|
|
|
{
|
|
|
|
int port = (offset - AHCI_OFFSET) / AHCI_STEP;
|
|
|
|
offset = (offset - AHCI_OFFSET) % AHCI_STEP;
|
|
|
|
struct ahci_port *p = &sc->port[port];
|
|
|
|
|
|
|
|
DPRINTF("pci_ahci_port %d: write offset 0x%"PRIx64" value 0x%"PRIx64"\n",
|
|
|
|
port, offset, value);
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
case AHCI_P_CLB:
|
|
|
|
p->clb = value;
|
|
|
|
break;
|
|
|
|
case AHCI_P_CLBU:
|
|
|
|
p->clbu = value;
|
|
|
|
break;
|
|
|
|
case AHCI_P_FB:
|
|
|
|
p->fb = value;
|
|
|
|
break;
|
|
|
|
case AHCI_P_FBU:
|
|
|
|
p->fbu = value;
|
|
|
|
break;
|
|
|
|
case AHCI_P_IS:
|
|
|
|
p->is &= ~value;
|
2016-07-08 21:30:18 +00:00
|
|
|
ahci_port_intr(p);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
case AHCI_P_IE:
|
|
|
|
p->ie = value & 0xFDC000FF;
|
2016-07-08 21:30:18 +00:00
|
|
|
ahci_port_intr(p);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
case AHCI_P_CMD:
|
|
|
|
{
|
2015-05-02 16:11:29 +00:00
|
|
|
p->cmd &= ~(AHCI_P_CMD_ST | AHCI_P_CMD_SUD | AHCI_P_CMD_POD |
|
|
|
|
AHCI_P_CMD_CLO | AHCI_P_CMD_FRE | AHCI_P_CMD_APSTE |
|
|
|
|
AHCI_P_CMD_ATAPI | AHCI_P_CMD_DLAE | AHCI_P_CMD_ALPE |
|
|
|
|
AHCI_P_CMD_ASP | AHCI_P_CMD_ICC_MASK);
|
|
|
|
p->cmd |= (AHCI_P_CMD_ST | AHCI_P_CMD_SUD | AHCI_P_CMD_POD |
|
|
|
|
AHCI_P_CMD_CLO | AHCI_P_CMD_FRE | AHCI_P_CMD_APSTE |
|
|
|
|
AHCI_P_CMD_ATAPI | AHCI_P_CMD_DLAE | AHCI_P_CMD_ALPE |
|
|
|
|
AHCI_P_CMD_ASP | AHCI_P_CMD_ICC_MASK) & value;
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
if (!(value & AHCI_P_CMD_ST)) {
|
2014-10-17 11:37:50 +00:00
|
|
|
ahci_port_stop(p);
|
2013-10-04 18:31:38 +00:00
|
|
|
} else {
|
|
|
|
uint64_t clb;
|
|
|
|
|
|
|
|
p->cmd |= AHCI_P_CMD_CR;
|
|
|
|
clb = (uint64_t)p->clbu << 32 | p->clb;
|
|
|
|
p->cmd_lst = paddr_guest2host(ahci_ctx(sc), clb,
|
|
|
|
AHCI_CL_SIZE * AHCI_MAX_SLOTS);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value & AHCI_P_CMD_FRE) {
|
|
|
|
uint64_t fb;
|
|
|
|
|
|
|
|
p->cmd |= AHCI_P_CMD_FR;
|
|
|
|
fb = (uint64_t)p->fbu << 32 | p->fb;
|
|
|
|
/* we don't support FBSCP, so rfis size is 256Bytes */
|
|
|
|
p->rfis = paddr_guest2host(ahci_ctx(sc), fb, 256);
|
|
|
|
} else {
|
|
|
|
p->cmd &= ~AHCI_P_CMD_FR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value & AHCI_P_CMD_CLO) {
|
2015-05-06 09:59:19 +00:00
|
|
|
p->tfd &= ~(ATA_S_BUSY | ATA_S_DRQ);
|
2013-10-04 18:31:38 +00:00
|
|
|
p->cmd &= ~AHCI_P_CMD_CLO;
|
|
|
|
}
|
|
|
|
|
2015-05-02 16:11:29 +00:00
|
|
|
if (value & AHCI_P_CMD_ICC_MASK) {
|
|
|
|
p->cmd &= ~AHCI_P_CMD_ICC_MASK;
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
ahci_handle_port(p);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AHCI_P_TFD:
|
|
|
|
case AHCI_P_SIG:
|
|
|
|
case AHCI_P_SSTS:
|
|
|
|
WPRINTF("pci_ahci_port: read only registers 0x%"PRIx64"\n", offset);
|
|
|
|
break;
|
|
|
|
case AHCI_P_SCTL:
|
2015-03-13 20:14:35 +00:00
|
|
|
p->sctl = value;
|
2013-10-04 18:31:38 +00:00
|
|
|
if (!(p->cmd & AHCI_P_CMD_ST)) {
|
|
|
|
if (value & ATA_SC_DET_RESET)
|
|
|
|
ahci_port_reset(p);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AHCI_P_SERR:
|
|
|
|
p->serr &= ~value;
|
|
|
|
break;
|
|
|
|
case AHCI_P_SACT:
|
|
|
|
p->sact |= value;
|
|
|
|
break;
|
|
|
|
case AHCI_P_CI:
|
|
|
|
p->ci |= value;
|
|
|
|
ahci_handle_port(p);
|
|
|
|
break;
|
|
|
|
case AHCI_P_SNTF:
|
|
|
|
case AHCI_P_FBS:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pci_ahci_host_write(struct pci_ahci_softc *sc, uint64_t offset, uint64_t value)
|
|
|
|
{
|
|
|
|
DPRINTF("pci_ahci_host: write offset 0x%"PRIx64" value 0x%"PRIx64"\n",
|
|
|
|
offset, value);
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
case AHCI_CAP:
|
|
|
|
case AHCI_PI:
|
|
|
|
case AHCI_VS:
|
|
|
|
case AHCI_CAP2:
|
2013-10-17 21:56:39 +00:00
|
|
|
DPRINTF("pci_ahci_host: read only registers 0x%"PRIx64"\n", offset);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
case AHCI_GHC:
|
2016-07-08 21:30:18 +00:00
|
|
|
if (value & AHCI_GHC_HR) {
|
2013-10-04 18:31:38 +00:00
|
|
|
ahci_reset(sc);
|
2016-07-08 21:30:18 +00:00
|
|
|
break;
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
2016-07-08 21:30:18 +00:00
|
|
|
if (value & AHCI_GHC_IE)
|
|
|
|
sc->ghc |= AHCI_GHC_IE;
|
|
|
|
else
|
|
|
|
sc->ghc &= ~AHCI_GHC_IE;
|
|
|
|
ahci_generate_intr(sc, 0xffffffff);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
case AHCI_IS:
|
|
|
|
sc->is &= ~value;
|
2016-07-08 21:30:18 +00:00
|
|
|
ahci_generate_intr(sc, value);
|
2013-10-04 18:31:38 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pci_ahci_write(struct vmctx *ctx, int vcpu, struct pci_devinst *pi,
|
|
|
|
int baridx, uint64_t offset, int size, uint64_t value)
|
|
|
|
{
|
|
|
|
struct pci_ahci_softc *sc = pi->pi_arg;
|
|
|
|
|
|
|
|
assert(baridx == 5);
|
2015-05-07 18:35:15 +00:00
|
|
|
assert((offset % 4) == 0 && size == 4);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
pthread_mutex_lock(&sc->mtx);
|
|
|
|
|
|
|
|
if (offset < AHCI_OFFSET)
|
|
|
|
pci_ahci_host_write(sc, offset, value);
|
|
|
|
else if (offset < AHCI_OFFSET + sc->ports * AHCI_STEP)
|
|
|
|
pci_ahci_port_write(sc, offset, value);
|
|
|
|
else
|
|
|
|
WPRINTF("pci_ahci: unknown i/o write offset 0x%"PRIx64"\n", offset);
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&sc->mtx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
pci_ahci_host_read(struct pci_ahci_softc *sc, uint64_t offset)
|
|
|
|
{
|
|
|
|
uint32_t value;
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
case AHCI_CAP:
|
|
|
|
case AHCI_GHC:
|
|
|
|
case AHCI_IS:
|
|
|
|
case AHCI_PI:
|
|
|
|
case AHCI_VS:
|
|
|
|
case AHCI_CCCC:
|
|
|
|
case AHCI_CCCP:
|
|
|
|
case AHCI_EM_LOC:
|
|
|
|
case AHCI_EM_CTL:
|
|
|
|
case AHCI_CAP2:
|
|
|
|
{
|
|
|
|
uint32_t *p = &sc->cap;
|
|
|
|
p += (offset - AHCI_CAP) / sizeof(uint32_t);
|
|
|
|
value = *p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
value = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
DPRINTF("pci_ahci_host: read offset 0x%"PRIx64" value 0x%x\n",
|
|
|
|
offset, value);
|
|
|
|
|
|
|
|
return (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
pci_ahci_port_read(struct pci_ahci_softc *sc, uint64_t offset)
|
|
|
|
{
|
|
|
|
uint32_t value;
|
|
|
|
int port = (offset - AHCI_OFFSET) / AHCI_STEP;
|
|
|
|
offset = (offset - AHCI_OFFSET) % AHCI_STEP;
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
case AHCI_P_CLB:
|
|
|
|
case AHCI_P_CLBU:
|
|
|
|
case AHCI_P_FB:
|
|
|
|
case AHCI_P_FBU:
|
|
|
|
case AHCI_P_IS:
|
|
|
|
case AHCI_P_IE:
|
|
|
|
case AHCI_P_CMD:
|
|
|
|
case AHCI_P_TFD:
|
|
|
|
case AHCI_P_SIG:
|
|
|
|
case AHCI_P_SSTS:
|
|
|
|
case AHCI_P_SCTL:
|
|
|
|
case AHCI_P_SERR:
|
|
|
|
case AHCI_P_SACT:
|
|
|
|
case AHCI_P_CI:
|
|
|
|
case AHCI_P_SNTF:
|
|
|
|
case AHCI_P_FBS:
|
|
|
|
{
|
|
|
|
uint32_t *p= &sc->port[port].clb;
|
|
|
|
p += (offset - AHCI_P_CLB) / sizeof(uint32_t);
|
|
|
|
value = *p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
value = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF("pci_ahci_port %d: read offset 0x%"PRIx64" value 0x%x\n",
|
|
|
|
port, offset, value);
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
pci_ahci_read(struct vmctx *ctx, int vcpu, struct pci_devinst *pi, int baridx,
|
2015-05-07 18:35:15 +00:00
|
|
|
uint64_t regoff, int size)
|
2013-10-04 18:31:38 +00:00
|
|
|
{
|
|
|
|
struct pci_ahci_softc *sc = pi->pi_arg;
|
2015-05-07 18:35:15 +00:00
|
|
|
uint64_t offset;
|
2013-10-04 18:31:38 +00:00
|
|
|
uint32_t value;
|
|
|
|
|
|
|
|
assert(baridx == 5);
|
2015-05-07 18:35:15 +00:00
|
|
|
assert(size == 1 || size == 2 || size == 4);
|
|
|
|
assert((regoff & (size - 1)) == 0);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
pthread_mutex_lock(&sc->mtx);
|
|
|
|
|
2015-05-07 18:35:15 +00:00
|
|
|
offset = regoff & ~0x3; /* round down to a multiple of 4 bytes */
|
2013-10-04 18:31:38 +00:00
|
|
|
if (offset < AHCI_OFFSET)
|
|
|
|
value = pci_ahci_host_read(sc, offset);
|
|
|
|
else if (offset < AHCI_OFFSET + sc->ports * AHCI_STEP)
|
|
|
|
value = pci_ahci_port_read(sc, offset);
|
|
|
|
else {
|
|
|
|
value = 0;
|
2015-05-07 18:35:15 +00:00
|
|
|
WPRINTF("pci_ahci: unknown i/o read offset 0x%"PRIx64"\n",
|
|
|
|
regoff);
|
2013-10-04 18:31:38 +00:00
|
|
|
}
|
2015-05-07 18:35:15 +00:00
|
|
|
value >>= 8 * (regoff & 0x3);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
pthread_mutex_unlock(&sc->mtx);
|
|
|
|
|
|
|
|
return (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
pci_ahci_init(struct vmctx *ctx, struct pci_devinst *pi, char *opts, int atapi)
|
|
|
|
{
|
2016-07-08 21:25:37 +00:00
|
|
|
char bident[sizeof("XX:XX:XX")];
|
2013-10-04 18:31:38 +00:00
|
|
|
struct blockif_ctxt *bctxt;
|
|
|
|
struct pci_ahci_softc *sc;
|
2016-07-08 21:25:37 +00:00
|
|
|
int ret, slots, p;
|
2015-03-15 15:29:03 +00:00
|
|
|
MD5_CTX mdctx;
|
|
|
|
u_char digest[16];
|
2016-07-08 21:25:37 +00:00
|
|
|
char *next, *next2;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
#ifdef AHCI_DEBUG
|
|
|
|
dbg = fopen("/tmp/log", "w+");
|
|
|
|
#endif
|
|
|
|
|
2014-04-22 18:55:21 +00:00
|
|
|
sc = calloc(1, sizeof(struct pci_ahci_softc));
|
2013-10-04 18:31:38 +00:00
|
|
|
pi->pi_arg = sc;
|
|
|
|
sc->asc_pi = pi;
|
2016-07-08 21:25:37 +00:00
|
|
|
pthread_mutex_init(&sc->mtx, NULL);
|
|
|
|
sc->ports = 0;
|
|
|
|
sc->pi = 0;
|
|
|
|
slots = 32;
|
|
|
|
|
|
|
|
for (p = 0; p < MAX_PORTS && opts != NULL; p++, opts = next) {
|
|
|
|
/* Identify and cut off type of present port. */
|
|
|
|
if (strncmp(opts, "hd:", 3) == 0) {
|
|
|
|
atapi = 0;
|
|
|
|
opts += 3;
|
|
|
|
} else if (strncmp(opts, "cd:", 3) == 0) {
|
|
|
|
atapi = 1;
|
|
|
|
opts += 3;
|
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2016-07-08 21:25:37 +00:00
|
|
|
/* Find and cut off the next port options. */
|
|
|
|
next = strstr(opts, ",hd:");
|
|
|
|
next2 = strstr(opts, ",cd:");
|
|
|
|
if (next == NULL || (next2 != NULL && next2 < next))
|
|
|
|
next = next2;
|
|
|
|
if (next != NULL) {
|
|
|
|
next[0] = 0;
|
|
|
|
next++;
|
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2016-07-08 21:25:37 +00:00
|
|
|
if (opts[0] == 0)
|
|
|
|
continue;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2016-07-08 21:25:37 +00:00
|
|
|
/*
|
|
|
|
* Attempt to open the backing image. Use the PCI slot/func
|
|
|
|
* and the port number for the identifier string.
|
|
|
|
*/
|
|
|
|
snprintf(bident, sizeof(bident), "%d:%d:%d", pi->pi_slot,
|
|
|
|
pi->pi_func, p);
|
|
|
|
bctxt = blockif_open(opts, bident);
|
|
|
|
if (bctxt == NULL) {
|
|
|
|
sc->ports = p;
|
|
|
|
ret = 1;
|
|
|
|
goto open_fail;
|
|
|
|
}
|
|
|
|
sc->port[p].bctx = bctxt;
|
|
|
|
sc->port[p].pr_sc = sc;
|
2016-07-08 21:30:18 +00:00
|
|
|
sc->port[p].port = p;
|
2016-07-08 21:25:37 +00:00
|
|
|
sc->port[p].atapi = atapi;
|
2015-03-15 15:29:03 +00:00
|
|
|
|
2016-07-08 21:25:37 +00:00
|
|
|
/*
|
|
|
|
* Create an identifier for the backing file.
|
|
|
|
* Use parts of the md5 sum of the filename
|
|
|
|
*/
|
|
|
|
MD5Init(&mdctx);
|
|
|
|
MD5Update(&mdctx, opts, strlen(opts));
|
|
|
|
MD5Final(digest, &mdctx);
|
|
|
|
sprintf(sc->port[p].ident, "BHYVE-%02X%02X-%02X%02X-%02X%02X",
|
|
|
|
digest[0], digest[1], digest[2], digest[3], digest[4],
|
|
|
|
digest[5]);
|
2013-10-04 18:31:38 +00:00
|
|
|
|
2016-07-08 21:25:37 +00:00
|
|
|
/*
|
|
|
|
* Allocate blockif request structures and add them
|
|
|
|
* to the free list
|
|
|
|
*/
|
|
|
|
pci_ahci_ioreq_init(&sc->port[p]);
|
|
|
|
|
|
|
|
sc->pi |= (1 << p);
|
|
|
|
if (sc->port[p].ioqsz < slots)
|
|
|
|
slots = sc->port[p].ioqsz;
|
|
|
|
}
|
|
|
|
sc->ports = p;
|
2013-10-04 18:31:38 +00:00
|
|
|
|
|
|
|
/* Intel ICH8 AHCI */
|
|
|
|
--slots;
|
2016-07-08 21:25:37 +00:00
|
|
|
if (sc->ports < DEF_PORTS)
|
|
|
|
sc->ports = DEF_PORTS;
|
2013-10-04 18:31:38 +00:00
|
|
|
sc->cap = AHCI_CAP_64BIT | AHCI_CAP_SNCQ | AHCI_CAP_SSNTF |
|
|
|
|
AHCI_CAP_SMPS | AHCI_CAP_SSS | AHCI_CAP_SALP |
|
|
|
|
AHCI_CAP_SAL | AHCI_CAP_SCLO | (0x3 << AHCI_CAP_ISS_SHIFT)|
|
|
|
|
AHCI_CAP_PMD | AHCI_CAP_SSC | AHCI_CAP_PSC |
|
|
|
|
(slots << AHCI_CAP_NCS_SHIFT) | AHCI_CAP_SXS | (sc->ports - 1);
|
|
|
|
|
|
|
|
sc->vs = 0x10300;
|
|
|
|
sc->cap2 = AHCI_CAP2_APST;
|
|
|
|
ahci_reset(sc);
|
|
|
|
|
|
|
|
pci_set_cfgdata16(pi, PCIR_DEVICE, 0x2821);
|
|
|
|
pci_set_cfgdata16(pi, PCIR_VENDOR, 0x8086);
|
|
|
|
pci_set_cfgdata8(pi, PCIR_CLASS, PCIC_STORAGE);
|
|
|
|
pci_set_cfgdata8(pi, PCIR_SUBCLASS, PCIS_STORAGE_SATA);
|
|
|
|
pci_set_cfgdata8(pi, PCIR_PROGIF, PCIP_STORAGE_SATA_AHCI_1_0);
|
2016-07-08 21:30:18 +00:00
|
|
|
p = MIN(sc->ports, 16);
|
|
|
|
p = flsl(p) - ((p & (p - 1)) ? 0 : 1);
|
|
|
|
pci_emul_add_msicap(pi, 1 << p);
|
2013-10-04 18:31:38 +00:00
|
|
|
pci_emul_alloc_bar(pi, 5, PCIBAR_MEM32,
|
|
|
|
AHCI_OFFSET + sc->ports * AHCI_STEP);
|
|
|
|
|
2014-04-28 18:41:25 +00:00
|
|
|
pci_lintr_request(pi);
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
open_fail:
|
|
|
|
if (ret) {
|
2016-07-08 21:25:37 +00:00
|
|
|
for (p = 0; p < sc->ports; p++) {
|
|
|
|
if (sc->port[p].bctx != NULL)
|
|
|
|
blockif_close(sc->port[p].bctx);
|
|
|
|
}
|
2013-10-04 18:31:38 +00:00
|
|
|
free(sc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
pci_ahci_hd_init(struct vmctx *ctx, struct pci_devinst *pi, char *opts)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (pci_ahci_init(ctx, pi, opts, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
pci_ahci_atapi_init(struct vmctx *ctx, struct pci_devinst *pi, char *opts)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (pci_ahci_init(ctx, pi, opts, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use separate emulation names to distinguish drive and atapi devices
|
|
|
|
*/
|
2016-07-08 21:25:37 +00:00
|
|
|
struct pci_devemu pci_de_ahci = {
|
|
|
|
.pe_emu = "ahci",
|
|
|
|
.pe_init = pci_ahci_hd_init,
|
|
|
|
.pe_barwrite = pci_ahci_write,
|
|
|
|
.pe_barread = pci_ahci_read
|
|
|
|
};
|
|
|
|
PCI_EMUL_SET(pci_de_ahci);
|
|
|
|
|
2013-10-04 18:31:38 +00:00
|
|
|
struct pci_devemu pci_de_ahci_hd = {
|
|
|
|
.pe_emu = "ahci-hd",
|
|
|
|
.pe_init = pci_ahci_hd_init,
|
|
|
|
.pe_barwrite = pci_ahci_write,
|
|
|
|
.pe_barread = pci_ahci_read
|
|
|
|
};
|
|
|
|
PCI_EMUL_SET(pci_de_ahci_hd);
|
|
|
|
|
|
|
|
struct pci_devemu pci_de_ahci_cd = {
|
|
|
|
.pe_emu = "ahci-cd",
|
|
|
|
.pe_init = pci_ahci_atapi_init,
|
|
|
|
.pe_barwrite = pci_ahci_write,
|
|
|
|
.pe_barread = pci_ahci_read
|
|
|
|
};
|
|
|
|
PCI_EMUL_SET(pci_de_ahci_cd);
|