aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/nvme
Commit message (Expand)AuthorAgeFilesLines
* nvme: do not notify a consumer about failures that occur during initializationJim Harris2015-07-291-0/+9
* Refactor unmapped buffer address handling.Jeff Roberson2015-07-231-1/+0
* nvme: ensure csts.rdy bit is cleared before returning from nvme_ctrlr_disableJim Harris2015-07-231-10/+12
* nvme: properly handle case where pci_alloc_msix does not alloc all vectorsJim Harris2015-07-231-6/+28
* nvme: use BUS_SPACE_MAXSIZE for bus_dma_tag_create maxsize parameterJim Harris2015-04-091-1/+1
* nvme: remove CHATHAM related codeJim Harris2015-04-085-252/+10
* nvme: add device strings for Intel DC series NVMe SSDsJim Harris2015-04-081-10/+38
* nvme: create separate DMA tag for non-payload DMA buffersJim Harris2015-04-082-9/+41
* nvme: fall back to a smaller MSI-X vector allocation if necessaryJim Harris2015-04-081-1/+9
* Use bitwise OR instead of logical OR when constructing value forJim Harris2014-06-101-1/+1
* nvme: Allocate all MSI resources up front so that we can fall back toJim Harris2014-03-183-7/+44
* nvme: Close hole where nvd(4) would not be notified of all nvme(4)Jim Harris2014-03-183-29/+73
* nvme: NVMe specification dictates 4-byte alignment for PRPs (not 8).Jim Harris2014-03-171-1/+2
* nvme: Remove the software progress marker SET_FEATURE command duringJim Harris2014-03-171-10/+0
* For IDENTIFY passthrough commands to Chatham prototype controllers, copyJim Harris2014-01-061-2/+23
* Create a unique unit number for each controller and namespace cdev.Jim Harris2013-11-012-4/+11
* Fix the LINT build.Jim Harris2013-10-081-0/+1
* Do not leak resources during attach if nvme_ctrlr_construct() or the initialJim Harris2013-10-081-3/+9
* Log and then disable asynchronous notification of persistent events afterJim Harris2013-10-082-7/+56
* Do not enable temperature threshold as an asynchronous event notificationJim Harris2013-10-081-0/+14
* Extend some 32-bit fields and variables to 64-bit to prevent overflowJim Harris2013-10-082-5/+5
* Add driver-assisted striping for upcoming Intel NVMe controllers that canJim Harris2013-10-083-1/+225
* Change the way that unmapped I/O capability is advertised.Kenneth D. Merry2013-08-151-4/+3
* If a controller fails to initialize, do not notify consumers (nvd) of itsJim Harris2013-08-131-0/+9
* Send a shutdown notification in the driver unload path, to ensureJim Harris2013-08-134-28/+51
* Add message when nvd disks are attached and detached.Jim Harris2013-07-193-3/+65
* Fix nvme(4) and nvd(4) to support non 512-byte sector sizes.Jim Harris2013-07-192-4/+15
* Use pause() instead of DELAY() when polling for completion of adminJim Harris2013-07-171-4/+4
* Define constants for the lengths of the serial number, model numberJim Harris2013-07-171-3/+7
* Fix a poorly worded comment in nvme(4).Jim Harris2013-07-111-3/+3
* Add comment explaining why CACHE_LINE_SIZE is defined in nvme_private.hJim Harris2013-07-091-0/+4
* Update copyright dates.Jim Harris2013-07-099-9/+9
* Do not retry failed async event requests.Jim Harris2013-07-091-5/+5
* Add pci_enable_busmaster() and pci_disable_busmaster() calls inJim Harris2013-07-091-0/+3
* Add firmware replacement and activation support to nvmecontrol(8) throughJim Harris2013-06-271-0/+6
* Remove remaining uio-related code.Jim Harris2013-06-262-32/+0
* Fail any passthrough command whose transfer size exceeds the controller'sJim Harris2013-06-262-2/+15
* Use MAXPHYS to specify the maximum I/O size for nvme(4).Jim Harris2013-06-264-22/+10
* Remove the NVME_IDENTIFY_CONTROLLER and NVME_IDENTIFY_NAMESPACE IOCTLs and re...Jim Harris2013-04-123-50/+5
* Add support for passthrough NVMe commands.Jim Harris2013-04-123-0/+163
* Move the busdma mapping functions to nvme_qpair.c.Jim Harris2013-04-124-84/+45
* Remove the NVMe-specific physio and associated routines.Jim Harris2013-04-122-165/+2
* Add a mutex to each namespace, for general locking operations on the namespace.Jim Harris2013-04-122-0/+12
* Rename the controller's fail_req_lock, so that it can be used for otherJim Harris2013-04-122-7/+8
* Do not panic when a busdma mapping operation fails.Jim Harris2013-04-122-5/+28
* Add unmapped bio support to nvme(4) and nvd(4).Jim Harris2013-04-015-10/+114
* Add "type" to nvme_request, signifying if its payload is a VADDR, UIO, orJim Harris2013-03-295-37/+63
* Remove obsolete comment. This code has now been tested with the QEMUJim Harris2013-03-281-4/+0
* Delete extra IO qpairs allocated based on number of MSI-X vectors, butJim Harris2013-03-281-6/+14
* Fix printf format issue on i386.Jim Harris2013-03-271-2/+3