Subversion Repositories HelenOS

Rev

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

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