source: mainline/uspace/srv/hid/input/port/ns16550.c@ 022d9f67

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 022d9f67 was 1875a0c, checked in by Martin Decky <martin@…>, 14 years ago

input server improvements

  • integrate legacy port mouse drivers (PS/2, ADB) into the input server (to be on par with the legacy keyboard drivers)
  • create generic port/protocol layers for the mouse in the input server
  • rename the "hid_in" namespace to "hid" namespace (hid_in/input was rather redundant)
  • rename the mouse event IPC messages to be more consistent with the keyboard event messages
  • rename input server ops structure members to be more generic (parse_scancode → parse)
  • cstyle changes (newlines, comments, printouts)
  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[51d6f80]1/*
[df4ed85]2 * Copyright (c) 2006 Josef Cejka
[4f3f9659]3 * Copyright (c) 2011 Jiri Svoboda
[51d6f80]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
[24ff4df]30/** @addtogroup kbd_port
[ce5bcb4]31 * @ingroup kbd
32 * @{
[d9fae235]33 */
[ce5bcb4]34/** @file
[d9fae235]35 * @brief NS16550 port driver.
[ce5bcb4]36 */
37
[acc7ce4]38#include <ipc/irc.h>
[24ff4df]39#include <async.h>
[79ae36dd]40#include <async_obsolete.h>
[24ff4df]41#include <sysinfo.h>
[854eddd6]42#include <input.h>
[24ff4df]43#include <kbd.h>
44#include <kbd_port.h>
[15039b67]45#include <ddi.h>
[d9fae235]46#include <errno.h>
[15039b67]47
[4f3f9659]48static int ns16550_port_init(kbd_dev_t *);
49static void ns16550_port_yield(void);
50static void ns16550_port_reclaim(void);
51static void ns16550_port_write(uint8_t data);
52
53kbd_port_ops_t ns16550_port = {
54 .init = ns16550_port_init,
55 .yield = ns16550_port_yield,
56 .reclaim = ns16550_port_reclaim,
57 .write = ns16550_port_write
58};
59
60static kbd_dev_t *kbd_dev;
61
[24ff4df]62/* NS16550 registers */
[d9fae235]63#define RBR_REG 0 /** Receiver Buffer Register. */
64#define IER_REG 1 /** Interrupt Enable Register. */
65#define IIR_REG 2 /** Interrupt Ident Register (read). */
66#define FCR_REG 2 /** FIFO control register (write). */
67#define LCR_REG 3 /** Line Control register. */
68#define MCR_REG 4 /** Modem Control Register. */
69#define LSR_REG 5 /** Line Status Register. */
[15039b67]70
[d9fae235]71#define LSR_DATA_READY 0x01
[21df2e5]72
73static irq_cmd_t ns16550_cmds[] = {
74 {
75 .cmd = CMD_PIO_READ_8,
[d9fae235]76 .addr = (void *) 0, /* Will be patched in run-time */
[21df2e5]77 .dstarg = 1
78 },
79 {
80 .cmd = CMD_BTEST,
81 .value = LSR_DATA_READY,
82 .srcarg = 1,
83 .dstarg = 3
84 },
85 {
86 .cmd = CMD_PREDICATE,
87 .value = 2,
88 .srcarg = 3
89 },
90 {
91 .cmd = CMD_PIO_READ_8,
[d9fae235]92 .addr = (void *) 0, /* Will be patched in run-time */
[21df2e5]93 .dstarg = 2
94 },
95 {
96 .cmd = CMD_ACCEPT
97 }
[24ff4df]98};
[15039b67]99
[24ff4df]100irq_code_t ns16550_kbd = {
[21df2e5]101 sizeof(ns16550_cmds) / sizeof(irq_cmd_t),
[24ff4df]102 ns16550_cmds
103};
[15039b67]104
[24ff4df]105static void ns16550_irq_handler(ipc_callid_t iid, ipc_call_t *call);
[15039b67]106
[ff685c9]107static uintptr_t ns16550_physical;
[4f3f9659]108static uintptr_t ns16550_kernel;
[15039b67]109
[9be360ee]110static kbd_dev_t *kbd_dev;
111
[4f3f9659]112static int ns16550_port_init(kbd_dev_t *kdev)
[15039b67]113{
[ff685c9]114 void *vaddr;
[4f3f9659]115
[9be360ee]116 kbd_dev = kdev;
[4f3f9659]117
118 sysarg_t ns16550;
119 if (sysinfo_get_value("kbd.type.ns16550", &ns16550) != EOK)
120 return -1;
121 if (!ns16550)
122 return -1;
123
[d9fae235]124 if (sysinfo_get_value("kbd.address.physical", &ns16550_physical) != EOK)
125 return -1;
126
127 if (sysinfo_get_value("kbd.address.kernel", &ns16550_kernel) != EOK)
128 return -1;
129
130 sysarg_t inr;
131 if (sysinfo_get_value("kbd.inr", &inr) != EOK)
132 return -1;
133
[ff685c9]134 ns16550_kbd.cmds[0].addr = (void *) (ns16550_kernel + LSR_REG);
135 ns16550_kbd.cmds[3].addr = (void *) (ns16550_kernel + RBR_REG);
[d9fae235]136
137 async_set_interrupt_received(ns16550_irq_handler);
[8add9ca5]138 register_irq(inr, device_assign_devno(), inr, &ns16550_kbd);
[d9fae235]139
[ff685c9]140 return pio_enable((void *) ns16550_physical, 8, &vaddr);
[15039b67]141}
142
[4f3f9659]143static void ns16550_port_yield(void)
144{
145}
146
147static void ns16550_port_reclaim(void)
148{
149}
150
151static void ns16550_port_write(uint8_t data)
152{
153 (void) data;
154}
155
[24ff4df]156static void ns16550_irq_handler(ipc_callid_t iid, ipc_call_t *call)
[15039b67]157{
[1875a0c]158 kbd_push_data(kbd_dev, IPC_GET_ARG2(*call));
[9239333]159
[57d129e]160 if (irc_service)
[79ae36dd]161 async_obsolete_msg_1(irc_phone, IRC_CLEAR_INTERRUPT,
[228e490]162 IPC_GET_IMETHOD(*call));
[15039b67]163}
[79460ae]164
[ce5bcb4]165/**
166 * @}
[24ff4df]167 */
Note: See TracBrowser for help on using the repository browser.