Rev 3022 | Rev 4156 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1410 | jermar | 1 | /* |
2071 | jermar | 2 | * Copyright (c) 2006 Jakub Jermar |
1410 | jermar | 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 | |||
1784 | jermar | 29 | /** @addtogroup sparc64 |
1702 | cejka | 30 | * @{ |
31 | */ |
||
32 | /** @file |
||
33 | */ |
||
34 | |||
1842 | jermar | 35 | #include <arch/drivers/kbd.h> |
1896 | jermar | 36 | #include <genarch/ofw/ofw_tree.h> |
4055 | trochtova | 37 | |
38 | #ifdef CONFIG_SUN_KBD |
||
39 | #include <genarch/kbrd/kbrd.h> |
||
40 | #endif |
||
1841 | jermar | 41 | #ifdef CONFIG_Z8530 |
4055 | trochtova | 42 | #include <genarch/drivers/z8530/z8530.h> |
1841 | jermar | 43 | #endif |
1844 | jermar | 44 | #ifdef CONFIG_NS16550 |
4055 | trochtova | 45 | #include <genarch/drivers/ns16550/ns16550.h> |
1841 | jermar | 46 | #endif |
4055 | trochtova | 47 | |
48 | #include <console/console.h> |
||
1920 | jermar | 49 | #include <ddi/device.h> |
50 | #include <ddi/irq.h> |
||
1841 | jermar | 51 | #include <arch/mm/page.h> |
1410 | jermar | 52 | #include <arch/types.h> |
1842 | jermar | 53 | #include <align.h> |
4055 | trochtova | 54 | #include <string.h> |
1896 | jermar | 55 | #include <print.h> |
4055 | trochtova | 56 | #include <sysinfo/sysinfo.h> |
1410 | jermar | 57 | |
1896 | jermar | 58 | kbd_type_t kbd_type = KBD_UNKNOWN; |
59 | |||
60 | /** Initialize keyboard. |
||
61 | * |
||
62 | * Traverse OpenFirmware device tree in order to find necessary |
||
63 | * info about the keyboard device. |
||
64 | * |
||
65 | * @param node Keyboard device node. |
||
66 | */ |
||
67 | void kbd_init(ofw_tree_node_t *node) |
||
1410 | jermar | 68 | { |
1841 | jermar | 69 | size_t offset; |
70 | uintptr_t aligned_addr; |
||
1896 | jermar | 71 | ofw_tree_property_t *prop; |
72 | const char *name; |
||
4055 | trochtova | 73 | cir_t cir; |
74 | void *cir_arg; |
||
75 | |||
76 | #ifdef CONFIG_NS16550 |
||
77 | ns16550_t *ns16550; |
||
78 | #endif |
||
79 | #ifdef CONFIG_Z8530 |
||
80 | z8530_t *z8530; |
||
81 | #endif |
||
1896 | jermar | 82 | |
83 | name = ofw_tree_node_name(node); |
||
84 | |||
1909 | jermar | 85 | /* |
86 | * Determine keyboard serial controller type. |
||
87 | */ |
||
1896 | jermar | 88 | if (strcmp(name, "zs") == 0) |
89 | kbd_type = KBD_Z8530; |
||
90 | else if (strcmp(name, "su") == 0) |
||
91 | kbd_type = KBD_NS16550; |
||
92 | |||
93 | if (kbd_type == KBD_UNKNOWN) { |
||
94 | printf("Unknown keyboard device.\n"); |
||
95 | return; |
||
96 | } |
||
97 | |||
1909 | jermar | 98 | /* |
99 | * Read 'interrupts' property. |
||
100 | */ |
||
101 | uint32_t interrupts; |
||
102 | prop = ofw_tree_getprop(node, "interrupts"); |
||
4055 | trochtova | 103 | if ((!prop) || (!prop->value)) |
104 | panic("Cannot find 'interrupt' property."); |
||
1909 | jermar | 105 | interrupts = *((uint32_t *) prop->value); |
4055 | trochtova | 106 | |
1909 | jermar | 107 | /* |
108 | * Read 'reg' property. |
||
109 | */ |
||
1896 | jermar | 110 | prop = ofw_tree_getprop(node, "reg"); |
4055 | trochtova | 111 | if ((!prop) || (!prop->value)) |
112 | panic("Cannot find 'reg' property."); |
||
1896 | jermar | 113 | |
114 | uintptr_t pa; |
||
115 | size_t size; |
||
4055 | trochtova | 116 | devno_t devno; |
1921 | jermar | 117 | inr_t inr; |
1896 | jermar | 118 | |
119 | switch (kbd_type) { |
||
120 | case KBD_Z8530: |
||
121 | size = ((ofw_fhc_reg_t *) prop->value)->size; |
||
4055 | trochtova | 122 | if (!ofw_fhc_apply_ranges(node->parent, |
123 | ((ofw_fhc_reg_t *) prop->value), &pa)) { |
||
1896 | jermar | 124 | printf("Failed to determine keyboard address.\n"); |
125 | return; |
||
126 | } |
||
4055 | trochtova | 127 | if (!ofw_fhc_map_interrupt(node->parent, |
128 | ((ofw_fhc_reg_t *) prop->value), interrupts, &inr, &cir, |
||
129 | &cir_arg)) { |
||
1912 | jermar | 130 | printf("Failed to determine keyboard interrupt.\n"); |
1909 | jermar | 131 | return; |
132 | } |
||
1896 | jermar | 133 | break; |
1919 | jermar | 134 | |
1896 | jermar | 135 | case KBD_NS16550: |
136 | size = ((ofw_ebus_reg_t *) prop->value)->size; |
||
4055 | trochtova | 137 | if (!ofw_ebus_apply_ranges(node->parent, |
138 | ((ofw_ebus_reg_t *) prop->value), &pa)) { |
||
1896 | jermar | 139 | printf("Failed to determine keyboard address.\n"); |
140 | return; |
||
141 | } |
||
4055 | trochtova | 142 | if (!ofw_ebus_map_interrupt(node->parent, |
143 | ((ofw_ebus_reg_t *) prop->value), interrupts, &inr, &cir, |
||
144 | &cir_arg)) { |
||
1912 | jermar | 145 | printf("Failed to determine keyboard interrupt.\n"); |
1909 | jermar | 146 | return; |
1921 | jermar | 147 | }; |
1896 | jermar | 148 | break; |
149 | default: |
||
4055 | trochtova | 150 | panic("Unexpected keyboard type."); |
1896 | jermar | 151 | } |
152 | |||
1841 | jermar | 153 | /* |
154 | * We need to pass aligned address to hw_map(). |
||
155 | * However, the physical keyboard address can |
||
1896 | jermar | 156 | * be pretty much unaligned, depending on the |
157 | * underlying controller. |
||
1841 | jermar | 158 | */ |
1896 | jermar | 159 | aligned_addr = ALIGN_DOWN(pa, PAGE_SIZE); |
160 | offset = pa - aligned_addr; |
||
4055 | trochtova | 161 | |
1896 | jermar | 162 | switch (kbd_type) { |
1841 | jermar | 163 | #ifdef CONFIG_Z8530 |
1896 | jermar | 164 | case KBD_Z8530: |
4055 | trochtova | 165 | devno = device_assign_devno(); |
166 | z8530 = (z8530_t *) hw_map(aligned_addr, offset + size) + |
||
167 | offset; |
||
168 | kbrd_init(stdin); |
||
169 | (void) z8530_init(z8530, devno, inr, cir, cir_arg, &kbrdin); |
||
170 | |||
171 | /* |
||
172 | * This is the necessary evil until the userspace drivers are |
||
173 | * entirely self-sufficient. |
||
174 | */ |
||
175 | sysinfo_set_item_val("kbd", NULL, true); |
||
176 | sysinfo_set_item_val("kbd.type", NULL, KBD_Z8530); |
||
177 | sysinfo_set_item_val("kbd.devno", NULL, devno); |
||
178 | sysinfo_set_item_val("kbd.inr", NULL, inr); |
||
179 | sysinfo_set_item_val("kbd.address.kernel", NULL, |
||
180 | (uintptr_t) z8530); |
||
181 | sysinfo_set_item_val("kbd.address.physical", NULL, pa); |
||
1896 | jermar | 182 | break; |
1841 | jermar | 183 | #endif |
1844 | jermar | 184 | #ifdef CONFIG_NS16550 |
1896 | jermar | 185 | case KBD_NS16550: |
4055 | trochtova | 186 | devno = device_assign_devno(); |
187 | ns16550 = (ns16550_t *) hw_map(aligned_addr, offset + size) + |
||
188 | offset; |
||
189 | kbrd_init(stdin); |
||
190 | (void) ns16550_init(ns16550, devno, inr, cir, cir_arg, &kbrdin); |
||
191 | |||
192 | /* |
||
193 | * This is the necessary evil until the userspace driver is |
||
194 | * entirely self-sufficient. |
||
195 | */ |
||
196 | sysinfo_set_item_val("kbd", NULL, true); |
||
197 | sysinfo_set_item_val("kbd.type", NULL, KBD_NS16550); |
||
198 | sysinfo_set_item_val("kbd.devno", NULL, devno); |
||
199 | sysinfo_set_item_val("kbd.inr", NULL, inr); |
||
200 | sysinfo_set_item_val("kbd.address.kernel", NULL, |
||
201 | (uintptr_t) ns16550); |
||
202 | sysinfo_set_item_val("kbd.address.physical", NULL, pa); |
||
1896 | jermar | 203 | break; |
1841 | jermar | 204 | #endif |
1896 | jermar | 205 | default: |
4055 | trochtova | 206 | printf("Kernel is not compiled with the necessary keyboard " |
207 | "driver this machine requires.\n"); |
||
1896 | jermar | 208 | } |
1410 | jermar | 209 | } |
1702 | cejka | 210 | |
1784 | jermar | 211 | /** @} |
1702 | cejka | 212 | */ |