1dd48af36SAlexander Motin.\" Copyright (c) 2009 Alexander Motin <mav@FreeBSD.org> 2dd48af36SAlexander Motin.\" All rights reserved. 3dd48af36SAlexander Motin.\" 4dd48af36SAlexander Motin.\" Redistribution and use in source and binary forms, with or without 5dd48af36SAlexander Motin.\" modification, are permitted provided that the following conditions 6dd48af36SAlexander Motin.\" are met: 7dd48af36SAlexander Motin.\" 1. Redistributions of source code must retain the above copyright 8dd48af36SAlexander Motin.\" notice, this list of conditions and the following disclaimer. 9dd48af36SAlexander Motin.\" 2. Redistributions in binary form must reproduce the above copyright 10dd48af36SAlexander Motin.\" notice, this list of conditions and the following disclaimer in the 11dd48af36SAlexander Motin.\" documentation and/or other materials provided with the distribution. 12dd48af36SAlexander Motin.\" 13522a3b5fSAlexander Motin.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14522a3b5fSAlexander Motin.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15522a3b5fSAlexander Motin.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16522a3b5fSAlexander Motin.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 17522a3b5fSAlexander Motin.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18522a3b5fSAlexander Motin.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19522a3b5fSAlexander Motin.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20522a3b5fSAlexander Motin.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21522a3b5fSAlexander Motin.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22522a3b5fSAlexander Motin.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23522a3b5fSAlexander Motin.\" SUCH DAMAGE. 24dd48af36SAlexander Motin.\" 25*cdc58367SAlexander Motin.Dd March 23, 2015 26dd48af36SAlexander Motin.Dt MVS 4 27dd48af36SAlexander Motin.Os 28dd48af36SAlexander Motin.Sh NAME 29dd48af36SAlexander Motin.Nm mvs 30dd48af36SAlexander Motin.Nd Marvell Serial ATA Host Controller driver 31dd48af36SAlexander Motin.Sh SYNOPSIS 32dd48af36SAlexander MotinTo compile this driver into the kernel, 33dd48af36SAlexander Motinplace the following lines in your 34dd48af36SAlexander Motinkernel configuration file: 35dd48af36SAlexander Motin.Bd -ragged -offset indent 36dd48af36SAlexander Motin.Cd "device pci" 37dd48af36SAlexander Motin.Cd "device scbus" 38dd48af36SAlexander Motin.Cd "device mvs" 39dd48af36SAlexander Motin.Ed 40dd48af36SAlexander Motin.Pp 41dd48af36SAlexander MotinAlternatively, to load the driver as a 42dd48af36SAlexander Motinmodule at boot time, place the following line in 43dd48af36SAlexander Motin.Xr loader.conf 5 : 44dd48af36SAlexander Motin.Bd -literal -offset indent 45dd48af36SAlexander Motinmvs_load="YES" 46dd48af36SAlexander Motin.Ed 47dd48af36SAlexander Motin.Pp 48dd48af36SAlexander MotinThe following tunables are settable from the 49dd48af36SAlexander Motin.Xr loader 8 : 50dd48af36SAlexander Motin.Bl -ohang 51dd48af36SAlexander Motin.It Va hint.mvs. Ns Ar X Ns Va .msi 52dd48af36SAlexander Motincontrols Message Signaled Interrupts (MSI) usage by the specified controller. 53dd48af36SAlexander Motin.It Va hint.mvs. Ns Ar X Ns Va .ccc 54dd48af36SAlexander Motincontrols Command Completion Coalescing (CCC) usage by the specified controller. 55dd48af36SAlexander MotinNon-zero value enables CCC and defines maximum time (in us), request can wait 56dd48af36SAlexander Motinfor interrupt. 57dd48af36SAlexander MotinCCC reduces number of context switches on systems with many parallel requests, 58dd48af36SAlexander Motinbut it can decrease disk performance on some workloads due to additional 59dd48af36SAlexander Motincommand latency. 60dd48af36SAlexander Motin.It Va hint.mvs. Ns Ar X Ns Va .cccc 61dd48af36SAlexander Motindefines number of completed commands for CCC, which trigger interrupt without 62dd48af36SAlexander Motinwaiting for specified coalescing timeout. 63b6bc5f51SAlexander Motin.It Va hint.mvsch. Ns Ar X Ns Va .pm_level 64dd48af36SAlexander Motincontrols SATA interface Power Management for the specified channel, 65dd48af36SAlexander Motinallowing some power to be saved at the cost of additional command 66dd48af36SAlexander Motinlatency. 67dd48af36SAlexander MotinPossible values: 687e3de069SJoel Dahl.Pp 697e3de069SJoel Dahl.Bl -tag -width 4n -offset indent -compact 70dd48af36SAlexander Motin.It 0 71dd48af36SAlexander Motininterface Power Management is disabled (default); 72dd48af36SAlexander Motin.It 1 73dd48af36SAlexander Motindevice is allowed to initiate PM state change, host is passive; 74dd48af36SAlexander Motin.It 4 75dd48af36SAlexander Motindriver initiates PARTIAL PM state transition 1ms after port becomes idle; 76dd48af36SAlexander Motin.It 5 77dd48af36SAlexander Motindriver initiates SLUMBER PM state transition 125ms after port becomes idle. 78dd48af36SAlexander Motin.El 79dd48af36SAlexander Motin.Pp 80dd48af36SAlexander MotinNote that interface Power Management is not compatible with 81dd48af36SAlexander Motindevice presence detection. 82dd48af36SAlexander MotinA manual bus reset is needed on device hot-plug. 83b6bc5f51SAlexander Motin.It Va hint.mvsch. Ns Ar X Ns Va .sata_rev 84dd48af36SAlexander Motinsetting to nonzero value limits maximum SATA revision (speed). 85dd48af36SAlexander MotinValues 1, 2 and 3 are respectively 1.5, 3 and 6Gbps. 86dd48af36SAlexander Motin.El 87dd48af36SAlexander Motin.Sh DESCRIPTION 88dd48af36SAlexander MotinThis driver provides the 89dd48af36SAlexander Motin.Xr CAM 4 90dd48af36SAlexander Motinsubsystem with native access to the 91dd48af36SAlexander Motin.Tn SATA 92dd48af36SAlexander Motinports of several generations (Gen-I/II/IIe) of Marvell SATA controllers. 93dd48af36SAlexander MotinEach SATA port found is represented to CAM as a separate bus with one 94dd48af36SAlexander Motintarget, or, if HBA supports Port Multipliers (Gen-II/IIe), 16 targets. 95dd48af36SAlexander MotinMost of the bus-management details are handled by the SATA-specific 96dd48af36SAlexander Motintransport of CAM. 97dd48af36SAlexander MotinConnected ATA disks are handled by the ATA protocol disk peripheral driver 98dd48af36SAlexander Motin.Xr ada 4 . 99dd48af36SAlexander MotinATAPI devices are handled by the SCSI protocol peripheral drivers 100dd48af36SAlexander Motin.Xr cd 4 , 101dd48af36SAlexander Motin.Xr da 4 , 102dd48af36SAlexander Motin.Xr sa 4 , 103dd48af36SAlexander Motinetc. 104dd48af36SAlexander Motin.Pp 105dd48af36SAlexander MotinDriver features include support for Serial ATA and ATAPI devices, 106dd48af36SAlexander MotinPort Multipliers (including FIS-based switching, when supported), 107dd48af36SAlexander Motinhardware command queues (up to 31 command per port), 108dd48af36SAlexander MotinNative Command Queuing, SATA interface Power Management, device hot-plug 109dd48af36SAlexander Motinand Message Signaled Interrupts. 110dd48af36SAlexander Motin.Sh HARDWARE 111dd48af36SAlexander MotinThe 112dd48af36SAlexander Motin.Nm 113dd48af36SAlexander Motindriver supports the following controllers: 114af02ba93SChristian Brueffer.Pp 1156efe0b88SChristian BruefferGen-I (SATA 1.5Gbps): 1166efe0b88SChristian Brueffer.Bl -bullet -compact -offset "xxxxxx" 117dd48af36SAlexander Motin.It 118dd48af36SAlexander Motin88SX5040 119dd48af36SAlexander Motin.It 120dd48af36SAlexander Motin88SX5041 121dd48af36SAlexander Motin.It 122dd48af36SAlexander Motin88SX5080 123dd48af36SAlexander Motin.It 124dd48af36SAlexander Motin88SX5081 125dd48af36SAlexander Motin.El 1266efe0b88SChristian Brueffer.Pp 1276efe0b88SChristian BruefferGen-II (SATA 3Gbps, NCQ, PMP): 1286efe0b88SChristian Brueffer.Bl -bullet -compact -offset "xxxxxx" 129dd48af36SAlexander Motin.It 130dd48af36SAlexander Motin88SX6040 131dd48af36SAlexander Motin.It 132dd48af36SAlexander Motin88SX6041 (including Adaptec 1420SA) 133dd48af36SAlexander Motin.It 134dd48af36SAlexander Motin88SX6080 135dd48af36SAlexander Motin.It 136dd48af36SAlexander Motin88SX6081 137dd48af36SAlexander Motin.El 1386efe0b88SChristian Brueffer.Pp 1396efe0b88SChristian BruefferGen-IIe (SATA 3Gbps, NCQ, PMP with FBS): 1406efe0b88SChristian Brueffer.Bl -bullet -compact -offset "xxxxxx" 141dd48af36SAlexander Motin.It 142dd48af36SAlexander Motin88SX6042 143dd48af36SAlexander Motin.It 144dd48af36SAlexander Motin88SX7042 (including Adaptec 1430SA) 145dd48af36SAlexander Motin.It 146dd48af36SAlexander Motin88F5182 SoC 147dd48af36SAlexander Motin.It 148dd48af36SAlexander Motin88F6281 SoC 149dd48af36SAlexander Motin.It 150dd48af36SAlexander MotinMV78100 SoC 151dd48af36SAlexander Motin.El 152dd48af36SAlexander Motin.Pp 153af02ba93SChristian BruefferNote, that this hardware supports command queueing and FIS-based switching 154af02ba93SChristian Bruefferonly for ATA DMA commands. 155af02ba93SChristian BruefferATAPI and non-DMA ATA commands executed one by one for each port. 156dd48af36SAlexander Motin.Sh SEE ALSO 157dd48af36SAlexander Motin.Xr ada 4 , 158dd48af36SAlexander Motin.Xr ata 4 , 159dd48af36SAlexander Motin.Xr cam 4 , 160dd48af36SAlexander Motin.Xr cd 4 , 161dd48af36SAlexander Motin.Xr da 4 , 162dd48af36SAlexander Motin.Xr sa 4 163dd48af36SAlexander Motin.Sh HISTORY 164dd48af36SAlexander MotinThe 165dd48af36SAlexander Motin.Nm 166dd48af36SAlexander Motindriver first appeared in 167f87d5cdcSAlexander Motin.Fx 8.1 . 168dd48af36SAlexander Motin.Sh AUTHORS 1696c899950SBaptiste Daroussin.An Alexander Motin Aq Mt mav@FreeBSD.org 170