source: mainline/uspace/srv/hid/input/port/chardev.c@ 2a72d9f

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 2a72d9f was f9b2cb4c, checked in by Martin Decky <martin@…>, 10 years ago

unify interface API

  • introduce new interfaces
  • unify location service clients to always expect service ID as the second argument
  • remove obsolete methods that take explicit exchange management arguments (first phase)
  • use interfaces in device drivers, devman, location service, logger, inet
  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[9f51afc]1/*
[9be360ee]2 * Copyright (c) 2011 Jiri Svoboda
[9f51afc]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 kbd_port
30 * @ingroup kbd
31 * @{
[79ae36dd]32 */
[9f51afc]33/** @file
34 * @brief Chardev keyboard port driver.
35 */
36
37#include <ipc/char.h>
38#include <async.h>
[15f3c3f]39#include <loc.h>
[9f51afc]40#include <errno.h>
[79ae36dd]41#include <stdio.h>
[b6a088f]42#include "../input.h"
43#include "../kbd_port.h"
44#include "../kbd.h"
[79ae36dd]45
[9934f7d]46static void kbd_port_events(ipc_callid_t iid, ipc_call_t *icall, void *arg);
[9f51afc]47
[9be360ee]48static int chardev_port_init(kbd_dev_t *);
[b1bdc7a4]49static void chardev_port_write(uint8_t data);
50
51kbd_port_ops_t chardev_port = {
52 .init = chardev_port_init,
53 .write = chardev_port_write
54};
55
[9be360ee]56static kbd_dev_t *kbd_dev;
[a40dea3]57static async_sess_t *dev_sess;
[9f51afc]58
[a9b5b5f]59/** List of devices to try connecting to. */
60static const char *in_devs[] = {
[f7cbc6f]61 "char/s3c24xx_uart"
[a9b5b5f]62};
63
[79ae36dd]64static const unsigned int num_devs = sizeof(in_devs) / sizeof(in_devs[0]);
[a9b5b5f]65
[9be360ee]66static int chardev_port_init(kbd_dev_t *kdev)
[9f51afc]67{
[15f3c3f]68 service_id_t service_id;
[a40dea3]69 async_exch_t *exch;
[79ae36dd]70 unsigned int i;
71 int rc;
72
[9be360ee]73 kbd_dev = kdev;
74
[a9b5b5f]75 for (i = 0; i < num_devs; i++) {
[15f3c3f]76 rc = loc_service_get_id(in_devs[i], &service_id, 0);
[79ae36dd]77 if (rc == EOK)
[a9b5b5f]78 break;
79 }
[79ae36dd]80
[a9b5b5f]81 if (i >= num_devs) {
[79ae36dd]82 printf("%s: Could not find any suitable input device\n", NAME);
[a9b5b5f]83 return -1;
[9f51afc]84 }
[79ae36dd]85
[f9b2cb4c]86 dev_sess = loc_service_connect(service_id, INTERFACE_DDF,
[a40dea3]87 IPC_FLAG_BLOCKING);
88 if (dev_sess == NULL) {
[79ae36dd]89 printf("%s: Failed connecting to device\n", NAME);
90 return ENOENT;
[9f51afc]91 }
[79ae36dd]92
[a40dea3]93 exch = async_exchange_begin(dev_sess);
94 if (exch == NULL) {
95 printf("%s: Failed starting exchange with device\n", NAME);
96 async_hangup(dev_sess);
97 return ENOMEM;
98 }
99
[f9b2cb4c]100 port_id_t port;
101 rc = async_create_callback_port(exch, INTERFACE_CHAR_CB, 0, 0,
102 kbd_port_events, NULL, &port);
103
[a40dea3]104 async_exchange_end(exch);
105
106 if (rc != 0) {
[1875a0c]107 printf("%s: Failed to create callback from device\n", NAME);
[a40dea3]108 async_hangup(dev_sess);
[a9b5b5f]109 return -1;
[9f51afc]110 }
[a40dea3]111
[9f51afc]112 return 0;
113}
114
[b1bdc7a4]115static void chardev_port_write(uint8_t data)
[9f51afc]116{
[a40dea3]117 async_exch_t *exch = async_exchange_begin(dev_sess);
118 if (exch == NULL) {
119 printf("%s: Failed starting exchange with device\n", NAME);
120 return;
121 }
122
123 async_msg_1(exch, CHAR_WRITE_BYTE, data);
124 async_exchange_end(exch);
[9f51afc]125}
126
[9934f7d]127static void kbd_port_events(ipc_callid_t iid, ipc_call_t *icall, void *arg)
[9f51afc]128{
129 /* Ignore parameters, the connection is already opened */
130 while (true) {
131
132 ipc_call_t call;
133 ipc_callid_t callid = async_get_call(&call);
[79ae36dd]134
135 if (!IPC_GET_IMETHOD(call)) {
136 /* TODO: Handle hangup */
137 return;
138 }
[9f51afc]139
[f81498d]140 int retval = EOK;
[9f51afc]141
[228e490]142 switch (IPC_GET_IMETHOD(call)) {
[9f51afc]143 case CHAR_NOTIF_BYTE:
[1875a0c]144 kbd_push_data(kbd_dev, IPC_GET_ARG1(call));
[9f51afc]145 break;
146 default:
147 retval = ENOENT;
148 }
[ffa2c8ef]149 async_answer_0(callid, retval);
[9f51afc]150 }
151}
152
153
154/**
155 * @}
156 */
Note: See TracBrowser for help on using the repository browser.