source: mainline/kernel/arch/sparc64/src/drivers/kbd.c@ 8015eeec

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 8015eeec was 9693835, checked in by Martin Decky <martin@…>, 16 years ago

get back support for framebuffer and keyboard for sparc64 (generic)

  • Property mode set to 100644
File size: 5.9 KB
RevLine 
[82da5f5]1/*
[df4ed85]2 * Copyright (c) 2006 Jakub Jermar
[82da5f5]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
[1462d35]29/** @addtogroup sparc64
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[287920f]35#include <arch/drivers/kbd.h>
[28ecadb]36#include <genarch/ofw/ofw_tree.h>
[411b6a6]37
38#ifdef CONFIG_SUN_KBD
39#include <genarch/kbrd/kbrd.h>
40#endif
[da74747]41#ifdef CONFIG_Z8530
[411b6a6]42#include <genarch/drivers/z8530/z8530.h>
[da74747]43#endif
[8b4be29]44#ifdef CONFIG_NS16550
[411b6a6]45#include <genarch/drivers/ns16550/ns16550.h>
[da74747]46#endif
[411b6a6]47
48#include <console/console.h>
[7dcf22a]49#include <ddi/device.h>
50#include <ddi/irq.h>
[82da5f5]51#include <arch/mm/page.h>
[da74747]52#include <arch/types.h>
[287920f]53#include <align.h>
[16da5f8e]54#include <string.h>
[28ecadb]55#include <print.h>
[3e5a814]56#include <sysinfo/sysinfo.h>
[82da5f5]57
[28ecadb]58kbd_type_t kbd_type = KBD_UNKNOWN;
59
[9693835]60#ifdef CONFIG_SUN_KBD
[63b1537]61
[28ecadb]62/** Initialize keyboard.
63 *
64 * Traverse OpenFirmware device tree in order to find necessary
65 * info about the keyboard device.
66 *
67 * @param node Keyboard device node.
68 */
69void kbd_init(ofw_tree_node_t *node)
[82da5f5]70{
[da74747]71 size_t offset;
72 uintptr_t aligned_addr;
[28ecadb]73 ofw_tree_property_t *prop;
74 const char *name;
[8d2760f]75 cir_t cir;
76 void *cir_arg;
[4c7257b]77
78#ifdef CONFIG_NS16550
79 ns16550_t *ns16550;
80#endif
81#ifdef CONFIG_Z8530
82 z8530_t *z8530;
83#endif
[28ecadb]84
85 name = ofw_tree_node_name(node);
86
[0b414b5]87 /*
88 * Determine keyboard serial controller type.
89 */
[28ecadb]90 if (strcmp(name, "zs") == 0)
91 kbd_type = KBD_Z8530;
92 else if (strcmp(name, "su") == 0)
93 kbd_type = KBD_NS16550;
94
95 if (kbd_type == KBD_UNKNOWN) {
96 printf("Unknown keyboard device.\n");
97 return;
98 }
99
[0b414b5]100 /*
101 * Read 'interrupts' property.
102 */
103 uint32_t interrupts;
104 prop = ofw_tree_getprop(node, "interrupts");
[64c7e14]105 if ((!prop) || (!prop->value))
[f651e80]106 panic("Cannot find 'interrupt' property.");
[0b414b5]107 interrupts = *((uint32_t *) prop->value);
[64c7e14]108
[0b414b5]109 /*
110 * Read 'reg' property.
111 */
[28ecadb]112 prop = ofw_tree_getprop(node, "reg");
[64c7e14]113 if ((!prop) || (!prop->value))
[f651e80]114 panic("Cannot find 'reg' property.");
[28ecadb]115
116 uintptr_t pa;
117 size_t size;
[4c7257b]118 devno_t devno;
[63530c62]119 inr_t inr;
[0d107f31]120
[28ecadb]121 switch (kbd_type) {
122 case KBD_Z8530:
123 size = ((ofw_fhc_reg_t *) prop->value)->size;
[3e53ab7]124 if (!ofw_fhc_apply_ranges(node->parent,
125 ((ofw_fhc_reg_t *) prop->value), &pa)) {
[28ecadb]126 printf("Failed to determine keyboard address.\n");
127 return;
128 }
[3e53ab7]129 if (!ofw_fhc_map_interrupt(node->parent,
[8d2760f]130 ((ofw_fhc_reg_t *) prop->value), interrupts, &inr, &cir,
131 &cir_arg)) {
[33b1903]132 printf("Failed to determine keyboard interrupt.\n");
[0b414b5]133 return;
134 }
[28ecadb]135 break;
[0d107f31]136
[28ecadb]137 case KBD_NS16550:
138 size = ((ofw_ebus_reg_t *) prop->value)->size;
[3e53ab7]139 if (!ofw_ebus_apply_ranges(node->parent,
140 ((ofw_ebus_reg_t *) prop->value), &pa)) {
[28ecadb]141 printf("Failed to determine keyboard address.\n");
142 return;
143 }
[3e53ab7]144 if (!ofw_ebus_map_interrupt(node->parent,
[8d2760f]145 ((ofw_ebus_reg_t *) prop->value), interrupts, &inr, &cir,
146 &cir_arg)) {
[33b1903]147 printf("Failed to determine keyboard interrupt.\n");
[0b414b5]148 return;
[63530c62]149 };
[28ecadb]150 break;
151 default:
[f651e80]152 panic("Unexpected keyboard type.");
[28ecadb]153 }
154
[da74747]155 /*
156 * We need to pass aligned address to hw_map().
157 * However, the physical keyboard address can
[28ecadb]158 * be pretty much unaligned, depending on the
159 * underlying controller.
[da74747]160 */
[28ecadb]161 aligned_addr = ALIGN_DOWN(pa, PAGE_SIZE);
162 offset = pa - aligned_addr;
[64c7e14]163
[28ecadb]164 switch (kbd_type) {
[da74747]165#ifdef CONFIG_Z8530
[28ecadb]166 case KBD_Z8530:
[4c7257b]167 devno = device_assign_devno();
168 z8530 = (z8530_t *) hw_map(aligned_addr, offset + size) +
169 offset;
[1462d35]170
[9693835]171 indev_t *kbrdin_z8530 = z8530_init(z8530, devno, inr, cir, cir_arg);
172 if (kbrdin_z8530)
173 kbrd_init(kbrdin_z8530);
[4c7257b]174
175 /*
176 * This is the necessary evil until the userspace drivers are
177 * entirely self-sufficient.
178 */
179 sysinfo_set_item_val("kbd", NULL, true);
180 sysinfo_set_item_val("kbd.type", NULL, KBD_Z8530);
181 sysinfo_set_item_val("kbd.devno", NULL, devno);
182 sysinfo_set_item_val("kbd.inr", NULL, inr);
[ff685c9]183 sysinfo_set_item_val("kbd.address.kernel", NULL,
[4c7257b]184 (uintptr_t) z8530);
185 sysinfo_set_item_val("kbd.address.physical", NULL, pa);
[28ecadb]186 break;
[da74747]187#endif
[8b4be29]188#ifdef CONFIG_NS16550
[28ecadb]189 case KBD_NS16550:
[4c7257b]190 devno = device_assign_devno();
191 ns16550 = (ns16550_t *) hw_map(aligned_addr, offset + size) +
192 offset;
[1462d35]193
[9693835]194 indev_t *kbrdin_ns16550 = ns16550_init(ns16550, devno, inr, cir, cir_arg);
195 if (kbrdin_ns16550)
196 kbrd_init(kbrdin_ns16550);
[4c7257b]197
198 /*
199 * This is the necessary evil until the userspace driver is
200 * entirely self-sufficient.
201 */
202 sysinfo_set_item_val("kbd", NULL, true);
203 sysinfo_set_item_val("kbd.type", NULL, KBD_NS16550);
204 sysinfo_set_item_val("kbd.devno", NULL, devno);
205 sysinfo_set_item_val("kbd.inr", NULL, inr);
[ff685c9]206 sysinfo_set_item_val("kbd.address.kernel", NULL,
[4c7257b]207 (uintptr_t) ns16550);
208 sysinfo_set_item_val("kbd.address.physical", NULL, pa);
[28ecadb]209 break;
[da74747]210#endif
[28ecadb]211 default:
[3e53ab7]212 printf("Kernel is not compiled with the necessary keyboard "
213 "driver this machine requires.\n");
[28ecadb]214 }
[82da5f5]215}
[b45c443]216
[9693835]217#endif
218
[0ffa3ef5]219/** @}
[b45c443]220 */
Note: See TracBrowser for help on using the repository browser.