aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/nvme/nvme_private.h
Commit message (Expand)AuthorAgeFilesLines
* nvme: remove CHATHAM related codeJim Harris2015-04-081-35/+0
* nvme: create separate DMA tag for non-payload DMA buffersJim Harris2015-04-081-0/+3
* nvme: Allocate all MSI resources up front so that we can fall back toJim Harris2014-03-181-0/+2
* nvme: Close hole where nvd(4) would not be notified of all nvme(4)Jim Harris2014-03-181-2/+5
* Log and then disable asynchronous notification of persistent events afterJim Harris2013-10-081-0/+3
* Add driver-assisted striping for upcoming Intel NVMe controllers that canJim Harris2013-10-081-0/+1
* Send a shutdown notification in the driver unload path, to ensureJim Harris2013-08-131-0/+1
* Add comment explaining why CACHE_LINE_SIZE is defined in nvme_private.hJim Harris2013-07-091-0/+4
* Update copyright dates.Jim Harris2013-07-091-1/+1
* Remove remaining uio-related code.Jim Harris2013-06-261-16/+0
* Use MAXPHYS to specify the maximum I/O size for nvme(4).Jim Harris2013-06-261-5/+2
* Move the busdma mapping functions to nvme_qpair.c.Jim Harris2013-04-121-4/+0
* Add a mutex to each namespace, for general locking operations on the namespace.Jim Harris2013-04-121-0/+1
* Rename the controller's fail_req_lock, so that it can be used for otherJim Harris2013-04-121-1/+2
* Add unmapped bio support to nvme(4) and nvd(4).Jim Harris2013-04-011-0/+34
* Add "type" to nvme_request, signifying if its payload is a VADDR, UIO, orJim Harris2013-03-291-7/+28
* Clean up debug prints.Jim Harris2013-03-261-0/+4
* Move common code from the different nvme_allocate_request functions into aJim Harris2013-03-261-18/+21
* Replace usages of mtx_pool_find used for admin commands with a pollingJim Harris2013-03-261-0/+7
* Add the ability to internally mark a controller as failed, if it is unable toJim Harris2013-03-261-1/+16
* Remove the is_started flag from struct nvme_controller.Jim Harris2013-03-261-4/+1
* Ensure the controller's MDTS is accounted for in max_xfer_size.Jim Harris2013-03-261-0/+3
* Cap the number of retry attempts to a configurable number. This ensuresJim Harris2013-03-261-1/+6
* Pass associated log page data to async event consumers, if requested.Jim Harris2013-03-261-1/+4
* When an asynchronous event request is completed, automatically fetch theJim Harris2013-03-261-0/+6
* Add structure definitions and controller command function for firmwareJim Harris2013-03-261-0/+4
* Add structure definitions and a controller command function forJim Harris2013-03-261-0/+5
* Make nvme_ctrlr_reset a nop if a reset is already in progress.Jim Harris2013-03-261-1/+3
* By default, always escalate to controller reset when an I/O times out.Jim Harris2013-03-261-1/+2
* Add a tunable for the I/O timeout interval. Default is still 30 seconds,Jim Harris2013-03-261-4/+9
* Add handling for controller fatal status (csts.cfs).Jim Harris2013-03-261-0/+3
* Add controller reset capability to nvme(4) and ability to explicitlyJim Harris2013-03-261-6/+12
* Keep a doubly-linked list of outstanding trackers.Jim Harris2013-03-261-2/+3
* Expose the get/set features API to nvme consumers.Jim Harris2013-03-261-8/+0
* Add an interface for nvme shim drivers (i.e. nvd) to register forJim Harris2013-03-261-0/+6
* Enable asynchronous event requests on non-Chatham devices.Jim Harris2013-03-261-7/+16
* Move controller destruction code from nvme_detach() to new nvme_ctrlr_destruct()Jim Harris2013-03-261-0/+1
* Specify command timeout interval on a per-command type basis.Jim Harris2013-03-261-0/+3
* Add support for ABORT commands, including issuing these commands whenJim Harris2013-03-261-0/+2
* Map BAR 4/5, because NVMe spec says devices may place the MSI-X tableJim Harris2012-12-181-0/+8
* Do not use taskqueue to defer completion work when using INTx. INTx nowJim Harris2012-12-181-3/+0
* Add PCI device ID for 8-channel IDT NVMe controller, and clarify that theJim Harris2012-12-061-1/+2
* Add ability to queue nvme_request objects if no nvme_trackers are available.Jim Harris2012-10-181-1/+2
* Preallocate a limited number of nvme_tracker objects per qpair, ratherJim Harris2012-10-181-7/+16
* Create nvme_qpair_submit_request() which eliminates all of the codeJim Harris2012-10-181-0/+2
* Cleanup uio-related code to use struct nvme_request andJim Harris2012-10-181-0/+19
* Add nvme_ctrlr_submit_[admin|io]_request functions which consolidatesJim Harris2012-10-181-3/+4
* Add struct nvme_request object which contains all of the parameters passedJim Harris2012-10-181-7/+36
* Merge struct nvme_prp_list into struct nvme_tracker.Jim Harris2012-10-181-17/+9
* Count number of times each queue pair's interrupt handler is invoked.Jim Harris2012-10-101-0/+1