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