source: mainline/kernel/arch/ia32/src/drivers/i8254.c@ 7ba16eb

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7ba16eb was 1558d85, checked in by Jakub Jermar <jakub@…>, 9 years ago

Remove duplicate includes

  • Property mode set to 100644
File size: 4.3 KB
Line 
1/*
2 * Copyright (c) 2001-2004 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 ia32
30 * @{
31 */
32/**
33 * @file
34 * @brief i8254 chip driver.
35 *
36 * Low level time functions.
37 */
38
39#include <typedefs.h>
40#include <time/clock.h>
41#include <time/delay.h>
42#include <arch/cycle.h>
43#include <arch/interrupt.h>
44#include <arch/drivers/i8259.h>
45#include <arch/drivers/i8254.h>
46#include <cpu.h>
47#include <config.h>
48#include <arch/pm.h>
49#include <arch/asm.h>
50#include <arch/cpuid.h>
51#include <arch.h>
52#include <ddi/irq.h>
53#include <ddi/device.h>
54
55#define CLK_PORT1 ((ioport8_t *) 0x40U)
56#define CLK_PORT4 ((ioport8_t *) 0x43U)
57
58#define CLK_CONST 1193180
59#define MAGIC_NUMBER 1194
60
61#define LOOPS 150000
62#define SHIFT 11
63
64static irq_t i8254_irq;
65
66static irq_ownership_t i8254_claim(irq_t *irq)
67{
68 return IRQ_ACCEPT;
69}
70
71static void i8254_irq_handler(irq_t *irq)
72{
73 /*
74 * This IRQ is responsible for kernel preemption.
75 * Nevertheless, we are now holding a spinlock which prevents
76 * preemption. For this particular IRQ, we don't need the
77 * lock. We just release it, call clock() and then reacquire it again.
78 */
79 irq_spinlock_unlock(&irq->lock, false);
80 clock();
81 irq_spinlock_lock(&irq->lock, false);
82}
83
84void i8254_init(void)
85{
86 irq_initialize(&i8254_irq);
87 i8254_irq.preack = true;
88 i8254_irq.devno = device_assign_devno();
89 i8254_irq.inr = IRQ_CLK;
90 i8254_irq.claim = i8254_claim;
91 i8254_irq.handler = i8254_irq_handler;
92 irq_register(&i8254_irq);
93
94 i8254_normal_operation();
95}
96
97void i8254_normal_operation(void)
98{
99 pio_write_8(CLK_PORT4, 0x36);
100 pic_disable_irqs(1 << IRQ_CLK);
101 pio_write_8(CLK_PORT1, (CLK_CONST / HZ) & 0xf);
102 pio_write_8(CLK_PORT1, (CLK_CONST / HZ) >> 8);
103 pic_enable_irqs(1 << IRQ_CLK);
104}
105
106void i8254_calibrate_delay_loop(void)
107{
108 /*
109 * One-shot timer. Count-down from 0xffff at 1193180Hz
110 * MAGIC_NUMBER is the magic value for 1ms.
111 */
112 pio_write_8(CLK_PORT4, 0x30);
113 pio_write_8(CLK_PORT1, 0xff);
114 pio_write_8(CLK_PORT1, 0xff);
115
116 uint8_t not_ok;
117 uint32_t t1;
118 uint32_t t2;
119
120 do {
121 /* will read both status and count */
122 pio_write_8(CLK_PORT4, 0xc2);
123 not_ok = (uint8_t) ((pio_read_8(CLK_PORT1) >> 6) & 1);
124 t1 = pio_read_8(CLK_PORT1);
125 t1 |= pio_read_8(CLK_PORT1) << 8;
126 } while (not_ok);
127
128 asm_delay_loop(LOOPS);
129
130 pio_write_8(CLK_PORT4, 0xd2);
131 t2 = pio_read_8(CLK_PORT1);
132 t2 |= pio_read_8(CLK_PORT1) << 8;
133
134 /*
135 * We want to determine the overhead of the calibrating mechanism.
136 */
137 pio_write_8(CLK_PORT4, 0xd2);
138 uint32_t o1 = pio_read_8(CLK_PORT1);
139 o1 |= pio_read_8(CLK_PORT1) << 8;
140
141 asm_fake_loop(LOOPS);
142
143 pio_write_8(CLK_PORT4, 0xd2);
144 uint32_t o2 = pio_read_8(CLK_PORT1);
145 o2 |= pio_read_8(CLK_PORT1) << 8;
146
147 CPU->delay_loop_const =
148 ((MAGIC_NUMBER * LOOPS) / 1000) / ((t1 - t2) - (o1 - o2)) +
149 (((MAGIC_NUMBER * LOOPS) / 1000) % ((t1 - t2) - (o1 - o2)) ? 1 : 0);
150
151 uint64_t clk1 = get_cycle();
152 delay(1 << SHIFT);
153 uint64_t clk2 = get_cycle();
154
155 CPU->frequency_mhz = (clk2 - clk1) >> SHIFT;
156
157 return;
158}
159
160/** @}
161 */
Note: See TracBrowser for help on using the repository browser.