1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Driver for PowerMac AWACS
4 * Copyright (c) 2001 by Takashi Iwai <tiwai@suse.de>
8 #include <linux/init.h>
10 #include <linux/platform_device.h>
11 #include <linux/module.h>
12 #include <sound/core.h>
13 #include <sound/initval.h>
18 #define CHIP_NAME "PMac"
20 MODULE_DESCRIPTION("PowerMac");
21 MODULE_LICENSE("GPL");
23 static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */
24 static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
25 static bool enable_beep = 1;
27 module_param(index, int, 0444);
28 MODULE_PARM_DESC(index, "Index value for " CHIP_NAME " soundchip.");
29 module_param(id, charp, 0444);
30 MODULE_PARM_DESC(id, "ID string for " CHIP_NAME " soundchip.");
31 module_param(enable_beep, bool, 0444);
32 MODULE_PARM_DESC(enable_beep, "Enable beep using PCM.");
34 static struct platform_device *device;
40 static int snd_pmac_probe(struct platform_device *devptr)
42 struct snd_card *card;
43 struct snd_pmac *chip;
47 err = snd_card_new(&devptr->dev, index, id, THIS_MODULE, 0, &card);
51 err = snd_pmac_new(card, &chip);
54 card->private_data = chip;
56 switch (chip->model) {
58 strcpy(card->driver, "PMac Burgundy");
59 strcpy(card->shortname, "PowerMac Burgundy");
60 sprintf(card->longname, "%s (Dev %d) Sub-frame %d",
61 card->shortname, chip->device_id, chip->subframe);
62 err = snd_pmac_burgundy_init(chip);
67 strcpy(card->driver, "PMac DACA");
68 strcpy(card->shortname, "PowerMac DACA");
69 sprintf(card->longname, "%s (Dev %d) Sub-frame %d",
70 card->shortname, chip->device_id, chip->subframe);
71 err = snd_pmac_daca_init(chip);
77 name_ext = chip->model == PMAC_TUMBLER ? "Tumbler" : "Snapper";
78 sprintf(card->driver, "PMac %s", name_ext);
79 sprintf(card->shortname, "PowerMac %s", name_ext);
80 sprintf(card->longname, "%s (Dev %d) Sub-frame %d",
81 card->shortname, chip->device_id, chip->subframe);
82 err = snd_pmac_tumbler_init(chip);
85 err = snd_pmac_tumbler_post_init();
91 name_ext = chip->model == PMAC_SCREAMER ? "Screamer" : "AWACS";
92 sprintf(card->driver, "PMac %s", name_ext);
93 sprintf(card->shortname, "PowerMac %s", name_ext);
94 if (chip->is_pbook_3400)
95 name_ext = " [PB3400]";
96 else if (chip->is_pbook_G3)
100 sprintf(card->longname, "%s%s Rev %d",
101 card->shortname, name_ext, chip->revision);
102 err = snd_pmac_awacs_init(chip);
107 snd_printk(KERN_ERR "unsupported hardware %d\n", chip->model);
112 err = snd_pmac_pcm_new(chip);
116 chip->initialized = 1;
118 snd_pmac_attach_beep(chip);
120 err = snd_card_register(card);
124 platform_set_drvdata(devptr, card);
133 static void snd_pmac_remove(struct platform_device *devptr)
135 snd_card_free(platform_get_drvdata(devptr));
138 #ifdef CONFIG_PM_SLEEP
139 static int snd_pmac_driver_suspend(struct device *dev)
141 struct snd_card *card = dev_get_drvdata(dev);
142 snd_pmac_suspend(card->private_data);
146 static int snd_pmac_driver_resume(struct device *dev)
148 struct snd_card *card = dev_get_drvdata(dev);
149 snd_pmac_resume(card->private_data);
153 static SIMPLE_DEV_PM_OPS(snd_pmac_pm, snd_pmac_driver_suspend, snd_pmac_driver_resume);
154 #define SND_PMAC_PM_OPS &snd_pmac_pm
156 #define SND_PMAC_PM_OPS NULL
159 #define SND_PMAC_DRIVER "snd_powermac"
161 static struct platform_driver snd_pmac_driver = {
162 .probe = snd_pmac_probe,
163 .remove_new = snd_pmac_remove,
165 .name = SND_PMAC_DRIVER,
166 .pm = SND_PMAC_PM_OPS,
170 static int __init alsa_card_pmac_init(void)
174 err = platform_driver_register(&snd_pmac_driver);
177 device = platform_device_register_simple(SND_PMAC_DRIVER, -1, NULL, 0);
182 static void __exit alsa_card_pmac_exit(void)
185 platform_device_unregister(device);
186 platform_driver_unregister(&snd_pmac_driver);
189 module_init(alsa_card_pmac_init)
190 module_exit(alsa_card_pmac_exit)