[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>
|
---|
| 40 | #include <sysinfo.h>
|
---|
[854eddd6] | 41 | #include <input.h>
|
---|
[24ff4df] | 42 | #include <kbd.h>
|
---|
| 43 | #include <kbd_port.h>
|
---|
[15039b67] | 44 | #include <ddi.h>
|
---|
[d9fae235] | 45 | #include <errno.h>
|
---|
[15039b67] | 46 |
|
---|
[4f3f9659] | 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 |
|
---|
[24ff4df] | 61 | /* NS16550 registers */
|
---|
[d9fae235] | 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. */
|
---|
[15039b67] | 69 |
|
---|
[d9fae235] | 70 | #define LSR_DATA_READY 0x01
|
---|
[21df2e5] | 71 |
|
---|
[a31aad1] | 72 | static irq_pio_range_t ns16550_ranges[] = {
|
---|
| 73 | {
|
---|
| 74 | .base = 0,
|
---|
| 75 | .size = 8
|
---|
| 76 | }
|
---|
| 77 | };
|
---|
| 78 |
|
---|
[21df2e5] | 79 | static irq_cmd_t ns16550_cmds[] = {
|
---|
| 80 | {
|
---|
| 81 | .cmd = CMD_PIO_READ_8,
|
---|
[d9fae235] | 82 | .addr = (void *) 0, /* Will be patched in run-time */
|
---|
[21df2e5] | 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,
|
---|
[d9fae235] | 98 | .addr = (void *) 0, /* Will be patched in run-time */
|
---|
[21df2e5] | 99 | .dstarg = 2
|
---|
| 100 | },
|
---|
| 101 | {
|
---|
| 102 | .cmd = CMD_ACCEPT
|
---|
| 103 | }
|
---|
[24ff4df] | 104 | };
|
---|
[15039b67] | 105 |
|
---|
[24ff4df] | 106 | irq_code_t ns16550_kbd = {
|
---|
[a31aad1] | 107 | sizeof(ns16550_ranges) / sizeof(irq_pio_range_t),
|
---|
| 108 | ns16550_ranges,
|
---|
[21df2e5] | 109 | sizeof(ns16550_cmds) / sizeof(irq_cmd_t),
|
---|
[24ff4df] | 110 | ns16550_cmds
|
---|
| 111 | };
|
---|
[15039b67] | 112 |
|
---|
[24ff4df] | 113 | static void ns16550_irq_handler(ipc_callid_t iid, ipc_call_t *call);
|
---|
[15039b67] | 114 |
|
---|
[ff685c9] | 115 | static uintptr_t ns16550_physical;
|
---|
[15039b67] | 116 |
|
---|
[9be360ee] | 117 | static kbd_dev_t *kbd_dev;
|
---|
| 118 |
|
---|
[4f3f9659] | 119 | static int ns16550_port_init(kbd_dev_t *kdev)
|
---|
[15039b67] | 120 | {
|
---|
[ff685c9] | 121 | void *vaddr;
|
---|
[4f3f9659] | 122 |
|
---|
[9be360ee] | 123 | kbd_dev = kdev;
|
---|
[4f3f9659] | 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 |
|
---|
[d9fae235] | 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 |
|
---|
[a31aad1] | 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);
|
---|
[d9fae235] | 141 |
|
---|
| 142 | async_set_interrupt_received(ns16550_irq_handler);
|
---|
[f044e96] | 143 | irq_register(inr, device_assign_devno(), inr, &ns16550_kbd);
|
---|
[d9fae235] | 144 |
|
---|
[ff685c9] | 145 | return pio_enable((void *) ns16550_physical, 8, &vaddr);
|
---|
[15039b67] | 146 | }
|
---|
| 147 |
|
---|
[4f3f9659] | 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 |
|
---|
[24ff4df] | 161 | static void ns16550_irq_handler(ipc_callid_t iid, ipc_call_t *call)
|
---|
[15039b67] | 162 | {
|
---|
[1875a0c] | 163 | kbd_push_data(kbd_dev, IPC_GET_ARG2(*call));
|
---|
[9239333] | 164 |
|
---|
[5da7199] | 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 | }
|
---|
[15039b67] | 170 | }
|
---|
[79460ae] | 171 |
|
---|
[ce5bcb4] | 172 | /**
|
---|
| 173 | * @}
|
---|
[24ff4df] | 174 | */
|
---|