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/init.h>
18 #include <linux/input.h>
19 #include <linux/platform_device.h>
20 #include <asm/8253pit.h>
23 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
24 MODULE_DESCRIPTION("PC Speaker beeper driver");
25 MODULE_LICENSE("GPL");
27 static struct platform_device
*pcspkr_platform_device
;
28 static DEFINE_SPINLOCK(i8253_beep_lock
);
30 static int pcspkr_event(struct input_dev
*dev
, unsigned int type
, unsigned int code
, int value
)
32 unsigned int count
= 0;
39 case SND_BELL
: if (value
) value
= 1000;
44 if (value
> 20 && value
< 32767)
45 count
= PIT_TICK_RATE
/ value
;
47 spin_lock_irqsave(&i8253_beep_lock
, flags
);
50 /* enable counter 2 */
51 outb_p(inb_p(0x61) | 3, 0x61);
52 /* set command for counter 2, 2 byte write */
54 /* select desired HZ */
55 outb_p(count
& 0xff, 0x42);
56 outb((count
>> 8) & 0xff, 0x42);
58 /* disable counter 2 */
59 outb(inb_p(0x61) & 0xFC, 0x61);
62 spin_unlock_irqrestore(&i8253_beep_lock
, flags
);
67 static int __devinit
pcspkr_probe(struct platform_device
*dev
)
69 struct input_dev
*pcspkr_dev
;
72 pcspkr_dev
= input_allocate_device();
76 pcspkr_dev
->name
= "PC Speaker";
77 pcspkr_dev
->phys
= "isa0061/input0";
78 pcspkr_dev
->id
.bustype
= BUS_ISA
;
79 pcspkr_dev
->id
.vendor
= 0x001f;
80 pcspkr_dev
->id
.product
= 0x0001;
81 pcspkr_dev
->id
.version
= 0x0100;
82 pcspkr_dev
->cdev
.dev
= &dev
->dev
;
84 pcspkr_dev
->evbit
[0] = BIT(EV_SND
);
85 pcspkr_dev
->sndbit
[0] = BIT(SND_BELL
) | BIT(SND_TONE
);
86 pcspkr_dev
->event
= pcspkr_event
;
88 err
= input_register_device(pcspkr_dev
);
90 input_free_device(pcspkr_dev
);
94 platform_set_drvdata(dev
, pcspkr_dev
);
99 static int __devexit
pcspkr_remove(struct platform_device
*dev
)
101 struct input_dev
*pcspkr_dev
= platform_get_drvdata(dev
);
103 input_unregister_device(pcspkr_dev
);
104 platform_set_drvdata(dev
, NULL
);
105 /* turn off the speaker */
106 pcspkr_event(NULL
, EV_SND
, SND_BELL
, 0);
111 static int pcspkr_suspend(struct platform_device
*dev
, pm_message_t state
)
113 pcspkr_event(NULL
, EV_SND
, SND_BELL
, 0);
118 static void pcspkr_shutdown(struct platform_device
*dev
)
120 /* turn off the speaker */
121 pcspkr_event(NULL
, EV_SND
, SND_BELL
, 0);
124 static struct platform_driver pcspkr_platform_driver
= {
127 .owner
= THIS_MODULE
,
129 .probe
= pcspkr_probe
,
130 .remove
= __devexit_p(pcspkr_remove
),
131 .suspend
= pcspkr_suspend
,
132 .shutdown
= pcspkr_shutdown
,
136 static int __init
pcspkr_init(void)
140 err
= platform_driver_register(&pcspkr_platform_driver
);
144 pcspkr_platform_device
= platform_device_alloc("pcspkr", -1);
145 if (!pcspkr_platform_device
) {
147 goto err_unregister_driver
;
150 err
= platform_device_add(pcspkr_platform_device
);
152 goto err_free_device
;
157 platform_device_put(pcspkr_platform_device
);
158 err_unregister_driver
:
159 platform_driver_unregister(&pcspkr_platform_driver
);
164 static void __exit
pcspkr_exit(void)
166 platform_device_unregister(pcspkr_platform_device
);
167 platform_driver_unregister(&pcspkr_platform_driver
);
170 module_init(pcspkr_init
);
171 module_exit(pcspkr_exit
);