blob: 56ddba21de843324051eed7809f2aba3c42f0292 [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>
Munir Contractor9e04b792017-08-14 22:02:08 -070021#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
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
Munir Contractor9e04b792017-08-14 22:02:08 -070028static int pcspkr_event(struct input_dev *dev, unsigned int type,
29 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 unsigned int count = 0;
32 unsigned long flags;
33
34 if (type != EV_SND)
Munir Contractor9e04b792017-08-14 22:02:08 -070035 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 switch (code) {
Munir Contractor9e04b792017-08-14 22:02:08 -070038 case SND_BELL:
39 if (value)
40 value = 1000;
41 case SND_TONE:
42 break;
43 default:
44 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 }
46
47 if (value > 20 && value < 32767)
48 count = PIT_TICK_RATE / value;
49
Thomas Gleixnerced918e2010-02-17 16:47:10 +000050 raw_spin_lock_irqsave(&i8253_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 if (count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 /* set command for counter 2, 2 byte write */
54 outb_p(0xB6, 0x43);
55 /* select desired HZ */
56 outb_p(count & 0xff, 0x42);
57 outb((count >> 8) & 0xff, 0x42);
Zoltan Devai59bdb432008-11-12 23:05:40 -050058 /* enable counter 2 */
59 outb_p(inb_p(0x61) | 3, 0x61);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 } else {
61 /* disable counter 2 */
62 outb(inb_p(0x61) & 0xFC, 0x61);
63 }
64
Thomas Gleixnerced918e2010-02-17 16:47:10 +000065 raw_spin_unlock_irqrestore(&i8253_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 return 0;
68}
69
Bill Pemberton5298cc42012-11-23 21:38:25 -080070static int pcspkr_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Dmitry Torokhov59317742005-12-21 00:52:22 -050072 struct input_dev *pcspkr_dev;
73 int err;
74
Dmitry Torokhov76b7cdd2005-09-15 02:01:51 -050075 pcspkr_dev = input_allocate_device();
76 if (!pcspkr_dev)
77 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Dmitry Torokhov76b7cdd2005-09-15 02:01:51 -050079 pcspkr_dev->name = "PC Speaker";
Dmitry Torokhov1259f2b2005-10-31 01:30:05 -050080 pcspkr_dev->phys = "isa0061/input0";
Dmitry Torokhov76b7cdd2005-09-15 02:01:51 -050081 pcspkr_dev->id.bustype = BUS_ISA;
82 pcspkr_dev->id.vendor = 0x001f;
83 pcspkr_dev->id.product = 0x0001;
84 pcspkr_dev->id.version = 0x0100;
Dmitry Torokhov293e6392007-04-12 01:35:32 -040085 pcspkr_dev->dev.parent = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Jiri Slaby7b19ada2007-10-18 23:40:32 -070087 pcspkr_dev->evbit[0] = BIT_MASK(EV_SND);
88 pcspkr_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
Dmitry Torokhov76b7cdd2005-09-15 02:01:51 -050089 pcspkr_dev->event = pcspkr_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Dmitry Torokhov59317742005-12-21 00:52:22 -050091 err = input_register_device(pcspkr_dev);
92 if (err) {
93 input_free_device(pcspkr_dev);
94 return err;
95 }
96
97 platform_set_drvdata(dev, pcspkr_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 return 0;
100}
101
Bill Pembertone2619cf2012-11-23 21:50:47 -0800102static int pcspkr_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Dmitry Torokhov59317742005-12-21 00:52:22 -0500104 struct input_dev *pcspkr_dev = platform_get_drvdata(dev);
105
106 input_unregister_device(pcspkr_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 /* turn off the speaker */
108 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
Dmitry Torokhov59317742005-12-21 00:52:22 -0500109
110 return 0;
111}
112
Frans Pop35db7152009-07-12 20:51:32 -0700113static int pcspkr_suspend(struct device *dev)
Dmitry Torokhov59317742005-12-21 00:52:22 -0500114{
115 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
116
117 return 0;
118}
119
120static void pcspkr_shutdown(struct platform_device *dev)
121{
122 /* turn off the speaker */
123 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
124}
125
Alexey Dobriyan47145212009-12-14 18:00:08 -0800126static const struct dev_pm_ops pcspkr_pm_ops = {
Frans Pop35db7152009-07-12 20:51:32 -0700127 .suspend = pcspkr_suspend,
128};
129
Dmitry Torokhov59317742005-12-21 00:52:22 -0500130static struct platform_driver pcspkr_platform_driver = {
131 .driver = {
132 .name = "pcspkr",
Frans Pop35db7152009-07-12 20:51:32 -0700133 .pm = &pcspkr_pm_ops,
Dmitry Torokhov59317742005-12-21 00:52:22 -0500134 },
135 .probe = pcspkr_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800136 .remove = pcspkr_remove,
Dmitry Torokhov59317742005-12-21 00:52:22 -0500137 .shutdown = pcspkr_shutdown,
138};
JJ Ding840a7462011-11-29 11:08:40 -0800139module_platform_driver(pcspkr_platform_driver);
Dmitry Torokhov59317742005-12-21 00:52:22 -0500140