[25a7e11d] | 1 | /*
|
---|
| 2 | * Copyright (c) 2010 Lenka Trochtova
|
---|
| 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 | */
|
---|
[df6b760] | 28 |
|
---|
[25a7e11d] | 29 | /** @addtogroup libc
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
| 35 | #include <ipc/dev_iface.h>
|
---|
| 36 | #include <device/char.h>
|
---|
| 37 | #include <errno.h>
|
---|
| 38 | #include <async.h>
|
---|
| 39 | #include <malloc.h>
|
---|
[f658458] | 40 | #include <stdio.h>
|
---|
[25a7e11d] | 41 |
|
---|
[df6b760] | 42 | /** Read to or write from device.
|
---|
| 43 | *
|
---|
| 44 | * Helper function to read to or write from a device
|
---|
| 45 | * using its character interface.
|
---|
| 46 | *
|
---|
[b2263e6a] | 47 | * @param dev_phone Phone to the device.
|
---|
| 48 | * @param buf Buffer for the data read from or written to the device.
|
---|
| 49 | * @param size Maximum size of data (in bytes) to be read or written.
|
---|
| 50 | * @param read Read from the device if true, write to it otherwise.
|
---|
[df6b760] | 51 | *
|
---|
[b2263e6a] | 52 | * @return Non-negative number of bytes actually read from or
|
---|
| 53 | * written to the device on success, negative error number
|
---|
| 54 | * otherwise.
|
---|
[ca97cad] | 55 | */
|
---|
[b2263e6a] | 56 | static ssize_t char_dev_rw(int dev_phone, void *buf, size_t size, bool read)
|
---|
[ca97cad] | 57 | {
|
---|
[25a7e11d] | 58 | async_serialize_start();
|
---|
| 59 |
|
---|
[df6b760] | 60 | ipc_call_t answer;
|
---|
[ca97cad] | 61 | aid_t req;
|
---|
[c47e1a8] | 62 | int ret;
|
---|
[25a7e11d] | 63 |
|
---|
[ca97cad] | 64 | if (read) {
|
---|
[df6b760] | 65 | req = async_send_1(dev_phone, DEV_IFACE_ID(CHAR_DEV_IFACE),
|
---|
[b2263e6a] | 66 | CHAR_DEV_READ, &answer);
|
---|
| 67 | ret = async_data_read_start(dev_phone, buf, size);
|
---|
[ca97cad] | 68 | } else {
|
---|
[df6b760] | 69 | req = async_send_1(dev_phone, DEV_IFACE_ID(CHAR_DEV_IFACE),
|
---|
[b2263e6a] | 70 | CHAR_DEV_WRITE, &answer);
|
---|
| 71 | ret = async_data_write_start(dev_phone, buf, size);
|
---|
[ca97cad] | 72 | }
|
---|
[bb864a0] | 73 |
|
---|
[96b02eb9] | 74 | sysarg_t rc;
|
---|
[df6b760] | 75 | if (ret != EOK) {
|
---|
[c47e1a8] | 76 | async_wait_for(req, &rc);
|
---|
[25a7e11d] | 77 | async_serialize_end();
|
---|
[df6b760] | 78 | if (rc == EOK)
|
---|
| 79 | return (ssize_t) ret;
|
---|
[54de5ebd] | 80 |
|
---|
[df6b760] | 81 | return (ssize_t) rc;
|
---|
[25a7e11d] | 82 | }
|
---|
| 83 |
|
---|
| 84 | async_wait_for(req, &rc);
|
---|
| 85 | async_serialize_end();
|
---|
| 86 |
|
---|
[df6b760] | 87 | ret = (int) rc;
|
---|
| 88 | if (ret != EOK)
|
---|
| 89 | return (ssize_t) ret;
|
---|
[25a7e11d] | 90 |
|
---|
[df6b760] | 91 | return (ssize_t) IPC_GET_ARG1(answer);
|
---|
[25a7e11d] | 92 | }
|
---|
| 93 |
|
---|
[b2263e6a] | 94 | /** Read from character device.
|
---|
[df6b760] | 95 | *
|
---|
[b2263e6a] | 96 | * @param dev_phone Phone to the device.
|
---|
| 97 | * @param buf Output buffer for the data read from the device.
|
---|
| 98 | * @param size Maximum size (in bytes) of the data to be read.
|
---|
[df6b760] | 99 | *
|
---|
[b2263e6a] | 100 | * @return Non-negative number of bytes actually read from the
|
---|
| 101 | * device on success, negative error number otherwise.
|
---|
[ca97cad] | 102 | */
|
---|
[b2263e6a] | 103 | ssize_t char_dev_read(int dev_phone, void *buf, size_t size)
|
---|
[df6b760] | 104 | {
|
---|
[b2263e6a] | 105 | return char_dev_rw(dev_phone, buf, size, true);
|
---|
[ca97cad] | 106 | }
|
---|
| 107 |
|
---|
[b2263e6a] | 108 | /** Write to character device.
|
---|
[df6b760] | 109 | *
|
---|
[b2263e6a] | 110 | * @param dev_phone Phone to the device.
|
---|
| 111 | * @param buf Input buffer containg the data to be written to the
|
---|
| 112 | * device.
|
---|
| 113 | * @param size Maximum size (in bytes) of the data to be written.
|
---|
[df6b760] | 114 | *
|
---|
[b2263e6a] | 115 | * @return Non-negative number of bytes actually written to the
|
---|
| 116 | * device on success, negative error number otherwise.
|
---|
[ca97cad] | 117 | */
|
---|
[b2263e6a] | 118 | ssize_t char_dev_write(int dev_phone, void *buf, size_t size)
|
---|
[25a7e11d] | 119 | {
|
---|
[b2263e6a] | 120 | return char_dev_rw(dev_phone, buf, size, false);
|
---|
[25a7e11d] | 121 | }
|
---|
| 122 |
|
---|
[df6b760] | 123 | /** @}
|
---|
| 124 | */
|
---|