Rev 1912 | Rev 1920 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1410 | jermar | 1 | /* |
| 2 | * Copyright (C) 2006 Jakub 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 |
| 1919 | jermar | 43 | #include <irq.h> |
| 1841 | jermar | 44 | #include <arch/mm/page.h> |
| 1410 | jermar | 45 | #include <arch/types.h> |
| 1841 | jermar | 46 | #include <typedefs.h> |
| 1842 | jermar | 47 | #include <align.h> |
| 1896 | jermar | 48 | #include <func.h> |
| 49 | #include <print.h> |
||
| 1410 | jermar | 50 | |
| 1780 | jermar | 51 | volatile uint8_t *kbd_virt_address = NULL; |
| 1410 | jermar | 52 | |
| 1896 | jermar | 53 | kbd_type_t kbd_type = KBD_UNKNOWN; |
| 54 | |||
| 1919 | jermar | 55 | static irq_t kbd_irq; |
| 56 | |||
| 1896 | jermar | 57 | /** Initialize keyboard. |
| 58 | * |
||
| 59 | * Traverse OpenFirmware device tree in order to find necessary |
||
| 60 | * info about the keyboard device. |
||
| 61 | * |
||
| 62 | * @param node Keyboard device node. |
||
| 63 | */ |
||
| 64 | void kbd_init(ofw_tree_node_t *node) |
||
| 1410 | jermar | 65 | { |
| 1841 | jermar | 66 | size_t offset; |
| 67 | uintptr_t aligned_addr; |
||
| 1896 | jermar | 68 | ofw_tree_property_t *prop; |
| 69 | const char *name; |
||
| 70 | |||
| 71 | name = ofw_tree_node_name(node); |
||
| 72 | |||
| 1909 | jermar | 73 | /* |
| 74 | * Determine keyboard serial controller type. |
||
| 75 | */ |
||
| 1896 | jermar | 76 | if (strcmp(name, "zs") == 0) |
| 77 | kbd_type = KBD_Z8530; |
||
| 78 | else if (strcmp(name, "su") == 0) |
||
| 79 | kbd_type = KBD_NS16550; |
||
| 80 | |||
| 81 | if (kbd_type == KBD_UNKNOWN) { |
||
| 82 | printf("Unknown keyboard device.\n"); |
||
| 83 | return; |
||
| 84 | } |
||
| 85 | |||
| 1909 | jermar | 86 | /* |
| 87 | * Read 'interrupts' property. |
||
| 88 | */ |
||
| 89 | uint32_t interrupts; |
||
| 90 | prop = ofw_tree_getprop(node, "interrupts"); |
||
| 91 | if (!prop || !prop->value) |
||
| 92 | panic("Can't find \"interrupts\" property.\n"); |
||
| 93 | interrupts = *((uint32_t *) prop->value); |
||
| 94 | |||
| 95 | /* |
||
| 96 | * Read 'reg' property. |
||
| 97 | */ |
||
| 1896 | jermar | 98 | prop = ofw_tree_getprop(node, "reg"); |
| 1909 | jermar | 99 | if (!prop || !prop->value) |
| 1896 | jermar | 100 | panic("Can't find \"reg\" property.\n"); |
| 101 | |||
| 102 | uintptr_t pa; |
||
| 103 | size_t size; |
||
| 1911 | jermar | 104 | int inr; |
| 1896 | jermar | 105 | |
| 1919 | jermar | 106 | irq_initialize(&kbd_irq); |
| 107 | |||
| 1896 | jermar | 108 | switch (kbd_type) { |
| 109 | case KBD_Z8530: |
||
| 110 | size = ((ofw_fhc_reg_t *) prop->value)->size; |
||
| 111 | if (!ofw_fhc_apply_ranges(node->parent, ((ofw_fhc_reg_t *) prop->value) , &pa)) { |
||
| 112 | printf("Failed to determine keyboard address.\n"); |
||
| 113 | return; |
||
| 114 | } |
||
| 1912 | jermar | 115 | if (!ofw_fhc_map_interrupt(node->parent, ((ofw_fhc_reg_t *) prop->value), interrupts, &inr)) { |
| 116 | printf("Failed to determine keyboard interrupt.\n"); |
||
| 1909 | jermar | 117 | return; |
| 1919 | jermar | 118 | } else { |
| 119 | kbd_irq.inr = inr; |
||
| 120 | kbd_irq.devno = 0; /* FIXME: assign unique devno */ |
||
| 121 | kbd_irq.trigger = IRQ_TRIGGER_LEVEL; |
||
| 122 | kbd_irq.claim = z8530_claim; |
||
| 123 | kbd_irq.handler = z8530_irq_handler; |
||
| 124 | irq_register(&kbd_irq); |
||
| 1909 | jermar | 125 | } |
| 1896 | jermar | 126 | break; |
| 1919 | jermar | 127 | |
| 1896 | jermar | 128 | case KBD_NS16550: |
| 129 | size = ((ofw_ebus_reg_t *) prop->value)->size; |
||
| 130 | if (!ofw_ebus_apply_ranges(node->parent, ((ofw_ebus_reg_t *) prop->value) , &pa)) { |
||
| 131 | printf("Failed to determine keyboard address.\n"); |
||
| 132 | return; |
||
| 133 | } |
||
| 1912 | jermar | 134 | if (!ofw_ebus_map_interrupt(node->parent, ((ofw_ebus_reg_t *) prop->value), interrupts, &inr)) { |
| 135 | printf("Failed to determine keyboard interrupt.\n"); |
||
| 1909 | jermar | 136 | return; |
| 1919 | jermar | 137 | } else { |
| 138 | kbd_irq.inr = inr; |
||
| 139 | kbd_irq.devno = 0; /* FIXME: assign unique devno */ |
||
| 140 | kbd_irq.trigger = IRQ_TRIGGER_LEVEL; |
||
| 141 | kbd_irq.claim = ns16550_claim; |
||
| 142 | kbd_irq.handler = ns16550_irq_handler; |
||
| 143 | irq_register(&kbd_irq); |
||
| 1909 | jermar | 144 | } |
| 1896 | jermar | 145 | break; |
| 1919 | jermar | 146 | |
| 1896 | jermar | 147 | default: |
| 148 | panic("Unexpected type.\n"); |
||
| 149 | } |
||
| 150 | |||
| 1841 | jermar | 151 | /* |
| 152 | * We need to pass aligned address to hw_map(). |
||
| 153 | * However, the physical keyboard address can |
||
| 1896 | jermar | 154 | * be pretty much unaligned, depending on the |
| 155 | * underlying controller. |
||
| 1841 | jermar | 156 | */ |
| 1896 | jermar | 157 | aligned_addr = ALIGN_DOWN(pa, PAGE_SIZE); |
| 158 | offset = pa - aligned_addr; |
||
| 159 | kbd_virt_address = (uint8_t *) hw_map(aligned_addr, offset + size) + offset; |
||
| 1841 | jermar | 160 | |
| 1896 | jermar | 161 | switch (kbd_type) { |
| 1841 | jermar | 162 | #ifdef CONFIG_Z8530 |
| 1896 | jermar | 163 | case KBD_Z8530: |
| 164 | z8530_init(); |
||
| 165 | break; |
||
| 1841 | jermar | 166 | #endif |
| 1844 | jermar | 167 | #ifdef CONFIG_NS16550 |
| 1896 | jermar | 168 | case KBD_NS16550: |
| 169 | ns16550_init(); |
||
| 170 | break; |
||
| 1841 | jermar | 171 | #endif |
| 1896 | jermar | 172 | default: |
| 173 | printf("Kernel is not compiled with the necessary keyboard driver this machine requires.\n"); |
||
| 174 | } |
||
| 1410 | jermar | 175 | } |
| 1702 | cejka | 176 | |
| 1784 | jermar | 177 | /** @} |
| 1702 | cejka | 178 | */ |