source: mainline/kernel/arch/sparc64/src/drivers/niagara.c@ bab75df6

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since bab75df6 was bab75df6, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Let kernel code get printf via the standard stdio header. Clean up unused includes.

  • Property mode set to 100644
File size: 7.1 KB
RevLine 
[66e08d02]1/*
2 * Copyright (c) 2008 Pavel Rimsky
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
[c5429fe]29/** @addtogroup kernel_sparc64
[66e08d02]30 * @{
31 */
32/**
33 * @file
[b366a6f4]34 * @brief Niagara input/output driver based on hypervisor calls.
[66e08d02]35 */
36
37#include <arch/drivers/niagara.h>
38#include <console/chardev.h>
39#include <console/console.h>
40#include <ddi/ddi.h>
41#include <arch/asm.h>
[69b68d1f]42#include <arch.h>
[66e08d02]43#include <mm/slab.h>
[d9ec808b]44#include <arch/drivers/niagara_buf.h>
[66e08d02]45#include <arch/drivers/kbd.h>
46#include <arch/sun4v/hypercall.h>
47#include <sysinfo/sysinfo.h>
48#include <ipc/irq.h>
[69b68d1f]49#include <proc/thread.h>
50#include <console/console.h>
51#include <genarch/srln/srln.h>
52
[b366a6f4]53/* Polling interval in miliseconds */
[69b68d1f]54#define POLL_INTERVAL 10000
[66e08d02]55
[b366a6f4]56/* Device instance */
[69b68d1f]57static niagara_instance_t *instance = NULL;
58
[ed88c8e]59static void niagara_putwchar(outdev_t *, const wchar_t);
[66e08d02]60
[b366a6f4]61/** Character device operations */
[66e08d02]62static outdev_operations_t niagara_ops = {
[ed88c8e]63 .write = niagara_putwchar,
[7ddc2c7]64 .redraw = NULL,
65 .scroll_up = NULL,
66 .scroll_down = NULL
[66e08d02]67};
68
[b366a6f4]69/**
[66e08d02]70 * The driver uses hypercalls to print characters to the console. Since the
71 * hypercall cannot be performed from the userspace, we do this:
[b366a6f4]72 *
73 * The kernel "little brother" driver (which will be present no matter what
74 * the DDI architecture is -- as we need the kernel part for the kconsole)
[66e08d02]75 * defines a shared buffer. Kernel walks through the buffer (in the same thread
76 * which is used for polling the keyboard) and prints any pending characters
[b366a6f4]77 * to the console (using hypercalls).
78 *
79 * The userspace fb server maps this shared buffer to its address space and
80 * output operation it does is performed using the mapped buffer. The shared
81 * buffer definition follows.
[66e08d02]82 */
[1433ecda]83static volatile niagara_output_buffer_t __attribute__((aligned(PAGE_SIZE)))
[d9ec808b]84 output_buffer;
[b366a6f4]85
86static parea_t outbuf_parea;
[66e08d02]87
88/**
[86018c1]89 * Analogous to the output_buffer, see the previous definition.
[66e08d02]90 */
[1433ecda]91static volatile niagara_input_buffer_t __attribute__((aligned(PAGE_SIZE)))
[d9ec808b]92 input_buffer;
[66e08d02]93
[b366a6f4]94static parea_t inbuf_parea;
[66e08d02]95
[b366a6f4]96/** Write a single character to the standard output. */
[ed88c8e]97static inline void do_putchar(char c)
[1433ecda]98{
[b366a6f4]99 /* Repeat until the buffer is non-full */
[1433ecda]100 while (__hypercall_fast1(CONS_PUTCHAR, c) == HV_EWOULDBLOCK)
101 ;
[66e08d02]102}
103
[b366a6f4]104/** Write a single character to the standard output. */
[ed88c8e]105static void niagara_putwchar(outdev_t *dev, wchar_t ch)
[66e08d02]106{
[b366a6f4]107 if ((!outbuf_parea.mapped) || (console_override)) {
[ed88c8e]108 if (ascii_check(ch)) {
109 do_putchar(ch);
110 if (ch == '\n')
111 do_putchar('\r');
112 } else {
113 do_putchar('?');
114 }
[b366a6f4]115 }
[66e08d02]116}
117
[b366a6f4]118/** Poll keyboard and print pending characters.
119 *
120 * Ask the hypervisor whether there is any unread character. If so,
121 * pick it up and send it to the indev layer.
122 *
123 * Check whether the userspace output driver has pushed any
124 * characters to the output buffer and eventually print them.
[86018c1]125 *
[66e08d02]126 */
[b366a6f4]127static void niagara_poll(void)
[66e08d02]128{
[b366a6f4]129 /*
130 * Print any pending characters from the
131 * shared buffer to the console.
132 */
[a35b458]133
[66e08d02]134 while (output_buffer.read_ptr != output_buffer.write_ptr) {
135 do_putchar(output_buffer.data[output_buffer.read_ptr]);
136 output_buffer.read_ptr =
[b366a6f4]137 ((output_buffer.read_ptr) + 1) % OUTPUT_BUFFER_SIZE;
[66e08d02]138 }
[a35b458]139
[b366a6f4]140 /*
141 * Read character from keyboard.
142 */
[a35b458]143
[66e08d02]144 uint64_t c;
[7da160b]145 if (__hypercall_fast_ret1(0, 0, 0, 0, 0, CONS_GETCHAR, &c) == HV_EOK) {
[b366a6f4]146 if ((!inbuf_parea.mapped) || (console_override)) {
147 /*
148 * Kernel console is active, send
149 * the character to kernel.
150 */
[86018c1]151 indev_push_character(instance->srlnin, c);
152 } else {
[b366a6f4]153 /*
154 * Kernel console is inactive, send
155 * the character to uspace driver.
156 */
[86018c1]157 input_buffer.data[input_buffer.write_ptr] = (char) c;
158 input_buffer.write_ptr =
[b366a6f4]159 ((input_buffer.write_ptr) + 1) % INPUT_BUFFER_SIZE;
[86018c1]160 }
[66e08d02]161 }
162}
163
[b366a6f4]164/** Polling thread function.
165 *
[69b68d1f]166 */
[1433ecda]167static void kniagarapoll(void *arg)
168{
[69b68d1f]169 while (true) {
[b366a6f4]170 niagara_poll();
[69b68d1f]171 thread_usleep(POLL_INTERVAL);
172 }
173}
[66e08d02]174
[b366a6f4]175/** Initialize the input/output subsystem
176 *
[66e08d02]177 */
[69b68d1f]178static void niagara_init(void)
[66e08d02]179{
[69b68d1f]180 if (instance)
181 return;
[a35b458]182
[11b285d]183 instance = malloc(sizeof(niagara_instance_t));
[6eef3c4]184 instance->thread = thread_create(kniagarapoll, NULL, TASK,
185 THREAD_FLAG_UNCOUNTED, "kniagarapoll");
[a35b458]186
[b366a6f4]187 if (!instance->thread) {
188 free(instance);
189 instance = NULL;
190 return;
[69b68d1f]191 }
[a35b458]192
[69b68d1f]193 instance->srlnin = NULL;
[a35b458]194
[8e33e1d]195 output_buffer.read_ptr = 0;
196 output_buffer.write_ptr = 0;
197 input_buffer.write_ptr = 0;
198 input_buffer.read_ptr = 0;
[a35b458]199
[eeb643d]200 /*
201 * Set sysinfos and pareas so that the userspace counterpart of the
[86018c1]202 * niagara fb and kbd driver can communicate with kernel using shared
203 * buffers.
[b366a6f4]204 */
[a35b458]205
[a293fef]206 sysinfo_set_item_val("fb", NULL, true);
[8e33e1d]207 sysinfo_set_item_val("fb.kind", NULL, 5);
[a35b458]208
[eeb643d]209 sysinfo_set_item_val("niagara.outbuf.address", NULL,
[b366a6f4]210 KA2PA(&output_buffer));
[eeb643d]211 sysinfo_set_item_val("niagara.outbuf.size", NULL,
[b366a6f4]212 PAGE_SIZE);
[eeb643d]213 sysinfo_set_item_val("niagara.outbuf.datasize", NULL,
[b366a6f4]214 OUTPUT_BUFFER_SIZE);
[a35b458]215
[86018c1]216 sysinfo_set_item_val("niagara.inbuf.address", NULL,
[b366a6f4]217 KA2PA(&input_buffer));
[86018c1]218 sysinfo_set_item_val("niagara.inbuf.size", NULL,
[b366a6f4]219 PAGE_SIZE);
[86018c1]220 sysinfo_set_item_val("niagara.inbuf.datasize", NULL,
[1433ecda]221 INPUT_BUFFER_SIZE);
[a35b458]222
[66e08d02]223 outbuf_parea.pbase = (uintptr_t) (KA2PA(&output_buffer));
224 outbuf_parea.frames = 1;
[d7533c7]225 outbuf_parea.unpriv = false;
[b366a6f4]226 outbuf_parea.mapped = false;
[66e08d02]227 ddi_parea_register(&outbuf_parea);
[a35b458]228
[86018c1]229 inbuf_parea.pbase = (uintptr_t) (KA2PA(&input_buffer));
230 inbuf_parea.frames = 1;
[d7533c7]231 inbuf_parea.unpriv = false;
[b366a6f4]232 inbuf_parea.mapped = false;
[86018c1]233 ddi_parea_register(&inbuf_parea);
[a35b458]234
[11b285d]235 outdev_t *niagara_dev = malloc(sizeof(outdev_t));
[66e08d02]236 outdev_initialize("niagara_dev", niagara_dev, &niagara_ops);
237 stdout_wire(niagara_dev);
238}
239
[b366a6f4]240/** Initialize input from the Niagara console.
241 *
[69b68d1f]242 */
243niagara_instance_t *niagarain_init(void)
244{
245 niagara_init();
[a35b458]246
[69b68d1f]247 if (instance) {
248 srln_instance_t *srln_instance = srln_init();
249 if (srln_instance) {
250 indev_t *sink = stdin_wire();
251 indev_t *srln = srln_wire(srln_instance, sink);
[a35b458]252
[69b68d1f]253 instance->srlnin = srln;
254 thread_ready(instance->thread);
255 }
256 }
[a35b458]257
[69b68d1f]258 return instance;
259}
260
[66e08d02]261/** @}
262 */
Note: See TracBrowser for help on using the repository browser.