diff options
author | Ian Moffett <ian@osmora.org> | 2024-05-31 00:20:34 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-05-31 00:59:42 -0400 |
commit | 65e5d1448eb10fea727d16d0c43a6929f61455c1 (patch) | |
tree | dde0fdb85d0d9487dedde97459d4c4e8e81c6fc6 /sys | |
parent | 8728cc9812524e7f37bb4fbe2f48da724c0d8a88 (diff) |
kernel: ic: Add initial AHCI driver code
This commit introduces the initial implementation of the AHCI driver for
Hyra. Support for reading and writing drives still need to be
implemented and devices haven't been exposed to userland yet.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/ahci.c | 565 | ||||
-rw-r--r-- | sys/include/dev/ic/ahciregs.h | 142 | ||||
-rw-r--r-- | sys/include/dev/ic/ahcivar.h | 137 |
3 files changed, 844 insertions, 0 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c new file mode 100644 index 0000000..43b4d1d --- /dev/null +++ b/sys/dev/ic/ahci.c @@ -0,0 +1,565 @@ +/* + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * 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. + * 3. Neither the name of Hyra nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER 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. + */ + +#include <sys/driver.h> +#include <sys/timer.h> +#include <sys/types.h> +#include <sys/cdefs.h> +#include <sys/syslog.h> +#include <sys/mmio.h> +#include <sys/errno.h> +#include <dev/pci/pci.h> +#include <dev/ic/ahciregs.h> +#include <dev/ic/ahcivar.h> +#include <vm/vm.h> +#include <string.h> + +__KERNEL_META("$Hyra$: ahci.c, Ian Marco Moffett, " + "AHCI driver"); + +#define pr_trace(fmt, ...) kprintf("ahci: " fmt, ##__VA_ARGS__) +#define pr_error(...) pr_trace(__VA_ARGS__) + +static struct pci_device *dev; +static struct timer driver_tmr; + +/* + * Poll register to have `bits' set/unset. + * + * @reg: Register to poll. + * @bits: Bits expected to be set/unset. + * @pollset: True to poll as set. + */ +static int +ahci_poll_reg32(volatile uint32_t *reg, uint32_t bits, bool pollset) +{ + uint32_t time_waited = 0; + uint32_t val; + bool tmp; + + for (;;) { + val = mmio_read32(reg); + tmp = (pollset) ? __TEST(val, bits) : !__TEST(val, bits); + if (tmp) + break; + if (time_waited >= AHCI_TIMEOUT) + /* Timeout */ + return -1; + + driver_tmr.msleep(10); + time_waited += 10; + } + + return 0; +} + +/* + * Put the HBA in AHCI mode. + */ +static inline void +ahci_set_ahci(struct ahci_hba *hba) +{ + struct hba_memspace *abar = hba->abar; + uint32_t ghc; + + /* Enable AHCI mode */ + ghc = mmio_read32(&abar->ghc); + ghc |= AHCI_GHC_AE; + mmio_write32(&abar->ghc, ghc); +} + +/* + * Reset the HBA with GHC.HR + * + * XXX: The spec states that all port registers *except* + * PxFB, PxFBU, PxCLB, PxCLBU are reset. + */ +static int +ahci_hba_reset(struct ahci_hba *hba) +{ + struct hba_memspace *abar = hba->abar; + uint32_t ghc; + uint8_t attempts = 0; + int status; + + ghc = mmio_read32(&abar->ghc); + ghc |= AHCI_GHC_HR; + mmio_write32(&abar->ghc, ghc); + + /* + * Poll the GHC.HR bit. The HBA is supposed to flip + * it back to zero once the reset is complete. If + * the HBA does not do this, something is screwed + * up. + * + * XXX: We do this twice in case of slow hardware... + */ + while ((attempts++) < 2) { + status = ahci_poll_reg32(&abar->ghc, AHCI_GHC_HR, false); + if (status == 0) { + break; + } + } + + /* We hope this doesn't happen */ + if (status != 0) { + pr_error("HBA reset failure: GHC.HR stuck (HBA hung)\n"); + return status; + } + + ahci_set_ahci(hba); + return 0; +} + +/* + * Stop port and put it in an idle state. + */ +static int +ahci_stop_port(struct hba_port *port) +{ + const uint32_t RUN_MASK = (AHCI_PXCMD_FR | AHCI_PXCMD_CR); + uint32_t cmd = mmio_read32(&port->cmd); + + /* Check if it is already stopped */ + if (!__TEST(cmd, RUN_MASK)) + return 0; + + /* + * Stop the FIS receive and disable proessing + * of the command list. + */ + cmd &= ~(AHCI_PXCMD_ST | AHCI_PXCMD_FRE); + mmio_write32(&port->cmd, cmd); + return ahci_poll_reg32(&port->cmd, RUN_MASK, false); +} + +/* + * Put a port in a running state. + */ +static int +ahci_start_port(struct hba_port *port) +{ + const uint32_t RUN_MASK = (AHCI_PXCMD_FR | AHCI_PXCMD_CR); + uint32_t cmd = mmio_read32(&port->cmd); + + /* Check if it is already running */ + if (__TEST(cmd, RUN_MASK)) + return 0; + + /* Start everything up */ + cmd |= (AHCI_PXCMD_ST | AHCI_PXCMD_FRE); + mmio_write32(&port->cmd, cmd); + return ahci_poll_reg32(&port->cmd, RUN_MASK, true); +} + +/* + * Check if a port is active. + * + * @port: Port to check. + */ +static bool +ahci_port_active(struct hba_port *port) +{ + uint32_t ssts; + uint8_t det, ipm; + + ssts = mmio_read32(&port->ssts); + det = AHCI_PXSSTS_DET(ssts); + ipm = AHCI_PXSSTS_IPM(ssts); + return (det == AHCI_DET_COMM && ipm == AHCI_IPM_ACTIVE); +} + +/* + * Dump identify structure for debugging + * purposes. + */ +static void +ahci_dump_identity(struct ata_identity *identity) +{ + char serial_number[20]; + char model_number[40]; + char tmp; + + memcpy(serial_number, identity->serial_number, sizeof(serial_number)); + memcpy(model_number, identity->model_number, sizeof(model_number)); + + serial_number[sizeof(serial_number) - 1] = '\0'; + model_number[sizeof(model_number) - 1] = '\0'; + + /* Fixup endianess for serial number */ + for (size_t i = 0; i < sizeof(serial_number); i += 2) { + tmp = serial_number[i]; + serial_number[i] = serial_number[i + 1]; + serial_number[i + 1] = tmp; + } + + /* Fixup endianess for model number */ + for (size_t i = 0; i < sizeof(model_number); i += 2) { + tmp = model_number[i]; + model_number[i] = model_number[i + 1]; + model_number[i + 1] = tmp; + } + + pr_trace("DRIVE MODEL NUMBER: %s\n", model_number); + pr_trace("DRIVE SERIAL NUMBER: %s\n", serial_number); +} + +/* + * Allocate a command slot. + */ +static int +ahci_alloc_cmdslot(struct ahci_hba *hba, struct hba_port *port) +{ + uint32_t slotlist = (port->ci | port->sact); + + for (uint16_t i = 0; i < hba->ncmdslots; ++i) { + if (!__TEST(slotlist, i)) + return i; + } + + return -1; +} + +/* + * Submit a command to a device + * + * @port: Port of device to submit command to + * @cmdslot: Command slot. + */ +static int +ahci_submit_cmd(struct ahci_hba *hba, struct hba_port *port, uint8_t cmdslot) +{ + const uint32_t BUSY_BITS = (AHCI_PXTFD_BSY | AHCI_PXTFD_DRQ); + const uint8_t MAX_ATTEMPTS = 3; + uint8_t attempts = 0; + int status = 0; + + /* + * Ensure the port isn't busy before we try to send + * any commands. Spin on BSY and DRQ bits until they + * become unset or we timeout. + */ + if (ahci_poll_reg32(&port->tfd, BUSY_BITS, false) < 0) { + pr_error("Command failed: Port is busy! (slot=%d)\n", cmdslot); + return -EBUSY; + } + + /* Activate the command slot */ + mutex_acquire(&hba->lock); + mmio_write32(&port->ci, __BIT(cmdslot)); + + /* + * Wait for completion. since this might take a bit, we + * give it a few attempts in case it doesn't finish + * right away. + */ + while ((attempts++) < MAX_ATTEMPTS) { + status = ahci_poll_reg32(&port->ci, __BIT(cmdslot), false); + if (status == 0) { + break; + } + } + + /* Did we timeout? */ + if (status != 0) { + pr_error("IDENTIFY timeout: slot %d still set!\n", cmdslot); + } + + mutex_release(&hba->lock); + return status; +} + +/* + * Send the IDENTIFY command to a device and + * log info for debugging purposes. + */ +static int +ahci_identify(struct ahci_hba *hba, struct hba_port *port) +{ + paddr_t buf_phys; + struct ahci_cmd_hdr *cmdhdr; + struct ahci_cmdtab *cmdtbl; + struct ahci_fis_h2d *fis; + int cmdslot; + void *buf; + int status = 0; + + cmdslot = ahci_alloc_cmdslot(hba, port); + buf_phys = vm_alloc_pageframe(1); + buf = PHYS_TO_VIRT(buf_phys); + + if (buf == 0) { + status = -ENOMEM; + goto done; + } + + if (cmdslot < 0) { + status = cmdslot; + goto done; + } + + memset(buf, 0, vm_get_page_size()); + cmdhdr = PHYS_TO_VIRT(port->clb + cmdslot * sizeof(struct ahci_cmd_hdr)); + cmdhdr->w = 0; + cmdhdr->cfl = sizeof(struct ahci_fis_h2d) / 4; + cmdhdr->prdtl = 1; + + cmdtbl = PHYS_TO_VIRT(cmdhdr->ctba); + cmdtbl->prdt[0].dba = VIRT_TO_PHYS(buf); + cmdtbl->prdt[0].dbc = 511; + cmdtbl->prdt[0].i = 0; + + fis = (void *)&cmdtbl->cfis; + fis->command = ATA_CMD_IDENTIFY; + fis->c = 1; + fis->type = FIS_TYPE_H2D; + + if ((status = ahci_submit_cmd(hba, port, cmdslot)) != 0) { + goto done; + } + + ahci_dump_identity(buf); +done: + vm_free_pageframe(VIRT_TO_PHYS(buf), 1); + return status; +} + +/* + * Init a single port. + * + * @port: Port to init. + */ +static int +ahci_init_port(struct ahci_hba *hba, struct hba_port *port, size_t portno) +{ + paddr_t tmp; + struct ahci_cmd_hdr *cmdlist; + void *fis; + size_t cmdlist_size, pagesize; + uint32_t sig; + uint8_t ncmdslots; + int status = 0; + + sig = mmio_read32(&port->sig); + status = ahci_stop_port(port); + if (status != 0) { + pr_trace("Failed to stop port %d\n", portno); + return status; + } + + /* Try to report device type based on signature */ + switch (sig) { + case AHCI_SIG_PM: + pr_trace("Port %d has port multiplier signature\n", portno); + return 0; /* TODO */ + case AHCI_SIG_ATA: + pr_trace("Port %d has ATA signature (SATA drive)\n", portno); + break; + default: + return 0; /* TODO */ + } + + ncmdslots = hba->ncmdslots; + pagesize = vm_get_page_size(); + + /* Allocate our command list */ + cmdlist_size = __ALIGN_UP(ncmdslots * AHCI_CMDENTRY_SIZE, pagesize); + tmp = vm_alloc_pageframe(cmdlist_size / pagesize); + cmdlist = PHYS_TO_VIRT(tmp); + if (tmp == 0) { + pr_trace("Failed to allocate cmdlist\n"); + status = -ENOMEM; + goto done; + } + + tmp = vm_alloc_pageframe(1); + fis = PHYS_TO_VIRT(tmp); + if (tmp == 0) { + pr_trace("Failed to allocate FIS\n"); + status = -ENOMEM; + goto done; + } + + memset(cmdlist, 0, cmdlist_size); + memset(fis, 0, AHCI_FIS_SIZE); + hba->cmdlist = cmdlist; + + /* Set the registers */ + port->clb = VIRT_TO_PHYS(cmdlist); + port->fb = VIRT_TO_PHYS(fis); + + for (int i = 0; i < ncmdslots; ++i) { + cmdlist[i].prdtl = 1; + cmdlist[i].ctba = vm_alloc_pageframe(1); + } + + /* Now try to start up the port */ + if ((status = ahci_start_port(port)) != 0) { + pr_trace("Failed to start port %d\n", portno); + goto done; + } + + ahci_identify(hba, port); +done: + if (status != 0 && cmdlist != NULL) + vm_free_pageframe(port->clb, cmdlist_size / pagesize); + if (status != 0 && fis != NULL) + vm_free_pageframe(port->fb, 1); + + return status; +} + +/* + * Hard reset port and reinitialize + * link. + */ +static int +ahci_reset_port(struct hba_port *port) +{ + uint32_t sctl, ssts; + + ahci_start_port(port); + sctl = mmio_read32(&port->sctl); + + /* Transmit COMRESET for ~2ms */ + sctl = (sctl & ~0xF) | AHCI_DET_COMRESET; + mmio_write32(&port->sctl, sctl); + driver_tmr.msleep(2); + + /* Stop transmission of COMRESET */ + sctl &= ~AHCI_DET_COMRESET; + mmio_write32(&port->sctl, sctl); + + /* + * Give around ~150ms for the link to become + * reestablished. Then make sure that it is + * actually established by checking PxSSTS.DET + */ + driver_tmr.msleep(150); + ssts = mmio_read32(&port->ssts); + if (AHCI_PXSSTS_DET(ssts) != AHCI_DET_COMM) { + return -1; + } + + return 0; +} + +/* + * Sets up devices connected to the physical ports + * on the HBA. + * + * XXX: Since this is called after ahci_init_hba() which also + * resets the HBA, we'll need to reestablish the link + * between the devices and the HBA. + */ +static int +ahci_init_ports(struct ahci_hba *hba) +{ + struct hba_memspace *abar = hba->abar; + uint32_t ports_impl; + struct hba_port *port; + + pr_trace("HBA supports max %d port(s)\n", hba->nports); + ports_impl = mmio_read32(&abar->pi); + + /* Initialize active ports */ + for (size_t i = 0; i < sizeof(abar->pi) * 8; ++i) { + if (!__TEST(ports_impl, __BIT(i))) { + continue; + } + + port = &abar->ports[i]; + if (ahci_reset_port(port) != 0) { + continue; + } + + if (ahci_port_active(port)) { + ahci_init_port(hba, port, i); + } + } + + return 0; +} +/* + * Sets up the HBA + */ +static int +ahci_init_hba(struct ahci_hba *hba) +{ + struct hba_memspace *abar = hba->abar; + uint32_t cap; + + /* Reset the HBA to ensure it is a known state */ + ahci_hba_reset(hba); + + /* Setup HBA structure and save some state */ + cap = mmio_read32(&abar->cap); + hba->ncmdslots = AHCI_CAP_NCS(cap) + 1; + hba->nports = AHCI_CAP_NP(cap) + 1; + + ahci_init_ports(hba); + return 0; +} + +static int +ahci_init(void) +{ + uint16_t cmdreg_bits; + struct ahci_hba hba = {0}; + struct pci_lookup ahci_lookup = { + .pci_class = 0x01, + .pci_subclass = 0x06 + }; + + dev = pci_get_device(ahci_lookup, PCI_CLASS | PCI_SUBCLASS); + + if (dev == NULL) { + return -1; + } + + cmdreg_bits = PCI_BUS_MASTERING | PCI_MEM_SPACE; + pci_set_cmdreg(dev, cmdreg_bits); + + if (req_timer(TIMER_GP, &driver_tmr) != TMRR_SUCCESS) { + pr_error("Failed to fetch general purpose timer\n"); + return -1; + } + + if (driver_tmr.msleep == NULL) { + pr_error("Timer does not have msleep()\n"); + return -1; + } + + hba.abar = (struct hba_memspace *)PCI_BAR_MEMBASE(dev->bar[5]); + pr_trace("AHCI HBA memspace @ 0x%p\n", hba.abar); + ahci_init_hba(&hba); + return 0; +} + +DRIVER_EXPORT(ahci_init); diff --git a/sys/include/dev/ic/ahciregs.h b/sys/include/dev/ic/ahciregs.h new file mode 100644 index 0000000..b2da5b7 --- /dev/null +++ b/sys/include/dev/ic/ahciregs.h @@ -0,0 +1,142 @@ +/* + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * 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. + * 3. Neither the name of Hyra nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER 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. + */ + +#ifndef _AHCIREGS_H_ +#define _AHCIREGS_H_ + +#include <sys/types.h> +#include <sys/cdefs.h> + +struct hba_port { + volatile uint64_t clb; /* Command list base (1k-byte aligned) */ + volatile uint64_t fb; /* FIS base (256-byte aligned) */ + volatile uint32_t is; /* Interrupt status */ + volatile uint32_t ie; /* Interrupt enable */ + volatile uint32_t cmd; /* Command and status */ + volatile uint32_t rsvd0; /* Reserved */ + volatile uint32_t tfd; /* Task file data */ + volatile uint32_t sig; /* Signature */ + volatile uint32_t ssts; /* SATA status */ + volatile uint32_t sctl; /* SATA control */ + volatile uint32_t serr; /* SATA error */ + volatile uint32_t sact; /* SATA active */ + volatile uint32_t ci; /* Command issue */ + volatile uint32_t sntf; /* SATA notification */ + volatile uint32_t fbs; /* FIS-based switch control */ + volatile uint32_t rsvd1[11]; + volatile uint32_t vendor[4]; +}; + +struct hba_memspace { + volatile uint32_t cap; /* Host Capabilities */ + volatile uint32_t ghc; /* Global host control */ + volatile uint32_t is; /* Interrupt status */ + volatile uint32_t pi; /* Ports implemented */ + volatile uint32_t vs; /* Version */ + volatile uint32_t ccc_ctl; /* Command completion coalescing control */ + volatile uint32_t ccc_pts; /* Command completion coalescing ports */ + volatile uint32_t em_loc; /* Enclosure management location */ + volatile uint32_t em_ctl; /* Enclosure management control */ + volatile uint32_t cap2; /* Host capabilities extended */ + volatile uint32_t bohc; /* BIOS/OS Handoff Control and Status */ + volatile uint8_t rsvd[0x74]; /* Reserved */ + volatile uint8_t vendor[0x60]; /* Vendor specific */ + struct hba_port ports[1]; +}; + +/* Global host control bits */ +#define AHCI_GHC_AE __BIT(31) /* AHCI enable */ +#define AHCI_GHC_IE __BIT(1) /* Interrupt enable */ +#define AHCI_GHC_HR __BIT(0) /* HBA reset */ + +/* AHCI port signatures */ +#define AHCI_SIG_ATA 0x00000101 +#define AHCI_SIG_SEMB 0xC33C0101 +#define AHCI_SIG_PM 0x96690101 + +/* + * Port SATA status + * See section 3.3.10 of the AHCI spec. + */ +#define AHCI_PXSSTS_DET(SSTS) (SSTS & 0xF) +#define AHCI_PXSSTS_IPM(SSTS) ((SSTS >> 8) & 0xF) + +/* + * Port SATA control bits + * See section 3.3.11 of the AHCI spec. + */ +#define AHCI_PXSCTL_DET(SCTL) (SCTL & 0xF) + +/* + * Port command and status bits + * See section 3.3.7 of the AHCI spec. + */ +#define AHCI_PXCMD_ST __BIT(0) /* Start */ +#define AHCI_PXCMD_FRE __BIT(4) /* FIS Receive Enable */ +#define AHCI_PXCMD_FR __BIT(14) /* FIS Receive Running */ +#define AHCI_PXCMD_CR __BIT(15) /* Command List Running */ + +/* + * Interrupt status bits + * See section 3.3.5 of the AHCI spec. + */ +#define AHCI_PXIS_TFES __BIT(31) + +/* + * Task file data bits + * See section 3.3.8 of the AHCI spec. + */ +#define AHCI_PXTFD_ERR __BIT(0) +#define AHCI_PXTFD_DRQ __BIT(3) +#define AHCI_PXTFD_BSY __BIT(7) + +/* + * Capability bits + * See section 3.1.1 of the AHCI spec. + */ +#define AHCI_CAP_NP(CAP) (CAP & 0x1F) /* Number of ports */ +#define AHCI_CAP_NCS(CAP) ((CAP >> 8) & 0x1F) /* Number of command slots */ + +/* + * Device detection (DET) and Interface power + * management (IPM) values + * See section 3.3.10 of the AHCI spec. + */ +#define AHCI_DET_NULL 0 /* No device detected */ +#define AHCI_DET_PRESENT 1 /* Device present (no PHY comm) */ +#define AHCI_DET_COMM 3 /* Device present and phy comm established */ +#define AHCI_IPM_ACTIVE 1 + +/* + * Device detection initialization values + * See section 3.3.11 of the AHCI spec. + */ +#define AHCI_DET_COMRESET 1 + +#endif /* !_AHCIREGS_H_ */ diff --git a/sys/include/dev/ic/ahcivar.h b/sys/include/dev/ic/ahcivar.h new file mode 100644 index 0000000..72ca198 --- /dev/null +++ b/sys/include/dev/ic/ahcivar.h @@ -0,0 +1,137 @@ +/* + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * 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. + * 3. Neither the name of Hyra nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER 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. + */ + +#ifndef _AHCIVAR_H_ +#define _AHCIVAR_H_ + +#include <sys/types.h> +#include <sys/cdefs.h> +#include <sys/mutex.h> +#include <dev/ic/ahciregs.h> + +struct ata_identity { + uint16_t rsvd0 : 1; + uint16_t unused0 : 1; + uint16_t incomplete : 1; + uint16_t unused1 : 3; + uint16_t fixed_dev : 1; + uint16_t removable : 1; + uint16_t unused2 : 7; + uint16_t device_type : 1; + uint16_t ncylinders; + uint16_t specific_config; + uint16_t nheads; + uint16_t unused3[2]; + uint16_t sectors_per_track; + uint16_t vendor[3]; + char serial_number[20]; + uint16_t unused4[2]; + uint16_t unused5; + char firmware_rev[8]; + char model_number[40]; + char pad[256]; +}; + +/* Physical region descriptor table entry */ +struct ahci_prdt_entry { + uintptr_t dba; /* Data base address */ + uint32_t rsvd0; /* Reserved */ + uint32_t dbc : 22; /* Count */ + uint16_t rsvd1 : 9; /* Reserved */ + uint8_t i : 1; /* Interrupt on completion */ +}; + +/* Command header */ +struct ahci_cmd_hdr { + uint8_t cfl : 5; /* Command FIS length */ + uint8_t a : 1; /* ATAPI */ + uint8_t w : 1; /* Write */ + uint8_t p : 1; /* Prefetchable */ + uint8_t r : 1; /* Reset */ + uint8_t c : 1; /* Clear busy upon R_OK */ + uint8_t rsvd0 : 1; /* Reserved */ + uint8_t pmp : 4; /* Port multiplier port */ + uint16_t prdtl; /* PRDT length (in entries) */ + volatile uint32_t prdbc; /* PRDT bytes transferred count */ + uintptr_t ctba; /* Command table descriptor base addr */ + uint32_t rsvd1[4]; /* Reserved */ +}; + +/* Command table */ +struct ahci_cmdtab { + uint8_t cfis[64]; + uint8_t acmd[16]; + uint8_t rsvd[48]; + struct ahci_prdt_entry prdt[1]; +}; + +struct ahci_fis_h2d { + uint8_t type; + uint8_t pmp : 4; + uint8_t rsvd0 : 3; + uint8_t c : 1; + uint8_t command; + uint8_t featurel; + uint8_t lba0; + uint8_t lba1; + uint8_t lba2; + uint8_t device; + uint8_t lba3; + uint8_t lba4; + uint8_t lba5; + uint8_t featureh; + uint8_t countl; + uint8_t counth; + uint8_t icc; + uint8_t control; + uint8_t rsvd1[4]; +}; + +struct ahci_hba { + struct hba_memspace *abar; + struct ahci_cmd_hdr *cmdlist; + uint32_t ncmdslots; + uint32_t nports; + struct mutex lock; +}; + +/* Commands */ +#define ATA_CMD_NOP 0x00 +#define ATA_CMD_IDENTIFY 0xEC + +/* FIS types */ +#define FIS_TYPE_H2D 0x27 +#define FIS_TYPE_D2H 0x34 + +#define AHCI_TIMEOUT 500 +#define AHCI_FIS_SIZE 256 +#define AHCI_CMDTAB_SIZE 256 +#define AHCI_CMDENTRY_SIZE 32 + +#endif /* !_AHCIVAR_H_ */ |