blob: 674a2cfc3c0edc27c65a239572b1bb569955cd46 [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>
Ralf Baechle16ba9b02011-06-01 19:05:02 +010017#include <linux/i8253.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/input.h>
Dmitry Torokhov59317742005-12-21 00:52:22 -050019#include <linux/platform_device.h>
Arnd Bergmann08604bd2009-06-16 15:31:12 -070020#include <linux/timex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/io.h>
22
23MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
24MODULE_DESCRIPTION("PC Speaker beeper driver");
25MODULE_LICENSE("GPL");
Kay Sievers43cc71e2007-08-18 04:40:39 +020026MODULE_ALIAS("platform:pcspkr");
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static int pcspkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
29{
30 unsigned int count = 0;
31 unsigned long flags;
32
33 if (type != EV_SND)
34 return -1;
35
36 switch (code) {
37 case SND_BELL: if (value) value = 1000;
38 case SND_TONE: break;
39 default: return -1;
40 }
41
42 if (value > 20 && value < 32767)
43 count = PIT_TICK_RATE / value;
44
Thomas Gleixnerced918e2010-02-17 16:47:10 +000045 raw_spin_lock_irqsave(&i8253_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 if (count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 /* set command for counter 2, 2 byte write */
49 outb_p(0xB6, 0x43);
50 /* select desired HZ */
51 outb_p(count & 0xff, 0x42);
52 outb((count >> 8) & 0xff, 0x42);
Zoltan Devai59bdb432008-11-12 23:05:40 -050053 /* enable counter 2 */
54 outb_p(inb_p(0x61) | 3, 0x61);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 } else {
56 /* disable counter 2 */
57 outb(inb_p(0x61) & 0xFC, 0x61);
58 }
59
Thomas Gleixnerced918e2010-02-17 16:47:10 +000060 raw_spin_unlock_irqrestore(&i8253_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 return 0;
63}
64
Bill Pemberton5298cc42012-11-23 21:38:25 -080065static int pcspkr_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Dmitry Torokhov59317742005-12-21 00:52:22 -050067 struct input_dev *pcspkr_dev;
68 int err;
69
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050070 pcspkr_dev = input_allocate_device();
71 if (!pcspkr_dev)
72 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050074 pcspkr_dev->name = "PC Speaker";
Dmitry Torokhov1259f2b2005-10-31 01:30:05 -050075 pcspkr_dev->phys = "isa0061/input0";
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050076 pcspkr_dev->id.bustype = BUS_ISA;
77 pcspkr_dev->id.vendor = 0x001f;
78 pcspkr_dev->id.product = 0x0001;
79 pcspkr_dev->id.version = 0x0100;
Dmitry Torokhov293e6392007-04-12 01:35:32 -040080 pcspkr_dev->dev.parent = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Jiri Slaby7b19ada2007-10-18 23:40:32 -070082 pcspkr_dev->evbit[0] = BIT_MASK(EV_SND);
83 pcspkr_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
Dmitry Torokhov76b7cddf2005-09-15 02:01:51 -050084 pcspkr_dev->event = pcspkr_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Dmitry Torokhov59317742005-12-21 00:52:22 -050086 err = input_register_device(pcspkr_dev);
87 if (err) {
88 input_free_device(pcspkr_dev);
89 return err;
90 }
91
92 platform_set_drvdata(dev, pcspkr_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 return 0;
95}
96
Bill Pembertone2619cf2012-11-23 21:50:47 -080097static int pcspkr_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Dmitry Torokhov59317742005-12-21 00:52:22 -050099 struct input_dev *pcspkr_dev = platform_get_drvdata(dev);
100
101 input_unregister_device(pcspkr_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 /* turn off the speaker */
103 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
Dmitry Torokhov59317742005-12-21 00:52:22 -0500104
105 return 0;
106}
107
Frans Pop35db7152009-07-12 20:51:32 -0700108static int pcspkr_suspend(struct device *dev)
Dmitry Torokhov59317742005-12-21 00:52:22 -0500109{
110 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
111
112 return 0;
113}
114
115static void pcspkr_shutdown(struct platform_device *dev)
116{
117 /* turn off the speaker */
118 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
119}
120
Alexey Dobriyan47145212009-12-14 18:00:08 -0800121static const struct dev_pm_ops pcspkr_pm_ops = {
Frans Pop35db7152009-07-12 20:51:32 -0700122 .suspend = pcspkr_suspend,
123};
124
Dmitry Torokhov59317742005-12-21 00:52:22 -0500125static struct platform_driver pcspkr_platform_driver = {
126 .driver = {
127 .name = "pcspkr",
128 .owner = THIS_MODULE,
Frans Pop35db7152009-07-12 20:51:32 -0700129 .pm = &pcspkr_pm_ops,
Dmitry Torokhov59317742005-12-21 00:52:22 -0500130 },
131 .probe = pcspkr_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800132 .remove = pcspkr_remove,
Dmitry Torokhov59317742005-12-21 00:52:22 -0500133 .shutdown = pcspkr_shutdown,
134};
JJ Ding840a7462011-11-29 11:08:40 -0800135module_platform_driver(pcspkr_platform_driver);
Dmitry Torokhov59317742005-12-21 00:52:22 -0500136