xref: /freebsd/sys/cam/mmc/mmc_sim.c (revision ac099daf6742ead81ea7ea86351a8ef4e783041b)
1 /*-
2  * Copyright (c) 2020 Emmanuel Vadot <manu@FreeBSD.org>
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
18  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
20  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
21  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  * $FreeBSD$
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include <sys/param.h>
32 #include <sys/kernel.h>
33 #include <sys/systm.h>
34 #include <sys/malloc.h>
35 #include <sys/mutex.h>
36 
37 #include <cam/cam.h>
38 #include <cam/cam_ccb.h>
39 #include <cam/cam_debug.h>
40 #include <cam/cam_sim.h>
41 #include <cam/cam_xpt_sim.h>
42 #include <cam/mmc/mmc_sim.h>
43 
44 #include "mmc_sim_if.h"
45 
46 static void
47 mmc_cam_default_poll(struct cam_sim *sim)
48 {
49 
50 	return;
51 }
52 
53 static void
54 mmc_cam_sim_default_action(struct cam_sim *sim, union ccb *ccb)
55 {
56 	struct mmc_sim *mmc_sim;
57 	struct ccb_trans_settings_mmc mmc;
58 	int rv;
59 
60 	mmc_sim = cam_sim_softc(sim);
61 
62 	if (mmc_sim == NULL) {
63 		ccb->ccb_h.status = CAM_SEL_TIMEOUT;
64 		xpt_done(ccb);
65 		return;
66 	}
67 
68 	mtx_assert(&mmc_sim->mtx, MA_OWNED);
69 
70 	switch (ccb->ccb_h.func_code) {
71 	case XPT_PATH_INQ:
72 		rv = MMC_SIM_GET_TRAN_SETTINGS(mmc_sim->dev, &mmc);
73 		if (rv != 0) {
74 			ccb->ccb_h.status = CAM_REQ_INVALID;
75 		} else {
76 			mmc_path_inq(&ccb->cpi, "Deglitch Networks",
77 			    sim, mmc.host_max_data);
78 		}
79 		break;
80 	case XPT_GET_TRAN_SETTINGS:
81 	{
82 		struct ccb_trans_settings *cts = &ccb->cts;
83 
84 		rv = MMC_SIM_GET_TRAN_SETTINGS(mmc_sim->dev, &cts->proto_specific.mmc);
85 		if (rv != 0)
86 			ccb->ccb_h.status = CAM_REQ_INVALID;
87 		else {
88 			cts->protocol = PROTO_MMCSD;
89 			cts->protocol_version = 1;
90 			cts->transport = XPORT_MMCSD;
91 			cts->transport_version = 1;
92 			cts->xport_specific.valid = 0;
93 			ccb->ccb_h.status = CAM_REQ_CMP;
94 		}
95 		break;
96 	}
97 	case XPT_SET_TRAN_SETTINGS:
98 	{
99 		struct ccb_trans_settings *cts = &ccb->cts;
100 
101 		rv = MMC_SIM_SET_TRAN_SETTINGS(mmc_sim->dev, &cts->proto_specific.mmc);
102 		if (rv != 0)
103 			ccb->ccb_h.status = CAM_REQ_INVALID;
104 		else
105 			ccb->ccb_h.status = CAM_REQ_CMP;
106 		break;
107 	}
108 	case XPT_RESET_BUS:
109 		ccb->ccb_h.status = CAM_REQ_CMP;
110 		break;
111 	case XPT_MMC_IO:
112 	{
113 		rv = MMC_SIM_CAM_REQUEST(mmc_sim->dev, ccb);
114 		if (rv != 0)
115 			ccb->ccb_h.status = CAM_REQ_INPROG;
116 		else
117 			ccb->ccb_h.status = CAM_REQ_INVALID;
118 		return;
119 		/* NOTREACHED */
120 		break;
121 	}
122 	default:
123 		ccb->ccb_h.status = CAM_REQ_INVALID;
124 		break;
125 	}
126 	xpt_done(ccb);
127 	return;
128 }
129 
130 int
131 mmc_cam_sim_alloc(device_t dev, const char *name, struct mmc_sim *mmc_sim)
132 {
133 	char sim_name[64], mtx_name[64];
134 
135 	mmc_sim->dev = dev;
136 
137 	if ((mmc_sim->devq = cam_simq_alloc(1)) == NULL) {
138 		goto fail;
139 	}
140 
141 	snprintf(sim_name, sizeof(sim_name), "%s_sim", name);
142 	snprintf(mtx_name, sizeof(mtx_name), "%s_mtx", name);
143 
144 	mtx_init(&mmc_sim->mtx, sim_name, NULL, MTX_DEF);
145 	mmc_sim->sim = cam_sim_alloc_dev(mmc_cam_sim_default_action,
146 	    mmc_cam_default_poll,
147 	    name, mmc_sim, dev,
148 	    &mmc_sim->mtx, 1, 1, mmc_sim->devq);
149 
150 	if (mmc_sim->sim == NULL) {
151 		cam_simq_free(mmc_sim->devq);
152 		device_printf(dev, "cannot allocate CAM SIM\n");
153 		goto fail;
154 	}
155 
156 	mtx_lock(&mmc_sim->mtx);
157 	if (xpt_bus_register(mmc_sim->sim, dev, 0) != 0) {
158 		device_printf(dev, "cannot register SCSI pass-through bus\n");
159 		cam_sim_free(mmc_sim->sim, FALSE);
160 		cam_simq_free(mmc_sim->devq);
161 		mtx_unlock(&mmc_sim->mtx);
162 		goto fail;
163 	}
164 
165 	mtx_unlock(&mmc_sim->mtx);
166 
167 	return (0);
168 
169 fail:
170 	mmc_cam_sim_free(mmc_sim);
171 	return (1);
172 }
173 
174 void
175 mmc_cam_sim_free(struct mmc_sim *mmc_sim)
176 {
177 
178 	if (mmc_sim->sim != NULL) {
179 		mtx_lock(&mmc_sim->mtx);
180 		xpt_bus_deregister(cam_sim_path(mmc_sim->sim));
181 		cam_sim_free(mmc_sim->sim, FALSE);
182 		mtx_unlock(&mmc_sim->mtx);
183 	}
184 
185 	if (mmc_sim->devq != NULL)
186 		cam_simq_free(mmc_sim->devq);
187 }
188 
189 void
190 mmc_cam_sim_discover(struct mmc_sim *mmc_sim)
191 {
192 
193 	mmccam_start_discovery(mmc_sim->sim);
194 }
195