source: mainline/kernel/genarch/src/drivers/i8042/i8042.c@ 1adbf90

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1adbf90 was 1adbf90, checked in by Martin Decky <martin@…>, 14 years ago

make the i8042 driver just a slightly more robust
(timeout if the device is not behaving as expected to avoid infinite loop)

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[f761f1eb]1/*
[4c7257b]2 * Copyright (c) 2009 Jakub Jermar
[f761f1eb]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
[3c79afe]29/** @addtogroup genarch
[b45c443]30 * @{
31 */
[3c5006a0]32/**
[cc73a8a1]33 * @file
[3c79afe]34 * @brief i8042 processor driver
[3c5006a0]35 *
[411b6a6]36 * It takes care of the i8042 serial communication.
[c8bf88d]37 *
[b45c443]38 */
39
[411b6a6]40#include <genarch/drivers/i8042/i8042.h>
[91825d90]41#include <genarch/drivers/legacy/ia32/io.h>
[f761f1eb]42#include <arch/asm.h>
[607c5f9]43#include <console/chardev.h>
[411b6a6]44#include <mm/slab.h>
[84afc7b]45#include <ddi/device.h>
[1adbf90]46#include <time/delay.h>
[6ccb238]47
[3c79afe]48#define i8042_SET_COMMAND 0x60
49#define i8042_COMMAND 0x69
[149d14e5]50#define i8042_CPU_RESET 0xfe
[3c79afe]51
52#define i8042_BUFFER_FULL_MASK 0x01
53#define i8042_WAIT_MASK 0x02
[607c5f9]54
[1adbf90]55#define i8042_TIMEOUT 65536
56
[c9b550b]57static irq_ownership_t i8042_claim(irq_t *irq)
[41d33ac]58{
[c9b550b]59 i8042_instance_t *i8042_instance = irq->instance;
[4544884]60 i8042_t *dev = i8042_instance->i8042;
[3c79afe]61
[4544884]62 if (pio_read_8(&dev->status) & i8042_BUFFER_FULL_MASK)
63 return IRQ_ACCEPT;
64 else
65 return IRQ_DECLINE;
[cea12e9]66}
[41d33ac]67
[6cd9aa6]68static void i8042_irq_handler(irq_t *irq)
[cea12e9]69{
[4544884]70 i8042_instance_t *instance = irq->instance;
71 i8042_t *dev = instance->i8042;
[3c79afe]72
[137691a]73 if (pio_read_8(&dev->status) & i8042_BUFFER_FULL_MASK) {
[3c79afe]74 uint8_t data = pio_read_8(&dev->data);
[c2417bc]75 indev_push_character(instance->kbrdin, data);
[cea12e9]76 }
77}
[6ccb238]78
[c2417bc]79/**< Clear input buffer. */
80static void i8042_clear_buffer(i8042_t *dev)
81{
[1adbf90]82 for (uint32_t i = 0; i < i8042_TIMEOUT; i++) {
83 if ((pio_read_8(&dev->status) & i8042_BUFFER_FULL_MASK) == 0)
84 break;
85
[c2417bc]86 (void) pio_read_8(&dev->data);
[1adbf90]87 delay(50); /* 50 us think time */
88 }
89}
90
91static void i8042_send_command(i8042_t *dev, uint8_t cmd)
92{
93 for (uint32_t i = 0; i < i8042_TIMEOUT; i++) {
94 if ((pio_read_8(&dev->status) & i8042_WAIT_MASK) == 0)
95 break;
96
97 delay(50); /* 50 us think time */
98 }
99
100 pio_write_8(&dev->status, cmd);
101 delay(10000); /* 10 ms think time */
[c2417bc]102}
103
[cea12e9]104/** Initialize i8042. */
[c2417bc]105i8042_instance_t *i8042_init(i8042_t *dev, inr_t inr)
[cea12e9]106{
[1adbf90]107 i8042_instance_t *instance =
108 malloc(sizeof(i8042_instance_t), FRAME_ATOMIC);
[c2417bc]109 if (instance) {
110 instance->i8042 = dev;
111 instance->kbrdin = NULL;
112
113 irq_initialize(&instance->irq);
114 instance->irq.devno = device_assign_devno();
115 instance->irq.inr = inr;
116 instance->irq.claim = i8042_claim;
117 instance->irq.handler = i8042_irq_handler;
118 instance->irq.instance = instance;
119 }
[5b0ae4be]120
[c2417bc]121 return instance;
122}
123
124void i8042_wire(i8042_instance_t *instance, indev_t *kbrdin)
125{
126 ASSERT(instance);
127 ASSERT(kbrdin);
[16d71f41]128
[1adbf90]129 i8042_clear_buffer(instance->i8042);
130
[c2417bc]131 instance->kbrdin = kbrdin;
[5b0ae4be]132 irq_register(&instance->irq);
[30ab05f]133}
134
[149d14e5]135/* Reset CPU by pulsing pin 0 */
136void i8042_cpu_reset(i8042_t *dev)
137{
138 interrupts_disable();
[c2417bc]139 i8042_clear_buffer(dev);
[1adbf90]140 i8042_send_command(dev, i8042_CPU_RESET);
[149d14e5]141}
142
[3c5006a0]143/** @}
[b45c443]144 */
Note: See TracBrowser for help on using the repository browser.