Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 1 | /* |
2 | * (C) Copyright 2002 | ||||
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 3 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 6 | */ |
7 | |||||
8 | #include <common.h> | ||||
9 | #include <asm/io.h> | ||||
10 | #include <asm/i8254.h> | ||||
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 11 | |
Bin Meng | cb68a1a | 2015-10-22 19:13:28 -0700 | [diff] [blame^] | 12 | #define TIMER2_VALUE 0x0a8e /* 440Hz */ |
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 13 | |
Simon Glass | 3e8b605 | 2013-04-17 16:13:39 +0000 | [diff] [blame] | 14 | int pcat_timer_init(void) |
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 15 | { |
Simon Glass | 3e8b605 | 2013-04-17 16:13:39 +0000 | [diff] [blame] | 16 | /* |
Bin Meng | cb68a1a | 2015-10-22 19:13:28 -0700 | [diff] [blame^] | 17 | * Initialize counter 2, used to drive the speaker. |
18 | * To start a beep, set both bit0 and bit1 of port 0x61. | ||||
19 | * To stop it, clear both bit0 and bit1 of port 0x61. | ||||
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 20 | */ |
Graeme Russ | 883c603 | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 21 | outb(PIT_CMD_CTR2 | PIT_CMD_BOTH | PIT_CMD_MODE3, |
Bin Meng | cb68a1a | 2015-10-22 19:13:28 -0700 | [diff] [blame^] | 22 | PIT_BASE + PIT_COMMAND); |
Graeme Russ | 883c603 | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 23 | outb(TIMER2_VALUE & 0xff, PIT_BASE + PIT_T2); |
24 | outb(TIMER2_VALUE >> 8, PIT_BASE + PIT_T2); | ||||
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 25 | |
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 26 | return 0; |
27 | } |