MFC CAM fixes for the 2.0 release.
[dragonfly.git] / sys / bus / cam / cam_sim.c
blobfe93de2f1e576e0fca650f4bc9b7e014000601b5
1 /*
2 * Common functions for SCSI Interface Modules (SIMs).
4 * Copyright (c) 1997 Justin T. Gibbs.
5 * All rights reserved.
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.
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.
28 * $FreeBSD: src/sys/cam/cam_sim.c,v 1.3 1999/08/28 00:40:42 peter Exp $
29 * $DragonFly: src/sys/bus/cam/cam_sim.c,v 1.12.2.1 2008/07/18 00:08:22 dillon Exp $
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/malloc.h>
35 #include <sys/kernel.h>
36 #include <sys/lock.h>
37 #include <sys/spinlock.h>
38 #include <sys/thread2.h>
39 #include <sys/spinlock2.h>
41 #include "cam.h"
42 #include "cam_ccb.h"
43 #include "cam_sim.h"
44 #include "cam_queue.h"
45 #include "cam_xpt_sim.h"
47 #define CAM_PATH_ANY (u_int32_t)-1
49 MALLOC_DEFINE(M_CAMSIM, "CAM SIM", "CAM SIM buffers");
51 /* Drivers will use sim_mplock if they need the BGL */
52 sim_lock sim_mplock;
54 void
55 cam_sim_lock(sim_lock *lock)
57 if (lock == &sim_mplock)
58 get_mplock();
59 else
60 lockmgr(lock, LK_EXCLUSIVE);
63 void
64 cam_sim_unlock(sim_lock *lock)
66 if (lock == &sim_mplock)
67 rel_mplock();
68 else
69 lockmgr(lock, LK_RELEASE);
73 * lock can be NULL if sim was &dead_sim
75 void
76 sim_lock_assert_owned(sim_lock *lock)
78 if (lock) {
79 if (lock == &sim_mplock)
80 ASSERT_MP_LOCK_HELD(curthread);
81 else
82 KKASSERT(lockstatus(lock, curthread) != 0);
86 void
87 sim_lock_assert_unowned(sim_lock *lock)
89 if (lock) {
90 if (lock != &sim_mplock)
91 KKASSERT(lockstatus(lock, curthread) == 0);
95 int
96 sim_lock_sleep(void *ident, int flags, const char *wmesg, int timo,
97 sim_lock *lock)
99 int retval;
101 if (lock != &sim_mplock) {
102 /* lock should be held already */
103 KKASSERT(lockstatus(lock, curthread) != 0);
104 crit_enter();
105 tsleep_interlock(ident);
106 lockmgr(lock, LK_RELEASE);
109 retval = tsleep(ident, flags, wmesg, timo);
111 if (lock != &sim_mplock) {
112 lockmgr(lock, LK_EXCLUSIVE);
113 crit_exit();
116 return (retval);
119 struct cam_devq *
120 cam_simq_alloc(u_int32_t max_sim_transactions)
122 return (cam_devq_alloc(/*size*/0, max_sim_transactions));
125 void
126 cam_simq_release(struct cam_devq *devq)
128 cam_devq_release(devq);
132 * cam_sim_alloc() may potentially be called from an interrupt (?) but
133 * unexpected things happen to the system if malloc() returns NULL so we
134 * use M_INTWAIT anyway.
136 struct cam_sim *
137 cam_sim_alloc(sim_action_func sim_action, sim_poll_func sim_poll,
138 const char *sim_name, void *softc, u_int32_t unit,
139 sim_lock *lock, int max_dev_transactions,
140 int max_tagged_dev_transactions, struct cam_devq *queue)
142 struct cam_sim *sim;
145 * XXX ahd was limited to 256 instead of 512 for unknown reasons,
146 * move that to a global limit here. We may be able to remove this
147 * code, needs testing.
149 if (max_dev_transactions > 256)
150 max_dev_transactions = 256;
151 if (max_tagged_dev_transactions > 256)
152 max_tagged_dev_transactions = 256;
155 * Allocate a simq or use the supplied (possibly shared) simq.
157 if (queue == NULL)
158 queue = cam_simq_alloc(max_tagged_dev_transactions);
159 else
160 cam_devq_reference(queue);
162 if (lock == NULL)
163 return (NULL);
165 sim = kmalloc(sizeof(struct cam_sim), M_CAMSIM, M_INTWAIT | M_ZERO);
166 sim->sim_action = sim_action;
167 sim->sim_poll = sim_poll;
168 sim->sim_name = sim_name;
169 sim->softc = softc;
170 sim->path_id = CAM_PATH_ANY;
171 sim->unit_number = unit;
172 sim->bus_id = 0; /* set in xpt_bus_register */
173 sim->max_tagged_dev_openings = max_tagged_dev_transactions;
174 sim->max_dev_openings = max_dev_transactions;
175 sim->flags = 0;
176 sim->refcount = 1;
177 sim->devq = queue;
178 sim->lock = lock;
179 if (lock == &sim_mplock) {
180 sim->flags |= 0;
181 callout_init(&sim->callout);
182 } else {
183 sim->flags |= CAM_SIM_MPSAFE;
184 callout_init_mp(&sim->callout);
187 SLIST_INIT(&sim->ccb_freeq);
188 TAILQ_INIT(&sim->sim_doneq);
189 spin_init(&sim->sim_spin);
191 return (sim);
194 static void deadsim_poll(struct cam_sim *sim);
195 static void deadsim_action(struct cam_sim *sim, union ccb *ccb);
197 void
198 cam_sim_free(struct cam_sim *sim)
200 sim->sim_action = deadsim_action;
201 sim->sim_poll = deadsim_poll;
202 cam_sim_release(sim, CAM_SIM_SOFTC);
206 * Note: the devq is still used by individual peripherals even if the
207 * backend sim disappears, so do not destroy it until the sim itself
208 * is no longer needed.
210 void
211 cam_sim_release(struct cam_sim *sim, int flags)
213 if (flags & CAM_SIM_SOFTC)
214 sim->softc = NULL;
215 if (sim->refcount == 1) {
216 if (sim->devq) {
217 cam_simq_release(sim->devq);
218 sim->devq = NULL;
220 sim->refcount = 0;
221 kfree(sim, M_CAMSIM);
222 } else {
223 --sim->refcount;
227 void
228 cam_sim_set_path(struct cam_sim *sim, u_int32_t path_id)
230 sim->path_id = path_id;
234 * Dead sim poll and action functions. The backend to the sim has gone
235 * away, aka usb, scsi device, etc... deal with it.
237 static void
238 deadsim_poll(struct cam_sim *sim)
240 /* empty */
243 static void
244 deadsim_action(struct cam_sim *sim, union ccb *ccb)
246 ccb->ccb_h.status = CAM_TID_INVALID;
247 xpt_done(ccb);