2 * PC Speaker beeper driver for Linux
4 * Copyright (c) 2002 Vojtech Pavlik
5 * Copyright (c) 1992 Orest Zborowski
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
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/i8253.h>
18 #include <linux/input.h>
19 #include <linux/platform_device.h>
20 #include <linux/timex.h>
24 MODULE_DESCRIPTION("PC Speaker beeper driver");
25 MODULE_LICENSE("GPL");
26 MODULE_ALIAS("platform:pcspkr");
28 static int pcspkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
30 unsigned int count = 0;
37 case SND_BELL: if (value) value = 1000;
42 if (value > 20 && value < 32767)
43 count = PIT_TICK_RATE / value;
45 raw_spin_lock_irqsave(&i8253_lock, flags);
48 /* set command for counter 2, 2 byte write */
50 /* select desired HZ */
51 outb_p(count & 0xff, 0x42);
52 outb((count >> 8) & 0xff, 0x42);
53 /* enable counter 2 */
54 outb_p(inb_p(0x61) | 3, 0x61);
56 /* disable counter 2 */
57 outb(inb_p(0x61) & 0xFC, 0x61);
60 raw_spin_unlock_irqrestore(&i8253_lock, flags);
65 static int pcspkr_probe(struct platform_device *dev)
67 struct input_dev *pcspkr_dev;
70 pcspkr_dev = input_allocate_device();
74 pcspkr_dev->name = "PC Speaker";
75 pcspkr_dev->phys = "isa0061/input0";
76 pcspkr_dev->id.bustype = BUS_ISA;
77 pcspkr_dev->id.vendor = 0x001f;
78 pcspkr_dev->id.product = 0x0001;
79 pcspkr_dev->id.version = 0x0100;
80 pcspkr_dev->dev.parent = &dev->dev;
82 pcspkr_dev->evbit[0] = BIT_MASK(EV_SND);
83 pcspkr_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
84 pcspkr_dev->event = pcspkr_event;
86 err = input_register_device(pcspkr_dev);
88 input_free_device(pcspkr_dev);
92 platform_set_drvdata(dev, pcspkr_dev);
97 static int pcspkr_remove(struct platform_device *dev)
99 struct input_dev *pcspkr_dev = platform_get_drvdata(dev);
101 input_unregister_device(pcspkr_dev);
102 /* turn off the speaker */
103 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
108 static int pcspkr_suspend(struct device *dev)
110 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
115 static void pcspkr_shutdown(struct platform_device *dev)
117 /* turn off the speaker */
118 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
121 static const struct dev_pm_ops pcspkr_pm_ops = {
122 .suspend = pcspkr_suspend,
125 static struct platform_driver pcspkr_platform_driver = {
128 .pm = &pcspkr_pm_ops,
130 .probe = pcspkr_probe,
131 .remove = pcspkr_remove,
132 .shutdown = pcspkr_shutdown,
134 module_platform_driver(pcspkr_platform_driver);