blob: 27c7bfdbe1f6b89171eef74880c6e8579b154e08 [file] [log] [blame]
Stefan Reinauer67fed692009-11-05 12:38:34 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Stefan Reinauer67fed692009-11-05 12:38:34 +000014 */
15
16#include <arch/io.h>
17#include <pc80/i8254.h>
Stefan Reinauer67fed692009-11-05 12:38:34 +000018
19/* Initialize i8254 timers */
20
21void setup_i8254(void)
22{
23 /* Timer 0 (taken from biosemu) */
Paul Menzel7580b1a2015-06-07 11:11:23 +020024 outb(TIMER0_SEL | WORD_ACCESS | MODE3 | BINARY_COUNT, TIMER_MODE_PORT);
Stefan Reinauer67fed692009-11-05 12:38:34 +000025 outb(0x00, TIMER0_PORT);
26 outb(0x00, TIMER0_PORT);
27
28 /* Timer 1 */
Paul Menzel7580b1a2015-06-07 11:11:23 +020029 outb(TIMER1_SEL | LOBYTE_ACCESS | MODE3 | BINARY_COUNT,
30 TIMER_MODE_PORT);
Stefan Reinauer67fed692009-11-05 12:38:34 +000031 outb(0x12, TIMER1_PORT);
32}
33
Martin Roth32c27c22017-06-24 14:07:25 -060034#if IS_ENABLED(CONFIG_UDELAY_TIMER2)
Stefan Reinauer67fed692009-11-05 12:38:34 +000035static void load_timer2(unsigned int ticks)
36{
Paul Menzel7580b1a2015-06-07 11:11:23 +020037 /* Set up the timer gate, turn off the speaker */
38 outb((inb(PPC_PORTB) & ~PPCB_SPKR) | PPCB_T2GATE, PPC_PORTB);
39 outb(TIMER2_SEL | WORD_ACCESS | MODE0 | BINARY_COUNT, TIMER_MODE_PORT);
40 outb(ticks & 0xFF, TIMER2_PORT);
41 outb(ticks >> 8, TIMER2_PORT);
Stefan Reinauer67fed692009-11-05 12:38:34 +000042}
43
Stefan Reinauer67fed692009-11-05 12:38:34 +000044void udelay(int usecs)
45{
Paul Menzel7580b1a2015-06-07 11:11:23 +020046 load_timer2((usecs * TICKS_PER_MS) / 1000);
47 while ((inb(PPC_PORTB) & PPCB_T2OUT) == 0)
48 ;
Stefan Reinauer67fed692009-11-05 12:38:34 +000049}
50#endif