Subversion Repositories HelenOS

Rev

Rev 4345 | Rev 4347 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4345 Rev 4346
1
/*
1
/*
2
 * Copyright (c) 2006 Jakub Jermar
2
 * Copyright (c) 2006 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup sparc64
29
/** @addtogroup sparc64
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#include <arch/drivers/kbd.h>
35
#include <arch/drivers/kbd.h>
36
#include <genarch/ofw/ofw_tree.h>
36
#include <genarch/ofw/ofw_tree.h>
-
 
37
 
-
 
38
#ifdef CONFIG_SUN_KBD
-
 
39
#include <genarch/kbrd/kbrd.h>
-
 
40
#endif
37
#ifdef CONFIG_Z8530
41
#ifdef CONFIG_Z8530
38
#include <genarch/kbd/z8530.h>
42
#include <genarch/drivers/z8530/z8530.h>
39
#endif
43
#endif
40
#ifdef CONFIG_NS16550
44
#ifdef CONFIG_NS16550
41
#include <genarch/kbd/ns16550.h>
45
#include <genarch/drivers/ns16550/ns16550.h>
42
#endif
46
#endif
-
 
47
 
-
 
48
#include <console/console.h>
43
#include <ddi/device.h>
49
#include <ddi/device.h>
44
#include <ddi/irq.h>
50
#include <ddi/irq.h>
45
#include <arch/mm/page.h>
51
#include <arch/mm/page.h>
46
#include <arch/types.h>
52
#include <arch/types.h>
47
#include <align.h>
53
#include <align.h>
48
#include <string.h>
54
#include <string.h>
49
#include <print.h>
55
#include <print.h>
50
#include <sysinfo/sysinfo.h>
56
#include <sysinfo/sysinfo.h>
51
 
57
 
52
kbd_type_t kbd_type = KBD_UNKNOWN;
58
kbd_type_t kbd_type = KBD_UNKNOWN;
53
 
59
 
-
 
60
#ifdef CONFIG_SUN_KBD
-
 
61
 
54
/** Initialize keyboard.
62
/** Initialize keyboard.
55
 *
63
 *
56
 * Traverse OpenFirmware device tree in order to find necessary
64
 * Traverse OpenFirmware device tree in order to find necessary
57
 * info about the keyboard device.
65
 * info about the keyboard device.
58
 *
66
 *
59
 * @param node Keyboard device node.
67
 * @param node Keyboard device node.
60
 */
68
 */
