[b371844] | 1 | /*
|
---|
[6cb58e6] | 2 | * Copyright (c) 2011 Vojtech Horky
|
---|
[b371844] | 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 |
|
---|
[bd8c753d] | 29 | /** @addtogroup drvusbvhc
|
---|
[b371844] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[6cb58e6] | 33 | * Connection handling of calls from virtual device (implementation).
|
---|
[b371844] | 34 | */
|
---|
| 35 |
|
---|
| 36 | #include <assert.h>
|
---|
| 37 | #include <errno.h>
|
---|
[6cb58e6] | 38 | #include <ddf/driver.h>
|
---|
[b371844] | 39 | #include "conn.h"
|
---|
[ca07cd3] | 40 |
|
---|
[6cb58e6] | 41 | static fibril_local uintptr_t plugged_device_handle = 0;
|
---|
[ca07cd3] | 42 |
|
---|
[e27595b] | 43 | /** Default handler for IPC methods not handled by DDF.
|
---|
[355f7c2] | 44 | *
|
---|
[eb1a2f4] | 45 | * @param fun Device handling the call.
|
---|
[e27595b] | 46 | * @param icallid Call id.
|
---|
| 47 | * @param icall Call data.
|
---|
[b371844] | 48 | */
|
---|
[eb1a2f4] | 49 | void default_connection_handler(ddf_fun_t *fun,
|
---|
[e27595b] | 50 | ipc_callid_t icallid, ipc_call_t *icall)
|
---|
[b371844] | 51 | {
|
---|
[6cb58e6] | 52 | vhc_data_t *vhc = fun->dev->driver_data;
|
---|
[a9b6bec] | 53 | sysarg_t method = IPC_GET_IMETHOD(*icall);
|
---|
[e27595b] | 54 |
|
---|
| 55 | if (method == IPC_M_CONNECT_TO_ME) {
|
---|
| 56 | int callback = IPC_GET_ARG5(*icall);
|
---|
[6cb58e6] | 57 | int rc = vhc_virtdev_plug(vhc, callback,
|
---|
| 58 | &plugged_device_handle);
|
---|
| 59 | if (rc != EOK) {
|
---|
| 60 | async_answer_0(icallid, rc);
|
---|
[17aca1c] | 61 | async_hangup(callback);
|
---|
[e27595b] | 62 | return;
|
---|
[b371844] | 63 | }
|
---|
[e27595b] | 64 |
|
---|
[6cb58e6] | 65 | async_answer_0(icallid, EOK);
|
---|
[e27595b] | 66 |
|
---|
[4125b7d] | 67 | usb_log_info("New virtual device `%s' (id = %" PRIxn ").\n",
|
---|
[6cb58e6] | 68 | rc == EOK ? "XXX" : "<unknown>", plugged_device_handle);
|
---|
[e27595b] | 69 |
|
---|
| 70 | return;
|
---|
[b371844] | 71 | }
|
---|
[e27595b] | 72 |
|
---|
[17aca1c] | 73 | async_answer_0(icallid, EINVAL);
|
---|
[b371844] | 74 | }
|
---|
| 75 |
|
---|
[6cb58e6] | 76 | /** Callback when client disconnects.
|
---|
| 77 | *
|
---|
| 78 | * Used to unplug virtual USB device.
|
---|
[6967c14] | 79 | *
|
---|
[6cb58e6] | 80 | * @param fun
|
---|
[6967c14] | 81 | */
|
---|
[eb1a2f4] | 82 | void on_client_close(ddf_fun_t *fun)
|
---|
[6967c14] | 83 | {
|
---|
[6cb58e6] | 84 | vhc_data_t *vhc = fun->dev->driver_data;
|
---|
[6967c14] | 85 |
|
---|
[6cb58e6] | 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 | }
|
---|
[6967c14] | 91 | }
|
---|
| 92 |
|
---|
[e27595b] | 93 |
|
---|
[b371844] | 94 | /**
|
---|
| 95 | * @}
|
---|
| 96 | */
|
---|