| 1 | /*
|
|---|
| 2 | * Copyright (c) 2011 Vojtech Horky
|
|---|
| 3 | * Copyright (c) 2011 Jiri Svoboda
|
|---|
| 4 | * Copyright (c) 2018 Ondrej Hlavaty
|
|---|
| 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 | *
|
|---|
| 11 | * - Redistributions of source code must retain the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 13 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 14 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 15 | * documentation and/or other materials provided with the distribution.
|
|---|
| 16 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 17 | * derived from this software without specific prior written permission.
|
|---|
| 18 | *
|
|---|
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 29 | */
|
|---|
| 30 |
|
|---|
| 31 | /** @addtogroup drvusbmast
|
|---|
| 32 | * @{
|
|---|
| 33 | */
|
|---|
| 34 | /**
|
|---|
| 35 | * @file
|
|---|
| 36 | * Main routines of USB mass storage driver.
|
|---|
| 37 | */
|
|---|
| 38 |
|
|---|
| 39 | #include <as.h>
|
|---|
| 40 | #include <async.h>
|
|---|
| 41 | #include <bd_srv.h>
|
|---|
| 42 | #include <macros.h>
|
|---|
| 43 | #include <usb/dev/driver.h>
|
|---|
| 44 | #include <usb/debug.h>
|
|---|
| 45 | #include <usb/classes/classes.h>
|
|---|
| 46 | #include <usb/classes/massstor.h>
|
|---|
| 47 | #include <errno.h>
|
|---|
| 48 | #include <io/logctl.h>
|
|---|
| 49 | #include <str_error.h>
|
|---|
| 50 | #include "cmdw.h"
|
|---|
| 51 | #include "bo_trans.h"
|
|---|
| 52 | #include "scsi_ms.h"
|
|---|
| 53 | #include "usbmast.h"
|
|---|
| 54 |
|
|---|
| 55 | #define NAME "usbmast"
|
|---|
| 56 |
|
|---|
| 57 | static const 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 | };
|
|---|
| 65 | static const 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 |
|
|---|
| 74 | static const usb_endpoint_description_t *mast_endpoints[] = {
|
|---|
| 75 | &bulk_in_ep,
|
|---|
| 76 | &bulk_out_ep,
|
|---|
| 77 | NULL
|
|---|
| 78 | };
|
|---|
| 79 |
|
|---|
| 80 | static errno_t usbmast_fun_create(usbmast_dev_t *mdev, unsigned lun);
|
|---|
| 81 | static void usbmast_bd_connection(ipc_call_t *icall, void *arg);
|
|---|
| 82 |
|
|---|
| 83 | static errno_t usbmast_bd_open(bd_srvs_t *, bd_srv_t *);
|
|---|
| 84 | static errno_t usbmast_bd_close(bd_srv_t *);
|
|---|
| 85 | static errno_t usbmast_bd_read_blocks(bd_srv_t *, aoff64_t, size_t, void *, size_t);
|
|---|
| 86 | static errno_t usbmast_bd_sync_cache(bd_srv_t *, aoff64_t, size_t);
|
|---|
| 87 | static errno_t usbmast_bd_write_blocks(bd_srv_t *, aoff64_t, size_t, const void *, size_t);
|
|---|
| 88 | static errno_t usbmast_bd_get_block_size(bd_srv_t *, size_t *);
|
|---|
| 89 | static errno_t usbmast_bd_get_num_blocks(bd_srv_t *, aoff64_t *);
|
|---|
| 90 |
|
|---|
| 91 | static bd_ops_t usbmast_bd_ops = {
|
|---|
| 92 | .open = usbmast_bd_open,
|
|---|
| 93 | .close = usbmast_bd_close,
|
|---|
| 94 | .read_blocks = usbmast_bd_read_blocks,
|
|---|
| 95 | .sync_cache = usbmast_bd_sync_cache,
|
|---|
| 96 | .write_blocks = usbmast_bd_write_blocks,
|
|---|
| 97 | .get_block_size = usbmast_bd_get_block_size,
|
|---|
| 98 | .get_num_blocks = usbmast_bd_get_num_blocks
|
|---|
| 99 | };
|
|---|
| 100 |
|
|---|
| 101 | static usbmast_fun_t *bd_srv_usbmast(bd_srv_t *bd)
|
|---|
| 102 | {
|
|---|
| 103 | return (usbmast_fun_t *) bd->srvs->sarg;
|
|---|
| 104 | }
|
|---|
| 105 |
|
|---|
| 106 | /** Callback when a device is removed from the system.
|
|---|
| 107 | *
|
|---|
| 108 | * @param dev Representation of USB device.
|
|---|
| 109 | * @return Error code.
|
|---|
| 110 | */
|
|---|
| 111 | static errno_t usbmast_device_gone(usb_device_t *dev)
|
|---|
| 112 | {
|
|---|
| 113 | usbmast_dev_t *mdev = usb_device_data_get(dev);
|
|---|
| 114 | assert(mdev);
|
|---|
| 115 |
|
|---|
| 116 | for (size_t i = 0; i < mdev->lun_count; ++i) {
|
|---|
| 117 | const errno_t rc = ddf_fun_unbind(mdev->luns[i]);
|
|---|
| 118 | if (rc != EOK) {
|
|---|
| 119 | usb_log_error("Failed to unbind LUN function %zu: "
|
|---|
| 120 | "%s\n", i, str_error(rc));
|
|---|
| 121 | return rc;
|
|---|
| 122 | }
|
|---|
| 123 | ddf_fun_destroy(mdev->luns[i]);
|
|---|
| 124 | mdev->luns[i] = NULL;
|
|---|
| 125 | }
|
|---|
| 126 | free(mdev->luns);
|
|---|
| 127 | return EOK;
|
|---|
| 128 | }
|
|---|
| 129 |
|
|---|
| 130 | /** Callback when a device is about to be removed.
|
|---|
| 131 | *
|
|---|
| 132 | * @param dev Representation of USB device.
|
|---|
| 133 | * @return Error code.
|
|---|
| 134 | */
|
|---|
| 135 | static errno_t usbmast_device_remove(usb_device_t *dev)
|
|---|
| 136 | {
|
|---|
| 137 | //TODO: flush buffers, or whatever.
|
|---|
| 138 | //TODO: remove device
|
|---|
| 139 | return ENOTSUP;
|
|---|
| 140 | }
|
|---|
| 141 |
|
|---|
| 142 | /** Callback when new device is attached and recognized as a mass storage.
|
|---|
| 143 | *
|
|---|
| 144 | * @param dev Representation of USB device.
|
|---|
| 145 | * @return Error code.
|
|---|
| 146 | */
|
|---|
| 147 | static errno_t usbmast_device_add(usb_device_t *dev)
|
|---|
| 148 | {
|
|---|
| 149 | errno_t rc;
|
|---|
| 150 | usbmast_dev_t *mdev = NULL;
|
|---|
| 151 | unsigned i;
|
|---|
| 152 |
|
|---|
| 153 | usb_endpoint_mapping_t *epm_in =
|
|---|
| 154 | usb_device_get_mapped_ep_desc(dev, &bulk_in_ep);
|
|---|
| 155 | usb_endpoint_mapping_t *epm_out =
|
|---|
| 156 | usb_device_get_mapped_ep_desc(dev, &bulk_out_ep);
|
|---|
| 157 | if (!epm_in || !epm_out || !epm_in->present || !epm_out->present) {
|
|---|
| 158 | usb_log_error("Required EPs were not mapped.");
|
|---|
| 159 | return ENOENT;
|
|---|
| 160 | }
|
|---|
| 161 |
|
|---|
| 162 | /* Allocate softstate */
|
|---|
| 163 | mdev = usb_device_data_alloc(dev, sizeof(usbmast_dev_t));
|
|---|
| 164 | if (mdev == NULL) {
|
|---|
| 165 | usb_log_error("Failed allocating softstate.");
|
|---|
| 166 | return ENOMEM;
|
|---|
| 167 | }
|
|---|
| 168 |
|
|---|
| 169 | mdev->usb_dev = dev;
|
|---|
| 170 |
|
|---|
| 171 | usb_log_info("Initializing mass storage `%s'.",
|
|---|
| 172 | usb_device_get_name(dev));
|
|---|
| 173 | usb_log_debug("Bulk in endpoint: %d [%zuB].",
|
|---|
| 174 | epm_in->pipe.desc.endpoint_no, epm_in->pipe.desc.max_transfer_size);
|
|---|
| 175 | usb_log_debug("Bulk out endpoint: %d [%zuB].",
|
|---|
| 176 | epm_out->pipe.desc.endpoint_no, epm_out->pipe.desc.max_transfer_size);
|
|---|
| 177 |
|
|---|
| 178 | usb_log_debug("Get LUN count...");
|
|---|
| 179 | mdev->lun_count = usb_masstor_get_lun_count(mdev);
|
|---|
| 180 | mdev->luns = calloc(mdev->lun_count, sizeof(ddf_fun_t *));
|
|---|
| 181 | if (mdev->luns == NULL) {
|
|---|
| 182 | usb_log_error("Failed allocating luns table.");
|
|---|
| 183 | return ENOMEM;
|
|---|
| 184 | }
|
|---|
| 185 |
|
|---|
| 186 | mdev->bulk_in_pipe = &epm_in->pipe;
|
|---|
| 187 | mdev->bulk_out_pipe = &epm_out->pipe;
|
|---|
| 188 | for (i = 0; i < mdev->lun_count; i++) {
|
|---|
| 189 | rc = usbmast_fun_create(mdev, i);
|
|---|
| 190 | if (rc != EOK)
|
|---|
| 191 | goto error;
|
|---|
| 192 | }
|
|---|
| 193 |
|
|---|
| 194 | return EOK;
|
|---|
| 195 | error:
|
|---|
| 196 | /* Destroy functions */
|
|---|
| 197 | for (size_t i = 0; i < mdev->lun_count; ++i) {
|
|---|
| 198 | if (mdev->luns[i] == NULL)
|
|---|
| 199 | continue;
|
|---|
| 200 | const errno_t rc = ddf_fun_unbind(mdev->luns[i]);
|
|---|
| 201 | if (rc != EOK) {
|
|---|
| 202 | usb_log_warning("Failed to unbind LUN function %zu: "
|
|---|
| 203 | "%s.\n", i, str_error(rc));
|
|---|
| 204 | }
|
|---|
| 205 | ddf_fun_destroy(mdev->luns[i]);
|
|---|
| 206 | }
|
|---|
| 207 | free(mdev->luns);
|
|---|
| 208 | return rc;
|
|---|
| 209 | }
|
|---|
| 210 |
|
|---|
| 211 | /** Create mass storage function.
|
|---|
| 212 | *
|
|---|
| 213 | * Called once for each LUN.
|
|---|
| 214 | *
|
|---|
| 215 | * @param mdev Mass storage device
|
|---|
| 216 | * @param lun LUN
|
|---|
| 217 | * @return EOK on success or an error code.
|
|---|
| 218 | */
|
|---|
| 219 | static errno_t usbmast_fun_create(usbmast_dev_t *mdev, unsigned lun)
|
|---|
| 220 | {
|
|---|
| 221 | errno_t rc;
|
|---|
| 222 | char *fun_name = NULL;
|
|---|
| 223 | ddf_fun_t *fun = NULL;
|
|---|
| 224 | usbmast_fun_t *mfun = NULL;
|
|---|
| 225 | bool bound = false;
|
|---|
| 226 |
|
|---|
| 227 | if (asprintf(&fun_name, "l%u", lun) < 0) {
|
|---|
| 228 | usb_log_error("Out of memory.");
|
|---|
| 229 | rc = ENOMEM;
|
|---|
| 230 | goto error;
|
|---|
| 231 | }
|
|---|
| 232 |
|
|---|
| 233 | fun = usb_device_ddf_fun_create(mdev->usb_dev, fun_exposed, fun_name);
|
|---|
| 234 | if (fun == NULL) {
|
|---|
| 235 | usb_log_error("Failed to create DDF function %s.", fun_name);
|
|---|
| 236 | rc = ENOMEM;
|
|---|
| 237 | goto error;
|
|---|
| 238 | }
|
|---|
| 239 |
|
|---|
| 240 | /* Allocate soft state */
|
|---|
| 241 | mfun = ddf_fun_data_alloc(fun, sizeof(usbmast_fun_t));
|
|---|
| 242 | if (mfun == NULL) {
|
|---|
| 243 | usb_log_error("Failed allocating softstate.");
|
|---|
| 244 | rc = ENOMEM;
|
|---|
| 245 | goto error;
|
|---|
| 246 | }
|
|---|
| 247 |
|
|---|
| 248 | mfun->ddf_fun = fun;
|
|---|
| 249 | mfun->mdev = mdev;
|
|---|
| 250 | mfun->lun = lun;
|
|---|
| 251 |
|
|---|
| 252 | bd_srvs_init(&mfun->bds);
|
|---|
| 253 | mfun->bds.ops = &usbmast_bd_ops;
|
|---|
| 254 | mfun->bds.sarg = mfun;
|
|---|
| 255 |
|
|---|
| 256 | /* Set up a connection handler. */
|
|---|
| 257 | ddf_fun_set_conn_handler(fun, usbmast_bd_connection);
|
|---|
| 258 |
|
|---|
| 259 | usb_log_debug("Inquire...");
|
|---|
| 260 | usbmast_inquiry_data_t inquiry;
|
|---|
| 261 | rc = usbmast_inquiry(mfun, &inquiry);
|
|---|
| 262 | if (rc != EOK) {
|
|---|
| 263 | usb_log_warning("Failed to inquire device `%s': %s.",
|
|---|
| 264 | usb_device_get_name(mdev->usb_dev), str_error(rc));
|
|---|
| 265 | rc = EIO;
|
|---|
| 266 | goto error;
|
|---|
| 267 | }
|
|---|
| 268 |
|
|---|
| 269 | usb_log_info("Mass storage `%s' LUN %u: "
|
|---|
| 270 | "%s by %s rev. %s is %s (%s).\n",
|
|---|
| 271 | usb_device_get_name(mdev->usb_dev),
|
|---|
| 272 | lun,
|
|---|
| 273 | inquiry.product,
|
|---|
| 274 | inquiry.vendor,
|
|---|
| 275 | inquiry.revision,
|
|---|
| 276 | usbmast_scsi_dev_type_str(inquiry.device_type),
|
|---|
| 277 | inquiry.removable ? "removable" : "non-removable");
|
|---|
| 278 |
|
|---|
| 279 | uint32_t nblocks, block_size;
|
|---|
| 280 |
|
|---|
| 281 | rc = usbmast_read_capacity(mfun, &nblocks, &block_size);
|
|---|
| 282 | if (rc != EOK) {
|
|---|
| 283 | usb_log_warning("Failed to read capacity, device `%s': %s.",
|
|---|
| 284 | usb_device_get_name(mdev->usb_dev), str_error(rc));
|
|---|
| 285 | rc = EIO;
|
|---|
| 286 | goto error;
|
|---|
| 287 | }
|
|---|
| 288 |
|
|---|
| 289 | usb_log_info("Read Capacity: nblocks=%" PRIu32 ", "
|
|---|
| 290 | "block_size=%" PRIu32 "\n", nblocks, block_size);
|
|---|
| 291 |
|
|---|
| 292 | mfun->nblocks = nblocks;
|
|---|
| 293 | mfun->block_size = block_size;
|
|---|
| 294 |
|
|---|
| 295 | rc = ddf_fun_bind(fun);
|
|---|
| 296 | if (rc != EOK) {
|
|---|
| 297 | usb_log_error("Failed to bind DDF function %s: %s.",
|
|---|
| 298 | fun_name, str_error(rc));
|
|---|
| 299 | goto error;
|
|---|
| 300 | }
|
|---|
| 301 |
|
|---|
| 302 | bound = true;
|
|---|
| 303 |
|
|---|
| 304 | rc = ddf_fun_add_to_category(fun, "disk");
|
|---|
| 305 | if (rc != EOK) {
|
|---|
| 306 | usb_log_error("Failed to add function %s to category 'disk': %s.",
|
|---|
| 307 | fun_name, str_error(rc));
|
|---|
| 308 | goto error;
|
|---|
| 309 | }
|
|---|
| 310 |
|
|---|
| 311 | free(fun_name);
|
|---|
| 312 | mdev->luns[lun] = fun;
|
|---|
| 313 |
|
|---|
| 314 | return EOK;
|
|---|
| 315 |
|
|---|
| 316 | /* Error cleanup */
|
|---|
| 317 | error:
|
|---|
| 318 | if (bound)
|
|---|
| 319 | ddf_fun_unbind(fun);
|
|---|
| 320 | if (fun != NULL)
|
|---|
| 321 | ddf_fun_destroy(fun);
|
|---|
| 322 | if (fun_name != NULL)
|
|---|
| 323 | free(fun_name);
|
|---|
| 324 | return rc;
|
|---|
| 325 | }
|
|---|
| 326 |
|
|---|
| 327 | /** Blockdev client connection handler. */
|
|---|
| 328 | static void usbmast_bd_connection(ipc_call_t *icall, void *arg)
|
|---|
| 329 | {
|
|---|
| 330 | usbmast_fun_t *mfun;
|
|---|
| 331 |
|
|---|
| 332 | mfun = (usbmast_fun_t *) ddf_fun_data_get((ddf_fun_t *)arg);
|
|---|
| 333 | bd_conn(icall, &mfun->bds);
|
|---|
| 334 | }
|
|---|
| 335 |
|
|---|
| 336 | /** Open device. */
|
|---|
| 337 | static errno_t usbmast_bd_open(bd_srvs_t *bds, bd_srv_t *bd)
|
|---|
| 338 | {
|
|---|
| 339 | return EOK;
|
|---|
| 340 | }
|
|---|
| 341 |
|
|---|
| 342 | /** Close device. */
|
|---|
| 343 | static errno_t usbmast_bd_close(bd_srv_t *bd)
|
|---|
| 344 | {
|
|---|
| 345 | return EOK;
|
|---|
| 346 | }
|
|---|
| 347 |
|
|---|
| 348 | /** Read blocks from the device. */
|
|---|
| 349 | static errno_t usbmast_bd_read_blocks(bd_srv_t *bd, uint64_t ba, size_t cnt, void *buf,
|
|---|
| 350 | size_t size)
|
|---|
| 351 | {
|
|---|
| 352 | usbmast_fun_t *mfun = bd_srv_usbmast(bd);
|
|---|
| 353 |
|
|---|
| 354 | if (size < cnt * mfun->block_size)
|
|---|
| 355 | return EINVAL;
|
|---|
| 356 |
|
|---|
| 357 | return usbmast_read(mfun, ba, cnt, buf);
|
|---|
| 358 | }
|
|---|
| 359 |
|
|---|
| 360 | /** Synchronize blocks to nonvolatile storage. */
|
|---|
| 361 | static errno_t usbmast_bd_sync_cache(bd_srv_t *bd, uint64_t ba, size_t cnt)
|
|---|
| 362 | {
|
|---|
| 363 | usbmast_fun_t *mfun = bd_srv_usbmast(bd);
|
|---|
| 364 |
|
|---|
| 365 | return usbmast_sync_cache(mfun, ba, cnt);
|
|---|
| 366 | }
|
|---|
| 367 |
|
|---|
| 368 | /** Write blocks to the device. */
|
|---|
| 369 | static errno_t usbmast_bd_write_blocks(bd_srv_t *bd, uint64_t ba, size_t cnt,
|
|---|
| 370 | const void *buf, size_t size)
|
|---|
| 371 | {
|
|---|
| 372 | usbmast_fun_t *mfun = bd_srv_usbmast(bd);
|
|---|
| 373 |
|
|---|
| 374 | if (size < cnt * mfun->block_size)
|
|---|
| 375 | return EINVAL;
|
|---|
| 376 |
|
|---|
| 377 | return usbmast_write(mfun, ba, cnt, buf);
|
|---|
| 378 | }
|
|---|
| 379 |
|
|---|
| 380 | /** Get device block size. */
|
|---|
| 381 | static errno_t usbmast_bd_get_block_size(bd_srv_t *bd, size_t *rsize)
|
|---|
| 382 | {
|
|---|
| 383 | usbmast_fun_t *mfun = bd_srv_usbmast(bd);
|
|---|
| 384 | *rsize = mfun->block_size;
|
|---|
| 385 | return EOK;
|
|---|
| 386 | }
|
|---|
| 387 |
|
|---|
| 388 | /** Get number of blocks on device. */
|
|---|
| 389 | static errno_t usbmast_bd_get_num_blocks(bd_srv_t *bd, aoff64_t *rnb)
|
|---|
| 390 | {
|
|---|
| 391 | usbmast_fun_t *mfun = bd_srv_usbmast(bd);
|
|---|
| 392 | *rnb = mfun->nblocks;
|
|---|
| 393 | return EOK;
|
|---|
| 394 | }
|
|---|
| 395 |
|
|---|
| 396 | /** USB mass storage driver ops. */
|
|---|
| 397 | static const usb_driver_ops_t usbmast_driver_ops = {
|
|---|
| 398 | .device_add = usbmast_device_add,
|
|---|
| 399 | .device_remove = usbmast_device_remove,
|
|---|
| 400 | .device_gone = usbmast_device_gone,
|
|---|
| 401 | };
|
|---|
| 402 |
|
|---|
| 403 | /** USB mass storage driver. */
|
|---|
| 404 | static const usb_driver_t usbmast_driver = {
|
|---|
| 405 | .name = NAME,
|
|---|
| 406 | .ops = &usbmast_driver_ops,
|
|---|
| 407 | .endpoints = mast_endpoints
|
|---|
| 408 | };
|
|---|
| 409 |
|
|---|
| 410 | int main(int argc, char *argv[])
|
|---|
| 411 | {
|
|---|
| 412 | log_init(NAME);
|
|---|
| 413 | logctl_set_log_level(NAME, LVL_NOTE);
|
|---|
| 414 | return usb_driver_main(&usbmast_driver);
|
|---|
| 415 | }
|
|---|
| 416 |
|
|---|
| 417 | /**
|
|---|
| 418 | * @}
|
|---|
| 419 | */
|
|---|