61
void kbd_init(ofw_tree_node_t *node)
69
void kbd_init(ofw_tree_node_t *node)
62
{
70
{
63
    size_t offset;
71
    size_t offset;
64
    uintptr_t aligned_addr;
72
    uintptr_t aligned_addr;
65
    ofw_tree_property_t *prop;
73
    ofw_tree_property_t *prop;
66
    const char *name;
74
    const char *name;
67
    cir_t cir;
75
    cir_t cir;
68
    void *cir_arg;
76
    void *cir_arg;
69
 
77
 
70
#ifdef CONFIG_NS16550
78
#ifdef CONFIG_NS16550
71
    ns16550_t *ns16550;
79
    ns16550_t *ns16550;
72
#endif
80
#endif
73
#ifdef CONFIG_Z8530
81
#ifdef CONFIG_Z8530
74
    z8530_t *z8530;
82
    z8530_t *z8530;
75
#endif
83
#endif
76
   
84
   
77
    name = ofw_tree_node_name(node);
85
    name = ofw_tree_node_name(node);
78
   
86
   
79
    /*
87
    /*
80
     * Determine keyboard serial controller type.
88
     * Determine keyboard serial controller type.
81
     */
89
     */
82
    if (strcmp(name, "zs") == 0)
90
    if (strcmp(name, "zs") == 0)
83
        kbd_type = KBD_Z8530;
91
        kbd_type = KBD_Z8530;
84
    else if (strcmp(name, "su") == 0)
92
    else if (strcmp(name, "su") == 0)
85
        kbd_type = KBD_NS16550;
93
        kbd_type = KBD_NS16550;
86
   
94
   
87
    if (kbd_type == KBD_UNKNOWN) {
95
    if (kbd_type == KBD_UNKNOWN) {
88
        printf("Unknown keyboard device.\n");
96
        printf("Unknown keyboard device.\n");
89
        return;
97
        return;
90
    }
98
    }
91
   
99
   
92
    /*
100
    /*
93
     * Read 'interrupts' property.
101
     * Read 'interrupts' property.
94
     */
102
     */
95
    uint32_t interrupts;
103
    uint32_t interrupts;
96
    prop = ofw_tree_getprop(node, "interrupts");
104
    prop = ofw_tree_getprop(node, "interrupts");
97
    if ((!prop) || (!prop->value))
105
    if ((!prop) || (!prop->value))
98
        panic("Cannot find 'interrupt' property.");
106
        panic("Cannot find 'interrupt' property.");
99
    interrupts = *((uint32_t *) prop->value);
107
    interrupts = *((uint32_t *) prop->value);
100
   
108
   
101
    /*
109
    /*
102
     * Read 'reg' property.
110
     * Read 'reg' property.
103
     */
111
     */
104
    prop = ofw_tree_getprop(node, "reg");
112
    prop = ofw_tree_getprop(node, "reg");
105
    if ((!prop) || (!prop->value))
113
    if ((!prop) || (!prop->value))
106
        panic("Cannot find 'reg' property.");
114
        panic("Cannot find 'reg' property.");
107
   
115
   
108
    uintptr_t pa;
116
    uintptr_t pa;
109
    size_t size;
117
    size_t size;
110
    devno_t devno;
118
    devno_t devno;
111
    inr_t inr;
119
    inr_t inr;
112
   
120
   
113
    switch (kbd_type) {
121
    switch (kbd_type) {
114
    case KBD_Z8530:
122
    case KBD_Z8530:
115
        size = ((ofw_fhc_reg_t *) prop->value)->size;
123
        size = ((ofw_fhc_reg_t *) prop->value)->size;
116
        if (!ofw_fhc_apply_ranges(node->parent,
124
        if (!ofw_fhc_apply_ranges(node->parent,
117
            ((ofw_fhc_reg_t *) prop->value), &pa)) {
125
            ((ofw_fhc_reg_t *) prop->value), &pa)) {
118
            printf("Failed to determine keyboard address.\n");
126
            printf("Failed to determine keyboard address.\n");
119
            return;
127
            return;
120
        }
128
        }
121
        if (!ofw_fhc_map_interrupt(node->parent,
129
        if (!ofw_fhc_map_interrupt(node->parent,
122
            ((ofw_fhc_reg_t *) prop->value), interrupts, &inr, &cir,
130
            ((ofw_fhc_reg_t *) prop->value), interrupts, &inr, &cir,
123
            &cir_arg)) {
131
            &cir_arg)) {
124
            printf("Failed to determine keyboard interrupt.\n");
132
            printf("Failed to determine keyboard interrupt.\n");
125
            return;
133
            return;
126
        }
134
        }
127
        break;
135
        break;
128
       
136
       
129
    case KBD_NS16550:
137
    case KBD_NS16550:
130
        size = ((ofw_ebus_reg_t *) prop->value)->size;
138
        size = ((ofw_ebus_reg_t *) prop->value)->size;
131
        if (!ofw_ebus_apply_ranges(node->parent,
139
        if (!ofw_ebus_apply_ranges(node->parent,
132
            ((ofw_ebus_reg_t *) prop->value), &pa)) {
140
            ((ofw_ebus_reg_t *) prop->value), &pa)) {
133
            printf("Failed to determine keyboard address.\n");
141
            printf("Failed to determine keyboard address.\n");
134
            return;
142
            return;
135
        }
143
        }
136
        if (!ofw_ebus_map_interrupt(node->parent,
144
        if (!ofw_ebus_map_interrupt(node->parent,
137
            ((ofw_ebus_reg_t *) prop->value), interrupts, &inr, &cir,
145
            ((ofw_ebus_reg_t *) prop->value), interrupts, &inr, &cir,
138
            &cir_arg)) {
146
            &cir_arg)) {
139
            printf("Failed to determine keyboard interrupt.\n");
147
            printf("Failed to determine keyboard interrupt.\n");
140
            return;
148
            return;
141
        };
149
        };
142
        break;
150
        break;
143
    default:
151
    default:
144
        panic("Unexpected keyboard type.");
152
        panic("Unexpected keyboard type.");
145
    }
153
    }
146
   
154
   
147
    /*
155
    /*
148
     * We need to pass aligned address to hw_map().
156
     * We need to pass aligned address to hw_map().
149
     * However, the physical keyboard address can
157
     * However, the physical keyboard address can
150
     * be pretty much unaligned, depending on the
158
     * be pretty much unaligned, depending on the
151
     * underlying controller.
159
     * underlying controller.
152
     */
160
     */
153
    aligned_addr = ALIGN_DOWN(pa, PAGE_SIZE);
161
    aligned_addr = ALIGN_DOWN(pa, PAGE_SIZE);
154
    offset = pa - aligned_addr;
162
    offset = pa - aligned_addr;
155
   
163
   
156
    switch (kbd_type) {
164
    switch (kbd_type) {
157
#ifdef CONFIG_Z8530
165
#ifdef CONFIG_Z8530
158
    case KBD_Z8530:
166
    case KBD_Z8530:
159
        devno = device_assign_devno();
167
        devno = device_assign_devno();
160
        z8530 = (z8530_t *) hw_map(aligned_addr, offset + size) +
168
        z8530 = (z8530_t *) hw_map(aligned_addr, offset + size) +
161
            offset;
169
            offset;
-
 
170
       
162
        (void) z8530_init(z8530, devno, inr, cir, cir_arg);
171
        indev_t *kbrdin_z8530 = z8530_init(z8530, devno, inr, cir, cir_arg);
-
 
172
        if (kbrdin_z8530)
-
 
173
            kbrd_init(kbrdin_z8530);
163
       
174
       
164
        /*
175
        /*
165
         * This is the necessary evil until the userspace drivers are
176
         * This is the necessary evil until the userspace drivers are
166
         * entirely self-sufficient.
177
         * entirely self-sufficient.
167
         */
178
         */
168
        sysinfo_set_item_val("kbd", NULL, true);
179
        sysinfo_set_item_val("kbd", NULL, true);
169
        sysinfo_set_item_val("kbd.type", NULL, KBD_Z8530);
180
        sysinfo_set_item_val("kbd.type", NULL, KBD_Z8530);
170
        sysinfo_set_item_val("kbd.devno", NULL, devno);
181
        sysinfo_set_item_val("kbd.devno", NULL, devno);
171
        sysinfo_set_item_val("kbd.inr", NULL, inr);
182
        sysinfo_set_item_val("kbd.inr", NULL, inr);
172
        sysinfo_set_item_val("kbd.address.kernel", NULL,
183
        sysinfo_set_item_val("kbd.address.kernel", NULL,
173
            (uintptr_t) z8530);
184
            (uintptr_t) z8530);
174
        sysinfo_set_item_val("kbd.address.physical", NULL, pa);
185
        sysinfo_set_item_val("kbd.address.physical", NULL, pa);
175
        break;
186
        break;
176
#endif
187
#endif
177
#ifdef CONFIG_NS16550
188
#ifdef CONFIG_NS16550
178
    case KBD_NS16550:
189
    case KBD_NS16550:
179
        devno = device_assign_devno();
190
        devno = device_assign_devno();
180
        ns16550 = (ns16550_t *) hw_map(aligned_addr, offset + size) +
191
        ns16550 = (ns16550_t *) hw_map(aligned_addr, offset + size) +
181
            offset;
192
            offset;
-
 
193
       
182
        (void) ns16550_init(ns16550, devno, inr, cir, cir_arg);
194
        indev_t *kbrdin_ns16550 = ns16550_init(ns16550, devno, inr, cir, cir_arg);
-
 
195
        if (kbrdin_ns16550)
-
 
196
            kbrd_init(kbrdin_ns16550);
183
       
197
       
184
        /*
198
        /*
185
         * This is the necessary evil until the userspace driver is
199
         * This is the necessary evil until the userspace driver is
186
         * entirely self-sufficient.
200
         * entirely self-sufficient.
187
         */
201
         */
188
        sysinfo_set_item_val("kbd", NULL, true);
202
        sysinfo_set_item_val("kbd", NULL, true);
189
        sysinfo_set_item_val("kbd.type", NULL, KBD_NS16550);
203
        sysinfo_set_item_val("kbd.type", NULL, KBD_NS16550);
190
        sysinfo_set_item_val("kbd.devno", NULL, devno);
204
        sysinfo_set_item_val("kbd.devno", NULL, devno);
191
        sysinfo_set_item_val("kbd.inr", NULL, inr);
205
        sysinfo_set_item_val("kbd.inr", NULL, inr);
192
        sysinfo_set_item_val("kbd.address.kernel", NULL,
206
        sysinfo_set_item_val("kbd.address.kernel", NULL,
193
            (uintptr_t) ns16550);
207
            (uintptr_t) ns16550);
194
        sysinfo_set_item_val("kbd.address.physical", NULL, pa);
208
        sysinfo_set_item_val("kbd.address.physical", NULL, pa);
195
        break;
209
        break;
196
#endif
210
#endif
197
    default:
211
    default:
198
        printf("Kernel is not compiled with the necessary keyboard "
212
        printf("Kernel is not compiled with the necessary keyboard "
199
            "driver this machine requires.\n");
213
            "driver this machine requires.\n");
200
    }
214
    }
201
}
215
}
202
 
216
 
-
 
217
#endif
-
 
218
 
203
/** @}
219
/** @}
204
 */
220
 */
205
 
221