nvme_private.h revision 248762
1/*-
2 * Copyright (C) 2012 Intel Corporation
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/nvme/nvme_private.h 248762 2013-03-26 21:16:53Z jimharris $
27 */
28
29#ifndef __NVME_PRIVATE_H__
30#define __NVME_PRIVATE_H__
31
32#include <sys/param.h>
33#include <sys/kernel.h>
34#include <sys/lock.h>
35#include <sys/malloc.h>
36#include <sys/mutex.h>
37#include <sys/rman.h>
38#include <sys/systm.h>
39#include <sys/taskqueue.h>
40
41#include <vm/uma.h>
42
43#include <machine/bus.h>
44
45#include "nvme.h"
46
47#define DEVICE2SOFTC(dev) ((struct nvme_controller *) device_get_softc(dev))
48
49MALLOC_DECLARE(M_NVME);
50
51#define CHATHAM2
52
53#ifdef CHATHAM2
54#define CHATHAM_PCI_ID		0x20118086
55#define CHATHAM_CONTROL_BAR	0
56#endif
57
58#define IDT32_PCI_ID		0x80d0111d /* 32 channel board */
59#define IDT8_PCI_ID		0x80d2111d /* 8 channel board */
60
61#define NVME_MAX_PRP_LIST_ENTRIES	(32)
62
63/*
64 * For commands requiring more than 2 PRP entries, one PRP will be
65 *  embedded in the command (prp1), and the rest of the PRP entries
66 *  will be in a list pointed to by the command (prp2).  This means
67 *  that real max number of PRP entries we support is 32+1, which
68 *  results in a max xfer size of 32*PAGE_SIZE.
69 */
70#define NVME_MAX_XFER_SIZE	NVME_MAX_PRP_LIST_ENTRIES * PAGE_SIZE
71
72#define NVME_ADMIN_TRACKERS	(16)
73#define NVME_ADMIN_ENTRIES	(128)
74/* min and max are defined in admin queue attributes section of spec */
75#define NVME_MIN_ADMIN_ENTRIES	(2)
76#define NVME_MAX_ADMIN_ENTRIES	(4096)
77
78/*
79 * NVME_IO_ENTRIES defines the size of an I/O qpair's submission and completion
80 *  queues, while NVME_IO_TRACKERS defines the maximum number of I/O that we
81 *  will allow outstanding on an I/O qpair at any time.  The only advantage in
82 *  having IO_ENTRIES > IO_TRACKERS is for debugging purposes - when dumping
83 *  the contents of the submission and completion queues, it will show a longer
84 *  history of data.
85 */
86#define NVME_IO_ENTRIES		(256)
87#define NVME_IO_TRACKERS	(128)
88#define NVME_MIN_IO_TRACKERS	(16)
89#define NVME_MAX_IO_TRACKERS	(1024)
90
91/*
92 * NVME_MAX_IO_ENTRIES is not defined, since it is specified in CC.MQES
93 *  for each controller.
94 */
95
96#define NVME_INT_COAL_TIME	(0)	/* disabled */
97#define NVME_INT_COAL_THRESHOLD (0)	/* 0-based */
98
99#define NVME_MAX_NAMESPACES	(16)
100#define NVME_MAX_CONSUMERS	(2)
101#define NVME_MAX_ASYNC_EVENTS	(8)
102
103#define NVME_DEFAULT_TIMEOUT_PERIOD	(30)    /* in seconds */
104#define NVME_MIN_TIMEOUT_PERIOD		(5)
105#define NVME_MAX_TIMEOUT_PERIOD		(120)
106
107#define NVME_DEFAULT_RETRY_COUNT	(4)
108
109/* Maximum log page size to fetch for AERs. */
110#define NVME_MAX_AER_LOG_SIZE		(4096)
111
112#ifndef CACHE_LINE_SIZE
113#define CACHE_LINE_SIZE		(64)
114#endif
115
116extern uma_zone_t	nvme_request_zone;
117extern int32_t		nvme_retry_count;
118
119struct nvme_request {
120
121	struct nvme_command		cmd;
122	void				*payload;
123	uint32_t			payload_size;
124	boolean_t			timeout;
125	struct uio			*uio;
126	nvme_cb_fn_t			cb_fn;
127	void				*cb_arg;
128	int32_t				retries;
129	STAILQ_ENTRY(nvme_request)	stailq;
130};
131
132struct nvme_async_event_request {
133
134	struct nvme_controller		*ctrlr;
135	struct nvme_request		*req;
136	struct nvme_completion		cpl;
137	uint32_t			log_page_id;
138	uint32_t			log_page_size;
139	uint8_t				log_page_buffer[NVME_MAX_AER_LOG_SIZE];
140};
141
142struct nvme_tracker {
143
144	TAILQ_ENTRY(nvme_tracker)	tailq;
145	struct nvme_request		*req;
146	struct nvme_qpair		*qpair;
147	struct callout			timer;
148	bus_dmamap_t			payload_dma_map;
149	uint16_t			cid;
150
151	uint64_t			prp[NVME_MAX_PRP_LIST_ENTRIES];
152	bus_addr_t			prp_bus_addr;
153	bus_dmamap_t			prp_dma_map;
154};
155
156struct nvme_qpair {
157
158	struct nvme_controller	*ctrlr;
159	uint32_t		id;
160	uint32_t		phase;
161
162	uint16_t		vector;
163	int			rid;
164	struct resource		*res;
165	void 			*tag;
166
167	uint32_t		max_xfer_size;
168	uint32_t		num_entries;
169	uint32_t		num_trackers;
170	uint32_t		sq_tdbl_off;
171	uint32_t		cq_hdbl_off;
172
173	uint32_t		sq_head;
174	uint32_t		sq_tail;
175	uint32_t		cq_head;
176
177	int64_t			num_cmds;
178	int64_t			num_intr_handler_calls;
179
180	struct nvme_command	*cmd;
181	struct nvme_completion	*cpl;
182
183	bus_dma_tag_t		dma_tag;
184
185	bus_dmamap_t		cmd_dma_map;
186	uint64_t		cmd_bus_addr;
187
188	bus_dmamap_t		cpl_dma_map;
189	uint64_t		cpl_bus_addr;
190
191	TAILQ_HEAD(, nvme_tracker)	free_tr;
192	TAILQ_HEAD(, nvme_tracker)	outstanding_tr;
193	STAILQ_HEAD(, nvme_request)	queued_req;
194
195	struct nvme_tracker	**act_tr;
196
197	boolean_t		is_enabled;
198
199	struct mtx		lock __aligned(CACHE_LINE_SIZE);
200
201} __aligned(CACHE_LINE_SIZE);
202
203struct nvme_namespace {
204
205	struct nvme_controller		*ctrlr;
206	struct nvme_namespace_data	data;
207	uint16_t			id;
208	uint16_t			flags;
209	struct cdev			*cdev;
210	void				*cons_cookie[NVME_MAX_CONSUMERS];
211};
212
213/*
214 * One of these per allocated PCI device.
215 */
216struct nvme_controller {
217
218	device_t		dev;
219
220	uint32_t		ready_timeout_in_ms;
221
222	bus_space_tag_t		bus_tag;
223	bus_space_handle_t	bus_handle;
224	int			resource_id;
225	struct resource		*resource;
226
227	/*
228	 * The NVMe spec allows for the MSI-X table to be placed in BAR 4/5,
229	 *  separate from the control registers which are in BAR 0/1.  These
230	 *  members track the mapping of BAR 4/5 for that reason.
231	 */
232	int			bar4_resource_id;
233	struct resource		*bar4_resource;
234
235#ifdef CHATHAM2
236	bus_space_tag_t		chatham_bus_tag;
237	bus_space_handle_t	chatham_bus_handle;
238	int			chatham_resource_id;
239	struct resource		*chatham_resource;
240#endif
241
242	uint32_t		msix_enabled;
243	uint32_t		force_intx;
244	uint32_t		enable_aborts;
245
246	uint32_t		num_io_queues;
247	boolean_t		per_cpu_io_queues;
248
249	/* Fields for tracking progress during controller initialization. */
250	struct intr_config_hook	config_hook;
251	uint32_t		ns_identified;
252	uint32_t		queues_created;
253	uint32_t		num_start_attempts;
254	struct task		reset_task;
255	struct taskqueue	*taskqueue;
256
257	/* For shared legacy interrupt. */
258	int			rid;
259	struct resource		*res;
260	void			*tag;
261
262	bus_dma_tag_t		hw_desc_tag;
263	bus_dmamap_t		hw_desc_map;
264
265	/** maximum i/o size in bytes */
266	uint32_t		max_xfer_size;
267
268	/** minimum page size supported by this controller in bytes */
269	uint32_t		min_page_size;
270
271	/** interrupt coalescing time period (in microseconds) */
272	uint32_t		int_coal_time;
273
274	/** interrupt coalescing threshold */
275	uint32_t		int_coal_threshold;
276
277	/** timeout period in seconds */
278	uint32_t		timeout_period;
279
280	struct nvme_qpair	adminq;
281	struct nvme_qpair	*ioq;
282
283	struct nvme_registers		*regs;
284
285	struct nvme_controller_data	cdata;
286	struct nvme_namespace		ns[NVME_MAX_NAMESPACES];
287
288	struct cdev			*cdev;
289
290	boolean_t			is_started;
291
292	uint32_t			num_aers;
293	struct nvme_async_event_request	aer[NVME_MAX_ASYNC_EVENTS];
294
295	void				*cons_cookie[NVME_MAX_CONSUMERS];
296
297	uint32_t		is_resetting;
298
299#ifdef CHATHAM2
300	uint64_t		chatham_size;
301	uint64_t		chatham_lbas;
302#endif
303};
304
305#define nvme_mmio_offsetof(reg)						       \
306	offsetof(struct nvme_registers, reg)
307
308#define nvme_mmio_read_4(sc, reg)					       \
309	bus_space_read_4((sc)->bus_tag, (sc)->bus_handle,		       \
310	    nvme_mmio_offsetof(reg))
311
312#define nvme_mmio_write_4(sc, reg, val)					       \
313	bus_space_write_4((sc)->bus_tag, (sc)->bus_handle,		       \
314	    nvme_mmio_offsetof(reg), val)
315
316#define nvme_mmio_write_8(sc, reg, val) \
317	do {								       \
318		bus_space_write_4((sc)->bus_tag, (sc)->bus_handle,	       \
319		    nvme_mmio_offsetof(reg), val & 0xFFFFFFFF); 	       \
320		bus_space_write_4((sc)->bus_tag, (sc)->bus_handle,	       \
321		    nvme_mmio_offsetof(reg)+4,				       \
322		    (val & 0xFFFFFFFF00000000UL) >> 32);		       \
323	} while (0);
324
325#ifdef CHATHAM2
326#define chatham_read_4(softc, reg) \
327	bus_space_read_4((softc)->chatham_bus_tag,			       \
328	    (softc)->chatham_bus_handle, reg)
329
330#define chatham_write_8(sc, reg, val)					       \
331	do {								       \
332		bus_space_write_4((sc)->chatham_bus_tag,		       \
333		    (sc)->chatham_bus_handle, reg, val & 0xffffffff);	       \
334		bus_space_write_4((sc)->chatham_bus_tag,		       \
335		    (sc)->chatham_bus_handle, reg+4,			       \
336		    (val & 0xFFFFFFFF00000000UL) >> 32);		       \
337	} while (0);
338
339#endif /* CHATHAM2 */
340
341#if __FreeBSD_version < 800054
342#define wmb()	__asm volatile("sfence" ::: "memory")
343#define mb()	__asm volatile("mfence" ::: "memory")
344#endif
345
346void	nvme_ns_test(struct nvme_namespace *ns, u_long cmd, caddr_t arg);
347
348void	nvme_ctrlr_cmd_identify_controller(struct nvme_controller *ctrlr,
349					   void *payload,
350					   nvme_cb_fn_t cb_fn, void *cb_arg);
351void	nvme_ctrlr_cmd_identify_namespace(struct nvme_controller *ctrlr,
352					  uint16_t nsid, void *payload,
353					  nvme_cb_fn_t cb_fn, void *cb_arg);
354void	nvme_ctrlr_cmd_set_interrupt_coalescing(struct nvme_controller *ctrlr,
355						uint32_t microseconds,
356						uint32_t threshold,
357						nvme_cb_fn_t cb_fn,
358						void *cb_arg);
359void	nvme_ctrlr_cmd_get_error_page(struct nvme_controller *ctrlr,
360				      struct nvme_error_information_entry *payload,
361				      uint32_t num_entries, /* 0 = max */
362				      nvme_cb_fn_t cb_fn,
363				      void *cb_arg);
364void	nvme_ctrlr_cmd_get_health_information_page(struct nvme_controller *ctrlr,
365						   uint32_t nsid,
366						   struct nvme_health_information_page *payload,
367						   nvme_cb_fn_t cb_fn,
368						   void *cb_arg);
369void	nvme_ctrlr_cmd_get_firmware_page(struct nvme_controller *ctrlr,
370					 struct nvme_firmware_page *payload,
371					 nvme_cb_fn_t cb_fn,
372					 void *cb_arg);
373void	nvme_ctrlr_cmd_create_io_cq(struct nvme_controller *ctrlr,
374				    struct nvme_qpair *io_que, uint16_t vector,
375				    nvme_cb_fn_t cb_fn, void *cb_arg);
376void	nvme_ctrlr_cmd_create_io_sq(struct nvme_controller *ctrlr,
377				    struct nvme_qpair *io_que,
378				    nvme_cb_fn_t cb_fn, void *cb_arg);
379void	nvme_ctrlr_cmd_delete_io_cq(struct nvme_controller *ctrlr,
380				    struct nvme_qpair *io_que,
381				    nvme_cb_fn_t cb_fn, void *cb_arg);
382void	nvme_ctrlr_cmd_delete_io_sq(struct nvme_controller *ctrlr,
383				    struct nvme_qpair *io_que,
384				    nvme_cb_fn_t cb_fn, void *cb_arg);
385void	nvme_ctrlr_cmd_set_num_queues(struct nvme_controller *ctrlr,
386				      uint32_t num_queues, nvme_cb_fn_t cb_fn,
387				      void *cb_arg);
388void	nvme_ctrlr_cmd_set_async_event_config(struct nvme_controller *ctrlr,
389					      union nvme_critical_warning_state state,
390					      nvme_cb_fn_t cb_fn, void *cb_arg);
391void	nvme_ctrlr_cmd_abort(struct nvme_controller *ctrlr, uint16_t cid,
392			     uint16_t sqid, nvme_cb_fn_t cb_fn, void *cb_arg);
393
394void	nvme_payload_map(void *arg, bus_dma_segment_t *seg, int nseg,
395			 int error);
396void	nvme_payload_map_uio(void *arg, bus_dma_segment_t *seg, int nseg,
397			     bus_size_t mapsize, int error);
398
399int	nvme_ctrlr_construct(struct nvme_controller *ctrlr, device_t dev);
400void	nvme_ctrlr_destruct(struct nvme_controller *ctrlr, device_t dev);
401int	nvme_ctrlr_hw_reset(struct nvme_controller *ctrlr);
402void	nvme_ctrlr_reset(struct nvme_controller *ctrlr);
403/* ctrlr defined as void * to allow use with config_intrhook. */
404void	nvme_ctrlr_start(void *ctrlr_arg);
405void	nvme_ctrlr_submit_admin_request(struct nvme_controller *ctrlr,
406					struct nvme_request *req);
407void	nvme_ctrlr_submit_io_request(struct nvme_controller *ctrlr,
408				     struct nvme_request *req);
409
410void	nvme_qpair_construct(struct nvme_qpair *qpair, uint32_t id,
411			     uint16_t vector, uint32_t num_entries,
412			     uint32_t num_trackers, uint32_t max_xfer_size,
413			     struct nvme_controller *ctrlr);
414void	nvme_qpair_submit_tracker(struct nvme_qpair *qpair,
415				  struct nvme_tracker *tr);
416void	nvme_qpair_process_completions(struct nvme_qpair *qpair);
417void	nvme_qpair_submit_request(struct nvme_qpair *qpair,
418				  struct nvme_request *req);
419void	nvme_qpair_reset(struct nvme_qpair *qpair);
420
421void	nvme_admin_qpair_enable(struct nvme_qpair *qpair);
422void	nvme_admin_qpair_disable(struct nvme_qpair *qpair);
423void	nvme_admin_qpair_destroy(struct nvme_qpair *qpair);
424
425void	nvme_io_qpair_enable(struct nvme_qpair *qpair);
426void	nvme_io_qpair_disable(struct nvme_qpair *qpair);
427void	nvme_io_qpair_destroy(struct nvme_qpair *qpair);
428
429int	nvme_ns_construct(struct nvme_namespace *ns, uint16_t id,
430			  struct nvme_controller *ctrlr);
431void	nvme_ns_destruct(struct nvme_namespace *ns);
432
433int	nvme_ns_physio(struct cdev *dev, struct uio *uio, int ioflag);
434
435void	nvme_sysctl_initialize_ctrlr(struct nvme_controller *ctrlr);
436
437void	nvme_dump_command(struct nvme_command *cmd);
438void	nvme_dump_completion(struct nvme_completion *cpl);
439
440static __inline void
441nvme_single_map(void *arg, bus_dma_segment_t *seg, int nseg, int error)
442{
443	uint64_t *bus_addr = (uint64_t *)arg;
444
445	*bus_addr = seg[0].ds_addr;
446}
447
448static __inline struct nvme_request *
449nvme_allocate_request(void *payload, uint32_t payload_size, nvme_cb_fn_t cb_fn,
450		      void *cb_arg)
451{
452	struct nvme_request *req;
453
454	req = uma_zalloc(nvme_request_zone, M_NOWAIT | M_ZERO);
455	if (req == NULL)
456		return (NULL);
457
458	req->payload = payload;
459	req->payload_size = payload_size;
460	req->cb_fn = cb_fn;
461	req->cb_arg = cb_arg;
462	req->timeout = TRUE;
463
464	return (req);
465}
466
467static __inline struct nvme_request *
468nvme_allocate_request_uio(struct uio *uio, nvme_cb_fn_t cb_fn, void *cb_arg)
469{
470	struct nvme_request *req;
471
472	req = uma_zalloc(nvme_request_zone, M_NOWAIT | M_ZERO);
473	if (req == NULL)
474		return (NULL);
475
476	req->uio = uio;
477	req->cb_fn = cb_fn;
478	req->cb_arg = cb_arg;
479	req->timeout = TRUE;
480
481	return (req);
482}
483
484#define nvme_free_request(req)	uma_zfree(nvme_request_zone, req)
485
486void	nvme_notify_async_consumers(struct nvme_controller *ctrlr,
487				    const struct nvme_completion *async_cpl,
488				    uint32_t log_page_id, void *log_page_buffer,
489				    uint32_t log_page_size);
490
491#endif /* __NVME_PRIVATE_H__ */
492