1dd48af36SAlexander Motin /*- 2dd48af36SAlexander Motin * Copyright (c) 2010 Alexander Motin <mav@FreeBSD.org> 3dd48af36SAlexander Motin * All rights reserved. 4dd48af36SAlexander Motin * 5dd48af36SAlexander Motin * Redistribution and use in source and binary forms, with or without 6dd48af36SAlexander Motin * modification, are permitted provided that the following conditions 7dd48af36SAlexander Motin * are met: 8dd48af36SAlexander Motin * 1. Redistributions of source code must retain the above copyright 9dd48af36SAlexander Motin * notice, this list of conditions and the following disclaimer, 10dd48af36SAlexander Motin * without modification, immediately at the beginning of the file. 11dd48af36SAlexander Motin * 2. Redistributions in binary form must reproduce the above copyright 12dd48af36SAlexander Motin * notice, this list of conditions and the following disclaimer in the 13dd48af36SAlexander Motin * documentation and/or other materials provided with the distribution. 14dd48af36SAlexander Motin * 15dd48af36SAlexander Motin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16dd48af36SAlexander Motin * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17dd48af36SAlexander Motin * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18dd48af36SAlexander Motin * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19dd48af36SAlexander Motin * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20dd48af36SAlexander Motin * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21dd48af36SAlexander Motin * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22dd48af36SAlexander Motin * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23dd48af36SAlexander Motin * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24dd48af36SAlexander Motin * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25dd48af36SAlexander Motin * 26dd48af36SAlexander Motin * $FreeBSD$ 27dd48af36SAlexander Motin */ 28dd48af36SAlexander Motin 29dd48af36SAlexander Motin #include "mvs_if.h" 30dd48af36SAlexander Motin 31dd48af36SAlexander Motin /* Chip registers */ 32dd48af36SAlexander Motin #define CHIP_PCIEIC 0x1900 /* PCIe Interrupt Cause */ 33dd48af36SAlexander Motin #define CHIP_PCIEIM 0x1910 /* PCIe Interrupt Mask */ 34dd48af36SAlexander Motin #define CHIP_PCIIC 0x1d58 /* PCI Interrupt Cause */ 35dd48af36SAlexander Motin #define CHIP_PCIIM 0x1d5c /* PCI Interrupt Mask */ 36dd48af36SAlexander Motin #define CHIP_MIC 0x1d60 /* Main Interrupt Cause */ 37dd48af36SAlexander Motin #define CHIP_MIM 0x1d64 /* Main Interrupt Mask */ 38dd48af36SAlexander Motin #define CHIP_SOC_MIC 0x20 /* SoC Main Interrupt Cause */ 39dd48af36SAlexander Motin #define CHIP_SOC_MIM 0x24 /* SoC Main Interrupt Mask */ 40dd48af36SAlexander Motin #define IC_ERR_IRQ (1 << 0) /* shift by (2 * port #) */ 41dd48af36SAlexander Motin #define IC_DONE_IRQ (1 << 1) /* shift by (2 * port #) */ 42dd48af36SAlexander Motin #define IC_HC0 0x000001ff /* bits 0-8 = HC0 */ 43dd48af36SAlexander Motin #define IC_HC_SHIFT 9 /* HC1 shift */ 44dd48af36SAlexander Motin #define IC_HC1 (IC_HC0 << IC_HC_SHIFT) /* 9-17 = HC1 */ 45dd48af36SAlexander Motin #define IC_ERR_HC0 0x00000055 /* HC0 ERR_IRQ */ 46dd48af36SAlexander Motin #define IC_DONE_HC0 0x000000aa /* HC0 DONE_IRQ */ 47dd48af36SAlexander Motin #define IC_ERR_HC1 (IC_ERR_HC0 << IC_HC_SHIFT) /* HC1 ERR_IRQ */ 48dd48af36SAlexander Motin #define IC_DONE_HC1 (IC_DONE_HC0 << IC_HC_SHIFT) /* HC1 DONE_IRQ */ 49dd48af36SAlexander Motin #define IC_HC0_COAL_DONE (1 << 8) /* HC0 IRQ coalescing */ 50dd48af36SAlexander Motin #define IC_HC1_COAL_DONE (1 << 17) /* HC1 IRQ coalescing */ 51dd48af36SAlexander Motin #define IC_PCI_ERR (1 << 18) 52dd48af36SAlexander Motin #define IC_TRAN_COAL_LO_DONE (1 << 19) /* transaction coalescing */ 53dd48af36SAlexander Motin #define IC_TRAN_COAL_HI_DONE (1 << 20) /* transaction coalescing */ 54dd48af36SAlexander Motin #define IC_ALL_PORTS_COAL_DONE (1 << 21) /* GEN_II(E) IRQ coalescing */ 55dd48af36SAlexander Motin #define IC_GPIO_INT (1 << 22) 56dd48af36SAlexander Motin #define IC_SELF_INT (1 << 23) 57dd48af36SAlexander Motin #define IC_TWSI_INT (1 << 24) 58dd48af36SAlexander Motin #define IC_MAIN_RSVD (0xfe000000) /* bits 31-25 */ 59dd48af36SAlexander Motin #define IC_MAIN_RSVD_5 (0xfff10000) /* bits 31-19 */ 60dd48af36SAlexander Motin #define IC_MAIN_RSVD_SOC (0xfffffec0) /* bits 31-9, 7-6 */ 61dd48af36SAlexander Motin 62dd48af36SAlexander Motin #define CHIP_SOC_LED 0x2C /* SoC LED Configuration */ 63dd48af36SAlexander Motin 64dd48af36SAlexander Motin /* Chip CCC registers */ 65dd48af36SAlexander Motin #define CHIP_ICC 0x18008 66dd48af36SAlexander Motin #define CHIP_ICC_ALL_PORTS (1 << 4) /* all ports irq event */ 67dd48af36SAlexander Motin #define CHIP_ICT 0x180cc 68dd48af36SAlexander Motin #define CHIP_ITT 0x180d0 69dd48af36SAlexander Motin #define CHIP_TRAN_COAL_CAUSE_LO 0x18088 70dd48af36SAlexander Motin #define CHIP_TRAN_COAL_CAUSE_HI 0x1808c 71dd48af36SAlexander Motin 72dd48af36SAlexander Motin /* Host Controller registers */ 73dd48af36SAlexander Motin #define HC_SIZE 0x10000 74dd48af36SAlexander Motin #define HC_OFFSET 0x20000 75dd48af36SAlexander Motin #define HC_BASE(hc) ((hc) * HC_SIZE + HC_OFFSET) 76dd48af36SAlexander Motin 77dd48af36SAlexander Motin #define HC_CFG 0x0 /* Configuration */ 78dd48af36SAlexander Motin #define HC_CFG_TIMEOUT_MASK (0xff << 0) 79dd48af36SAlexander Motin #define HC_CFG_NODMABS (1 << 8) 80dd48af36SAlexander Motin #define HC_CFG_NOEDMABS (1 << 9) 81dd48af36SAlexander Motin #define HC_CFG_NOPRDBS (1 << 10) 82dd48af36SAlexander Motin #define HC_CFG_TIMEOUTEN (1 << 16) /* Timer Enable */ 83dd48af36SAlexander Motin #define HC_CFG_COALDIS(p) (1 << ((p) + 24))/* Coalescing Disable*/ 84dd48af36SAlexander Motin #define HC_RQOP 0x4 /* Request Queue Out-Pointer */ 85dd48af36SAlexander Motin #define HC_RQIP 0x8 /* Response Queue In-Pointer */ 86dd48af36SAlexander Motin #define HC_ICT 0xc /* Interrupt Coalescing Threshold */ 87dd48af36SAlexander Motin #define HC_ICT_SAICOALT_MASK 0x000000ff 88dd48af36SAlexander Motin #define HC_ITT 0x10 /* Interrupt Time Threshold */ 89dd48af36SAlexander Motin #define HC_ITT_SAITMTH_MASK 0x00ffffff 90dd48af36SAlexander Motin #define HC_IC 0x14 /* Interrupt Cause */ 91dd48af36SAlexander Motin #define HC_IC_DONE(p) (1 << (p)) /* SaCrpb/DMA Done */ 92dd48af36SAlexander Motin #define HC_IC_COAL (1 << 4) /* Intr Coalescing */ 93dd48af36SAlexander Motin #define HC_IC_DEV(p) (1 << ((p) + 8)) /* Device Intr */ 94dd48af36SAlexander Motin 95dd48af36SAlexander Motin /* Port registers */ 96dd48af36SAlexander Motin #define PORT_SIZE 0x2000 97dd48af36SAlexander Motin #define PORT_OFFSET 0x2000 98dd48af36SAlexander Motin #define PORT_BASE(hc) ((hc) * PORT_SIZE + PORT_OFFSET) 99dd48af36SAlexander Motin 100dd48af36SAlexander Motin #define EDMA_CFG 0x0 /* Configuration */ 101dd48af36SAlexander Motin #define EDMA_CFG_RESERVED (0x1f << 0) /* Queue len ? */ 102dd48af36SAlexander Motin #define EDMA_CFG_ESATANATVCMDQUE (1 << 5) 103dd48af36SAlexander Motin #define EDMA_CFG_ERDBSZ (1 << 8) 104dd48af36SAlexander Motin #define EDMA_CFG_EQUE (1 << 9) 105dd48af36SAlexander Motin #define EDMA_CFG_ERDBSZEXT (1 << 11) 106dd48af36SAlexander Motin #define EDMA_CFG_RESERVED2 (1 << 12) 107dd48af36SAlexander Motin #define EDMA_CFG_EWRBUFFERLEN (1 << 13) 108dd48af36SAlexander Motin #define EDMA_CFG_EDEVERR (1 << 14) 109dd48af36SAlexander Motin #define EDMA_CFG_EEDMAFBS (1 << 16) 110dd48af36SAlexander Motin #define EDMA_CFG_ECUTTHROUGHEN (1 << 17) 111dd48af36SAlexander Motin #define EDMA_CFG_EEARLYCOMPLETIONEN (1 << 18) 112dd48af36SAlexander Motin #define EDMA_CFG_EEDMAQUELEN (1 << 19) 113dd48af36SAlexander Motin #define EDMA_CFG_EHOSTQUEUECACHEEN (1 << 22) 114dd48af36SAlexander Motin #define EDMA_CFG_EMASKRXPM (1 << 23) 115dd48af36SAlexander Motin #define EDMA_CFG_RESUMEDIS (1 << 24) 116dd48af36SAlexander Motin #define EDMA_CFG_EDMAFBS (1 << 26) 117dd48af36SAlexander Motin #define EDMA_T 0x4 /* Timer */ 118dd48af36SAlexander Motin #define EDMA_IEC 0x8 /* Interrupt Error Cause */ 119dd48af36SAlexander Motin #define EDMA_IEM 0xc /* Interrupt Error Mask */ 120dd48af36SAlexander Motin #define EDMA_IE_EDEVERR (1 << 2) /* EDMA Device Error */ 121dd48af36SAlexander Motin #define EDMA_IE_EDEVDIS (1 << 3) /* EDMA Dev Disconn */ 122dd48af36SAlexander Motin #define EDMA_IE_EDEVCON (1 << 4) /* EDMA Dev Conn */ 123dd48af36SAlexander Motin #define EDMA_IE_SERRINT (1 << 5) 124dd48af36SAlexander Motin #define EDMA_IE_ESELFDIS (1 << 7) /* EDMA Self Disable */ 125dd48af36SAlexander Motin #define EDMA_IE_ETRANSINT (1 << 8) /* Transport Layer */ 126dd48af36SAlexander Motin #define EDMA_IE_EIORDYERR (1 << 12) /* EDMA IORdy Error */ 127dd48af36SAlexander Motin #define EDMA_IE_LINKXERR_SATACRC (1 << 0) /* SATA CRC error */ 128dd48af36SAlexander Motin #define EDMA_IE_LINKXERR_INTERNALFIFO (1 << 1) /* internal FIFO err */ 129dd48af36SAlexander Motin #define EDMA_IE_LINKXERR_LINKLAYERRESET (1 << 2) 130dd48af36SAlexander Motin /* Link Layer is reset by the reception of SYNC primitive from device */ 131dd48af36SAlexander Motin #define EDMA_IE_LINKXERR_OTHERERRORS (1 << 3) 132dd48af36SAlexander Motin /* 133dd48af36SAlexander Motin * Link state errors, coding errors, or running disparity errors occur 134dd48af36SAlexander Motin * during FIS reception. 135dd48af36SAlexander Motin */ 136dd48af36SAlexander Motin #define EDMA_IE_LINKTXERR_FISTXABORTED (1 << 4) /* FIS Tx is aborted */ 137dd48af36SAlexander Motin #define EDMA_IE_LINKCTLRXERR(x) ((x) << 13) /* Link Ctrl Recv Err */ 138dd48af36SAlexander Motin #define EDMA_IE_LINKDATARXERR(x) ((x) << 17) /* Link Data Recv Err */ 139dd48af36SAlexander Motin #define EDMA_IE_LINKCTLTXERR(x) ((x) << 21) /* Link Ctrl Tx Error */ 140dd48af36SAlexander Motin #define EDMA_IE_LINKDATATXERR(x) ((x) << 26) /* Link Data Tx Error */ 141dd48af36SAlexander Motin #define EDMA_IE_TRANSPROTERR (1 << 31) /* Transport Proto E */ 142dd48af36SAlexander Motin #define EDMA_IE_TRANSIENT (EDMA_IE_LINKCTLRXERR(0x0b) | \ 143dd48af36SAlexander Motin EDMA_IE_LINKCTLTXERR(0x1f)) 144dd48af36SAlexander Motin /* Non-fatal Errors */ 145dd48af36SAlexander Motin #define EDMA_REQQBAH 0x10 /* Request Queue Base Address High */ 146dd48af36SAlexander Motin #define EDMA_REQQIP 0x14 /* Request Queue In-Pointer */ 147dd48af36SAlexander Motin #define EDMA_REQQOP 0x18 /* Request Queue Out-Pointer */ 148dd48af36SAlexander Motin #define EDMA_REQQP_ERQQP_SHIFT 5 149dd48af36SAlexander Motin #define EDMA_REQQP_ERQQP_MASK 0x000003e0 150dd48af36SAlexander Motin #define EDMA_REQQP_ERQQBAP_MASK 0x00000c00 151dd48af36SAlexander Motin #define EDMA_REQQP_ERQQBA_MASK 0xfffff000 152dd48af36SAlexander Motin #define EDMA_RESQBAH 0x1c /* Response Queue Base Address High */ 153dd48af36SAlexander Motin #define EDMA_RESQIP 0x20 /* Response Queue In-Pointer */ 154dd48af36SAlexander Motin #define EDMA_RESQOP 0x24 /* Response Queue Out-Pointer */ 155dd48af36SAlexander Motin #define EDMA_RESQP_ERPQP_SHIFT 3 156dd48af36SAlexander Motin #define EDMA_RESQP_ERPQP_MASK 0x000000f8 157dd48af36SAlexander Motin #define EDMA_RESQP_ERPQBAP_MASK 0x00000300 158dd48af36SAlexander Motin #define EDMA_RESQP_ERPQBA_MASK 0xfffffc00 159dd48af36SAlexander Motin #define EDMA_CMD 0x28 /* Command */ 160dd48af36SAlexander Motin #define EDMA_CMD_EENEDMA (1 << 0) /* Enable EDMA */ 161dd48af36SAlexander Motin #define EDMA_CMD_EDSEDMA (1 << 1) /* Disable EDMA */ 162dd48af36SAlexander Motin #define EDMA_CMD_EATARST (1 << 2) /* ATA Device Reset */ 163dd48af36SAlexander Motin #define EDMA_CMD_EEDMAFRZ (1 << 4) /* EDMA Freeze */ 164dd48af36SAlexander Motin #define EDMA_TC 0x2c /* Test Control */ 165dd48af36SAlexander Motin #define EDMA_S 0x30 /* Status */ 166dd48af36SAlexander Motin #define EDMA_S_EDEVQUETAG(s) ((s) & 0x0000001f) 167dd48af36SAlexander Motin #define EDMA_S_EDEVDIR_WRITE (0 << 5) 168dd48af36SAlexander Motin #define EDMA_S_EDEVDIR_READ (1 << 5) 169dd48af36SAlexander Motin #define EDMA_S_ECACHEEMPTY (1 << 6) 170dd48af36SAlexander Motin #define EDMA_S_EDMAIDLE (1 << 7) 171dd48af36SAlexander Motin #define EDMA_S_ESTATE(s) (((s) & 0x0000ff00) >> 8) 172dd48af36SAlexander Motin #define EDMA_S_EIOID(s) (((s) & 0x003f0000) >> 16) 173dd48af36SAlexander Motin #define EDMA_IORT 0x34 /* IORdy Timeout */ 174dd48af36SAlexander Motin #define EDMA_CDT 0x40 /* Command Delay Threshold */ 175dd48af36SAlexander Motin #define EDMA_HC 0x60 /* Halt Condition */ 176dd48af36SAlexander Motin #define EDMA_UNKN_RESD 0x6C /* Unknown register */ 177dd48af36SAlexander Motin #define EDMA_CQDCQOS(x) (0x90 + ((x) << 2) 178dd48af36SAlexander Motin /* NCQ Done/TCQ Outstanding Status */ 179dd48af36SAlexander Motin 180dd48af36SAlexander Motin /* ATA register defines */ 181dd48af36SAlexander Motin #define ATA_DATA 0x100 /* (RW) data */ 182dd48af36SAlexander Motin #define ATA_FEATURE 0x104 /* (W) feature */ 183dd48af36SAlexander Motin #define ATA_F_DMA 0x01 /* enable DMA */ 184dd48af36SAlexander Motin #define ATA_F_OVL 0x02 /* enable overlap */ 185dd48af36SAlexander Motin #define ATA_ERROR 0x104 /* (R) error */ 186dd48af36SAlexander Motin #define ATA_E_ILI 0x01 /* illegal length */ 187dd48af36SAlexander Motin #define ATA_E_NM 0x02 /* no media */ 188dd48af36SAlexander Motin #define ATA_E_ABORT 0x04 /* command aborted */ 189dd48af36SAlexander Motin #define ATA_E_MCR 0x08 /* media change request */ 190dd48af36SAlexander Motin #define ATA_E_IDNF 0x10 /* ID not found */ 191dd48af36SAlexander Motin #define ATA_E_MC 0x20 /* media changed */ 192dd48af36SAlexander Motin #define ATA_E_UNC 0x40 /* uncorrectable data */ 193dd48af36SAlexander Motin #define ATA_E_ICRC 0x80 /* UDMA crc error */ 194dd48af36SAlexander Motin #define ATA_E_ATAPI_SENSE_MASK 0xf0 /* ATAPI sense key mask */ 195dd48af36SAlexander Motin #define ATA_COUNT 0x108 /* (W) sector count */ 196dd48af36SAlexander Motin #define ATA_IREASON 0x108 /* (R) interrupt reason */ 197dd48af36SAlexander Motin #define ATA_I_CMD 0x01 /* cmd (1) | data (0) */ 198dd48af36SAlexander Motin #define ATA_I_IN 0x02 /* read (1) | write (0) */ 199dd48af36SAlexander Motin #define ATA_I_RELEASE 0x04 /* released bus (1) */ 200dd48af36SAlexander Motin #define ATA_I_TAGMASK 0xf8 /* tag mask */ 201dd48af36SAlexander Motin #define ATA_SECTOR 0x10c /* (RW) sector # */ 202dd48af36SAlexander Motin #define ATA_CYL_LSB 0x110 /* (RW) cylinder# LSB */ 203dd48af36SAlexander Motin #define ATA_CYL_MSB 0x114 /* (RW) cylinder# MSB */ 204dd48af36SAlexander Motin #define ATA_DRIVE 0x118 /* (W) Sector/Drive/Head */ 205dd48af36SAlexander Motin #define ATA_D_LBA 0x40 /* use LBA addressing */ 206dd48af36SAlexander Motin #define ATA_D_IBM 0xa0 /* 512 byte sectors, ECC */ 207dd48af36SAlexander Motin #define ATA_COMMAND 0x11c /* (W) command */ 208dd48af36SAlexander Motin #define ATA_STATUS 0x11c /* (R) status */ 209dd48af36SAlexander Motin #define ATA_S_ERROR 0x01 /* error */ 210dd48af36SAlexander Motin #define ATA_S_INDEX 0x02 /* index */ 211dd48af36SAlexander Motin #define ATA_S_CORR 0x04 /* data corrected */ 212dd48af36SAlexander Motin #define ATA_S_DRQ 0x08 /* data request */ 213dd48af36SAlexander Motin #define ATA_S_DSC 0x10 /* drive seek completed */ 214dd48af36SAlexander Motin #define ATA_S_SERVICE 0x10 /* drive needs service */ 215dd48af36SAlexander Motin #define ATA_S_DWF 0x20 /* drive write fault */ 216dd48af36SAlexander Motin #define ATA_S_DMA 0x20 /* DMA ready */ 217dd48af36SAlexander Motin #define ATA_S_READY 0x40 /* drive ready */ 218dd48af36SAlexander Motin #define ATA_S_BUSY 0x80 /* busy */ 219dd48af36SAlexander Motin #define ATA_CONTROL 0x120 /* (W) control */ 220dd48af36SAlexander Motin #define ATA_A_IDS 0x02 /* disable interrupts */ 221dd48af36SAlexander Motin #define ATA_A_RESET 0x04 /* RESET controller */ 222dd48af36SAlexander Motin #define ATA_A_4BIT 0x08 /* 4 head bits */ 223dd48af36SAlexander Motin #define ATA_A_HOB 0x80 /* High Order Byte enable */ 224dd48af36SAlexander Motin #define ATA_ALTSTAT 0x120 /* (R) alternate status */ 225dd48af36SAlexander Motin #define ATAPI_P_READ (ATA_S_DRQ | ATA_I_IN) 226dd48af36SAlexander Motin #define ATAPI_P_WRITE (ATA_S_DRQ) 227dd48af36SAlexander Motin #define ATAPI_P_CMDOUT (ATA_S_DRQ | ATA_I_CMD) 228dd48af36SAlexander Motin #define ATAPI_P_DONEDRQ (ATA_S_DRQ | ATA_I_CMD | ATA_I_IN) 229dd48af36SAlexander Motin #define ATAPI_P_DONE (ATA_I_CMD | ATA_I_IN) 230dd48af36SAlexander Motin #define ATAPI_P_ABORT 0 231dd48af36SAlexander Motin 232dd48af36SAlexander Motin /* Basic DMA Registers */ 233dd48af36SAlexander Motin #define DMA_C 0x224 /* Basic DMA Command */ 234dd48af36SAlexander Motin #define DMA_C_START (1 << 0) 235dd48af36SAlexander Motin #define DMA_C_READ (1 << 3) 236dd48af36SAlexander Motin #define DMA_C_DREGIONVALID (1 << 8) 237dd48af36SAlexander Motin #define DMA_C_DREGIONLAST (1 << 9) 238dd48af36SAlexander Motin #define DMA_C_CONTFROMPREV (1 << 10) 239dd48af36SAlexander Motin #define DMA_C_DRBC(n) (((n) & 0xffff) << 16) 240dd48af36SAlexander Motin #define DMA_S 0x228 /* Basic DMA Status */ 241dd48af36SAlexander Motin #define DMA_S_ACT (1 << 0) /* Active */ 242dd48af36SAlexander Motin #define DMA_S_ERR (1 << 1) /* Error */ 243dd48af36SAlexander Motin #define DMA_S_PAUSED (1 << 2) /* Paused */ 244dd48af36SAlexander Motin #define DMA_S_LAST (1 << 3) /* Last */ 245dd48af36SAlexander Motin #define DMA_DTLBA 0x22c /* Descriptor Table Low Base Address */ 246dd48af36SAlexander Motin #define DMA_DTLBA_MASK 0xfffffff0 247dd48af36SAlexander Motin #define DMA_DTHBA 0x230 /* Descriptor Table High Base Address */ 248dd48af36SAlexander Motin #define DMA_DRLA 0x234 /* Data Region Low Address */ 249dd48af36SAlexander Motin #define DMA_DRHA 0x238 /* Data Region High Address */ 250dd48af36SAlexander Motin 251dd48af36SAlexander Motin /* Serial-ATA Registers */ 252dd48af36SAlexander Motin #define SATA_SS 0x300 /* SStatus */ 253dd48af36SAlexander Motin #define SATA_SS_DET_MASK 0x0000000f 254dd48af36SAlexander Motin #define SATA_SS_DET_NO_DEVICE 0x00000000 255dd48af36SAlexander Motin #define SATA_SS_DET_DEV_PRESENT 0x00000001 256dd48af36SAlexander Motin #define SATA_SS_DET_PHY_ONLINE 0x00000003 257dd48af36SAlexander Motin #define SATA_SS_DET_PHY_OFFLINE 0x00000004 258dd48af36SAlexander Motin 259dd48af36SAlexander Motin #define SATA_SS_SPD_MASK 0x000000f0 260dd48af36SAlexander Motin #define SATA_SS_SPD_NO_SPEED 0x00000000 261dd48af36SAlexander Motin #define SATA_SS_SPD_GEN1 0x00000010 262dd48af36SAlexander Motin #define SATA_SS_SPD_GEN2 0x00000020 263dd48af36SAlexander Motin #define SATA_SS_SPD_GEN3 0x00000040 264dd48af36SAlexander Motin 265dd48af36SAlexander Motin #define SATA_SS_IPM_MASK 0x00000f00 266dd48af36SAlexander Motin #define SATA_SS_IPM_NO_DEVICE 0x00000000 267dd48af36SAlexander Motin #define SATA_SS_IPM_ACTIVE 0x00000100 268dd48af36SAlexander Motin #define SATA_SS_IPM_PARTIAL 0x00000200 269dd48af36SAlexander Motin #define SATA_SS_IPM_SLUMBER 0x00000600 270dd48af36SAlexander Motin #define SATA_SE 0x304 /* SError */ 271dd48af36SAlexander Motin #define SATA_SEIM 0x340 /* SError Interrupt Mask */ 272dd48af36SAlexander Motin #define SATA_SE_DATA_CORRECTED 0x00000001 273dd48af36SAlexander Motin #define SATA_SE_COMM_CORRECTED 0x00000002 274dd48af36SAlexander Motin #define SATA_SE_DATA_ERR 0x00000100 275dd48af36SAlexander Motin #define SATA_SE_COMM_ERR 0x00000200 276dd48af36SAlexander Motin #define SATA_SE_PROT_ERR 0x00000400 277dd48af36SAlexander Motin #define SATA_SE_HOST_ERR 0x00000800 278dd48af36SAlexander Motin #define SATA_SE_PHY_CHANGED 0x00010000 279dd48af36SAlexander Motin #define SATA_SE_PHY_IERROR 0x00020000 280dd48af36SAlexander Motin #define SATA_SE_COMM_WAKE 0x00040000 281dd48af36SAlexander Motin #define SATA_SE_DECODE_ERR 0x00080000 282dd48af36SAlexander Motin #define SATA_SE_PARITY_ERR 0x00100000 283dd48af36SAlexander Motin #define SATA_SE_CRC_ERR 0x00200000 284dd48af36SAlexander Motin #define SATA_SE_HANDSHAKE_ERR 0x00400000 285dd48af36SAlexander Motin #define SATA_SE_LINKSEQ_ERR 0x00800000 286dd48af36SAlexander Motin #define SATA_SE_TRANSPORT_ERR 0x01000000 287dd48af36SAlexander Motin #define SATA_SE_UNKNOWN_FIS 0x02000000 288dd48af36SAlexander Motin #define SATA_SC 0x308 /* SControl */ 289dd48af36SAlexander Motin #define SATA_SC_DET_MASK 0x0000000f 290dd48af36SAlexander Motin #define SATA_SC_DET_IDLE 0x00000000 291dd48af36SAlexander Motin #define SATA_SC_DET_RESET 0x00000001 292dd48af36SAlexander Motin #define SATA_SC_DET_DISABLE 0x00000004 293dd48af36SAlexander Motin 294dd48af36SAlexander Motin #define SATA_SC_SPD_MASK 0x000000f0 295dd48af36SAlexander Motin #define SATA_SC_SPD_NO_SPEED 0x00000000 296dd48af36SAlexander Motin #define SATA_SC_SPD_SPEED_GEN1 0x00000010 297dd48af36SAlexander Motin #define SATA_SC_SPD_SPEED_GEN2 0x00000020 298dd48af36SAlexander Motin #define SATA_SC_SPD_SPEED_GEN3 0x00000040 299dd48af36SAlexander Motin 300dd48af36SAlexander Motin #define SATA_SC_IPM_MASK 0x00000f00 301dd48af36SAlexander Motin #define SATA_SC_IPM_NONE 0x00000000 302dd48af36SAlexander Motin #define SATA_SC_IPM_DIS_PARTIAL 0x00000100 303dd48af36SAlexander Motin #define SATA_SC_IPM_DIS_SLUMBER 0x00000200 304dd48af36SAlexander Motin 305dd48af36SAlexander Motin #define SATA_SC_SPM_MASK 0x0000f000 306dd48af36SAlexander Motin #define SATA_SC_SPM_NONE 0x00000000 307dd48af36SAlexander Motin #define SATA_SC_SPM_PARTIAL 0x00001000 308dd48af36SAlexander Motin #define SATA_SC_SPM_SLUMBER 0x00002000 309dd48af36SAlexander Motin #define SATA_SC_SPM_ACTIVE 0x00004000 310dd48af36SAlexander Motin #define SATA_LTM 0x30c /* LTMode */ 311dd48af36SAlexander Motin #define SATA_PHYM3 0x310 /* PHY Mode 3 */ 312dd48af36SAlexander Motin #define SATA_PHYM4 0x314 /* PHY Mode 4 */ 313dd48af36SAlexander Motin #define SATA_PHYM1 0x32c /* PHY Mode 1 */ 314dd48af36SAlexander Motin #define SATA_PHYM2 0x330 /* PHY Mode 2 */ 315dd48af36SAlexander Motin #define SATA_BISTC 0x334 /* BIST Control */ 316dd48af36SAlexander Motin #define SATA_BISTDW1 0x338 /* BIST DW1 */ 317dd48af36SAlexander Motin #define SATA_BISTDW2 0x33c /* BIST DW2 */ 318dd48af36SAlexander Motin #define SATA_SATAICFG 0x050 /* Serial-ATA Interface Configuration */ 319dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKCNF_20MHZ (0 << 0) 320dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKCNF_25MHZ (1 << 0) 321dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKCNF_30MHZ (2 << 0) 322dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKCNF_40MHZ (3 << 0) 323dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKCNF_MASK (3 << 0) 324dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKDIV_1 (0 << 2) 325dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKDIV_2 (1 << 2) /* Used 20 or 25MHz */ 326dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKDIV_4 (2 << 2) /* Used 40MHz */ 327dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKDIV_3 (3 << 2) /* Used 30MHz */ 328dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKDIV_MASK (3 << 2) 329dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKFEEDDIV_50 (0 << 4) /* or 100, when Gen2En is 1 */ 330dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKFEEDDIV_60 (1 << 4) /* or 120. Used 25MHz */ 331dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKFEEDDIV_75 (2 << 4) /* or 150. Used 20MHz */ 332dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKFEEDDIV_90 (3 << 4) /* or 180 */ 333dd48af36SAlexander Motin #define SATA_SATAICFG_REFCLKFEEDDIV_MASK (3 << 4) 334dd48af36SAlexander Motin #define SATA_SATAICFG_PHYSSCEN (1 << 6) 335dd48af36SAlexander Motin #define SATA_SATAICFG_GEN2EN (1 << 7) 336dd48af36SAlexander Motin #define SATA_SATAICFG_COMMEN (1 << 8) 337dd48af36SAlexander Motin #define SATA_SATAICFG_PHYSHUTDOWN (1 << 9) 338dd48af36SAlexander Motin #define SATA_SATAICFG_TARGETMODE (1 << 10) /* 1 = Initiator */ 339dd48af36SAlexander Motin #define SATA_SATAICFG_COMCHANNEL (1 << 11) 340dd48af36SAlexander Motin #define SATA_SATAICFG_IGNOREBSY (1 << 24) 341dd48af36SAlexander Motin #define SATA_SATAICFG_LINKRSTEN (1 << 25) 342dd48af36SAlexander Motin #define SATA_SATAICFG_CMDRETXDS (1 << 26) 343dd48af36SAlexander Motin #define SATA_SATAICTL 0x344 /* Serial-ATA Interface Control */ 344dd48af36SAlexander Motin #define SATA_SATAICTL_PMPTX_MASK 0x0000000f 345dd48af36SAlexander Motin #define SATA_SATAICTL_PMPTX_SHIFT 0 346dd48af36SAlexander Motin #define SATA_SATAICTL_VUM (1 << 8) 347dd48af36SAlexander Motin #define SATA_SATAICTL_VUS (1 << 9) 348dd48af36SAlexander Motin #define SATA_SATAICTL_EDMAACT (1 << 16) 349dd48af36SAlexander Motin #define SATA_SATAICTL_CLEARSTAT (1 << 24) 350dd48af36SAlexander Motin #define SATA_SATAICTL_SRST (1 << 25) 351dd48af36SAlexander Motin #define SATA_SATAITC 0x348 /* Serial-ATA Interface Test Control */ 352dd48af36SAlexander Motin #define SATA_SATAIS 0x34c /* Serial-ATA Interface Status */ 353dd48af36SAlexander Motin #define SATA_VU 0x35c /* Vendor Unique */ 354dd48af36SAlexander Motin #define SATA_FISC 0x360 /* FIS Configuration */ 355dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4RDYEN_B0 (1 << 0) /* Device to Host FIS */ 356dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4RDYEN_B1 (1 << 1) /* SDB FIS rcv with <N>bit 0 */ 357dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4RDYEN_B2 (1 << 2) /* DMA Activate FIS */ 358dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4RDYEN_B3 (1 << 3) /* DMA Setup FIS */ 359dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4RDYEN_B4 (1 << 4) /* Data FIS first DW */ 360dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4RDYEN_B5 (1 << 5) /* Data FIS entire FIS */ 361dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4HOSTRDYEN_B0 (1 << 8) 362dd48af36SAlexander Motin /* Device to Host FIS with <ERR> or <DF> */ 363dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4HOSTRDYEN_B1 (1 << 9) /* SDB FIS rcv with <N>bit */ 364dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4HOSTRDYEN_B2 (1 << 10) /* SDB FIS rcv with <ERR> */ 365dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4HOSTRDYEN_B3 (1 << 11) /* BIST Acivate FIS */ 366dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4HOSTRDYEN_B4 (1 << 12) /* PIO Setup FIS */ 367dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4HOSTRDYEN_B5 (1 << 13) /* Data FIS with Link error */ 368dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4HOSTRDYEN_B6 (1 << 14) /* Unrecognized FIS type */ 369dd48af36SAlexander Motin #define SATA_FISC_FISWAIT4HOSTRDYEN_B7 (1 << 15) /* Any FIS */ 370dd48af36SAlexander Motin #define SATA_FISC_FISDMAACTIVATESYNCRESP (1 << 16) 371dd48af36SAlexander Motin #define SATA_FISC_FISUNRECTYPECONT (1 << 17) 372dd48af36SAlexander Motin #define SATA_FISIC 0x364 /* FIS Interrupt Cause */ 373dd48af36SAlexander Motin #define SATA_FISIM 0x368 /* FIS Interrupt Mask */ 374dd48af36SAlexander Motin #define SATA_FISDW0 0x370 /* FIS DW0 */ 375dd48af36SAlexander Motin #define SATA_FISDW1 0x374 /* FIS DW1 */ 376dd48af36SAlexander Motin #define SATA_FISDW2 0x378 /* FIS DW2 */ 377dd48af36SAlexander Motin #define SATA_FISDW3 0x37c /* FIS DW3 */ 378dd48af36SAlexander Motin #define SATA_FISDW4 0x380 /* FIS DW4 */ 379dd48af36SAlexander Motin #define SATA_FISDW5 0x384 /* FIS DW5 */ 380dd48af36SAlexander Motin #define SATA_FISDW6 0x388 /* FIS DW6 */ 381dd48af36SAlexander Motin 382dd48af36SAlexander Motin #define MVS_MAX_PORTS 8 383dd48af36SAlexander Motin #define MVS_MAX_SLOTS 32 384dd48af36SAlexander Motin 385dd48af36SAlexander Motin /* Pessimistic prognosis on number of required S/G entries */ 386dd48af36SAlexander Motin #define MVS_SG_ENTRIES (btoc(MAXPHYS) + 1) 387dd48af36SAlexander Motin 388dd48af36SAlexander Motin /* EDMA Command Request Block (CRQB) Data */ 389dd48af36SAlexander Motin struct mvs_crqb { 390dd48af36SAlexander Motin uint32_t cprdbl; /* cPRD Desriptor Table Base Low Address */ 391dd48af36SAlexander Motin uint32_t cprdbh; /* cPRD Desriptor Table Base High Address */ 392dd48af36SAlexander Motin uint16_t ctrlflg; /* Control Flags */ 393dd48af36SAlexander Motin #define MVS_CRQB_READ 0x0001 394dd48af36SAlexander Motin #define MVS_CRQB_TAG_MASK 0x003e 395dd48af36SAlexander Motin #define MVS_CRQB_TAG_SHIFT 1 396dd48af36SAlexander Motin #define MVS_CRQB_PMP_MASK 0xf000 397dd48af36SAlexander Motin #define MVS_CRQB_PMP_SHIFT 12 398dd48af36SAlexander Motin uint8_t cmd[22]; 399dd48af36SAlexander Motin } __packed; 400dd48af36SAlexander Motin 401dd48af36SAlexander Motin struct mvs_crqb_gen2e { 402dd48af36SAlexander Motin uint32_t cprdbl; /* cPRD Desriptor Table Base Low Address */ 403dd48af36SAlexander Motin uint32_t cprdbh; /* cPRD Desriptor Table Base High Address */ 404dd48af36SAlexander Motin uint32_t ctrlflg; /* Control Flags */ 405dd48af36SAlexander Motin #define MVS_CRQB2E_READ 0x00000001 406dd48af36SAlexander Motin #define MVS_CRQB2E_DTAG_MASK 0x0000003e 407dd48af36SAlexander Motin #define MVS_CRQB2E_DTAG_SHIFT 1 408dd48af36SAlexander Motin #define MVS_CRQB2E_PMP_MASK 0x0000f000 409dd48af36SAlexander Motin #define MVS_CRQB2E_PMP_SHIFT 12 410dd48af36SAlexander Motin #define MVS_CRQB2E_CPRD 0x00010000 411dd48af36SAlexander Motin #define MVS_CRQB2E_HTAG_MASK 0x003e0000 412dd48af36SAlexander Motin #define MVS_CRQB2E_HTAG_SHIFT 17 413dd48af36SAlexander Motin uint32_t drbc; /* Data Region Byte Count */ 414dd48af36SAlexander Motin uint8_t cmd[16]; 415dd48af36SAlexander Motin } __packed; 416dd48af36SAlexander Motin 417dd48af36SAlexander Motin /* EDMA Phisical Region Descriptors (ePRD) Table Data Structure */ 418dd48af36SAlexander Motin struct mvs_eprd { 419dd48af36SAlexander Motin uint32_t prdbal; /* Address bits[31:1] */ 420dd48af36SAlexander Motin uint32_t bytecount; /* Byte Count */ 421dd48af36SAlexander Motin #define MVS_EPRD_MASK 0x0000ffff /* max 64KB */ 422dd48af36SAlexander Motin #define MVS_EPRD_MAX (MVS_EPRD_MASK + 1) 423dd48af36SAlexander Motin #define MVS_EPRD_EOF 0x80000000 424dd48af36SAlexander Motin uint32_t prdbah; /* Address bits[63:32] */ 425dd48af36SAlexander Motin uint32_t resv; 426dd48af36SAlexander Motin } __packed; 427dd48af36SAlexander Motin 428dd48af36SAlexander Motin /* Command request blocks. 32 commands. First 1Kbyte aligned. */ 429dd48af36SAlexander Motin #define MVS_CRQB_OFFSET 0 430dd48af36SAlexander Motin #define MVS_CRQB_SIZE 32 /* sizeof(struct mvs_crqb) */ 431dd48af36SAlexander Motin #define MVS_CRQB_MASK 0x000003e0 432dd48af36SAlexander Motin #define MVS_CRQB_SHIFT 5 433dd48af36SAlexander Motin #define MVS_CRQB_TO_ADDR(slot) ((slot) << MVS_CRQB_SHIFT) 434dd48af36SAlexander Motin #define MVS_ADDR_TO_CRQB(addr) (((addr) & MVS_CRQB_MASK) >> MVS_CRQB_SHIFT) 435dd48af36SAlexander Motin /* ePRD blocks. Up to 32 commands, Each 16byte aligned. */ 436dd48af36SAlexander Motin #define MVS_EPRD_OFFSET (MVS_CRQB_OFFSET + MVS_CRQB_SIZE * MVS_MAX_SLOTS) 437dd48af36SAlexander Motin #define MVS_EPRD_SIZE (MVS_SG_ENTRIES * 16) /* sizeof(struct mvs_eprd) */ 438dd48af36SAlexander Motin /* Request work area. */ 439dd48af36SAlexander Motin #define MVS_WORKRQ_SIZE (MVS_EPRD_OFFSET + MVS_EPRD_SIZE * MVS_MAX_SLOTS) 440dd48af36SAlexander Motin 441dd48af36SAlexander Motin /* EDMA Command Response Block (CRPB) Data */ 442dd48af36SAlexander Motin struct mvs_crpb { 443dd48af36SAlexander Motin uint16_t id; /* CRPB ID */ 444dd48af36SAlexander Motin #define MVS_CRPB_TAG_MASK 0x001F 445dd48af36SAlexander Motin #define MVS_CRPB_TAG_SHIFT 0 446dd48af36SAlexander Motin uint16_t rspflg; /* CPRB Response Flags */ 447dd48af36SAlexander Motin #define MVS_CRPB_EDMASTS_MASK 0x007F 448dd48af36SAlexander Motin #define MVS_CRPB_EDMASTS_SHIFT 0 449dd48af36SAlexander Motin #define MVS_CRPB_ATASTS_MASK 0xFF00 450dd48af36SAlexander Motin #define MVS_CRPB_ATASTS_SHIFT 8 451dd48af36SAlexander Motin uint32_t ts; /* CPRB Time Stamp */ 452dd48af36SAlexander Motin } __packed; 453dd48af36SAlexander Motin 454dd48af36SAlexander Motin /* Command response blocks. 32 commands. First 256byte aligned. */ 455dd48af36SAlexander Motin #define MVS_CRPB_OFFSET 0 456dd48af36SAlexander Motin #define MVS_CRPB_SIZE sizeof(struct mvs_crpb) 457dd48af36SAlexander Motin #define MVS_CRPB_MASK 0x000000f8 458dd48af36SAlexander Motin #define MVS_CRPB_SHIFT 3 459dd48af36SAlexander Motin #define MVS_CRPB_TO_ADDR(slot) ((slot) << MVS_CRPB_SHIFT) 460dd48af36SAlexander Motin #define MVS_ADDR_TO_CRPB(addr) (((addr) & MVS_CRPB_MASK) >> MVS_CRPB_SHIFT) 461dd48af36SAlexander Motin /* Request work area. */ 462dd48af36SAlexander Motin #define MVS_WORKRP_SIZE (MVS_CRPB_OFFSET + MVS_CRPB_SIZE * MVS_MAX_SLOTS) 463dd48af36SAlexander Motin 464dd48af36SAlexander Motin /* misc defines */ 465dd48af36SAlexander Motin #define ATA_IRQ_RID 0 466dd48af36SAlexander Motin #define ATA_INTR_FLAGS (INTR_MPSAFE|INTR_TYPE_BIO|INTR_ENTROPY) 467dd48af36SAlexander Motin 468dd48af36SAlexander Motin struct ata_dmaslot { 469dd48af36SAlexander Motin bus_dmamap_t data_map; /* Data DMA map */ 470dd48af36SAlexander Motin bus_addr_t addr; /* Data address */ 471dd48af36SAlexander Motin uint16_t len; /* Data size */ 472dd48af36SAlexander Motin }; 473dd48af36SAlexander Motin 474dd48af36SAlexander Motin /* structure holding DMA related information */ 475dd48af36SAlexander Motin struct mvs_dma { 476dd48af36SAlexander Motin bus_dma_tag_t workrq_tag; /* Request workspace DMA tag */ 477dd48af36SAlexander Motin bus_dmamap_t workrq_map; /* Request workspace DMA map */ 478dd48af36SAlexander Motin uint8_t *workrq; /* Request workspace */ 479dd48af36SAlexander Motin bus_addr_t workrq_bus; /* Request bus address */ 480dd48af36SAlexander Motin bus_dma_tag_t workrp_tag; /* Reply workspace DMA tag */ 481dd48af36SAlexander Motin bus_dmamap_t workrp_map; /* Reply workspace DMA map */ 482dd48af36SAlexander Motin uint8_t *workrp; /* Reply workspace */ 483dd48af36SAlexander Motin bus_addr_t workrp_bus; /* Reply bus address */ 484dd48af36SAlexander Motin bus_dma_tag_t data_tag; /* Data DMA tag */ 485dd48af36SAlexander Motin }; 486dd48af36SAlexander Motin 487dd48af36SAlexander Motin enum mvs_slot_states { 488dd48af36SAlexander Motin MVS_SLOT_EMPTY, 489dd48af36SAlexander Motin MVS_SLOT_LOADING, 490dd48af36SAlexander Motin MVS_SLOT_RUNNING, 491dd48af36SAlexander Motin MVS_SLOT_EXECUTING 492dd48af36SAlexander Motin }; 493dd48af36SAlexander Motin 494dd48af36SAlexander Motin struct mvs_slot { 495dd48af36SAlexander Motin device_t dev; /* Device handle */ 496dd48af36SAlexander Motin int slot; /* Number of this slot */ 497dd48af36SAlexander Motin int tag; /* Used command tag */ 498dd48af36SAlexander Motin enum mvs_slot_states state; /* Slot state */ 499dd48af36SAlexander Motin union ccb *ccb; /* CCB occupying slot */ 500dd48af36SAlexander Motin struct ata_dmaslot dma; /* DMA data of this slot */ 501dd48af36SAlexander Motin struct callout timeout; /* Execution timeout */ 502dd48af36SAlexander Motin }; 503dd48af36SAlexander Motin 504dd48af36SAlexander Motin struct mvs_device { 505dd48af36SAlexander Motin int revision; 506dd48af36SAlexander Motin int mode; 507dd48af36SAlexander Motin u_int bytecount; 508dd48af36SAlexander Motin u_int atapi; 509dd48af36SAlexander Motin u_int tags; 510dd48af36SAlexander Motin u_int caps; 511dd48af36SAlexander Motin }; 512dd48af36SAlexander Motin 513dd48af36SAlexander Motin enum mvs_edma_mode { 514dd48af36SAlexander Motin MVS_EDMA_UNKNOWN, 515dd48af36SAlexander Motin MVS_EDMA_OFF, 516dd48af36SAlexander Motin MVS_EDMA_ON, 517dd48af36SAlexander Motin MVS_EDMA_QUEUED, 518dd48af36SAlexander Motin MVS_EDMA_NCQ, 519dd48af36SAlexander Motin }; 520dd48af36SAlexander Motin 521dd48af36SAlexander Motin /* structure describing an ATA channel */ 522dd48af36SAlexander Motin struct mvs_channel { 523dd48af36SAlexander Motin device_t dev; /* Device handle */ 524dd48af36SAlexander Motin int unit; /* Physical channel */ 525dd48af36SAlexander Motin struct resource *r_mem; /* Memory of this channel */ 526dd48af36SAlexander Motin struct resource *r_irq; /* Interrupt of this channel */ 527dd48af36SAlexander Motin void *ih; /* Interrupt handle */ 528dd48af36SAlexander Motin struct mvs_dma dma; /* DMA data */ 529dd48af36SAlexander Motin struct cam_sim *sim; 530dd48af36SAlexander Motin struct cam_path *path; 531dd48af36SAlexander Motin int quirks; 532dd48af36SAlexander Motin #define MVS_Q_GENI 1 533dd48af36SAlexander Motin #define MVS_Q_GENII 2 534dd48af36SAlexander Motin #define MVS_Q_GENIIE 4 535dd48af36SAlexander Motin #define MVS_Q_SOC 8 536dd48af36SAlexander Motin #define MVS_Q_CT 16 537dd48af36SAlexander Motin int pm_level; /* power management level */ 538dd48af36SAlexander Motin 539dd48af36SAlexander Motin struct mvs_slot slot[MVS_MAX_SLOTS]; 540dd48af36SAlexander Motin union ccb *hold[MVS_MAX_SLOTS]; 541*7bcc5957SAlexander Motin int holdtag[MVS_MAX_SLOTS]; /* Tags used for held commands. */ 542dd48af36SAlexander Motin struct mtx mtx; /* state lock */ 543dd48af36SAlexander Motin int devices; /* What is present */ 544dd48af36SAlexander Motin int pm_present; /* PM presence reported */ 545dd48af36SAlexander Motin enum mvs_edma_mode curr_mode; /* Current EDMA mode */ 546dd48af36SAlexander Motin int fbs_enabled; /* FIS-based switching enabled */ 547dd48af36SAlexander Motin uint32_t oslots; /* Occupied slots */ 548dd48af36SAlexander Motin uint32_t otagspd[16]; /* Occupied device tags */ 549dd48af36SAlexander Motin uint32_t rslots; /* Running slots */ 550dd48af36SAlexander Motin uint32_t aslots; /* Slots with atomic commands */ 551dd48af36SAlexander Motin uint32_t eslots; /* Slots in error */ 552dd48af36SAlexander Motin uint32_t toslots; /* Slots in timeout */ 553dd48af36SAlexander Motin int numrslots; /* Number of running slots */ 554dd48af36SAlexander Motin int numrslotspd[16];/* Number of running slots per dev */ 555dd48af36SAlexander Motin int numpslots; /* Number of PIO slots */ 556dd48af36SAlexander Motin int numdslots; /* Number of DMA slots */ 557dd48af36SAlexander Motin int numtslots; /* Number of NCQ slots */ 558dd48af36SAlexander Motin int numtslotspd[16];/* Number of NCQ slots per dev */ 559*7bcc5957SAlexander Motin int numhslots; /* Number of held slots */ 56097fd3ac6SAlexander Motin int recoverycmd; /* Our READ LOG active */ 561dd48af36SAlexander Motin int fatalerr; /* Fatal error happend */ 562dd48af36SAlexander Motin int lastslot; /* Last used slot */ 563dd48af36SAlexander Motin int taggedtarget; /* Last tagged target */ 56470b7af2bSAlexander Motin int resetting; /* Hard-reset in progress. */ 56570b7af2bSAlexander Motin int resetpolldiv; /* Hard-reset poll divider. */ 566dd48af36SAlexander Motin int out_idx; /* Next written CRQB */ 567dd48af36SAlexander Motin int in_idx; /* Next read CRPB */ 568dd48af36SAlexander Motin u_int transfersize; /* PIO transfer size */ 569dd48af36SAlexander Motin u_int donecount; /* PIO bytes sent/received */ 570dd48af36SAlexander Motin u_int basic_dma; /* Basic DMA used for ATAPI */ 571dd48af36SAlexander Motin u_int fake_busy; /* Fake busy bit after command submission */ 572dd48af36SAlexander Motin union ccb *frozen; /* Frozen command */ 573dd48af36SAlexander Motin struct callout pm_timer; /* Power management events */ 57470b7af2bSAlexander Motin struct callout reset_timer; /* Hard-reset timeout */ 575dd48af36SAlexander Motin 576dd48af36SAlexander Motin struct mvs_device user[16]; /* User-specified settings */ 577dd48af36SAlexander Motin struct mvs_device curr[16]; /* Current settings */ 578dd48af36SAlexander Motin }; 579dd48af36SAlexander Motin 580dd48af36SAlexander Motin /* structure describing a MVS controller */ 581dd48af36SAlexander Motin struct mvs_controller { 582dd48af36SAlexander Motin device_t dev; 583dd48af36SAlexander Motin int r_rid; 584dd48af36SAlexander Motin struct resource *r_mem; 585dd48af36SAlexander Motin struct rman sc_iomem; 586dd48af36SAlexander Motin struct mvs_controller_irq { 587dd48af36SAlexander Motin struct resource *r_irq; 588dd48af36SAlexander Motin void *handle; 589dd48af36SAlexander Motin int r_irq_rid; 590dd48af36SAlexander Motin } irq; 591dd48af36SAlexander Motin int quirks; 592dd48af36SAlexander Motin int channels; 593dd48af36SAlexander Motin int ccc; /* CCC timeout */ 594dd48af36SAlexander Motin int cccc; /* CCC commands */ 595dd48af36SAlexander Motin struct mtx mtx; /* MIM access lock */ 596dd48af36SAlexander Motin int gmim; /* Globally wanted MIM bits */ 597dd48af36SAlexander Motin int pmim; /* Port wanted MIM bits */ 598dd48af36SAlexander Motin int mim; /* Current MIM bits */ 599dd48af36SAlexander Motin int msi; /* MSI enabled */ 600dd48af36SAlexander Motin int msia; /* MSI active */ 601dd48af36SAlexander Motin struct { 602dd48af36SAlexander Motin void (*function)(void *); 603dd48af36SAlexander Motin void *argument; 604dd48af36SAlexander Motin } interrupt[MVS_MAX_PORTS]; 605dd48af36SAlexander Motin }; 606dd48af36SAlexander Motin 607dd48af36SAlexander Motin enum mvs_err_type { 608dd48af36SAlexander Motin MVS_ERR_NONE, /* No error */ 609dd48af36SAlexander Motin MVS_ERR_INVALID, /* Error detected by us before submitting. */ 610dd48af36SAlexander Motin MVS_ERR_INNOCENT, /* Innocent victim. */ 611dd48af36SAlexander Motin MVS_ERR_TFE, /* Task File Error. */ 612dd48af36SAlexander Motin MVS_ERR_SATA, /* SATA error. */ 613dd48af36SAlexander Motin MVS_ERR_TIMEOUT, /* Command execution timeout. */ 614dd48af36SAlexander Motin MVS_ERR_NCQ, /* NCQ command error. CCB should be put on hold 615dd48af36SAlexander Motin * until READ LOG executed to reveal error. */ 616dd48af36SAlexander Motin }; 617dd48af36SAlexander Motin 618dd48af36SAlexander Motin struct mvs_intr_arg { 619dd48af36SAlexander Motin void *arg; 620dd48af36SAlexander Motin u_int cause; 621dd48af36SAlexander Motin }; 622dd48af36SAlexander Motin 623dd48af36SAlexander Motin extern devclass_t mvs_devclass; 624dd48af36SAlexander Motin 625dd48af36SAlexander Motin /* macros to hide busspace uglyness */ 626dd48af36SAlexander Motin #define ATA_INB(res, offset) \ 627dd48af36SAlexander Motin bus_read_1((res), (offset)) 628dd48af36SAlexander Motin #define ATA_INW(res, offset) \ 629dd48af36SAlexander Motin bus_read_2((res), (offset)) 630dd48af36SAlexander Motin #define ATA_INL(res, offset) \ 631dd48af36SAlexander Motin bus_read_4((res), (offset)) 632dd48af36SAlexander Motin #define ATA_INSW(res, offset, addr, count) \ 633dd48af36SAlexander Motin bus_read_multi_2((res), (offset), (addr), (count)) 634dd48af36SAlexander Motin #define ATA_INSW_STRM(res, offset, addr, count) \ 635dd48af36SAlexander Motin bus_read_multi_stream_2((res), (offset), (addr), (count)) 636dd48af36SAlexander Motin #define ATA_INSL(res, offset, addr, count) \ 637dd48af36SAlexander Motin bus_read_multi_4((res), (offset), (addr), (count)) 638dd48af36SAlexander Motin #define ATA_INSL_STRM(res, offset, addr, count) \ 639dd48af36SAlexander Motin bus_read_multi_stream_4((res), (offset), (addr), (count)) 640dd48af36SAlexander Motin #define ATA_OUTB(res, offset, value) \ 641dd48af36SAlexander Motin bus_write_1((res), (offset), (value)) 642dd48af36SAlexander Motin #define ATA_OUTW(res, offset, value) \ 643dd48af36SAlexander Motin bus_write_2((res), (offset), (value)) 644dd48af36SAlexander Motin #define ATA_OUTL(res, offset, value) \ 645dd48af36SAlexander Motin bus_write_4((res), (offset), (value)); 646dd48af36SAlexander Motin #define ATA_OUTSW(res, offset, addr, count) \ 647dd48af36SAlexander Motin bus_write_multi_2((res), (offset), (addr), (count)) 648dd48af36SAlexander Motin #define ATA_OUTSW_STRM(res, offset, addr, count) \ 649dd48af36SAlexander Motin bus_write_multi_stream_2((res), (offset), (addr), (count)) 650dd48af36SAlexander Motin #define ATA_OUTSL(res, offset, addr, count) \ 651dd48af36SAlexander Motin bus_write_multi_4((res), (offset), (addr), (count)) 652dd48af36SAlexander Motin #define ATA_OUTSL_STRM(res, offset, addr, count) \ 653dd48af36SAlexander Motin bus_write_multi_stream_4((res), (offset), (addr), (count)) 654