Subversion Repositories HelenOS

Rev

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

Rev 1896 Rev 1909
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
 
43
 
44
#include <arch/mm/page.h>
44
#include <arch/mm/page.h>
45
#include <arch/types.h>
45
#include <arch/types.h>
46
#include <typedefs.h>
46
#include <typedefs.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
 
50
 
51
volatile uint8_t *kbd_virt_address = NULL;
51
volatile uint8_t *kbd_virt_address = NULL;
52
 
52
 
53
kbd_type_t kbd_type = KBD_UNKNOWN;
53
kbd_type_t kbd_type = KBD_UNKNOWN;
54
 
54
 
55
/** Initialize keyboard.
55
/** Initialize keyboard.
56
 *
56
 *
57
 * Traverse OpenFirmware device tree in order to find necessary
57
 * Traverse OpenFirmware device tree in order to find necessary
58
 * info about the keyboard device.
58
 * info about the keyboard device.
59
 *
59
 *
60
 * @param node Keyboard device node.
60
 * @param node Keyboard device node.
61
 */
61
 */
62
void kbd_init(ofw_tree_node_t *node)
62
void kbd_init(ofw_tree_node_t *node)
63
{
63
{
64
    size_t offset;
64
    size_t offset;
65
    uintptr_t aligned_addr;
65
    uintptr_t aligned_addr;
66
    ofw_tree_property_t *prop;
66
    ofw_tree_property_t *prop;
67
    const char *name;
67
    const char *name;
68
   
68
   
69
    name = ofw_tree_node_name(node);
69
    name = ofw_tree_node_name(node);
70
   
70
   
-
 
71
    /*
-
 
72
     * Determine keyboard serial controller type.
-
 
73
     */
71
    if (strcmp(name, "zs") == 0)
74
    if (strcmp(name, "zs") == 0)
72
        kbd_type = KBD_Z8530;
75
        kbd_type = KBD_Z8530;
73
    else if (strcmp(name, "su") == 0)
76
    else if (strcmp(name, "su") == 0)
74
        kbd_type = KBD_NS16550;
77
        kbd_type = KBD_NS16550;
75
   
78
   
76
    if (kbd_type == KBD_UNKNOWN) {
79
    if (kbd_type == KBD_UNKNOWN) {
77
        printf("Unknown keyboard device.\n");
80
        printf("Unknown keyboard device.\n");
78
        return;
81
        return;
79
    }
82
    }
80
   
83
   
-
 
84
    /*
-
 
85
     * Read 'interrupts' property.
-
 
86
     */
-
 
87
    uint32_t interrupts;
-
 
88
    prop = ofw_tree_getprop(node, "interrupts");
-
 
89
    if (!prop || !prop->value)
-
 
90
        panic("Can't find \"interrupts\" property.\n");
-
 
91
    interrupts = *((uint32_t *) prop->value);
-
 
92
 
-
 
93
    /*
-
 
94
     * Read 'reg' property.
-
 
95
     */
81
    prop = ofw_tree_getprop(node, "reg");
96
    prop = ofw_tree_getprop(node, "reg");
82
    if (!prop)
97
    if (!prop || !prop->value)
83
        panic("Can't find \"reg\" property.\n");
98
        panic("Can't find \"reg\" property.\n");
84
   
99
   
85
    uintptr_t pa;
100
    uintptr_t pa;
86
    size_t size;
101
    size_t size;
-
 
102
    int ino;
87
   
103
   
88
    switch (kbd_type) {
104
    switch (kbd_type) {
89
    case KBD_Z8530:
105
    case KBD_Z8530:
90
        size = ((ofw_fhc_reg_t *) prop->value)->size;
106
        size = ((ofw_fhc_reg_t *) prop->value)->size;
91
        if (!ofw_fhc_apply_ranges(node->parent, ((ofw_fhc_reg_t *) prop->value) , &pa)) {
107
        if (!ofw_fhc_apply_ranges(node->parent, ((ofw_fhc_reg_t *) prop->value) , &pa)) {
92
            printf("Failed to determine keyboard address.\n");
108
            printf("Failed to determine keyboard address.\n");
93
            return;
109
            return;
94
        }
110
        }
-
 
111
        if (!ofw_fhc_map_interrupts(node->parent, ((ofw_fhc_reg_t *) prop->value), interrupts, &ino)) {
-
 
112
            printf("Failed to determine keyboard interrupts.\n");
-
 
113
            return;
-
 
114
        }
95
        break;
115
        break;
96
    case KBD_NS16550:
116
    case KBD_NS16550:
97
        size = ((ofw_ebus_reg_t *) prop->value)->size;
117
        size = ((ofw_ebus_reg_t *) prop->value)->size;
98
        if (!ofw_ebus_apply_ranges(node->parent, ((ofw_ebus_reg_t *) prop->value) , &pa)) {
118
        if (!ofw_ebus_apply_ranges(node->parent, ((ofw_ebus_reg_t *) prop->value) , &pa)) {
99
            printf("Failed to determine keyboard address.\n");
119
            printf("Failed to determine keyboard address.\n");
100
            return;
120
            return;
-
 
121
        }
-
 
122
        if (!ofw_ebus_map_interrupts(node->parent, ((ofw_ebus_reg_t *) prop->value), interrupts, &ino)) {
-
 
123
            printf("Failed to determine keyboard interrupts.\n");
-
 
124
            return;
101
        }
125
        }
102
        break;
126
        break;
103
    default:
127
    default:
104
        panic("Unexpected type.\n");
128
        panic("Unexpected type.\n");
105
    }
129
    }
106
   
130
   
107
    /*
131
    /*
108
     * We need to pass aligned address to hw_map().
132
     * We need to pass aligned address to hw_map().
109
     * However, the physical keyboard address can
133
     * However, the physical keyboard address can
110
     * be pretty much unaligned, depending on the
134
     * be pretty much unaligned, depending on the
111
     * underlying controller.
135
     * underlying controller.
112
     */
136
     */
113
    aligned_addr = ALIGN_DOWN(pa, PAGE_SIZE);
137
    aligned_addr = ALIGN_DOWN(pa, PAGE_SIZE);
114
    offset = pa - aligned_addr;
138
    offset = pa - aligned_addr;
115
    kbd_virt_address = (uint8_t *) hw_map(aligned_addr, offset + size) + offset;
139
    kbd_virt_address = (uint8_t *) hw_map(aligned_addr, offset + size) + offset;
116
 
140
 
117
    switch (kbd_type) {
141
    switch (kbd_type) {
118
#ifdef CONFIG_Z8530
142
#ifdef CONFIG_Z8530
119
    case KBD_Z8530:
143
    case KBD_Z8530:
120
        z8530_init();
144
        z8530_init();
121
        break;
145
        break;
122
#endif
146
#endif
123
#ifdef CONFIG_NS16550
147
#ifdef CONFIG_NS16550
124
    case KBD_NS16550:
148
    case KBD_NS16550:
125
        ns16550_init();
149
        ns16550_init();
126
        break;
150
        break;
127
#endif
151
#endif
128
    default:
152
    default:
129
        printf("Kernel is not compiled with the necessary keyboard driver this machine requires.\n");
153
        printf("Kernel is not compiled with the necessary keyboard driver this machine requires.\n");
130
    }
154
    }
131
}
155
}
132
 
156
 
133
/** @}
157
/** @}
134
 */
158
 */
135
 
159