| 1 | /*
|
|---|
| 2 | * Copyright (c) 2011 Vojtech Horky
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup drvusbvhc
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /** @file
|
|---|
| 33 | * Connection handling of calls from virtual device (implementation).
|
|---|
| 34 | */
|
|---|
| 35 |
|
|---|
| 36 | #include <assert.h>
|
|---|
| 37 | #include <errno.h>
|
|---|
| 38 | #include <ddf/driver.h>
|
|---|
| 39 | #include "conn.h"
|
|---|
| 40 |
|
|---|
| 41 | static fibril_local uintptr_t plugged_device_handle = 0;
|
|---|
| 42 |
|
|---|
| 43 | /** Default handler for IPC methods not handled by DDF.
|
|---|
| 44 | *
|
|---|
| 45 | * @param fun Device handling the call.
|
|---|
| 46 | * @param icallid Call id.
|
|---|
| 47 | * @param icall Call data.
|
|---|
| 48 | */
|
|---|
| 49 | void default_connection_handler(ddf_fun_t *fun,
|
|---|
| 50 | ipc_callid_t icallid, ipc_call_t *icall)
|
|---|
| 51 | {
|
|---|
| 52 | vhc_data_t *vhc = fun->dev->driver_data;
|
|---|
| 53 | sysarg_t method = IPC_GET_IMETHOD(*icall);
|
|---|
| 54 |
|
|---|
| 55 | if (method == IPC_M_CONNECT_TO_ME) {
|
|---|
| 56 | int callback = IPC_GET_ARG5(*icall);
|
|---|
| 57 | int rc = vhc_virtdev_plug(vhc, callback,
|
|---|
| 58 | &plugged_device_handle);
|
|---|
| 59 | if (rc != EOK) {
|
|---|
| 60 | async_answer_0(icallid, rc);
|
|---|
| 61 | async_hangup(callback);
|
|---|
| 62 | return;
|
|---|
| 63 | }
|
|---|
| 64 |
|
|---|
| 65 | async_answer_0(icallid, EOK);
|
|---|
| 66 |
|
|---|
| 67 | usb_log_info("New virtual device `%s' (id = %" PRIxn ").\n",
|
|---|
| 68 | rc == EOK ? "XXX" : "<unknown>", plugged_device_handle);
|
|---|
| 69 |
|
|---|
| 70 | return;
|
|---|
| 71 | }
|
|---|
| 72 |
|
|---|
| 73 | async_answer_0(icallid, EINVAL);
|
|---|
| 74 | }
|
|---|
| 75 |
|
|---|
| 76 | /** Callback when client disconnects.
|
|---|
| 77 | *
|
|---|
| 78 | * Used to unplug virtual USB device.
|
|---|
| 79 | *
|
|---|
| 80 | * @param fun
|
|---|
| 81 | */
|
|---|
| 82 | void on_client_close(ddf_fun_t *fun)
|
|---|
| 83 | {
|
|---|
| 84 | vhc_data_t *vhc = fun->dev->driver_data;
|
|---|
| 85 |
|
|---|
| 86 | if (plugged_device_handle != 0) {
|
|---|
| 87 | usb_log_info("Virtual device disconnected (id = %" PRIxn ").\n",
|
|---|
| 88 | plugged_device_handle);
|
|---|
| 89 | vhc_virtdev_unplug(vhc, plugged_device_handle);
|
|---|
| 90 | }
|
|---|
| 91 | }
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 | /**
|
|---|
| 95 | * @}
|
|---|
| 96 | */
|
|---|