1/*-
2 * Data structures and definitions for CAM peripheral ("type") drivers.
3 *
4 * Copyright (c) 1997, 1998 Justin T. Gibbs.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions, and the following disclaimer,
12 *    without modification, immediately at the beginning of the file.
13 * 2. The name of the author may not be used to endorse or promote products
14 *    derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: stable/11/sys/cam/cam_periph.h 355341 2019-12-03 16:52:39Z mav $
29 */
30
31#ifndef _CAM_CAM_PERIPH_H
32#define _CAM_CAM_PERIPH_H 1
33
34#include <sys/queue.h>
35#include <cam/cam_sim.h>
36
37#ifdef _KERNEL
38#include <sys/taskqueue.h>
39
40#include <cam/cam_xpt.h>
41
42struct devstat;
43
44extern struct cam_periph *xpt_periph;
45
46extern struct periph_driver **periph_drivers;
47void periphdriver_register(void *);
48int periphdriver_unregister(void *);
49void periphdriver_init(int level);
50
51#include <sys/module.h>
52#define PERIPHDRIVER_DECLARE(name, driver) \
53	static int name ## _modevent(module_t mod, int type, void *data) \
54	{ \
55		switch (type) { \
56		case MOD_LOAD: \
57			periphdriver_register(data); \
58			break; \
59		case MOD_UNLOAD: \
60			return (periphdriver_unregister(data)); \
61		default: \
62			return EOPNOTSUPP; \
63		} \
64		return 0; \
65	} \
66	static moduledata_t name ## _mod = { \
67		#name, \
68		name ## _modevent, \
69		(void *)&driver \
70	}; \
71	DECLARE_MODULE(name, name ## _mod, SI_SUB_DRIVERS, SI_ORDER_ANY); \
72	MODULE_DEPEND(name, cam, 1, 1, 1)
73
74/*
75 * Callback informing the peripheral driver it can perform it's
76 * initialization since the XPT is now fully initialized.
77 */
78typedef void (periph_init_t)(void);
79
80/*
81 * Callback requesting the peripheral driver to remove its instances
82 * and shutdown, if possible.
83 */
84typedef int (periph_deinit_t)(void);
85
86struct periph_driver {
87	periph_init_t		*init;
88	char			*driver_name;
89	TAILQ_HEAD(,cam_periph)	 units;
90	u_int			 generation;
91	u_int			 flags;
92#define CAM_PERIPH_DRV_EARLY		0x01
93	periph_deinit_t		*deinit;
94};
95
96typedef enum {
97	CAM_PERIPH_BIO
98} cam_periph_type;
99
100/* Generically useful offsets into the peripheral private area */
101#define ppriv_ptr0 periph_priv.entries[0].ptr
102#define ppriv_ptr1 periph_priv.entries[1].ptr
103#define ppriv_field0 periph_priv.entries[0].field
104#define ppriv_field1 periph_priv.entries[1].field
105
106typedef void		periph_start_t (struct cam_periph *periph,
107					union ccb *start_ccb);
108typedef cam_status	periph_ctor_t (struct cam_periph *periph,
109				       void *arg);
110typedef void		periph_oninv_t (struct cam_periph *periph);
111typedef void		periph_dtor_t (struct cam_periph *periph);
112struct cam_periph {
113	periph_start_t		*periph_start;
114	periph_oninv_t		*periph_oninval;
115	periph_dtor_t		*periph_dtor;
116	char			*periph_name;
117	struct cam_path		*path;	/* Compiled path to device */
118	void			*softc;
119	struct cam_sim		*sim;
120	u_int32_t		 unit_number;
121	cam_periph_type		 type;
122	u_int32_t		 flags;
123#define CAM_PERIPH_RUNNING		0x01
124#define CAM_PERIPH_LOCKED		0x02
125#define CAM_PERIPH_LOCK_WANTED		0x04
126#define CAM_PERIPH_INVALID		0x08
127#define CAM_PERIPH_NEW_DEV_FOUND	0x10
128#define CAM_PERIPH_RECOVERY_INPROG	0x20
129#define CAM_PERIPH_RUN_TASK		0x40
130#define CAM_PERIPH_FREE			0x80
131#define CAM_PERIPH_ANNOUNCED		0x100
132#define CAM_PERIPH_RECOVERY_WAIT	0x200
133#define CAM_PERIPH_RECOVERY_WAIT_FAILED	0x400
134	uint32_t		 scheduled_priority;
135	uint32_t		 immediate_priority;
136	int			 periph_allocating;
137	int			 periph_allocated;
138	u_int32_t		 refcount;
139	SLIST_HEAD(, ccb_hdr)	 ccb_list;	/* For "immediate" requests */
140	SLIST_ENTRY(cam_periph)  periph_links;
141	TAILQ_ENTRY(cam_periph)  unit_links;
142	ac_callback_t		*deferred_callback;
143	ac_code			 deferred_ac;
144	struct task		 periph_run_task;
145};
146
147#define CAM_PERIPH_MAXMAPS	2
148
149struct cam_periph_map_info {
150	int		num_bufs_used;
151	void		*orig[CAM_PERIPH_MAXMAPS];
152	struct buf	*bp[CAM_PERIPH_MAXMAPS];
153};
154
155cam_status cam_periph_alloc(periph_ctor_t *periph_ctor,
156			    periph_oninv_t *periph_oninvalidate,
157			    periph_dtor_t *periph_dtor,
158			    periph_start_t *periph_start,
159			    char *name, cam_periph_type type, struct cam_path *,
160			    ac_callback_t *, ac_code, void *arg);
161struct cam_periph *cam_periph_find(struct cam_path *path, char *name);
162int		cam_periph_list(struct cam_path *, struct sbuf *);
163cam_status	cam_periph_acquire(struct cam_periph *periph);
164void		cam_periph_doacquire(struct cam_periph *periph);
165void		cam_periph_release(struct cam_periph *periph);
166void		cam_periph_release_locked(struct cam_periph *periph);
167void		cam_periph_release_locked_buses(struct cam_periph *periph);
168int		cam_periph_hold(struct cam_periph *periph, int priority);
169void		cam_periph_unhold(struct cam_periph *periph);
170void		cam_periph_invalidate(struct cam_periph *periph);
171int		cam_periph_mapmem(union ccb *ccb,
172				  struct cam_periph_map_info *mapinfo,
173				  u_int maxmap);
174void		cam_periph_unmapmem(union ccb *ccb,
175				    struct cam_periph_map_info *mapinfo);
176union ccb	*cam_periph_getccb(struct cam_periph *periph,
177				   u_int32_t priority);
178int		cam_periph_runccb(union ccb *ccb,
179				  int (*error_routine)(union ccb *ccb,
180						       cam_flags camflags,
181						       u_int32_t sense_flags),
182				  cam_flags camflags, u_int32_t sense_flags,
183				  struct devstat *ds);
184int		cam_periph_ioctl(struct cam_periph *periph, u_long cmd,
185				 caddr_t addr,
186				 int (*error_routine)(union ccb *ccb,
187						      cam_flags camflags,
188						      u_int32_t sense_flags));
189void		cam_freeze_devq(struct cam_path *path);
190u_int32_t	cam_release_devq(struct cam_path *path, u_int32_t relsim_flags,
191				 u_int32_t opening_reduction, u_int32_t arg,
192				 int getcount_only);
193void		cam_periph_async(struct cam_periph *periph, u_int32_t code,
194		 		 struct cam_path *path, void *arg);
195void		cam_periph_bus_settle(struct cam_periph *periph,
196				      u_int bus_settle_ms);
197void		cam_periph_freeze_after_event(struct cam_periph *periph,
198					      struct timeval* event_time,
199					      u_int duration_ms);
200int		cam_periph_error(union ccb *ccb, cam_flags camflags,
201				 u_int32_t sense_flags, union ccb *save_ccb);
202
203static __inline struct mtx *
204cam_periph_mtx(struct cam_periph *periph)
205{
206	return (xpt_path_mtx(periph->path));
207}
208
209#define cam_periph_owned(periph)					\
210	mtx_owned(xpt_path_mtx((periph)->path))
211
212#define cam_periph_lock(periph)						\
213	mtx_lock(xpt_path_mtx((periph)->path))
214
215#define cam_periph_unlock(periph)					\
216	mtx_unlock(xpt_path_mtx((periph)->path))
217
218#define cam_periph_assert(periph, what)					\
219	mtx_assert(xpt_path_mtx((periph)->path), (what))
220
221#define cam_periph_sleep(periph, chan, priority, wmesg, timo)		\
222	xpt_path_sleep((periph)->path, (chan), (priority), (wmesg), (timo))
223
224static inline struct cam_periph *
225cam_periph_acquire_first(struct periph_driver *driver)
226{
227	struct cam_periph *periph;
228
229	xpt_lock_buses();
230	periph = TAILQ_FIRST(&driver->units);
231	while (periph != NULL && (periph->flags & CAM_PERIPH_INVALID) != 0)
232		periph = TAILQ_NEXT(periph, unit_links);
233	if (periph != NULL)
234		periph->refcount++;
235	xpt_unlock_buses();
236	return (periph);
237}
238
239static inline struct cam_periph *
240cam_periph_acquire_next(struct cam_periph *pperiph)
241{
242	struct cam_periph *periph = pperiph;
243
244	cam_periph_assert(pperiph, MA_NOTOWNED);
245	xpt_lock_buses();
246	do {
247		periph = TAILQ_NEXT(periph, unit_links);
248	} while (periph != NULL && (periph->flags & CAM_PERIPH_INVALID) != 0);
249	if (periph != NULL)
250		periph->refcount++;
251	xpt_unlock_buses();
252	cam_periph_release(pperiph);
253	return (periph);
254}
255
256#define CAM_PERIPH_FOREACH(periph, driver)				\
257	for ((periph) = cam_periph_acquire_first(driver);		\
258	    (periph) != NULL;						\
259	    (periph) = cam_periph_acquire_next(periph))
260
261#endif /* _KERNEL */
262#endif /* _CAM_CAM_PERIPH_H */
263