blob: 70f71d9b9e3a75a2e1f28de863f90d8c90970558 [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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
Stefan Reinauer67fed692009-11-05 12:38:34 +000018 */
19
20#include <arch/io.h>
21#include <pc80/i8254.h>
22#include <console/console.h>
23
24/* Initialize i8254 timers */
25
26void setup_i8254(void)
27{
28 /* Timer 0 (taken from biosemu) */
Paul Menzel7580b1a2015-06-07 11:11:23 +020029 outb(TIMER0_SEL | WORD_ACCESS | MODE3 | BINARY_COUNT, TIMER_MODE_PORT);
Stefan Reinauer67fed692009-11-05 12:38:34 +000030 outb(0x00, TIMER0_PORT);
31 outb(0x00, TIMER0_PORT);
32
33 /* Timer 1 */
Paul Menzel7580b1a2015-06-07 11:11:23 +020034 outb(TIMER1_SEL | LOBYTE_ACCESS | MODE3 | BINARY_COUNT,
35 TIMER_MODE_PORT);
Stefan Reinauer67fed692009-11-05 12:38:34 +000036 outb(0x12, TIMER1_PORT);
37}
38
Stefan Reinauer6f429762012-08-07 14:49:01 -070039#if CONFIG_UDELAY_TIMER2
Stefan Reinauer67fed692009-11-05 12:38:34 +000040static void load_timer2(unsigned int ticks)
41{
Paul Menzel7580b1a2015-06-07 11:11:23 +020042 /* Set up the timer gate, turn off the speaker */
43 outb((inb(PPC_PORTB) & ~PPCB_SPKR) | PPCB_T2GATE, PPC_PORTB);
44 outb(TIMER2_SEL | WORD_ACCESS | MODE0 | BINARY_COUNT, TIMER_MODE_PORT);
45 outb(ticks & 0xFF, TIMER2_PORT);
46 outb(ticks >> 8, TIMER2_PORT);
Stefan Reinauer67fed692009-11-05 12:38:34 +000047}
48
Stefan Reinauer67fed692009-11-05 12:38:34 +000049void udelay(int usecs)
50{
Paul Menzel7580b1a2015-06-07 11:11:23 +020051 load_timer2((usecs * TICKS_PER_MS) / 1000);
52 while ((inb(PPC_PORTB) & PPCB_T2OUT) == 0)
53 ;
Stefan Reinauer67fed692009-11-05 12:38:34 +000054}
55#endif