blob: 68ac97f101b0369a6f7a358829a3d6fd25dc4910 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PC Speaker beeper driver for Linux
3 *
4 * Copyright (c) 2002 Vojtech Pavlik
5 * Copyright (c) 1992 Orest Zborowski
6 *
7 */
8
9/*
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation
13 */
14
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/init.h>
18#include <linux/input.h>
19#include <asm/8253pit.h>
20#include <asm/io.h>
21
22MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
23MODULE_DESCRIPTION("PC Speaker beeper driver");
24MODULE_LICENSE("GPL");
25
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050026static struct input_dev *pcspkr_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28static DEFINE_SPINLOCK(i8253_beep_lock);
29
30static int pcspkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
31{
32 unsigned int count = 0;
33 unsigned long flags;
34
35 if (type != EV_SND)
36 return -1;
37
38 switch (code) {
39 case SND_BELL: if (value) value = 1000;
40 case SND_TONE: break;
41 default: return -1;
42 }
43
44 if (value > 20 && value < 32767)
45 count = PIT_TICK_RATE / value;
46
47 spin_lock_irqsave(&i8253_beep_lock, flags);
48
49 if (count) {
50 /* enable counter 2 */
51 outb_p(inb_p(0x61) | 3, 0x61);
52 /* set command for counter 2, 2 byte write */
53 outb_p(0xB6, 0x43);
54 /* select desired HZ */
55 outb_p(count & 0xff, 0x42);
56 outb((count >> 8) & 0xff, 0x42);
57 } else {
58 /* disable counter 2 */
59 outb(inb_p(0x61) & 0xFC, 0x61);
60 }
61
62 spin_unlock_irqrestore(&i8253_beep_lock, flags);
63
64 return 0;
65}
66
67static int __init pcspkr_init(void)
68{
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050069 pcspkr_dev = input_allocate_device();
70 if (!pcspkr_dev)
71 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050073 pcspkr_dev->name = "PC Speaker";
Dmitry Torokhov1259f2b2005-10-31 01:30:05 -050074 pcspkr_dev->phys = "isa0061/input0";
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050075 pcspkr_dev->id.bustype = BUS_ISA;
76 pcspkr_dev->id.vendor = 0x001f;
77 pcspkr_dev->id.product = 0x0001;
78 pcspkr_dev->id.version = 0x0100;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050080 pcspkr_dev->evbit[0] = BIT(EV_SND);
81 pcspkr_dev->sndbit[0] = BIT(SND_BELL) | BIT(SND_TONE);
82 pcspkr_dev->event = pcspkr_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050084 input_register_device(pcspkr_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 return 0;
87}
88
89static void __exit pcspkr_exit(void)
90{
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050091 input_unregister_device(pcspkr_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 /* turn off the speaker */
93 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
94}
95
96module_init(pcspkr_init);
97module_exit(pcspkr_exit);