ALSA: hda/tegra: Add Tegra234 hda driver support
[linux-2.6-microblaze.git] / sound / pci / hda / hda_tegra.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *
4  * Implementation of primary ALSA driver code base for NVIDIA Tegra HDA.
5  */
6
7 #include <linux/clk.h>
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>
14 #include <linux/io.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/reset.h>
21 #include <linux/slab.h>
22 #include <linux/time.h>
23 #include <linux/string.h>
24 #include <linux/pm_runtime.h>
25
26 #include <sound/core.h>
27 #include <sound/initval.h>
28
29 #include <sound/hda_codec.h>
30 #include "hda_controller.h"
31
32 /* Defines for Nvidia Tegra HDA support */
33 #define HDA_BAR0           0x8000
34
35 #define HDA_CFG_CMD        0x1004
36 #define HDA_CFG_BAR0       0x1010
37
38 #define HDA_ENABLE_IO_SPACE       (1 << 0)
39 #define HDA_ENABLE_MEM_SPACE      (1 << 1)
40 #define HDA_ENABLE_BUS_MASTER     (1 << 2)
41 #define HDA_ENABLE_SERR           (1 << 8)
42 #define HDA_DISABLE_INTR          (1 << 10)
43 #define HDA_BAR0_INIT_PROGRAM     0xFFFFFFFF
44 #define HDA_BAR0_FINAL_PROGRAM    (1 << 14)
45
46 /* IPFS */
47 #define HDA_IPFS_CONFIG           0x180
48 #define HDA_IPFS_EN_FPCI          0x1
49
50 #define HDA_IPFS_FPCI_BAR0        0x80
51 #define HDA_FPCI_BAR0_START       0x40
52
53 #define HDA_IPFS_INTR_MASK        0x188
54 #define HDA_IPFS_EN_INTR          (1 << 16)
55
56 /* FPCI */
57 #define FPCI_DBG_CFG_2            0x10F4
58 #define FPCI_GCAP_NSDO_SHIFT      18
59 #define FPCI_GCAP_NSDO_MASK       (0x3 << FPCI_GCAP_NSDO_SHIFT)
60
61 /* max number of SDs */
62 #define NUM_CAPTURE_SD 1
63 #define NUM_PLAYBACK_SD 1
64
65 /*
66  * Tegra194 does not reflect correct number of SDO lines. Below macro
67  * is used to update the GCAP register to workaround the issue.
68  */
69 #define TEGRA194_NUM_SDO_LINES    4
70
71 struct hda_tegra_soc {
72         bool has_hda2codec_2x_reset;
73         bool has_hda2hdmi;
74 };
75
76 struct hda_tegra {
77         struct azx chip;
78         struct device *dev;
79         struct reset_control_bulk_data resets[3];
80         struct clk_bulk_data clocks[3];
81         unsigned int nresets;
82         unsigned int nclocks;
83         void __iomem *regs;
84         struct work_struct probe_work;
85         const struct hda_tegra_soc *soc;
86 };
87
88 #ifdef CONFIG_PM
89 static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
90 module_param(power_save, bint, 0644);
91 MODULE_PARM_DESC(power_save,
92                  "Automatic power-saving timeout (in seconds, 0 = disable).");
93 #else
94 #define power_save      0
95 #endif
96
97 static const struct hda_controller_ops hda_tegra_ops; /* nothing special */
98
99 static void hda_tegra_init(struct hda_tegra *hda)
100 {
101         u32 v;
102
103         /* Enable PCI access */
104         v = readl(hda->regs + HDA_IPFS_CONFIG);
105         v |= HDA_IPFS_EN_FPCI;
106         writel(v, hda->regs + HDA_IPFS_CONFIG);
107
108         /* Enable MEM/IO space and bus master */
109         v = readl(hda->regs + HDA_CFG_CMD);
110         v &= ~HDA_DISABLE_INTR;
111         v |= HDA_ENABLE_MEM_SPACE | HDA_ENABLE_IO_SPACE |
112                 HDA_ENABLE_BUS_MASTER | HDA_ENABLE_SERR;
113         writel(v, hda->regs + HDA_CFG_CMD);
114
115         writel(HDA_BAR0_INIT_PROGRAM, hda->regs + HDA_CFG_BAR0);
116         writel(HDA_BAR0_FINAL_PROGRAM, hda->regs + HDA_CFG_BAR0);
117         writel(HDA_FPCI_BAR0_START, hda->regs + HDA_IPFS_FPCI_BAR0);
118
119         v = readl(hda->regs + HDA_IPFS_INTR_MASK);
120         v |= HDA_IPFS_EN_INTR;
121         writel(v, hda->regs + HDA_IPFS_INTR_MASK);
122 }
123
124 /*
125  * power management
126  */
127 static int __maybe_unused hda_tegra_suspend(struct device *dev)
128 {
129         struct snd_card *card = dev_get_drvdata(dev);
130         int rc;
131
132         rc = pm_runtime_force_suspend(dev);
133         if (rc < 0)
134                 return rc;
135         snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
136
137         return 0;
138 }
139
140 static int __maybe_unused hda_tegra_resume(struct device *dev)
141 {
142         struct snd_card *card = dev_get_drvdata(dev);
143         int rc;
144
145         rc = pm_runtime_force_resume(dev);
146         if (rc < 0)
147                 return rc;
148         snd_power_change_state(card, SNDRV_CTL_POWER_D0);
149
150         return 0;
151 }
152
153 static int __maybe_unused hda_tegra_runtime_suspend(struct device *dev)
154 {
155         struct snd_card *card = dev_get_drvdata(dev);
156         struct azx *chip = card->private_data;
157         struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
158
159         if (chip && chip->running) {
160                 /* enable controller wake up event */
161                 azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) |
162                            STATESTS_INT_MASK);
163
164                 azx_stop_chip(chip);
165                 azx_enter_link_reset(chip);
166         }
167         clk_bulk_disable_unprepare(hda->nclocks, hda->clocks);
168
169         return 0;
170 }
171
172 static int __maybe_unused hda_tegra_runtime_resume(struct device *dev)
173 {
174         struct snd_card *card = dev_get_drvdata(dev);
175         struct azx *chip = card->private_data;
176         struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
177         int rc;
178
179         if (!chip->running) {
180                 rc = reset_control_bulk_assert(hda->nresets, hda->resets);
181                 if (rc)
182                         return rc;
183         }
184
185         rc = clk_bulk_prepare_enable(hda->nclocks, hda->clocks);
186         if (rc != 0)
187                 return rc;
188         if (chip->running) {
189                 hda_tegra_init(hda);
190                 azx_init_chip(chip, 1);
191                 /* disable controller wake up event*/
192                 azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) &
193                            ~STATESTS_INT_MASK);
194         } else {
195                 usleep_range(10, 100);
196
197                 rc = reset_control_bulk_deassert(hda->nresets, hda->resets);
198                 if (rc)
199                         return rc;
200         }
201
202         return 0;
203 }
204
205 static const struct dev_pm_ops hda_tegra_pm = {
206         SET_SYSTEM_SLEEP_PM_OPS(hda_tegra_suspend, hda_tegra_resume)
207         SET_RUNTIME_PM_OPS(hda_tegra_runtime_suspend,
208                            hda_tegra_runtime_resume,
209                            NULL)
210 };
211
212 static int hda_tegra_dev_disconnect(struct snd_device *device)
213 {
214         struct azx *chip = device->device_data;
215
216         chip->bus.shutdown = 1;
217         return 0;
218 }
219
220 /*
221  * destructor
222  */
223 static int hda_tegra_dev_free(struct snd_device *device)
224 {
225         struct azx *chip = device->device_data;
226         struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
227
228         cancel_work_sync(&hda->probe_work);
229         if (azx_bus(chip)->chip_init) {
230                 azx_stop_all_streams(chip);
231                 azx_stop_chip(chip);
232         }
233
234         azx_free_stream_pages(chip);
235         azx_free_streams(chip);
236         snd_hdac_bus_exit(azx_bus(chip));
237
238         return 0;
239 }
240
241 static int hda_tegra_init_chip(struct azx *chip, struct platform_device *pdev)
242 {
243         struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
244         struct hdac_bus *bus = azx_bus(chip);
245         struct resource *res;
246
247         hda->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
248         if (IS_ERR(hda->regs))
249                 return PTR_ERR(hda->regs);
250
251         bus->remap_addr = hda->regs + HDA_BAR0;
252         bus->addr = res->start + HDA_BAR0;
253
254         hda_tegra_init(hda);
255
256         return 0;
257 }
258
259 static int hda_tegra_first_init(struct azx *chip, struct platform_device *pdev)
260 {
261         struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
262         struct hdac_bus *bus = azx_bus(chip);
263         struct snd_card *card = chip->card;
264         int err;
265         unsigned short gcap;
266         int irq_id = platform_get_irq(pdev, 0);
267         const char *sname, *drv_name = "tegra-hda";
268         struct device_node *np = pdev->dev.of_node;
269
270         if (irq_id < 0)
271                 return irq_id;
272
273         err = hda_tegra_init_chip(chip, pdev);
274         if (err)
275                 return err;
276
277         err = devm_request_irq(chip->card->dev, irq_id, azx_interrupt,
278                              IRQF_SHARED, KBUILD_MODNAME, chip);
279         if (err) {
280                 dev_err(chip->card->dev,
281                         "unable to request IRQ %d, disabling device\n",
282                         irq_id);
283                 return err;
284         }
285         bus->irq = irq_id;
286         bus->dma_stop_delay = 100;
287         card->sync_irq = bus->irq;
288
289         /*
290          * Tegra194 has 4 SDO lines and the STRIPE can be used to
291          * indicate how many of the SDO lines the stream should be
292          * striped. But GCAP register does not reflect the true
293          * capability of HW. Below workaround helps to fix this.
294          *
295          * GCAP_NSDO is bits 19:18 in T_AZA_DBG_CFG_2,
296          * 0 for 1 SDO, 1 for 2 SDO, 2 for 4 SDO lines.
297          */
298         if (of_device_is_compatible(np, "nvidia,tegra194-hda")) {
299                 u32 val;
300
301                 dev_info(card->dev, "Override SDO lines to %u\n",
302                          TEGRA194_NUM_SDO_LINES);
303
304                 val = readl(hda->regs + FPCI_DBG_CFG_2) & ~FPCI_GCAP_NSDO_MASK;
305                 val |= (TEGRA194_NUM_SDO_LINES >> 1) << FPCI_GCAP_NSDO_SHIFT;
306                 writel(val, hda->regs + FPCI_DBG_CFG_2);
307         }
308
309         gcap = azx_readw(chip, GCAP);
310         dev_dbg(card->dev, "chipset global capabilities = 0x%x\n", gcap);
311
312         chip->align_buffer_size = 1;
313
314         /* read number of streams from GCAP register instead of using
315          * hardcoded value
316          */
317         chip->capture_streams = (gcap >> 8) & 0x0f;
318         chip->playback_streams = (gcap >> 12) & 0x0f;
319         if (!chip->playback_streams && !chip->capture_streams) {
320                 /* gcap didn't give any info, switching to old method */
321                 chip->playback_streams = NUM_PLAYBACK_SD;
322                 chip->capture_streams = NUM_CAPTURE_SD;
323         }
324         chip->capture_index_offset = 0;
325         chip->playback_index_offset = chip->capture_streams;
326         chip->num_streams = chip->playback_streams + chip->capture_streams;
327
328         /* initialize streams */
329         err = azx_init_streams(chip);
330         if (err < 0) {
331                 dev_err(card->dev, "failed to initialize streams: %d\n", err);
332                 return err;
333         }
334
335         err = azx_alloc_stream_pages(chip);
336         if (err < 0) {
337                 dev_err(card->dev, "failed to allocate stream pages: %d\n",
338                         err);
339                 return err;
340         }
341
342         /* initialize chip */
343         azx_init_chip(chip, 1);
344
345         /*
346          * Playback (for 44.1K/48K, 2-channel, 16-bps) fails with
347          * 4 SDO lines due to legacy design limitation. Following
348          * is, from HD Audio Specification (Revision 1.0a), used to
349          * control striping of the stream across multiple SDO lines
350          * for sample rates <= 48K.
351          *
352          * { ((num_channels * bits_per_sample) / number of SDOs) >= 8 }
353          *
354          * Due to legacy design issue it is recommended that above
355          * ratio must be greater than 8. Since number of SDO lines is
356          * in powers of 2, next available ratio is 16 which can be
357          * used as a limiting factor here.
358          */
359         if (of_device_is_compatible(np, "nvidia,tegra30-hda"))
360                 chip->bus.core.sdo_limit = 16;
361
362         /* codec detection */
363         if (!bus->codec_mask) {
364                 dev_err(card->dev, "no codecs found!\n");
365                 return -ENODEV;
366         }
367
368         /* driver name */
369         strncpy(card->driver, drv_name, sizeof(card->driver));
370         /* shortname for card */
371         sname = of_get_property(np, "nvidia,model", NULL);
372         if (!sname)
373                 sname = drv_name;
374         if (strlen(sname) > sizeof(card->shortname))
375                 dev_info(card->dev, "truncating shortname for card\n");
376         strncpy(card->shortname, sname, sizeof(card->shortname));
377
378         /* longname for card */
379         snprintf(card->longname, sizeof(card->longname),
380                  "%s at 0x%lx irq %i",
381                  card->shortname, bus->addr, bus->irq);
382
383         return 0;
384 }
385
386 /*
387  * constructor
388  */
389
390 static void hda_tegra_probe_work(struct work_struct *work);
391
392 static int hda_tegra_create(struct snd_card *card,
393                             unsigned int driver_caps,
394                             struct hda_tegra *hda)
395 {
396         static const struct snd_device_ops ops = {
397                 .dev_disconnect = hda_tegra_dev_disconnect,
398                 .dev_free = hda_tegra_dev_free,
399         };
400         struct azx *chip;
401         int err;
402
403         chip = &hda->chip;
404
405         mutex_init(&chip->open_mutex);
406         chip->card = card;
407         chip->ops = &hda_tegra_ops;
408         chip->driver_caps = driver_caps;
409         chip->driver_type = driver_caps & 0xff;
410         chip->dev_index = 0;
411         INIT_LIST_HEAD(&chip->pcm_list);
412
413         chip->codec_probe_mask = -1;
414
415         chip->single_cmd = false;
416         chip->snoop = true;
417
418         INIT_WORK(&hda->probe_work, hda_tegra_probe_work);
419
420         err = azx_bus_init(chip, NULL);
421         if (err < 0)
422                 return err;
423
424         chip->bus.core.sync_write = 0;
425         chip->bus.core.needs_damn_long_delay = 1;
426         chip->bus.core.aligned_mmio = 1;
427
428         err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
429         if (err < 0) {
430                 dev_err(card->dev, "Error creating device\n");
431                 return err;
432         }
433
434         return 0;
435 }
436
437 static const struct hda_tegra_soc tegra30_data = {
438         .has_hda2codec_2x_reset = true,
439         .has_hda2hdmi = true,
440 };
441
442 static const struct hda_tegra_soc tegra194_data = {
443         .has_hda2codec_2x_reset = false,
444         .has_hda2hdmi = true,
445 };
446
447 static const struct hda_tegra_soc tegra234_data = {
448         .has_hda2codec_2x_reset = true,
449         .has_hda2hdmi = false,
450 };
451
452 static const struct of_device_id hda_tegra_match[] = {
453         { .compatible = "nvidia,tegra30-hda", .data = &tegra30_data },
454         { .compatible = "nvidia,tegra194-hda", .data = &tegra194_data },
455         { .compatible = "nvidia,tegra234-hda", .data = &tegra234_data },
456         {},
457 };
458 MODULE_DEVICE_TABLE(of, hda_tegra_match);
459
460 static int hda_tegra_probe(struct platform_device *pdev)
461 {
462         const unsigned int driver_flags = AZX_DCAPS_CORBRP_SELF_CLEAR |
463                                           AZX_DCAPS_PM_RUNTIME;
464         struct snd_card *card;
465         struct azx *chip;
466         struct hda_tegra *hda;
467         int err;
468
469         hda = devm_kzalloc(&pdev->dev, sizeof(*hda), GFP_KERNEL);
470         if (!hda)
471                 return -ENOMEM;
472         hda->dev = &pdev->dev;
473         chip = &hda->chip;
474
475         hda->soc = of_device_get_match_data(&pdev->dev);
476
477         err = snd_card_new(&pdev->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
478                            THIS_MODULE, 0, &card);
479         if (err < 0) {
480                 dev_err(&pdev->dev, "Error creating card!\n");
481                 return err;
482         }
483
484         hda->resets[hda->nresets++].id = "hda";
485
486         /*
487          * "hda2hdmi" is not applicable for Tegra234. This is because the
488          * codec is separate IP and not under display SOR partition now.
489          */
490         if (hda->soc->has_hda2hdmi)
491                 hda->resets[hda->nresets++].id = "hda2hdmi";
492
493         /*
494          * "hda2codec_2x" reset is not present on Tegra194. Though DT would
495          * be updated to reflect this, but to have backward compatibility
496          * below is necessary.
497          */
498         if (hda->soc->has_hda2codec_2x_reset)
499                 hda->resets[hda->nresets++].id = "hda2codec_2x";
500
501         err = devm_reset_control_bulk_get_exclusive(&pdev->dev, hda->nresets,
502                                                     hda->resets);
503         if (err)
504                 goto out_free;
505
506         hda->clocks[hda->nclocks++].id = "hda";
507         if (hda->soc->has_hda2hdmi)
508                 hda->clocks[hda->nclocks++].id = "hda2hdmi";
509         hda->clocks[hda->nclocks++].id = "hda2codec_2x";
510
511         err = devm_clk_bulk_get(&pdev->dev, hda->nclocks, hda->clocks);
512         if (err < 0)
513                 goto out_free;
514
515         err = hda_tegra_create(card, driver_flags, hda);
516         if (err < 0)
517                 goto out_free;
518         card->private_data = chip;
519
520         dev_set_drvdata(&pdev->dev, card);
521
522         pm_runtime_enable(hda->dev);
523         if (!azx_has_pm_runtime(chip))
524                 pm_runtime_forbid(hda->dev);
525
526         schedule_work(&hda->probe_work);
527
528         return 0;
529
530 out_free:
531         snd_card_free(card);
532         return err;
533 }
534
535 static void hda_tegra_probe_work(struct work_struct *work)
536 {
537         struct hda_tegra *hda = container_of(work, struct hda_tegra, probe_work);
538         struct azx *chip = &hda->chip;
539         struct platform_device *pdev = to_platform_device(hda->dev);
540         int err;
541
542         pm_runtime_get_sync(hda->dev);
543         err = hda_tegra_first_init(chip, pdev);
544         if (err < 0)
545                 goto out_free;
546
547         /* create codec instances */
548         err = azx_probe_codecs(chip, 8);
549         if (err < 0)
550                 goto out_free;
551
552         err = azx_codec_configure(chip);
553         if (err < 0)
554                 goto out_free;
555
556         err = snd_card_register(chip->card);
557         if (err < 0)
558                 goto out_free;
559
560         chip->running = 1;
561         snd_hda_set_power_save(&chip->bus, power_save * 1000);
562
563  out_free:
564         pm_runtime_put(hda->dev);
565         return; /* no error return from async probe */
566 }
567
568 static int hda_tegra_remove(struct platform_device *pdev)
569 {
570         int ret;
571
572         ret = snd_card_free(dev_get_drvdata(&pdev->dev));
573         pm_runtime_disable(&pdev->dev);
574
575         return ret;
576 }
577
578 static void hda_tegra_shutdown(struct platform_device *pdev)
579 {
580         struct snd_card *card = dev_get_drvdata(&pdev->dev);
581         struct azx *chip;
582
583         if (!card)
584                 return;
585         chip = card->private_data;
586         if (chip && chip->running)
587                 azx_stop_chip(chip);
588 }
589
590 static struct platform_driver tegra_platform_hda = {
591         .driver = {
592                 .name = "tegra-hda",
593                 .pm = &hda_tegra_pm,
594                 .of_match_table = hda_tegra_match,
595         },
596         .probe = hda_tegra_probe,
597         .remove = hda_tegra_remove,
598         .shutdown = hda_tegra_shutdown,
599 };
600 module_platform_driver(tegra_platform_hda);
601
602 MODULE_DESCRIPTION("Tegra HDA bus driver");
603 MODULE_LICENSE("GPL v2");