1 | /*
|
---|
2 | * Copyright (c) 2009 Jakub Jermar
|
---|
3 | * Copyright (c) 2018 CZ.NIC, z.s.p.o.
|
---|
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 kernel_genarch
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 | /**
|
---|
34 | * @file
|
---|
35 | * @brief NS 16550 serial controller driver.
|
---|
36 | */
|
---|
37 |
|
---|
38 | #include <assert.h>
|
---|
39 | #include <genarch/drivers/ns16550/ns16550.h>
|
---|
40 | #include <ddi/irq.h>
|
---|
41 | #include <ddi/ddi.h>
|
---|
42 | #include <arch/asm.h>
|
---|
43 | #include <console/chardev.h>
|
---|
44 | #include <stdlib.h>
|
---|
45 | #include <align.h>
|
---|
46 | #include <str.h>
|
---|
47 |
|
---|
48 | #define LSR_DATA_READY 0x01
|
---|
49 | #define LSR_TH_READY 0x20
|
---|
50 |
|
---|
51 | #define RETRY_CNT 100000
|
---|
52 |
|
---|
53 | #define NOTHING \
|
---|
54 | do { \
|
---|
55 | } while(0)
|
---|
56 |
|
---|
57 | #define WHILE_CNT_AND_COND_DO(cnt, expr, statement) \
|
---|
58 | do { \
|
---|
59 | for (volatile unsigned i = 0; i < (cnt); i++) \
|
---|
60 | if ((expr)) \
|
---|
61 | statement; \
|
---|
62 | else \
|
---|
63 | break; \
|
---|
64 | } while (0)
|
---|
65 |
|
---|
66 | static uint8_t ns16550_reg_read(ns16550_instance_t *inst, ns16550_reg_t reg)
|
---|
67 | {
|
---|
68 | return pio_read_8(&inst->ns16550[reg << inst->reg_shift]);
|
---|
69 | }
|
---|
70 |
|
---|
71 | static void ns16550_reg_write(ns16550_instance_t *inst, ns16550_reg_t reg,
|
---|
72 | uint8_t val)
|
---|
73 | {
|
---|
74 | pio_write_8(&inst->ns16550[reg << inst->reg_shift], val);
|
---|
75 | }
|
---|
76 |
|
---|
77 | static irq_ownership_t ns16550_claim(irq_t *irq)
|
---|
78 | {
|
---|
79 | ns16550_instance_t *instance = irq->instance;
|
---|
80 |
|
---|
81 | if (ns16550_reg_read(instance, NS16550_REG_LSR) & LSR_DATA_READY)
|
---|
82 | return IRQ_ACCEPT;
|
---|
83 | else
|
---|
84 | return IRQ_DECLINE;
|
---|
85 | }
|
---|
86 |
|
---|
87 | static void ns16550_irq_handler(irq_t *irq)
|
---|
88 | {
|
---|
89 | ns16550_instance_t *instance = irq->instance;
|
---|
90 |
|
---|
91 | while (ns16550_reg_read(instance, NS16550_REG_LSR) & LSR_DATA_READY) {
|
---|
92 | uint8_t data = ns16550_reg_read(instance, NS16550_REG_RBR);
|
---|
93 | indev_push_character(instance->input, data);
|
---|
94 | }
|
---|
95 | }
|
---|
96 |
|
---|
97 | /** Clear input buffer. */
|
---|
98 | static void ns16550_clear_buffer(ns16550_instance_t *instance)
|
---|
99 | {
|
---|
100 | WHILE_CNT_AND_COND_DO(RETRY_CNT,
|
---|
101 | ns16550_reg_read(instance, NS16550_REG_LSR) & LSR_DATA_READY,
|
---|
102 | (void) ns16550_reg_read(instance, NS16550_REG_RBR));
|
---|
103 | }
|
---|
104 |
|
---|
105 | static void ns16550_sendb(ns16550_instance_t *instance, uint8_t byte)
|
---|
106 | {
|
---|
107 | WHILE_CNT_AND_COND_DO(RETRY_CNT,
|
---|
108 | !(ns16550_reg_read(instance, NS16550_REG_LSR) & LSR_TH_READY),
|
---|
109 | NOTHING);
|
---|
110 |
|
---|
111 | ns16550_reg_write(instance, NS16550_REG_THR, byte);
|
---|
112 | }
|
---|
113 |
|
---|
114 | static void ns16550_write(outdev_t *dev, const char *s, size_t n)
|
---|
115 | {
|
---|
116 | ns16550_instance_t *instance = (ns16550_instance_t *) dev->data;
|
---|
117 |
|
---|
118 | if (instance->parea.mapped && !console_override)
|
---|
119 | return;
|
---|
120 |
|
---|
121 | const char *top = s + n;
|
---|
122 | assert(top >= s);
|
---|
123 |
|
---|
124 | for (; s < top; s++) {
|
---|
125 | if (*s == '\n')
|
---|
126 | ns16550_sendb(instance, '\r');
|
---|
127 |
|
---|
128 | ns16550_sendb(instance, (uint8_t) *s);
|
---|
129 | }
|
---|
130 | }
|
---|
131 |
|
---|
132 | static outdev_operations_t ns16550_ops = {
|
---|
133 | .write = ns16550_write,
|
---|
134 | .redraw = NULL
|
---|
135 | };
|
---|
136 |
|
---|
137 | /** Configure ns16550 transmission format.
|
---|
138 | *
|
---|
139 | * @param instance NS 16550 driver instance.
|
---|
140 | * @param baud_rate Transmission speed in bits per second, also known as baud,
|
---|
141 | * maximum value is 115200.
|
---|
142 | * @param lcr_format Line Control Register configuration bits, as defined by
|
---|
143 | * the @c LCR_ macros. These configure the word width,
|
---|
144 | * parity type, and stop bit count.
|
---|
145 | */
|
---|
146 | void ns16550_format_set(ns16550_instance_t *instance,
|
---|
147 | unsigned baud_rate, uint8_t lcr_format)
|
---|
148 | {
|
---|
149 | uint16_t divisor;
|
---|
150 |
|
---|
151 | divisor = (uint16_t)(NS156440_CLOCK / baud_rate);
|
---|
152 | if (divisor == 0)
|
---|
153 | divisor = 1; /* Avoid division by zero. */
|
---|
154 |
|
---|
155 | ns16550_reg_write(instance, NS16550_REG_LCR, LCR_DLAB);
|
---|
156 | ns16550_reg_write(instance, NS16550_REG_DLL, divisor & 0xFF);
|
---|
157 | ns16550_reg_write(instance, NS16550_REG_DLH, (divisor >> 8) & 0xFF);
|
---|
158 | ns16550_reg_write(instance, NS16550_REG_LCR, lcr_format & ~LCR_DLAB);
|
---|
159 | }
|
---|
160 |
|
---|
161 | /** Initialize ns16550.
|
---|
162 | *
|
---|
163 | * @param dev Address of the beginning of the device in I/O space.
|
---|
164 | * @param reg_shift Spacing between individual register addresses, in log2.
|
---|
165 | * The individual register location is calculated as
|
---|
166 | * `base + (register offset << reg_shift)`.
|
---|
167 | * @param inr Interrupt number.
|
---|
168 | * @param cir Clear interrupt function.
|
---|
169 | * @param cir_arg First argument to cir.
|
---|
170 | * @param output Where to store pointer to the output device
|
---|
171 | * or NULL if the caller is not interested in
|
---|
172 | * writing to the serial port.
|
---|
173 | *
|
---|
174 | * @return Keyboard instance or NULL on failure.
|
---|
175 | *
|
---|
176 | */
|
---|
177 | ns16550_instance_t *ns16550_init(ioport8_t *dev_phys, unsigned reg_shift,
|
---|
178 | inr_t inr, cir_t cir, void *cir_arg, outdev_t **output)
|
---|
179 | {
|
---|
180 | size_t size = 6 * (1U << reg_shift);
|
---|
181 | ioport8_t *dev = pio_map((void *) dev_phys, size);
|
---|
182 |
|
---|
183 | ns16550_instance_t *instance = malloc(sizeof(ns16550_instance_t));
|
---|
184 | if (instance) {
|
---|
185 | instance->ns16550 = dev;
|
---|
186 | instance->reg_shift = reg_shift;
|
---|
187 | instance->input = NULL;
|
---|
188 | instance->output = NULL;
|
---|
189 |
|
---|
190 | if (output) {
|
---|
191 | instance->output = malloc(sizeof(outdev_t));
|
---|
192 | if (!instance->output) {
|
---|
193 | free(instance);
|
---|
194 | pio_unmap((void *) dev_phys, (void *) dev,
|
---|
195 | size);
|
---|
196 | return NULL;
|
---|
197 | }
|
---|
198 |
|
---|
199 | outdev_initialize("ns16550", instance->output,
|
---|
200 | &ns16550_ops);
|
---|
201 | instance->output->data = instance;
|
---|
202 | *output = instance->output;
|
---|
203 | }
|
---|
204 |
|
---|
205 | irq_initialize(&instance->irq);
|
---|
206 | instance->irq.inr = inr;
|
---|
207 | instance->irq.claim = ns16550_claim;
|
---|
208 | instance->irq.handler = ns16550_irq_handler;
|
---|
209 | instance->irq.instance = instance;
|
---|
210 | instance->irq.cir = cir;
|
---|
211 | instance->irq.cir_arg = cir_arg;
|
---|
212 |
|
---|
213 | ddi_parea_init(&instance->parea);
|
---|
214 | instance->parea.pbase = ALIGN_DOWN((uintptr_t) dev_phys,
|
---|
215 | PAGE_SIZE);
|
---|
216 | instance->parea.frames = ALIGN_UP(size, PAGE_SIZE);
|
---|
217 | instance->parea.unpriv = false;
|
---|
218 | instance->parea.mapped = false;
|
---|
219 | ddi_parea_register(&instance->parea);
|
---|
220 | }
|
---|
221 |
|
---|
222 | return instance;
|
---|
223 | }
|
---|
224 |
|
---|
225 | void ns16550_wire(ns16550_instance_t *instance, indev_t *input)
|
---|
226 | {
|
---|
227 | assert(instance);
|
---|
228 | assert(input);
|
---|
229 |
|
---|
230 | instance->input = input;
|
---|
231 | irq_register(&instance->irq);
|
---|
232 |
|
---|
233 | ns16550_clear_buffer(instance);
|
---|
234 |
|
---|
235 | /* Enable interrupts */
|
---|
236 | ns16550_reg_write(instance, NS16550_REG_IER, IER_ERBFI);
|
---|
237 | ns16550_reg_write(instance, NS16550_REG_MCR, MCR_OUT2);
|
---|
238 | }
|
---|
239 |
|
---|
240 | /** @}
|
---|
241 | */
|
---|