Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 4 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <asm/io.h> |
| 9 | #include <asm/i8254.h> |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 10 | |
Simon Glass | 79a5be8 | 2019-02-16 20:24:58 -0700 | [diff] [blame] | 11 | #define TIMER1_VALUE 18 /* 15.6us */ |
| 12 | #define BEEP_FREQUENCY_HZ 440 |
| 13 | #define SYSCTL_PORTB 0x61 |
| 14 | #define PORTB_BEEP_ENABLE 0x3 |
| 15 | |
| 16 | static 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 Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 25 | |
Bin Meng | da3fe24 | 2015-10-22 19:13:30 -0700 | [diff] [blame] | 26 | int i8254_init(void) |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 27 | { |
Simon Glass | d0b6f24 | 2013-04-17 16:13:39 +0000 | [diff] [blame] | 28 | /* |
Bin Meng | bffeed0 | 2015-10-22 19:13:29 -0700 | [diff] [blame] | 29 | * 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 Meng | 0a2ea02 | 2015-10-22 19:13:28 -0700 | [diff] [blame] | 38 | * 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 Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 41 | */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 42 | outb(PIT_CMD_CTR2 | PIT_CMD_BOTH | PIT_CMD_MODE3, |
Bin Meng | 0a2ea02 | 2015-10-22 19:13:28 -0700 | [diff] [blame] | 43 | PIT_BASE + PIT_COMMAND); |
Simon Glass | 79a5be8 | 2019-02-16 20:24:58 -0700 | [diff] [blame] | 44 | i8254_set_beep_freq(BEEP_FREQUENCY_HZ); |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 45 | |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 46 | return 0; |
| 47 | } |
Simon Glass | 79a5be8 | 2019-02-16 20:24:58 -0700 | [diff] [blame] | 48 | |
| 49 | int i8254_enable_beep(uint frequency_hz) |
| 50 | { |
| 51 | if (!frequency_hz) |
| 52 | return -EINVAL; |
| 53 | |
Bin Meng | 7d0a53a | 2019-02-26 01:52:19 -0800 | [diff] [blame] | 54 | /* 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 Glass | 79a5be8 | 2019-02-16 20:24:58 -0700 | [diff] [blame] | 58 | i8254_set_beep_freq(frequency_hz); |
| 59 | setio_8(SYSCTL_PORTB, PORTB_BEEP_ENABLE); |
| 60 | |
| 61 | return 0; |
| 62 | } |
| 63 | |
| 64 | void i8254_disable_beep(void) |
| 65 | { |
| 66 | clrio_8(SYSCTL_PORTB, PORTB_BEEP_ENABLE); |
| 67 | } |