source: mainline/kernel/genarch/src/drivers/i8042/i8042.c@ 04b29ca

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 04b29ca was 411b6a6, checked in by Jakub Jermar <jakub@…>, 17 years ago

Complete emancipation of kernel serial controller drivers (i8042, ns16550 and
z8530). Provide a common keyboard module for PC and Sun keyboards. The serial
line module is still to follow.

  • Property mode set to 100644
File size: 3.1 KB
Line 
1/*
2 * Copyright (c) 2009 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
29/** @addtogroup genarch
30 * @{
31 */
32/**
33 * @file
34 * @brief i8042 processor driver
35 *
36 * It takes care of the i8042 serial communication.
37 */
38
39#include <genarch/drivers/i8042/i8042.h>
40#include <genarch/drivers/legacy/ia32/io.h>
41#include <arch/asm.h>
42#include <console/chardev.h>
43#include <mm/slab.h>
44
45#define i8042_SET_COMMAND 0x60
46#define i8042_COMMAND 0x69
47
48#define i8042_BUFFER_FULL_MASK 0x01
49#define i8042_WAIT_MASK 0x02
50
51static irq_ownership_t i8042_claim(irq_t *irq)
52{
53 i8042_instance_t *i8042_instance = irq->instance;
54 i8042_t *dev = i8042_instance->i8042;
55 if (pio_read_8(&dev->status) & i8042_BUFFER_FULL_MASK)
56 return IRQ_ACCEPT;
57 else
58 return IRQ_DECLINE;
59}
60
61static void i8042_irq_handler(irq_t *irq)
62{
63 i8042_instance_t *instance = irq->instance;
64 i8042_t *dev = instance->i8042;
65
66 uint8_t data;
67 uint8_t status;
68
69 if (((status = pio_read_8(&dev->status)) & i8042_BUFFER_FULL_MASK)) {
70 data = pio_read_8(&dev->data);
71
72 if (instance->devout)
73 chardev_push_character(instance->devout, data);
74 }
75}
76
77/** Initialize i8042. */
78bool
79i8042_init(i8042_t *dev, devno_t devno, inr_t inr, chardev_t *devout)
80{
81 i8042_instance_t *instance;
82
83 instance = malloc(sizeof(i8042_instance_t), FRAME_ATOMIC);
84 if (!instance)
85 return false;
86
87 instance->devno = devno;
88 instance->i8042 = dev;
89 instance->devout = devout;
90
91 irq_initialize(&instance->irq);
92 instance->irq.devno = devno;
93 instance->irq.inr = inr;
94 instance->irq.claim = i8042_claim;
95 instance->irq.handler = i8042_irq_handler;
96 instance->irq.instance = instance;
97 irq_register(&instance->irq);
98
99 /*
100 * Clear input buffer.
101 */
102 while (pio_read_8(&dev->status) & i8042_BUFFER_FULL_MASK)
103 (void) pio_read_8(&dev->data);
104
105 return true;
106}
107
108/** @}
109 */
Note: See TracBrowser for help on using the repository browser.