Merge tag 'mm-hotfixes-stable-2025-07-11-16-16' of git://git.kernel.org/pub/scm/linux...
[linux-block.git] / drivers / input / misc / pcspkr.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * PC Speaker beeper driver for Linux
4 *
5 * Copyright (c) 2002 Vojtech Pavlik
6 * Copyright (c) 1992 Orest Zborowski
1da177e4
LT
7 */
8
1da177e4
LT
9
10#include <linux/kernel.h>
11#include <linux/module.h>
16ba9b06 12#include <linux/i8253.h>
1da177e4 13#include <linux/input.h>
59317747 14#include <linux/platform_device.h>
08604bd9 15#include <linux/timex.h>
9e04b79c 16#include <linux/io.h>
1da177e4
LT
17
18MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
19MODULE_DESCRIPTION("PC Speaker beeper driver");
20MODULE_LICENSE("GPL");
43cc71ee 21MODULE_ALIAS("platform:pcspkr");
1da177e4 22
9e04b79c
MC
23static int pcspkr_event(struct input_dev *dev, unsigned int type,
24 unsigned int code, int value)
1da177e4
LT
25{
26 unsigned int count = 0;
27 unsigned long flags;
28
29 if (type != EV_SND)
9e04b79c 30 return -EINVAL;
1da177e4
LT
31
32 switch (code) {
9e04b79c
MC
33 case SND_BELL:
34 if (value)
35 value = 1000;
e9a710bc 36 break;
9e04b79c
MC
37 case SND_TONE:
38 break;
39 default:
40 return -EINVAL;
1da177e4
LT
41 }
42
43 if (value > 20 && value < 32767)
44 count = PIT_TICK_RATE / value;
45
ced918eb 46 raw_spin_lock_irqsave(&i8253_lock, flags);
1da177e4
LT
47
48 if (count) {
1da177e4
LT
49 /* set command for counter 2, 2 byte write */
50 outb_p(0xB6, 0x43);
51 /* select desired HZ */
52 outb_p(count & 0xff, 0x42);
53 outb((count >> 8) & 0xff, 0x42);
59bdb437
ZD
54 /* enable counter 2 */
55 outb_p(inb_p(0x61) | 3, 0x61);
1da177e4
LT
56 } else {
57 /* disable counter 2 */
58 outb(inb_p(0x61) & 0xFC, 0x61);
59 }
60
ced918eb 61 raw_spin_unlock_irqrestore(&i8253_lock, flags);
1da177e4
LT
62
63 return 0;
64}
65
5298cc4c 66static int pcspkr_probe(struct platform_device *dev)
1da177e4 67{
59317747
DT
68 struct input_dev *pcspkr_dev;
69 int err;
70
76b7cddf
DT
71 pcspkr_dev = input_allocate_device();
72 if (!pcspkr_dev)
73 return -ENOMEM;
1da177e4 74
76b7cddf 75 pcspkr_dev->name = "PC Speaker";
1259f2b3 76 pcspkr_dev->phys = "isa0061/input0";
76b7cddf
DT
77 pcspkr_dev->id.bustype = BUS_ISA;
78 pcspkr_dev->id.vendor = 0x001f;
79 pcspkr_dev->id.product = 0x0001;
80 pcspkr_dev->id.version = 0x0100;
293e6392 81 pcspkr_dev->dev.parent = &dev->dev;
1da177e4 82
7b19ada2
JS
83 pcspkr_dev->evbit[0] = BIT_MASK(EV_SND);
84 pcspkr_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
76b7cddf 85 pcspkr_dev->event = pcspkr_event;
1da177e4 86
59317747
DT
87 err = input_register_device(pcspkr_dev);
88 if (err) {
89 input_free_device(pcspkr_dev);
90 return err;
91 }
92
93 platform_set_drvdata(dev, pcspkr_dev);
1da177e4
LT
94
95 return 0;
96}
97
5cd345ec 98static void pcspkr_remove(struct platform_device *dev)
59317747
DT
99{
100 struct input_dev *pcspkr_dev = platform_get_drvdata(dev);
101
102 input_unregister_device(pcspkr_dev);
59317747
DT
103 /* turn off the speaker */
104 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
59317747
DT
105}
106
35db715b 107static int pcspkr_suspend(struct device *dev)
59317747
DT
108{
109 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
110
111 return 0;
112}
113
114static void pcspkr_shutdown(struct platform_device *dev)
1da177e4 115{
1da177e4
LT
116 /* turn off the speaker */
117 pcspkr_event(NULL, EV_SND, SND_BELL, 0);
118}
119
47145210 120static const struct dev_pm_ops pcspkr_pm_ops = {
35db715b
FP
121 .suspend = pcspkr_suspend,
122};
123
59317747
DT
124static struct platform_driver pcspkr_platform_driver = {
125 .driver = {
126 .name = "pcspkr",
35db715b 127 .pm = &pcspkr_pm_ops,
59317747
DT
128 },
129 .probe = pcspkr_probe,
2c19d015 130 .remove = pcspkr_remove,
59317747
DT
131 .shutdown = pcspkr_shutdown,
132};
840a746b 133module_platform_driver(pcspkr_platform_driver);
59317747 134