source: mainline/uspace/drv/bus/usb/usbmast/main.c@ 3d79f5b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3d79f5b was 3d79f5b, checked in by Jiri Svoboda <jiri@…>, 14 years ago

Allocate usbmast device soft state using ddf_dev_data_alloc().

  • Property mode set to 100644
File size: 8.1 KB
RevLine 
[2715978]1/*
2 * Copyright (c) 2011 Vojtech Horky
[ff65e91]3 * Copyright (c) 2011 Jiri Svoboda
[2715978]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - 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 ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/** @addtogroup drvusbmast
31 * @{
32 */
33/**
34 * @file
35 * Main routines of USB mass storage driver.
36 */
[ff65e91]37#include <as.h>
38#include <async.h>
39#include <ipc/bd.h>
40#include <macros.h>
[7d521e24]41#include <usb/dev/driver.h>
[2715978]42#include <usb/debug.h>
43#include <usb/classes/classes.h>
44#include <usb/classes/massstor.h>
45#include <errno.h>
46#include <str_error.h>
[89d3f3c7]47#include "cmdw.h"
48#include "bo_trans.h"
[6430ac6]49#include "scsi_ms.h"
[7190bbc]50#include "usbmast.h"
[2715978]51
52#define NAME "usbmast"
53
[7a5c8b8f]54#define GET_BULK_IN(dev) ((dev)->pipes[BULK_IN_EP].pipe)
55#define GET_BULK_OUT(dev) ((dev)->pipes[BULK_OUT_EP].pipe)
56
[2715978]57static usb_endpoint_description_t bulk_in_ep = {
58 .transfer_type = USB_TRANSFER_BULK,
59 .direction = USB_DIRECTION_IN,
60 .interface_class = USB_CLASS_MASS_STORAGE,
61 .interface_subclass = USB_MASSSTOR_SUBCLASS_SCSI,
62 .interface_protocol = USB_MASSSTOR_PROTOCOL_BBB,
63 .flags = 0
64};
65static usb_endpoint_description_t bulk_out_ep = {
66 .transfer_type = USB_TRANSFER_BULK,
67 .direction = USB_DIRECTION_OUT,
68 .interface_class = USB_CLASS_MASS_STORAGE,
69 .interface_subclass = USB_MASSSTOR_SUBCLASS_SCSI,
70 .interface_protocol = USB_MASSSTOR_PROTOCOL_BBB,
71 .flags = 0
72};
73
74usb_endpoint_description_t *mast_endpoints[] = {
75 &bulk_in_ep,
76 &bulk_out_ep,
77 NULL
78};
79
[2aceec5]80static int usbmast_fun_create(usbmast_dev_t *mdev, unsigned lun);
[ff65e91]81static void usbmast_bd_connection(ipc_callid_t iid, ipc_call_t *icall,
82 void *arg);
83
[2715978]84/** Callback when new device is attached and recognized as a mass storage.
85 *
86 * @param dev Representation of a the USB device.
87 * @return Error code.
88 */
89static int usbmast_add_device(usb_device_t *dev)
90{
91 int rc;
[2aceec5]92 usbmast_dev_t *mdev = NULL;
93 unsigned i;
[2715978]94
[ff65e91]95 /* Allocate softstate */
[3d79f5b]96 mdev = ddf_dev_data_alloc(dev->ddf_dev, sizeof(usbmast_dev_t));
[2aceec5]97 if (mdev == NULL) {
[ff65e91]98 usb_log_error("Failed allocating softstate.\n");
99 rc = ENOMEM;
100 goto error;
[2715978]101 }
[ff65e91]102
[2aceec5]103 mdev->ddf_dev = dev->ddf_dev;
104 mdev->usb_dev = dev;
[ff65e91]105
106 usb_log_info("Initializing mass storage `%s'.\n",
[2715978]107 dev->ddf_dev->name);
108 usb_log_debug(" Bulk in endpoint: %d [%zuB].\n",
109 dev->pipes[BULK_IN_EP].pipe->endpoint_no,
110 (size_t) dev->pipes[BULK_IN_EP].descriptor->max_packet_size);
111 usb_log_debug("Bulk out endpoint: %d [%zuB].\n",
112 dev->pipes[BULK_OUT_EP].pipe->endpoint_no,
113 (size_t) dev->pipes[BULK_OUT_EP].descriptor->max_packet_size);
114
[239e7e10]115 usb_log_debug("Get LUN count...\n");
[2aceec5]116 mdev->luns = usb_masstor_get_lun_count(mdev);
[239e7e10]117
[2aceec5]118 for (i = 0; i < mdev->luns; i++) {
119 rc = usbmast_fun_create(mdev, i);
120 if (rc != EOK)
121 goto error;
[ff65e91]122 }
123
[2aceec5]124 return EOK;
125error:
126 /* XXX Destroy functions */
127 if (mdev != NULL)
128 free(mdev);
129 return rc;
130}
131
132/** Create mass storage function.
133 *
134 * Called once for each LUN.
135 *
136 * @param mdev Mass storage device
137 * @param lun LUN
138 * @return EOK on success or negative error code.
139 */
140static int usbmast_fun_create(usbmast_dev_t *mdev, unsigned lun)
141{
142 int rc;
143 char *fun_name = NULL;
144 ddf_fun_t *fun = NULL;
145 usbmast_fun_t *mfun = NULL;
146
147 if (asprintf(&fun_name, "l%u", lun) < 0) {
148 usb_log_error("Out of memory.\n");
149 rc = ENOMEM;
150 goto error;
151 }
152
153 fun = ddf_fun_create(mdev->ddf_dev, fun_exposed, fun_name);
154 if (fun == NULL) {
155 usb_log_error("Failed to create DDF function %s.\n", fun_name);
156 rc = ENOMEM;
157 goto error;
158 }
159
[5f6e25e]160 /* Allocate soft state */
[d95f02ff]161 mfun = ddf_fun_data_alloc(fun, sizeof(usbmast_fun_t));
[5f6e25e]162 if (mfun == NULL) {
163 usb_log_error("Failed allocating softstate.\n");
164 rc = ENOMEM;
165 goto error;
166 }
167
168 mfun->mdev = mdev;
169 mfun->lun = lun;
170
[2aceec5]171 /* Set up a connection handler. */
172 fun->conn_handler = usbmast_bd_connection;
173
[0feaae4]174 usb_log_debug("Inquire...\n");
[6430ac6]175 usbmast_inquiry_data_t inquiry;
[2aceec5]176 rc = usbmast_inquiry(mfun, &inquiry);
[70c12d6]177 if (rc != EOK) {
[0feaae4]178 usb_log_warning("Failed to inquire device `%s': %s.\n",
[2aceec5]179 mdev->ddf_dev->name, str_error(rc));
[ff65e91]180 rc = EIO;
181 goto error;
[70c12d6]182 }
183
[2aceec5]184 usb_log_info("Mass storage `%s' LUN %u: " \
185 "%s by %s rev. %s is %s (%s).\n",
186 mdev->ddf_dev->name,
187 lun,
[7b2c17c]188 inquiry.product,
189 inquiry.vendor,
190 inquiry.revision,
[6430ac6]191 usbmast_scsi_dev_type_str(inquiry.device_type),
[2aceec5]192 inquiry.removable ? "removable" : "non-removable");
[7a5c8b8f]193
[71fa44c]194 uint32_t nblocks, block_size;
195
[2aceec5]196 rc = usbmast_read_capacity(mfun, &nblocks, &block_size);
[71fa44c]197 if (rc != EOK) {
198 usb_log_warning("Failed to read capacity, device `%s': %s.\n",
[2aceec5]199 mdev->ddf_dev->name, str_error(rc));
[ff65e91]200 rc = EIO;
201 goto error;
[71fa44c]202 }
203
204 usb_log_info("Read Capacity: nblocks=%" PRIu32 ", "
205 "block_size=%" PRIu32 "\n", nblocks, block_size);
206
[2aceec5]207 mfun->nblocks = nblocks;
208 mfun->block_size = block_size;
[f7a55f9]209
[ff65e91]210 rc = ddf_fun_bind(fun);
[f7a55f9]211 if (rc != EOK) {
[ff65e91]212 usb_log_error("Failed to bind DDF function %s: %s.\n",
213 fun_name, str_error(rc));
214 goto error;
[f7a55f9]215 }
216
[60c6fe0]217 free(fun_name);
218
[ff65e91]219 return EOK;
[f7a55f9]220
[ff65e91]221 /* Error cleanup */
222error:
223 if (fun != NULL)
224 ddf_fun_destroy(fun);
[2aceec5]225 if (fun_name != NULL)
226 free(fun_name);
[ff65e91]227 return rc;
228}
229
230/** Blockdev client connection handler. */
231static void usbmast_bd_connection(ipc_callid_t iid, ipc_call_t *icall,
232 void *arg)
233{
[2aceec5]234 usbmast_fun_t *mfun;
[ff65e91]235 void *comm_buf = NULL;
236 size_t comm_size;
237 ipc_callid_t callid;
238 ipc_call_t call;
239 unsigned int flags;
240 sysarg_t method;
241 uint64_t ba;
242 size_t cnt;
243 int retval;
244
245 async_answer_0(iid, EOK);
246
247 if (!async_share_out_receive(&callid, &comm_size, &flags)) {
248 async_answer_0(callid, EHANGUP);
249 return;
[f7a55f9]250 }
251
[ff65e91]252 comm_buf = as_get_mappable_page(comm_size);
253 if (comm_buf == NULL) {
254 async_answer_0(callid, EHANGUP);
255 return;
256 }
257
258 (void) async_share_out_finalize(callid, comm_buf);
259
[2aceec5]260 mfun = (usbmast_fun_t *) ((ddf_fun_t *)arg)->driver_data;
[ff65e91]261
262 while (true) {
263 callid = async_get_call(&call);
264 method = IPC_GET_IMETHOD(call);
265
266 if (!method) {
267 /* The other side hung up. */
268 async_answer_0(callid, EOK);
269 return;
270 }
271
272 switch (method) {
273 case BD_GET_BLOCK_SIZE:
[2aceec5]274 async_answer_1(callid, EOK, mfun->block_size);
[ff65e91]275 break;
276 case BD_GET_NUM_BLOCKS:
[2aceec5]277 async_answer_2(callid, EOK, LOWER32(mfun->nblocks),
278 UPPER32(mfun->nblocks));
[ff65e91]279 break;
280 case BD_READ_BLOCKS:
281 ba = MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
282 cnt = IPC_GET_ARG3(call);
[2aceec5]283 retval = usbmast_read(mfun, ba, cnt, comm_buf);
[ff65e91]284 async_answer_0(callid, retval);
285 break;
286 case BD_WRITE_BLOCKS:
[38c9505]287 ba = MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
[ff65e91]288 cnt = IPC_GET_ARG3(call);
[2aceec5]289 retval = usbmast_write(mfun, ba, cnt, comm_buf);
[ff65e91]290 async_answer_0(callid, retval);
[38c9505]291 break;
[ff65e91]292 default:
293 async_answer_0(callid, EINVAL);
294 }
295 }
[2715978]296}
297
298/** USB mass storage driver ops. */
299static usb_driver_ops_t usbmast_driver_ops = {
300 .add_device = usbmast_add_device,
301};
302
303/** USB mass storage driver. */
304static usb_driver_t usbmast_driver = {
305 .name = NAME,
306 .ops = &usbmast_driver_ops,
307 .endpoints = mast_endpoints
308};
309
310int main(int argc, char *argv[])
311{
312 usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
313
314 return usb_driver_main(&usbmast_driver);
315}
316
317/**
318 * @}
319 */
Note: See TracBrowser for help on using the repository browser.