Subversion Repositories HelenOS

Rev

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