blob: 27e25bb78c9782a5ba9fff5933d495eb4f200878 [file] [log] [blame]
Stas Sergeev9ab4d072008-03-03 10:53:54 +01001/*
2 * PC-Speaker driver for Linux
3 *
4 * Copyright (C) 1997-2001 David Woodhouse
5 * Copyright (C) 2001-2008 Stas Sergeev
6 */
7
8#include <linux/init.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -04009#include <linux/module.h>
Stas Sergeev9ab4d072008-03-03 10:53:54 +010010#include <linux/platform_device.h>
11#include <sound/core.h>
12#include <sound/initval.h>
13#include <sound/pcm.h>
Stas Sergeev9ab4d072008-03-03 10:53:54 +010014#include <linux/input.h>
Mariusz Kozlowski9ecaeda2008-03-18 09:03:03 +010015#include <linux/delay.h>
Takashi Iwai976412f2015-01-28 17:24:43 +010016#include <linux/bitops.h>
Stas Sergeev9ab4d072008-03-03 10:53:54 +010017#include "pcsp_input.h"
18#include "pcsp.h"
19
20MODULE_AUTHOR("Stas Sergeev <stsp@users.sourceforge.net>");
21MODULE_DESCRIPTION("PC-Speaker driver");
22MODULE_LICENSE("GPL");
23MODULE_SUPPORTED_DEVICE("{{PC-Speaker, pcsp}}");
24MODULE_ALIAS("platform:pcspkr");
25
26static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */
27static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103028static bool enable = SNDRV_DEFAULT_ENABLE1; /* Enable this card */
29static bool nopcm; /* Disable PCM capability of the driver */
Stas Sergeev9ab4d072008-03-03 10:53:54 +010030
31module_param(index, int, 0444);
32MODULE_PARM_DESC(index, "Index value for pcsp soundcard.");
33module_param(id, charp, 0444);
34MODULE_PARM_DESC(id, "ID string for pcsp soundcard.");
35module_param(enable, bool, 0444);
Stas Sergeev52337312008-03-06 11:01:16 +010036MODULE_PARM_DESC(enable, "Enable PC-Speaker sound.");
Stas Sergeevbcc2c6b2009-11-01 11:13:19 +010037module_param(nopcm, bool, 0444);
38MODULE_PARM_DESC(nopcm, "Disable PC-Speaker PCM sound. Only beeps remain.");
Stas Sergeev9ab4d072008-03-03 10:53:54 +010039
40struct snd_pcsp pcsp_chip;
41
Bill Pembertonfbbb01a2012-12-06 12:35:27 -050042static int snd_pcsp_create(struct snd_card *card)
Stas Sergeev9ab4d072008-03-03 10:53:54 +010043{
44 static struct snd_device_ops ops = { };
Thomas Gleixner447fbbd2015-04-14 21:08:30 +000045 unsigned int resolution = hrtimer_resolution;
46 int err, div, min_div, order;
Takashi Iwai75415df2013-10-29 15:15:20 +010047
Stas Sergeevbcc2c6b2009-11-01 11:13:19 +010048 if (!nopcm) {
Thomas Gleixner447fbbd2015-04-14 21:08:30 +000049 if (resolution > PCSP_MAX_PERIOD_NS) {
Stas Sergeevbcc2c6b2009-11-01 11:13:19 +010050 printk(KERN_ERR "PCSP: Timer resolution is not sufficient "
Thomas Gleixnerc78c8812015-05-12 09:14:51 +020051 "(%unS)\n", resolution);
Stas Sergeevbcc2c6b2009-11-01 11:13:19 +010052 printk(KERN_ERR "PCSP: Make sure you have HPET and ACPI "
53 "enabled.\n");
54 printk(KERN_ERR "PCSP: Turned into nopcm mode.\n");
55 nopcm = 1;
56 }
Stas Sergeev9ab4d072008-03-03 10:53:54 +010057 }
58
Thomas Gleixner447fbbd2015-04-14 21:08:30 +000059 if (loops_per_jiffy >= PCSP_MIN_LPJ && resolution <= PCSP_MIN_PERIOD_NS)
Stas Sergeev9ab4d072008-03-03 10:53:54 +010060 min_div = MIN_DIV;
61 else
62 min_div = MAX_DIV;
63#if PCSP_DEBUG
Thomas Gleixnerc78c8812015-05-12 09:14:51 +020064 printk(KERN_DEBUG "PCSP: lpj=%li, min_div=%i, res=%u\n",
Thomas Gleixner447fbbd2015-04-14 21:08:30 +000065 loops_per_jiffy, min_div, resolution);
Stas Sergeev9ab4d072008-03-03 10:53:54 +010066#endif
67
68 div = MAX_DIV / min_div;
69 order = fls(div) - 1;
70
71 pcsp_chip.max_treble = min(order, PCSP_MAX_TREBLE);
72 pcsp_chip.treble = min(pcsp_chip.max_treble, PCSP_DEFAULT_TREBLE);
73 pcsp_chip.playback_ptr = 0;
74 pcsp_chip.period_ptr = 0;
75 atomic_set(&pcsp_chip.timer_active, 0);
76 pcsp_chip.enable = 1;
77 pcsp_chip.pcspkr = 1;
78
79 spin_lock_init(&pcsp_chip.substream_lock);
80
81 pcsp_chip.card = card;
82 pcsp_chip.port = 0x61;
83 pcsp_chip.irq = -1;
84 pcsp_chip.dma = -1;
85
86 /* Register device */
87 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, &pcsp_chip, &ops);
88 if (err < 0)
89 return err;
90
91 return 0;
92}
93
Bill Pembertonfbbb01a2012-12-06 12:35:27 -050094static int snd_card_pcsp_probe(int devnum, struct device *dev)
Stas Sergeev9ab4d072008-03-03 10:53:54 +010095{
96 struct snd_card *card;
97 int err;
98
99 if (devnum != 0)
100 return -EINVAL;
101
102 hrtimer_init(&pcsp_chip.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100103 pcsp_chip.timer.function = pcsp_do_timer;
104
Takashi Iwai5872f3f2014-01-29 12:59:08 +0100105 err = snd_card_new(dev, index, id, THIS_MODULE, 0, &card);
Takashi Iwaibd7dd772008-12-28 16:45:02 +0100106 if (err < 0)
107 return err;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100108
109 err = snd_pcsp_create(card);
110 if (err < 0) {
111 snd_card_free(card);
112 return err;
113 }
Stas Sergeevbcc2c6b2009-11-01 11:13:19 +0100114 if (!nopcm) {
115 err = snd_pcsp_new_pcm(&pcsp_chip);
116 if (err < 0) {
117 snd_card_free(card);
118 return err;
119 }
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100120 }
Stas Sergeevbcc2c6b2009-11-01 11:13:19 +0100121 err = snd_pcsp_new_mixer(&pcsp_chip, nopcm);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100122 if (err < 0) {
123 snd_card_free(card);
124 return err;
125 }
126
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100127 strcpy(card->driver, "PC-Speaker");
128 strcpy(card->shortname, "pcsp");
129 sprintf(card->longname, "Internal PC-Speaker at port 0x%x",
130 pcsp_chip.port);
131
132 err = snd_card_register(card);
133 if (err < 0) {
134 snd_card_free(card);
135 return err;
136 }
137
138 return 0;
139}
140
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500141static int alsa_card_pcsp_init(struct device *dev)
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100142{
Stas Sergeev52337312008-03-06 11:01:16 +0100143 int err;
144
145 err = snd_card_pcsp_probe(0, dev);
146 if (err) {
147 printk(KERN_ERR "PC-Speaker initialization failed.\n");
148 return err;
149 }
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100150
151#ifdef CONFIG_DEBUG_PAGEALLOC
152 /* Well, CONFIG_DEBUG_PAGEALLOC makes the sound horrible. Lets alert */
Stas Sergeevefd89d92008-04-23 17:16:38 +0200153 printk(KERN_WARNING "PCSP: CONFIG_DEBUG_PAGEALLOC is enabled, "
154 "which may make the sound noisy.\n");
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100155#endif
156
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100157 return 0;
158}
159
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500160static void alsa_card_pcsp_exit(struct snd_pcsp *chip)
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100161{
162 snd_card_free(chip->card);
163}
164
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500165static int pcsp_probe(struct platform_device *dev)
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100166{
167 int err;
Stas Sergeev52337312008-03-06 11:01:16 +0100168
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100169 err = pcspkr_input_init(&pcsp_chip.input_dev, &dev->dev);
170 if (err < 0)
171 return err;
172
173 err = alsa_card_pcsp_init(&dev->dev);
174 if (err < 0) {
175 pcspkr_input_remove(pcsp_chip.input_dev);
176 return err;
177 }
178
179 platform_set_drvdata(dev, &pcsp_chip);
180 return 0;
181}
182
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500183static int pcsp_remove(struct platform_device *dev)
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100184{
185 struct snd_pcsp *chip = platform_get_drvdata(dev);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100186 pcspkr_input_remove(chip->input_dev);
Takashi Iwai6408eac2013-11-14 15:45:12 +0100187 alsa_card_pcsp_exit(chip);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100188 return 0;
189}
190
191static void pcsp_stop_beep(struct snd_pcsp *chip)
192{
Takashi Iwai96c7d472008-08-11 10:18:39 +0200193 pcsp_sync_stop(chip);
194 pcspkr_stop_sound();
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100195}
196
Takashi Iwaid34e4e02012-08-09 15:47:15 +0200197#ifdef CONFIG_PM_SLEEP
Takashi Iwai284e7ca2012-07-02 11:22:40 +0200198static int pcsp_suspend(struct device *dev)
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100199{
Takashi Iwai284e7ca2012-07-02 11:22:40 +0200200 struct snd_pcsp *chip = dev_get_drvdata(dev);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100201 pcsp_stop_beep(chip);
202 snd_pcm_suspend_all(chip->pcm);
203 return 0;
204}
Takashi Iwai284e7ca2012-07-02 11:22:40 +0200205
206static SIMPLE_DEV_PM_OPS(pcsp_pm, pcsp_suspend, NULL);
207#define PCSP_PM_OPS &pcsp_pm
Johann Felix Soden983e0972008-05-02 09:54:31 +0200208#else
Takashi Iwai284e7ca2012-07-02 11:22:40 +0200209#define PCSP_PM_OPS NULL
Takashi Iwaid34e4e02012-08-09 15:47:15 +0200210#endif /* CONFIG_PM_SLEEP */
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100211
212static void pcsp_shutdown(struct platform_device *dev)
213{
214 struct snd_pcsp *chip = platform_get_drvdata(dev);
215 pcsp_stop_beep(chip);
216}
217
218static struct platform_driver pcsp_platform_driver = {
219 .driver = {
220 .name = "pcspkr",
Takashi Iwai284e7ca2012-07-02 11:22:40 +0200221 .pm = PCSP_PM_OPS,
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100222 },
223 .probe = pcsp_probe,
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500224 .remove = pcsp_remove,
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100225 .shutdown = pcsp_shutdown,
226};
227
228static int __init pcsp_init(void)
229{
Stas Sergeev52337312008-03-06 11:01:16 +0100230 if (!enable)
231 return -ENODEV;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100232 return platform_driver_register(&pcsp_platform_driver);
233}
234
235static void __exit pcsp_exit(void)
236{
237 platform_driver_unregister(&pcsp_platform_driver);
238}
239
240module_init(pcsp_init);
241module_exit(pcsp_exit);