xref: /openbmc/linux/sound/drivers/pcsp/pcsp.c (revision 09c434b8a0047c69e48499de0107de312901e798)
1*09c434b8SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
29ab4d072SStas Sergeev /*
39ab4d072SStas Sergeev  * PC-Speaker driver for Linux
49ab4d072SStas Sergeev  *
59ab4d072SStas Sergeev  * Copyright (C) 1997-2001  David Woodhouse
69ab4d072SStas Sergeev  * Copyright (C) 2001-2008  Stas Sergeev
79ab4d072SStas Sergeev  */
89ab4d072SStas Sergeev 
99ab4d072SStas Sergeev #include <linux/init.h>
1065a77217SPaul Gortmaker #include <linux/module.h>
119ab4d072SStas Sergeev #include <linux/platform_device.h>
129ab4d072SStas Sergeev #include <sound/core.h>
139ab4d072SStas Sergeev #include <sound/initval.h>
149ab4d072SStas Sergeev #include <sound/pcm.h>
159ab4d072SStas Sergeev #include <linux/input.h>
169ecaedaeSMariusz Kozlowski #include <linux/delay.h>
17976412fbSTakashi Iwai #include <linux/bitops.h>
18505f6d22SJoonsoo Kim #include <linux/mm.h>
199ab4d072SStas Sergeev #include "pcsp_input.h"
209ab4d072SStas Sergeev #include "pcsp.h"
219ab4d072SStas Sergeev 
229ab4d072SStas Sergeev MODULE_AUTHOR("Stas Sergeev <stsp@users.sourceforge.net>");
239ab4d072SStas Sergeev MODULE_DESCRIPTION("PC-Speaker driver");
249ab4d072SStas Sergeev MODULE_LICENSE("GPL");
259ab4d072SStas Sergeev MODULE_SUPPORTED_DEVICE("{{PC-Speaker, pcsp}}");
269ab4d072SStas Sergeev MODULE_ALIAS("platform:pcspkr");
279ab4d072SStas Sergeev 
289ab4d072SStas Sergeev static int index = SNDRV_DEFAULT_IDX1;	/* Index 0-MAX */
299ab4d072SStas Sergeev static char *id = SNDRV_DEFAULT_STR1;	/* ID for this card */
30a67ff6a5SRusty Russell static bool enable = SNDRV_DEFAULT_ENABLE1;	/* Enable this card */
31a67ff6a5SRusty Russell static bool nopcm;	/* Disable PCM capability of the driver */
329ab4d072SStas Sergeev 
339ab4d072SStas Sergeev module_param(index, int, 0444);
349ab4d072SStas Sergeev MODULE_PARM_DESC(index, "Index value for pcsp soundcard.");
359ab4d072SStas Sergeev module_param(id, charp, 0444);
369ab4d072SStas Sergeev MODULE_PARM_DESC(id, "ID string for pcsp soundcard.");
379ab4d072SStas Sergeev module_param(enable, bool, 0444);
3852337310SStas Sergeev MODULE_PARM_DESC(enable, "Enable PC-Speaker sound.");
39bcc2c6b7SStas Sergeev module_param(nopcm, bool, 0444);
40bcc2c6b7SStas Sergeev MODULE_PARM_DESC(nopcm, "Disable PC-Speaker PCM sound. Only beeps remain.");
419ab4d072SStas Sergeev 
429ab4d072SStas Sergeev struct snd_pcsp pcsp_chip;
439ab4d072SStas Sergeev 
44fbbb01a1SBill Pemberton static int snd_pcsp_create(struct snd_card *card)
459ab4d072SStas Sergeev {
469ab4d072SStas Sergeev 	static struct snd_device_ops ops = { };
47447fbbdcSThomas Gleixner 	unsigned int resolution = hrtimer_resolution;
48447fbbdcSThomas Gleixner 	int err, div, min_div, order;
4975415df8STakashi Iwai 
5075415df8STakashi Iwai 	if (!nopcm) {
51447fbbdcSThomas Gleixner 		if (resolution > PCSP_MAX_PERIOD_NS) {
529ab4d072SStas Sergeev 			printk(KERN_ERR "PCSP: Timer resolution is not sufficient "
53c78c8818SThomas Gleixner 				"(%unS)\n", resolution);
549ab4d072SStas Sergeev 			printk(KERN_ERR "PCSP: Make sure you have HPET and ACPI "
559ab4d072SStas Sergeev 				"enabled.\n");
56bcc2c6b7SStas Sergeev 			printk(KERN_ERR "PCSP: Turned into nopcm mode.\n");
57bcc2c6b7SStas Sergeev 			nopcm = 1;
58bcc2c6b7SStas Sergeev 		}
599ab4d072SStas Sergeev 	}
609ab4d072SStas Sergeev 
61447fbbdcSThomas Gleixner 	if (loops_per_jiffy >= PCSP_MIN_LPJ && resolution <= PCSP_MIN_PERIOD_NS)
629ab4d072SStas Sergeev 		min_div = MIN_DIV;
639ab4d072SStas Sergeev 	else
649ab4d072SStas Sergeev 		min_div = MAX_DIV;
659ab4d072SStas Sergeev #if PCSP_DEBUG
66c78c8818SThomas Gleixner 	printk(KERN_DEBUG "PCSP: lpj=%li, min_div=%i, res=%u\n",
67447fbbdcSThomas Gleixner 	       loops_per_jiffy, min_div, resolution);
689ab4d072SStas Sergeev #endif
699ab4d072SStas Sergeev 
709ab4d072SStas Sergeev 	div = MAX_DIV / min_div;
719ab4d072SStas Sergeev 	order = fls(div) - 1;
729ab4d072SStas Sergeev 
739ab4d072SStas Sergeev 	pcsp_chip.max_treble = min(order, PCSP_MAX_TREBLE);
749ab4d072SStas Sergeev 	pcsp_chip.treble = min(pcsp_chip.max_treble, PCSP_DEFAULT_TREBLE);
759ab4d072SStas Sergeev 	pcsp_chip.playback_ptr = 0;
769ab4d072SStas Sergeev 	pcsp_chip.period_ptr = 0;
779ab4d072SStas Sergeev 	atomic_set(&pcsp_chip.timer_active, 0);
789ab4d072SStas Sergeev 	pcsp_chip.enable = 1;
799ab4d072SStas Sergeev 	pcsp_chip.pcspkr = 1;
809ab4d072SStas Sergeev 
819ab4d072SStas Sergeev 	spin_lock_init(&pcsp_chip.substream_lock);
829ab4d072SStas Sergeev 
839ab4d072SStas Sergeev 	pcsp_chip.card = card;
849ab4d072SStas Sergeev 	pcsp_chip.port = 0x61;
859ab4d072SStas Sergeev 	pcsp_chip.irq = -1;
869ab4d072SStas Sergeev 	pcsp_chip.dma = -1;
879ab4d072SStas Sergeev 
889ab4d072SStas Sergeev 	/* Register device */
899ab4d072SStas Sergeev 	err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, &pcsp_chip, &ops);
909ab4d072SStas Sergeev 	if (err < 0)
919ab4d072SStas Sergeev 		return err;
929ab4d072SStas Sergeev 
939ab4d072SStas Sergeev 	return 0;
949ab4d072SStas Sergeev }
959ab4d072SStas Sergeev 
96fbbb01a1SBill Pemberton static int snd_card_pcsp_probe(int devnum, struct device *dev)
979ab4d072SStas Sergeev {
989ab4d072SStas Sergeev 	struct snd_card *card;
999ab4d072SStas Sergeev 	int err;
1009ab4d072SStas Sergeev 
1019ab4d072SStas Sergeev 	if (devnum != 0)
1029ab4d072SStas Sergeev 		return -EINVAL;
1039ab4d072SStas Sergeev 
1049ab4d072SStas Sergeev 	hrtimer_init(&pcsp_chip.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1059ab4d072SStas Sergeev 	pcsp_chip.timer.function = pcsp_do_timer;
1069ab4d072SStas Sergeev 
1075872f3f6STakashi Iwai 	err = snd_card_new(dev, index, id, THIS_MODULE, 0, &card);
108bd7dd77cSTakashi Iwai 	if (err < 0)
109bd7dd77cSTakashi Iwai 		return err;
1109ab4d072SStas Sergeev 
1119ab4d072SStas Sergeev 	err = snd_pcsp_create(card);
1122cded8c8SMarkus Elfring 	if (err < 0)
1132cded8c8SMarkus Elfring 		goto free_card;
1142cded8c8SMarkus Elfring 
115bcc2c6b7SStas Sergeev 	if (!nopcm) {
1169ab4d072SStas Sergeev 		err = snd_pcsp_new_pcm(&pcsp_chip);
1172cded8c8SMarkus Elfring 		if (err < 0)
1182cded8c8SMarkus Elfring 			goto free_card;
119bcc2c6b7SStas Sergeev 	}
120bcc2c6b7SStas Sergeev 	err = snd_pcsp_new_mixer(&pcsp_chip, nopcm);
1212cded8c8SMarkus Elfring 	if (err < 0)
1222cded8c8SMarkus Elfring 		goto free_card;
1239ab4d072SStas Sergeev 
1249ab4d072SStas Sergeev 	strcpy(card->driver, "PC-Speaker");
1259ab4d072SStas Sergeev 	strcpy(card->shortname, "pcsp");
1269ab4d072SStas Sergeev 	sprintf(card->longname, "Internal PC-Speaker at port 0x%x",
1279ab4d072SStas Sergeev 		pcsp_chip.port);
1289ab4d072SStas Sergeev 
1299ab4d072SStas Sergeev 	err = snd_card_register(card);
1302cded8c8SMarkus Elfring 	if (err < 0)
1312cded8c8SMarkus Elfring 		goto free_card;
1329ab4d072SStas Sergeev 
1339ab4d072SStas Sergeev 	return 0;
1342cded8c8SMarkus Elfring 
1352cded8c8SMarkus Elfring free_card:
1362cded8c8SMarkus Elfring 	snd_card_free(card);
1372cded8c8SMarkus Elfring 	return err;
1389ab4d072SStas Sergeev }
1399ab4d072SStas Sergeev 
140fbbb01a1SBill Pemberton static int alsa_card_pcsp_init(struct device *dev)
1419ab4d072SStas Sergeev {
14252337310SStas Sergeev 	int err;
14352337310SStas Sergeev 
14452337310SStas Sergeev 	err = snd_card_pcsp_probe(0, dev);
14552337310SStas Sergeev 	if (err) {
14652337310SStas Sergeev 		printk(KERN_ERR "PC-Speaker initialization failed.\n");
14752337310SStas Sergeev 		return err;
14852337310SStas Sergeev 	}
1499ab4d072SStas Sergeev 
1509ab4d072SStas Sergeev 	/* Well, CONFIG_DEBUG_PAGEALLOC makes the sound horrible. Lets alert */
151505f6d22SJoonsoo Kim 	if (debug_pagealloc_enabled()) {
152efd89d9dSStas Sergeev 		printk(KERN_WARNING "PCSP: CONFIG_DEBUG_PAGEALLOC is enabled, "
153efd89d9dSStas Sergeev 		       "which may make the sound noisy.\n");
154505f6d22SJoonsoo Kim 	}
1559ab4d072SStas Sergeev 
1569ab4d072SStas Sergeev 	return 0;
1579ab4d072SStas Sergeev }
1589ab4d072SStas Sergeev 
159fbbb01a1SBill Pemberton static void alsa_card_pcsp_exit(struct snd_pcsp *chip)
1609ab4d072SStas Sergeev {
1619ab4d072SStas Sergeev 	snd_card_free(chip->card);
1629ab4d072SStas Sergeev }
1639ab4d072SStas Sergeev 
164fbbb01a1SBill Pemberton static int pcsp_probe(struct platform_device *dev)
1659ab4d072SStas Sergeev {
1669ab4d072SStas Sergeev 	int err;
16752337310SStas Sergeev 
1689ab4d072SStas Sergeev 	err = pcspkr_input_init(&pcsp_chip.input_dev, &dev->dev);
1699ab4d072SStas Sergeev 	if (err < 0)
1709ab4d072SStas Sergeev 		return err;
1719ab4d072SStas Sergeev 
1729ab4d072SStas Sergeev 	err = alsa_card_pcsp_init(&dev->dev);
1739ab4d072SStas Sergeev 	if (err < 0) {
1749ab4d072SStas Sergeev 		pcspkr_input_remove(pcsp_chip.input_dev);
1759ab4d072SStas Sergeev 		return err;
1769ab4d072SStas Sergeev 	}
1779ab4d072SStas Sergeev 
1789ab4d072SStas Sergeev 	platform_set_drvdata(dev, &pcsp_chip);
1799ab4d072SStas Sergeev 	return 0;
1809ab4d072SStas Sergeev }
1819ab4d072SStas Sergeev 
182fbbb01a1SBill Pemberton static int pcsp_remove(struct platform_device *dev)
1839ab4d072SStas Sergeev {
1849ab4d072SStas Sergeev 	struct snd_pcsp *chip = platform_get_drvdata(dev);
1859ab4d072SStas Sergeev 	pcspkr_input_remove(chip->input_dev);
1866408eac2STakashi Iwai 	alsa_card_pcsp_exit(chip);
1879ab4d072SStas Sergeev 	return 0;
1889ab4d072SStas Sergeev }
1899ab4d072SStas Sergeev 
1909ab4d072SStas Sergeev static void pcsp_stop_beep(struct snd_pcsp *chip)
1919ab4d072SStas Sergeev {
19296c7d478STakashi Iwai 	pcsp_sync_stop(chip);
1939ab4d072SStas Sergeev 	pcspkr_stop_sound();
1949ab4d072SStas Sergeev }
1959ab4d072SStas Sergeev 
196d34e4e00STakashi Iwai #ifdef CONFIG_PM_SLEEP
197284e7ca7STakashi Iwai static int pcsp_suspend(struct device *dev)
1989ab4d072SStas Sergeev {
199284e7ca7STakashi Iwai 	struct snd_pcsp *chip = dev_get_drvdata(dev);
2009ab4d072SStas Sergeev 	pcsp_stop_beep(chip);
2019ab4d072SStas Sergeev 	return 0;
2029ab4d072SStas Sergeev }
203284e7ca7STakashi Iwai 
204284e7ca7STakashi Iwai static SIMPLE_DEV_PM_OPS(pcsp_pm, pcsp_suspend, NULL);
205284e7ca7STakashi Iwai #define PCSP_PM_OPS	&pcsp_pm
206983e0972SJohann Felix Soden #else
207284e7ca7STakashi Iwai #define PCSP_PM_OPS	NULL
208d34e4e00STakashi Iwai #endif	/* CONFIG_PM_SLEEP */
2099ab4d072SStas Sergeev 
2109ab4d072SStas Sergeev static void pcsp_shutdown(struct platform_device *dev)
2119ab4d072SStas Sergeev {
2129ab4d072SStas Sergeev 	struct snd_pcsp *chip = platform_get_drvdata(dev);
2139ab4d072SStas Sergeev 	pcsp_stop_beep(chip);
2149ab4d072SStas Sergeev }
2159ab4d072SStas Sergeev 
2169ab4d072SStas Sergeev static struct platform_driver pcsp_platform_driver = {
2179ab4d072SStas Sergeev 	.driver		= {
2189ab4d072SStas Sergeev 		.name	= "pcspkr",
219284e7ca7STakashi Iwai 		.pm	= PCSP_PM_OPS,
2209ab4d072SStas Sergeev 	},
2219ab4d072SStas Sergeev 	.probe		= pcsp_probe,
222fbbb01a1SBill Pemberton 	.remove		= pcsp_remove,
2239ab4d072SStas Sergeev 	.shutdown	= pcsp_shutdown,
2249ab4d072SStas Sergeev };
2259ab4d072SStas Sergeev 
2269ab4d072SStas Sergeev static int __init pcsp_init(void)
2279ab4d072SStas Sergeev {
22852337310SStas Sergeev 	if (!enable)
22952337310SStas Sergeev 		return -ENODEV;
2309ab4d072SStas Sergeev 	return platform_driver_register(&pcsp_platform_driver);
2319ab4d072SStas Sergeev }
2329ab4d072SStas Sergeev 
2339ab4d072SStas Sergeev static void __exit pcsp_exit(void)
2349ab4d072SStas Sergeev {
2359ab4d072SStas Sergeev 	platform_driver_unregister(&pcsp_platform_driver);
2369ab4d072SStas Sergeev }
2379ab4d072SStas Sergeev 
2389ab4d072SStas Sergeev module_init(pcsp_init);
2399ab4d072SStas Sergeev module_exit(pcsp_exit);
240