blob: 0f975389103df0d3846056c8a9df640345a45cf5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Graeme Russ8c63d472009-02-24 21:14:45 +11002/*
3 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02004 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
Graeme Russ8c63d472009-02-24 21:14:45 +11005 */
6
7#include <common.h>
8#include <asm/io.h>
9#include <asm/i8254.h>
Graeme Russ8c63d472009-02-24 21:14:45 +110010
Simon Glass79a5be82019-02-16 20:24:58 -070011#define TIMER1_VALUE 18 /* 15.6us */
12#define BEEP_FREQUENCY_HZ 440
13#define SYSCTL_PORTB 0x61
14#define PORTB_BEEP_ENABLE 0x3
15
16static void i8254_set_beep_freq(uint frequency_hz)
17{
18 uint countdown;
19
20 countdown = PIT_TICK_RATE / frequency_hz;
21
22 outb(countdown & 0xff, PIT_BASE + PIT_T2);
23 outb((countdown >> 8) & 0xff, PIT_BASE + PIT_T2);
24}
Graeme Russ8c63d472009-02-24 21:14:45 +110025
Bin Mengda3fe242015-10-22 19:13:30 -070026int i8254_init(void)
Graeme Russ8c63d472009-02-24 21:14:45 +110027{
Simon Glassd0b6f242013-04-17 16:13:39 +000028 /*
Bin Mengbffeed02015-10-22 19:13:29 -070029 * Initialize counter 1, used to refresh request signal.
30 * This is required for legacy purpose as some codes like
31 * vgabios utilizes counter 1 to provide delay functionality.
32 */
33 outb(PIT_CMD_CTR1 | PIT_CMD_LOW | PIT_CMD_MODE2,
34 PIT_BASE + PIT_COMMAND);
35 outb(TIMER1_VALUE, PIT_BASE + PIT_T1);
36
37 /*
Bin Meng0a2ea022015-10-22 19:13:28 -070038 * Initialize counter 2, used to drive the speaker.
39 * To start a beep, set both bit0 and bit1 of port 0x61.
40 * To stop it, clear both bit0 and bit1 of port 0x61.
Graeme Russ8c63d472009-02-24 21:14:45 +110041 */
Graeme Russ83088af2011-11-08 02:33:15 +000042 outb(PIT_CMD_CTR2 | PIT_CMD_BOTH | PIT_CMD_MODE3,
Bin Meng0a2ea022015-10-22 19:13:28 -070043 PIT_BASE + PIT_COMMAND);
Simon Glass79a5be82019-02-16 20:24:58 -070044 i8254_set_beep_freq(BEEP_FREQUENCY_HZ);
Graeme Russ8c63d472009-02-24 21:14:45 +110045
Graeme Russ8c63d472009-02-24 21:14:45 +110046 return 0;
47}
Simon Glass79a5be82019-02-16 20:24:58 -070048
49int i8254_enable_beep(uint frequency_hz)
50{
51 if (!frequency_hz)
52 return -EINVAL;
53
Bin Meng7d0a53a2019-02-26 01:52:19 -080054 /* make sure i8254 is setup correctly before generating beeps */
55 outb(PIT_CMD_CTR2 | PIT_CMD_BOTH | PIT_CMD_MODE3,
56 PIT_BASE + PIT_COMMAND);
57
Simon Glass79a5be82019-02-16 20:24:58 -070058 i8254_set_beep_freq(frequency_hz);
59 setio_8(SYSCTL_PORTB, PORTB_BEEP_ENABLE);
60
61 return 0;
62}
63
64void i8254_disable_beep(void)
65{
66 clrio_8(SYSCTL_PORTB, PORTB_BEEP_ENABLE);
67}