1 // SPDX-License-Identifier: GPL-2.0-only
4 * Implementation of primary ALSA driver code base for NVIDIA Tegra HDA.
8 #include <linux/clocksource.h>
9 #include <linux/completion.h>
10 #include <linux/delay.h>
11 #include <linux/dma-mapping.h>
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/mutex.h>
19 #include <linux/of_device.h>
20 #include <linux/slab.h>
21 #include <linux/time.h>
22 #include <linux/string.h>
23 #include <linux/pm_runtime.h>
25 #include <sound/core.h>
26 #include <sound/initval.h>
28 #include <sound/hda_codec.h>
29 #include "hda_controller.h"
31 /* Defines for Nvidia Tegra HDA support */
32 #define HDA_BAR0 0x8000
34 #define HDA_CFG_CMD 0x1004
35 #define HDA_CFG_BAR0 0x1010
37 #define HDA_ENABLE_IO_SPACE (1 << 0)
38 #define HDA_ENABLE_MEM_SPACE (1 << 1)
39 #define HDA_ENABLE_BUS_MASTER (1 << 2)
40 #define HDA_ENABLE_SERR (1 << 8)
41 #define HDA_DISABLE_INTR (1 << 10)
42 #define HDA_BAR0_INIT_PROGRAM 0xFFFFFFFF
43 #define HDA_BAR0_FINAL_PROGRAM (1 << 14)
46 #define HDA_IPFS_CONFIG 0x180
47 #define HDA_IPFS_EN_FPCI 0x1
49 #define HDA_IPFS_FPCI_BAR0 0x80
50 #define HDA_FPCI_BAR0_START 0x40
52 #define HDA_IPFS_INTR_MASK 0x188
53 #define HDA_IPFS_EN_INTR (1 << 16)
55 /* max number of SDs */
56 #define NUM_CAPTURE_SD 1
57 #define NUM_PLAYBACK_SD 1
63 struct clk *hda2codec_2x_clk;
64 struct clk *hda2hdmi_clk;
66 struct work_struct probe_work;
70 static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
71 module_param(power_save, bint, 0644);
72 MODULE_PARM_DESC(power_save,
73 "Automatic power-saving timeout (in seconds, 0 = disable).");
78 static const struct hda_controller_ops hda_tegra_ops; /* nothing special */
80 static void hda_tegra_init(struct hda_tegra *hda)
84 /* Enable PCI access */
85 v = readl(hda->regs + HDA_IPFS_CONFIG);
86 v |= HDA_IPFS_EN_FPCI;
87 writel(v, hda->regs + HDA_IPFS_CONFIG);
89 /* Enable MEM/IO space and bus master */
90 v = readl(hda->regs + HDA_CFG_CMD);
91 v &= ~HDA_DISABLE_INTR;
92 v |= HDA_ENABLE_MEM_SPACE | HDA_ENABLE_IO_SPACE |
93 HDA_ENABLE_BUS_MASTER | HDA_ENABLE_SERR;
94 writel(v, hda->regs + HDA_CFG_CMD);
96 writel(HDA_BAR0_INIT_PROGRAM, hda->regs + HDA_CFG_BAR0);
97 writel(HDA_BAR0_FINAL_PROGRAM, hda->regs + HDA_CFG_BAR0);
98 writel(HDA_FPCI_BAR0_START, hda->regs + HDA_IPFS_FPCI_BAR0);
100 v = readl(hda->regs + HDA_IPFS_INTR_MASK);
101 v |= HDA_IPFS_EN_INTR;
102 writel(v, hda->regs + HDA_IPFS_INTR_MASK);
105 static int hda_tegra_enable_clocks(struct hda_tegra *data)
109 rc = clk_prepare_enable(data->hda_clk);
112 rc = clk_prepare_enable(data->hda2codec_2x_clk);
115 rc = clk_prepare_enable(data->hda2hdmi_clk);
117 goto disable_codec_2x;
122 clk_disable_unprepare(data->hda2codec_2x_clk);
124 clk_disable_unprepare(data->hda_clk);
128 static void hda_tegra_disable_clocks(struct hda_tegra *data)
130 clk_disable_unprepare(data->hda2hdmi_clk);
131 clk_disable_unprepare(data->hda2codec_2x_clk);
132 clk_disable_unprepare(data->hda_clk);
138 static int __maybe_unused hda_tegra_suspend(struct device *dev)
140 struct snd_card *card = dev_get_drvdata(dev);
143 rc = pm_runtime_force_suspend(dev);
146 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
151 static int __maybe_unused hda_tegra_resume(struct device *dev)
153 struct snd_card *card = dev_get_drvdata(dev);
156 rc = pm_runtime_force_resume(dev);
159 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
164 static int __maybe_unused hda_tegra_runtime_suspend(struct device *dev)
166 struct snd_card *card = dev_get_drvdata(dev);
167 struct azx *chip = card->private_data;
168 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
169 struct hdac_bus *bus = azx_bus(chip);
171 if (chip && chip->running) {
173 azx_enter_link_reset(chip);
175 hda_tegra_disable_clocks(hda);
180 static int __maybe_unused hda_tegra_runtime_resume(struct device *dev)
182 struct snd_card *card = dev_get_drvdata(dev);
183 struct azx *chip = card->private_data;
184 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
187 rc = hda_tegra_enable_clocks(hda);
190 if (chip && chip->running) {
192 azx_init_chip(chip, 1);
198 static const struct dev_pm_ops hda_tegra_pm = {
199 SET_SYSTEM_SLEEP_PM_OPS(hda_tegra_suspend, hda_tegra_resume)
200 SET_RUNTIME_PM_OPS(hda_tegra_runtime_suspend,
201 hda_tegra_runtime_resume,
205 static int hda_tegra_dev_disconnect(struct snd_device *device)
207 struct azx *chip = device->device_data;
209 chip->bus.shutdown = 1;
216 static int hda_tegra_dev_free(struct snd_device *device)
218 struct azx *chip = device->device_data;
219 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
221 cancel_work_sync(&hda->probe_work);
222 if (azx_bus(chip)->chip_init) {
223 azx_stop_all_streams(chip);
227 azx_free_stream_pages(chip);
228 azx_free_streams(chip);
229 snd_hdac_bus_exit(azx_bus(chip));
234 static int hda_tegra_init_chip(struct azx *chip, struct platform_device *pdev)
236 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
237 struct hdac_bus *bus = azx_bus(chip);
238 struct device *dev = hda->dev;
239 struct resource *res;
241 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
242 hda->regs = devm_ioremap_resource(dev, res);
243 if (IS_ERR(hda->regs))
244 return PTR_ERR(hda->regs);
246 bus->remap_addr = hda->regs + HDA_BAR0;
247 bus->addr = res->start + HDA_BAR0;
254 static int hda_tegra_init_clk(struct hda_tegra *hda)
256 struct device *dev = hda->dev;
258 hda->hda_clk = devm_clk_get(dev, "hda");
259 if (IS_ERR(hda->hda_clk)) {
260 dev_err(dev, "failed to get hda clock\n");
261 return PTR_ERR(hda->hda_clk);
263 hda->hda2codec_2x_clk = devm_clk_get(dev, "hda2codec_2x");
264 if (IS_ERR(hda->hda2codec_2x_clk)) {
265 dev_err(dev, "failed to get hda2codec_2x clock\n");
266 return PTR_ERR(hda->hda2codec_2x_clk);
268 hda->hda2hdmi_clk = devm_clk_get(dev, "hda2hdmi");
269 if (IS_ERR(hda->hda2hdmi_clk)) {
270 dev_err(dev, "failed to get hda2hdmi clock\n");
271 return PTR_ERR(hda->hda2hdmi_clk);
277 static int hda_tegra_first_init(struct azx *chip, struct platform_device *pdev)
279 struct hdac_bus *bus = azx_bus(chip);
280 struct snd_card *card = chip->card;
283 int irq_id = platform_get_irq(pdev, 0);
284 const char *sname, *drv_name = "tegra-hda";
285 struct device_node *np = pdev->dev.of_node;
287 err = hda_tegra_init_chip(chip, pdev);
291 err = devm_request_irq(chip->card->dev, irq_id, azx_interrupt,
292 IRQF_SHARED, KBUILD_MODNAME, chip);
294 dev_err(chip->card->dev,
295 "unable to request IRQ %d, disabling device\n",
300 card->sync_irq = bus->irq;
302 gcap = azx_readw(chip, GCAP);
303 dev_dbg(card->dev, "chipset global capabilities = 0x%x\n", gcap);
305 /* read number of streams from GCAP register instead of using
308 chip->capture_streams = (gcap >> 8) & 0x0f;
309 chip->playback_streams = (gcap >> 12) & 0x0f;
310 if (!chip->playback_streams && !chip->capture_streams) {
311 /* gcap didn't give any info, switching to old method */
312 chip->playback_streams = NUM_PLAYBACK_SD;
313 chip->capture_streams = NUM_CAPTURE_SD;
315 chip->capture_index_offset = 0;
316 chip->playback_index_offset = chip->capture_streams;
317 chip->num_streams = chip->playback_streams + chip->capture_streams;
319 /* initialize streams */
320 err = azx_init_streams(chip);
322 dev_err(card->dev, "failed to initialize streams: %d\n", err);
326 err = azx_alloc_stream_pages(chip);
328 dev_err(card->dev, "failed to allocate stream pages: %d\n",
333 /* initialize chip */
334 azx_init_chip(chip, 1);
336 /* codec detection */
337 if (!bus->codec_mask) {
338 dev_err(card->dev, "no codecs found!\n");
343 strncpy(card->driver, drv_name, sizeof(card->driver));
344 /* shortname for card */
345 sname = of_get_property(np, "nvidia,model", NULL);
348 if (strlen(sname) > sizeof(card->shortname))
349 dev_info(card->dev, "truncating shortname for card\n");
350 strncpy(card->shortname, sname, sizeof(card->shortname));
352 /* longname for card */
353 snprintf(card->longname, sizeof(card->longname),
354 "%s at 0x%lx irq %i",
355 card->shortname, bus->addr, bus->irq);
364 static void hda_tegra_probe_work(struct work_struct *work);
366 static int hda_tegra_create(struct snd_card *card,
367 unsigned int driver_caps,
368 struct hda_tegra *hda)
370 static struct snd_device_ops ops = {
371 .dev_disconnect = hda_tegra_dev_disconnect,
372 .dev_free = hda_tegra_dev_free,
379 mutex_init(&chip->open_mutex);
381 chip->ops = &hda_tegra_ops;
382 chip->driver_caps = driver_caps;
383 chip->driver_type = driver_caps & 0xff;
385 INIT_LIST_HEAD(&chip->pcm_list);
387 chip->codec_probe_mask = -1;
389 chip->single_cmd = false;
392 INIT_WORK(&hda->probe_work, hda_tegra_probe_work);
394 err = azx_bus_init(chip, NULL);
398 chip->bus.needs_damn_long_delay = 1;
400 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
402 dev_err(card->dev, "Error creating device\n");
409 static const struct of_device_id hda_tegra_match[] = {
410 { .compatible = "nvidia,tegra30-hda" },
413 MODULE_DEVICE_TABLE(of, hda_tegra_match);
415 static int hda_tegra_probe(struct platform_device *pdev)
417 const unsigned int driver_flags = AZX_DCAPS_CORBRP_SELF_CLEAR |
418 AZX_DCAPS_PM_RUNTIME;
419 struct snd_card *card;
421 struct hda_tegra *hda;
424 hda = devm_kzalloc(&pdev->dev, sizeof(*hda), GFP_KERNEL);
427 hda->dev = &pdev->dev;
430 err = snd_card_new(&pdev->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
431 THIS_MODULE, 0, &card);
433 dev_err(&pdev->dev, "Error creating card!\n");
437 err = hda_tegra_init_clk(hda);
441 err = hda_tegra_create(card, driver_flags, hda);
444 card->private_data = chip;
446 dev_set_drvdata(&pdev->dev, card);
448 pm_runtime_enable(hda->dev);
449 if (!azx_has_pm_runtime(chip))
450 pm_runtime_forbid(hda->dev);
452 schedule_work(&hda->probe_work);
461 static void hda_tegra_probe_work(struct work_struct *work)
463 struct hda_tegra *hda = container_of(work, struct hda_tegra, probe_work);
464 struct azx *chip = &hda->chip;
465 struct platform_device *pdev = to_platform_device(hda->dev);
468 pm_runtime_get_sync(hda->dev);
469 err = hda_tegra_first_init(chip, pdev);
473 /* create codec instances */
474 err = azx_probe_codecs(chip, 8);
478 err = azx_codec_configure(chip);
482 err = snd_card_register(chip->card);
487 snd_hda_set_power_save(&chip->bus, power_save * 1000);
490 pm_runtime_put(hda->dev);
491 return; /* no error return from async probe */
494 static int hda_tegra_remove(struct platform_device *pdev)
498 ret = snd_card_free(dev_get_drvdata(&pdev->dev));
499 pm_runtime_disable(&pdev->dev);
504 static void hda_tegra_shutdown(struct platform_device *pdev)
506 struct snd_card *card = dev_get_drvdata(&pdev->dev);
511 chip = card->private_data;
512 if (chip && chip->running)
516 static struct platform_driver tegra_platform_hda = {
520 .of_match_table = hda_tegra_match,
522 .probe = hda_tegra_probe,
523 .remove = hda_tegra_remove,
524 .shutdown = hda_tegra_shutdown,
526 module_platform_driver(tegra_platform_hda);
528 MODULE_DESCRIPTION("Tegra HDA bus driver");
529 MODULE_LICENSE("GPL v2");