1 | /*
|
---|
2 | * Copyright (c) 2006 Josef Cejka
|
---|
3 | * Copyright (c) 2011 Jiri Svoboda
|
---|
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 |
|
---|
30 | /** @addtogroup kbd_port
|
---|
31 | * @ingroup kbd
|
---|
32 | * @{
|
---|
33 | */
|
---|
34 | /** @file
|
---|
35 | * @brief NS16550 port driver.
|
---|
36 | */
|
---|
37 |
|
---|
38 | #include <ipc/irc.h>
|
---|
39 | #include <async.h>
|
---|
40 | #include <sysinfo.h>
|
---|
41 | #include <input.h>
|
---|
42 | #include <kbd.h>
|
---|
43 | #include <kbd_port.h>
|
---|
44 | #include <ddi.h>
|
---|
45 | #include <errno.h>
|
---|
46 |
|
---|
47 | static int ns16550_port_init(kbd_dev_t *);
|
---|
48 | static void ns16550_port_yield(void);
|
---|
49 | static void ns16550_port_reclaim(void);
|
---|
50 | static void ns16550_port_write(uint8_t data);
|
---|
51 |
|
---|
52 | kbd_port_ops_t ns16550_port = {
|
---|
53 | .init = ns16550_port_init,
|
---|
54 | .yield = ns16550_port_yield,
|
---|
55 | .reclaim = ns16550_port_reclaim,
|
---|
56 | .write = ns16550_port_write
|
---|
57 | };
|
---|
58 |
|
---|
59 | static kbd_dev_t *kbd_dev;
|
---|
60 |
|
---|
61 | /* NS16550 registers */
|
---|
62 | #define RBR_REG 0 /** Receiver Buffer Register. */
|
---|
63 | #define IER_REG 1 /** Interrupt Enable Register. */
|
---|
64 | #define IIR_REG 2 /** Interrupt Ident Register (read). */
|
---|
65 | #define FCR_REG 2 /** FIFO control register (write). */
|
---|
66 | #define LCR_REG 3 /** Line Control register. */
|
---|
67 | #define MCR_REG 4 /** Modem Control Register. */
|
---|
68 | #define LSR_REG 5 /** Line Status Register. */
|
---|
69 |
|
---|
70 | #define LSR_DATA_READY 0x01
|
---|
71 |
|
---|
72 | static irq_pio_range_t ns16550_ranges[] = {
|
---|
73 | {
|
---|
74 | .base = 0,
|
---|
75 | .size = 8
|
---|
76 | }
|
---|
77 | };
|
---|
78 |
|
---|
79 | static irq_cmd_t ns16550_cmds[] = {
|
---|
80 | {
|
---|
81 | .cmd = CMD_PIO_READ_8,
|
---|
82 | .addr = (void *) 0, /* Will be patched in run-time */
|
---|
83 | .dstarg = 1
|
---|
84 | },
|
---|
85 | {
|
---|
86 | .cmd = CMD_BTEST,
|
---|
87 | .value = LSR_DATA_READY,
|
---|
88 | .srcarg = 1,
|
---|
89 | .dstarg = 3
|
---|
90 | },
|
---|
91 | {
|
---|
92 | .cmd = CMD_PREDICATE,
|
---|
93 | .value = 2,
|
---|
94 | .srcarg = 3
|
---|
95 | },
|
---|
96 | {
|
---|
97 | .cmd = CMD_PIO_READ_8,
|
---|
98 | .addr = (void *) 0, /* Will be patched in run-time */
|
---|
99 | .dstarg = 2
|
---|
100 | },
|
---|
101 | {
|
---|
102 | .cmd = CMD_ACCEPT
|
---|
103 | }
|
---|
104 | };
|
---|
105 |
|
---|
106 | irq_code_t ns16550_kbd = {
|
---|
107 | sizeof(ns16550_ranges) / sizeof(irq_pio_range_t),
|
---|
108 | ns16550_ranges,
|
---|
109 | sizeof(ns16550_cmds) / sizeof(irq_cmd_t),
|
---|
110 | ns16550_cmds
|
---|
111 | };
|
---|
112 |
|
---|
113 | static void ns16550_irq_handler(ipc_callid_t iid, ipc_call_t *call);
|
---|
114 |
|
---|
115 | static uintptr_t ns16550_physical;
|
---|
116 |
|
---|
117 | static kbd_dev_t *kbd_dev;
|
---|
118 |
|
---|
119 | static int ns16550_port_init(kbd_dev_t *kdev)
|
---|
120 | {
|
---|
121 | void *vaddr;
|
---|
122 |
|
---|
123 | kbd_dev = kdev;
|
---|
124 |
|
---|
125 | sysarg_t ns16550;
|
---|
126 | if (sysinfo_get_value("kbd.type.ns16550", &ns16550) != EOK)
|
---|
127 | return -1;
|
---|
128 | if (!ns16550)
|
---|
129 | return -1;
|
---|
130 |
|
---|
131 | if (sysinfo_get_value("kbd.address.physical", &ns16550_physical) != EOK)
|
---|
132 | return -1;
|
---|
133 |
|
---|
134 | sysarg_t inr;
|
---|
135 | if (sysinfo_get_value("kbd.inr", &inr) != EOK)
|
---|
136 | return -1;
|
---|
137 |
|
---|
138 | ns16550_kbd.ranges[0].base = ns16550_physical;
|
---|
139 | ns16550_kbd.cmds[0].addr = (void *) (ns16550_physical + LSR_REG);
|
---|
140 | ns16550_kbd.cmds[3].addr = (void *) (ns16550_physical + RBR_REG);
|
---|
141 |
|
---|
142 | async_set_interrupt_received(ns16550_irq_handler);
|
---|
143 | irq_register(inr, device_assign_devno(), inr, &ns16550_kbd);
|
---|
144 |
|
---|
145 | return pio_enable((void *) ns16550_physical, 8, &vaddr);
|
---|
146 | }
|
---|
147 |
|
---|
148 | static void ns16550_port_yield(void)
|
---|
149 | {
|
---|
150 | }
|
---|
151 |
|
---|
152 | static void ns16550_port_reclaim(void)
|
---|
153 | {
|
---|
154 | }
|
---|
155 |
|
---|
156 | static void ns16550_port_write(uint8_t data)
|
---|
157 | {
|
---|
158 | (void) data;
|
---|
159 | }
|
---|
160 |
|
---|
161 | static void ns16550_irq_handler(ipc_callid_t iid, ipc_call_t *call)
|
---|
162 | {
|
---|
163 | kbd_push_data(kbd_dev, IPC_GET_ARG2(*call));
|
---|
164 |
|
---|
165 | if (irc_service) {
|
---|
166 | async_exch_t *exch = async_exchange_begin(irc_sess);
|
---|
167 | async_msg_1(exch, IRC_CLEAR_INTERRUPT, IPC_GET_IMETHOD(*call));
|
---|
168 | async_exchange_end(exch);
|
---|
169 | }
|
---|
170 | }
|
---|
171 |
|
---|
172 | /**
|
---|
173 | * @}
|
---|
174 | */
|
---|