blob: 773f4903550a06fac79a7c829f88b9a2f1e23f94 [file] [log] [blame]
Thomas Gleixner9952f692019-05-28 10:10:04 -07001// SPDX-License-Identifier: GPL-2.0-only
Dylan Reid3c320f32014-05-19 19:18:27 -07002/*
3 *
4 * Implementation of primary ALSA driver code base for NVIDIA Tegra HDA.
Dylan Reid3c320f32014-05-19 19:18:27 -07005 */
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>
Dmitry Osipenko87f0e462021-01-20 03:31:50 +030020#include <linux/reset.h>
Dylan Reid3c320f32014-05-19 19:18:27 -070021#include <linux/slab.h>
22#include <linux/time.h>
Sameer Pujarc94800a2018-11-29 09:28:52 +053023#include <linux/string.h>
Sameer Pujar3f7e94e2019-01-22 13:03:16 +053024#include <linux/pm_runtime.h>
Dylan Reid3c320f32014-05-19 19:18:27 -070025
26#include <sound/core.h>
27#include <sound/initval.h>
28
Pierre-Louis Bossartbe57bff2018-08-22 15:24:57 -050029#include <sound/hda_codec.h>
Dylan Reid3c320f32014-05-19 19:18:27 -070030#include "hda_controller.h"
Dylan Reid3c320f32014-05-19 19:18:27 -070031
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
Sameer Pujarbb9b02a2020-05-04 13:46:14 +053056/* 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
Dylan Reid3c320f32014-05-19 19:18:27 -070061/* max number of SDs */
62#define NUM_CAPTURE_SD 1
63#define NUM_PLAYBACK_SD 1
64
Sameer Pujarbb9b02a2020-05-04 13:46:14 +053065/*
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
Sameer Pujard278dc92021-12-23 17:23:49 +053071struct hda_tegra_soc {
72 bool has_hda2codec_2x_reset;
73};
74
Dylan Reid3c320f32014-05-19 19:18:27 -070075struct hda_tegra {
76 struct azx chip;
77 struct device *dev;
Sameer Pujard278dc92021-12-23 17:23:49 +053078 struct reset_control_bulk_data resets[3];
Dmitry Osipenko3a465f02021-01-20 03:31:49 +030079 struct clk_bulk_data clocks[3];
Sameer Pujard278dc92021-12-23 17:23:49 +053080 unsigned int nresets;
Dmitry Osipenko3a465f02021-01-20 03:31:49 +030081 unsigned int nclocks;
Dylan Reid3c320f32014-05-19 19:18:27 -070082 void __iomem *regs;
Takashi Iwai83510442015-09-24 11:00:18 +020083 struct work_struct probe_work;
Sameer Pujard278dc92021-12-23 17:23:49 +053084 const struct hda_tegra_soc *soc;
Dylan Reid3c320f32014-05-19 19:18:27 -070085};
86
Arnd Bergmann16c23952014-05-26 21:15:20 +020087#ifdef CONFIG_PM
Dylan Reid3c320f32014-05-19 19:18:27 -070088static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
89module_param(power_save, bint, 0644);
90MODULE_PARM_DESC(power_save,
91 "Automatic power-saving timeout (in seconds, 0 = disable).");
Arnd Bergmann16c23952014-05-26 21:15:20 +020092#else
Takashi Iwaibb573922015-02-20 09:26:04 +010093#define power_save 0
Arnd Bergmann16c23952014-05-26 21:15:20 +020094#endif
Dylan Reid3c320f32014-05-19 19:18:27 -070095
Takashi Iwai193c7e12018-08-08 17:12:58 +020096static const struct hda_controller_ops hda_tegra_ops; /* nothing special */
Dylan Reid3c320f32014-05-19 19:18:27 -070097
98static void hda_tegra_init(struct hda_tegra *hda)
99{
100 u32 v;
101
102 /* Enable PCI access */
103 v = readl(hda->regs + HDA_IPFS_CONFIG);
104 v |= HDA_IPFS_EN_FPCI;
105 writel(v, hda->regs + HDA_IPFS_CONFIG);
106
107 /* Enable MEM/IO space and bus master */
108 v = readl(hda->regs + HDA_CFG_CMD);
109 v &= ~HDA_DISABLE_INTR;
110 v |= HDA_ENABLE_MEM_SPACE | HDA_ENABLE_IO_SPACE |
111 HDA_ENABLE_BUS_MASTER | HDA_ENABLE_SERR;
112 writel(v, hda->regs + HDA_CFG_CMD);
113
114 writel(HDA_BAR0_INIT_PROGRAM, hda->regs + HDA_CFG_BAR0);
115 writel(HDA_BAR0_FINAL_PROGRAM, hda->regs + HDA_CFG_BAR0);
116 writel(HDA_FPCI_BAR0_START, hda->regs + HDA_IPFS_FPCI_BAR0);
117
118 v = readl(hda->regs + HDA_IPFS_INTR_MASK);
119 v |= HDA_IPFS_EN_INTR;
120 writel(v, hda->regs + HDA_IPFS_INTR_MASK);
121}
122
Dylan Reid3c320f32014-05-19 19:18:27 -0700123/*
124 * power management
125 */
Arnd Bergmann74729462019-03-04 21:33:25 +0100126static int __maybe_unused hda_tegra_suspend(struct device *dev)
Dylan Reid3c320f32014-05-19 19:18:27 -0700127{
128 struct snd_card *card = dev_get_drvdata(dev);
Sameer Pujar707e0752019-01-22 13:03:20 +0530129 int rc;
Dylan Reid3c320f32014-05-19 19:18:27 -0700130
Sameer Pujar707e0752019-01-22 13:03:20 +0530131 rc = pm_runtime_force_suspend(dev);
132 if (rc < 0)
133 return rc;
Dylan Reid3c320f32014-05-19 19:18:27 -0700134 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Dylan Reid3c320f32014-05-19 19:18:27 -0700135
Dylan Reid3c320f32014-05-19 19:18:27 -0700136 return 0;
137}
138
Arnd Bergmann74729462019-03-04 21:33:25 +0100139static int __maybe_unused hda_tegra_resume(struct device *dev)
Dylan Reid3c320f32014-05-19 19:18:27 -0700140{
141 struct snd_card *card = dev_get_drvdata(dev);
Sameer Pujar707e0752019-01-22 13:03:20 +0530142 int rc;
Dylan Reid3c320f32014-05-19 19:18:27 -0700143
Sameer Pujar707e0752019-01-22 13:03:20 +0530144 rc = pm_runtime_force_resume(dev);
145 if (rc < 0)
146 return rc;
Dylan Reid3c320f32014-05-19 19:18:27 -0700147 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
148
149 return 0;
150}
Dylan Reid3c320f32014-05-19 19:18:27 -0700151
Arnd Bergmann74729462019-03-04 21:33:25 +0100152static int __maybe_unused hda_tegra_runtime_suspend(struct device *dev)
Sameer Pujarf2974aa2019-01-22 13:03:18 +0530153{
Sameer Pujar707e0752019-01-22 13:03:20 +0530154 struct snd_card *card = dev_get_drvdata(dev);
155 struct azx *chip = card->private_data;
156 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
Sameer Pujar707e0752019-01-22 13:03:20 +0530157
158 if (chip && chip->running) {
Mohan Kumar23d63a32020-08-25 10:54:15 +0530159 /* enable controller wake up event */
160 azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) |
161 STATESTS_INT_MASK);
162
Sameer Pujar707e0752019-01-22 13:03:20 +0530163 azx_stop_chip(chip);
Sameer Pujar707e0752019-01-22 13:03:20 +0530164 azx_enter_link_reset(chip);
165 }
Dmitry Osipenko3a465f02021-01-20 03:31:49 +0300166 clk_bulk_disable_unprepare(hda->nclocks, hda->clocks);
Sameer Pujar707e0752019-01-22 13:03:20 +0530167
Sameer Pujarf2974aa2019-01-22 13:03:18 +0530168 return 0;
169}
170
Arnd Bergmann74729462019-03-04 21:33:25 +0100171static int __maybe_unused hda_tegra_runtime_resume(struct device *dev)
Sameer Pujarf2974aa2019-01-22 13:03:18 +0530172{
Sameer Pujar707e0752019-01-22 13:03:20 +0530173 struct snd_card *card = dev_get_drvdata(dev);
174 struct azx *chip = card->private_data;
175 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
176 int rc;
177
Dmitry Osipenko87f0e462021-01-20 03:31:50 +0300178 if (!chip->running) {
Sameer Pujard278dc92021-12-23 17:23:49 +0530179 rc = reset_control_bulk_assert(hda->nresets, hda->resets);
Dmitry Osipenko87f0e462021-01-20 03:31:50 +0300180 if (rc)
181 return rc;
182 }
183
Dmitry Osipenko3a465f02021-01-20 03:31:49 +0300184 rc = clk_bulk_prepare_enable(hda->nclocks, hda->clocks);
Sameer Pujar707e0752019-01-22 13:03:20 +0530185 if (rc != 0)
186 return rc;
Dmitry Osipenko67555682021-01-20 03:31:51 +0300187 if (chip->running) {
Sameer Pujar707e0752019-01-22 13:03:20 +0530188 hda_tegra_init(hda);
189 azx_init_chip(chip, 1);
Mohan Kumar23d63a32020-08-25 10:54:15 +0530190 /* disable controller wake up event*/
191 azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) &
192 ~STATESTS_INT_MASK);
Dmitry Osipenko87f0e462021-01-20 03:31:50 +0300193 } else {
194 usleep_range(10, 100);
195
Sameer Pujard278dc92021-12-23 17:23:49 +0530196 rc = reset_control_bulk_deassert(hda->nresets, hda->resets);
Dmitry Osipenko87f0e462021-01-20 03:31:50 +0300197 if (rc)
198 return rc;
Sameer Pujar707e0752019-01-22 13:03:20 +0530199 }
200
Sameer Pujarf2974aa2019-01-22 13:03:18 +0530201 return 0;
202}
Sameer Pujarf2974aa2019-01-22 13:03:18 +0530203
Dylan Reid3c320f32014-05-19 19:18:27 -0700204static const struct dev_pm_ops hda_tegra_pm = {
205 SET_SYSTEM_SLEEP_PM_OPS(hda_tegra_suspend, hda_tegra_resume)
Sameer Pujarf2974aa2019-01-22 13:03:18 +0530206 SET_RUNTIME_PM_OPS(hda_tegra_runtime_suspend,
207 hda_tegra_runtime_resume,
208 NULL)
Dylan Reid3c320f32014-05-19 19:18:27 -0700209};
210
Takashi Iwaia41d1222015-04-14 22:13:18 +0200211static int hda_tegra_dev_disconnect(struct snd_device *device)
212{
213 struct azx *chip = device->device_data;
214
215 chip->bus.shutdown = 1;
216 return 0;
217}
218
Dylan Reid3c320f32014-05-19 19:18:27 -0700219/*
Dylan Reid3c320f32014-05-19 19:18:27 -0700220 * destructor
221 */
222static int hda_tegra_dev_free(struct snd_device *device)
223{
Dylan Reid3c320f32014-05-19 19:18:27 -0700224 struct azx *chip = device->device_data;
Takashi Iwai83510442015-09-24 11:00:18 +0200225 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
Dylan Reid3c320f32014-05-19 19:18:27 -0700226
Takashi Iwai83510442015-09-24 11:00:18 +0200227 cancel_work_sync(&hda->probe_work);
Takashi Iwaia41d1222015-04-14 22:13:18 +0200228 if (azx_bus(chip)->chip_init) {
Takashi Iwai7833c3f2015-04-14 18:13:13 +0200229 azx_stop_all_streams(chip);
Dylan Reid3c320f32014-05-19 19:18:27 -0700230 azx_stop_chip(chip);
231 }
232
233 azx_free_stream_pages(chip);
Takashi Iwaia41d1222015-04-14 22:13:18 +0200234 azx_free_streams(chip);
Takashi Iwai4cfe99c2015-04-16 12:02:30 +0200235 snd_hdac_bus_exit(azx_bus(chip));
Dylan Reid3c320f32014-05-19 19:18:27 -0700236
237 return 0;
238}
239
240static int hda_tegra_init_chip(struct azx *chip, struct platform_device *pdev)
241{
242 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
Takashi Iwaia41d1222015-04-14 22:13:18 +0200243 struct hdac_bus *bus = azx_bus(chip);
Dylan Reid3c320f32014-05-19 19:18:27 -0700244 struct resource *res;
Dylan Reid3c320f32014-05-19 19:18:27 -0700245
Yang Yingliang01893552021-06-10 21:19:22 +0800246 hda->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
Eliot Blennerhassett93ceaa32015-02-14 15:32:24 +1300247 if (IS_ERR(hda->regs))
248 return PTR_ERR(hda->regs);
Dylan Reid3c320f32014-05-19 19:18:27 -0700249
Takashi Iwaia41d1222015-04-14 22:13:18 +0200250 bus->remap_addr = hda->regs + HDA_BAR0;
251 bus->addr = res->start + HDA_BAR0;
Dylan Reid3c320f32014-05-19 19:18:27 -0700252
Dylan Reid3c320f32014-05-19 19:18:27 -0700253 hda_tegra_init(hda);
254
255 return 0;
256}
257
Dylan Reid3c320f32014-05-19 19:18:27 -0700258static int hda_tegra_first_init(struct azx *chip, struct platform_device *pdev)
259{
Sameer Pujarbb9b02a2020-05-04 13:46:14 +0530260 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
Takashi Iwaia41d1222015-04-14 22:13:18 +0200261 struct hdac_bus *bus = azx_bus(chip);
Dylan Reid3c320f32014-05-19 19:18:27 -0700262 struct snd_card *card = chip->card;
263 int err;
264 unsigned short gcap;
265 int irq_id = platform_get_irq(pdev, 0);
Sameer Pujarc0bde002019-02-20 20:43:24 +0530266 const char *sname, *drv_name = "tegra-hda";
267 struct device_node *np = pdev->dev.of_node;
Dylan Reid3c320f32014-05-19 19:18:27 -0700268
Jiajun Cao8c132122021-06-22 21:19:42 +0800269 if (irq_id < 0)
270 return irq_id;
271
Dylan Reid3c320f32014-05-19 19:18:27 -0700272 err = hda_tegra_init_chip(chip, pdev);
273 if (err)
274 return err;
275
276 err = devm_request_irq(chip->card->dev, irq_id, azx_interrupt,
277 IRQF_SHARED, KBUILD_MODNAME, chip);
278 if (err) {
279 dev_err(chip->card->dev,
280 "unable to request IRQ %d, disabling device\n",
281 irq_id);
282 return err;
283 }
Takashi Iwaia41d1222015-04-14 22:13:18 +0200284 bus->irq = irq_id;
Mohan Kumared4d0a4a2020-08-05 15:22:21 +0530285 bus->dma_stop_delay = 100;
Takashi Iwaif36da942019-12-10 07:34:20 +0100286 card->sync_irq = bus->irq;
Dylan Reid3c320f32014-05-19 19:18:27 -0700287
Sameer Pujarbb9b02a2020-05-04 13:46:14 +0530288 /*
289 * Tegra194 has 4 SDO lines and the STRIPE can be used to
290 * indicate how many of the SDO lines the stream should be
291 * striped. But GCAP register does not reflect the true
292 * capability of HW. Below workaround helps to fix this.
293 *
294 * GCAP_NSDO is bits 19:18 in T_AZA_DBG_CFG_2,
295 * 0 for 1 SDO, 1 for 2 SDO, 2 for 4 SDO lines.
296 */
297 if (of_device_is_compatible(np, "nvidia,tegra194-hda")) {
298 u32 val;
299
300 dev_info(card->dev, "Override SDO lines to %u\n",
301 TEGRA194_NUM_SDO_LINES);
302
303 val = readl(hda->regs + FPCI_DBG_CFG_2) & ~FPCI_GCAP_NSDO_MASK;
304 val |= (TEGRA194_NUM_SDO_LINES >> 1) << FPCI_GCAP_NSDO_SHIFT;
305 writel(val, hda->regs + FPCI_DBG_CFG_2);
306 }
307
Dylan Reid3c320f32014-05-19 19:18:27 -0700308 gcap = azx_readw(chip, GCAP);
309 dev_dbg(card->dev, "chipset global capabilities = 0x%x\n", gcap);
310
Mohan Kumar6c17e9d2020-08-05 15:22:19 +0530311 chip->align_buffer_size = 1;
312
Dylan Reid3c320f32014-05-19 19:18:27 -0700313 /* read number of streams from GCAP register instead of using
314 * hardcoded value
315 */
316 chip->capture_streams = (gcap >> 8) & 0x0f;
317 chip->playback_streams = (gcap >> 12) & 0x0f;
318 if (!chip->playback_streams && !chip->capture_streams) {
319 /* gcap didn't give any info, switching to old method */
320 chip->playback_streams = NUM_PLAYBACK_SD;
321 chip->capture_streams = NUM_CAPTURE_SD;
322 }
323 chip->capture_index_offset = 0;
324 chip->playback_index_offset = chip->capture_streams;
325 chip->num_streams = chip->playback_streams + chip->capture_streams;
Dylan Reid3c320f32014-05-19 19:18:27 -0700326
Takashi Iwaia41d1222015-04-14 22:13:18 +0200327 /* initialize streams */
328 err = azx_init_streams(chip);
Thierry Reding6a464a42015-05-05 14:56:21 +0200329 if (err < 0) {
330 dev_err(card->dev, "failed to initialize streams: %d\n", err);
Dylan Reid3c320f32014-05-19 19:18:27 -0700331 return err;
Thierry Reding6a464a42015-05-05 14:56:21 +0200332 }
Dylan Reid3c320f32014-05-19 19:18:27 -0700333
Takashi Iwaia41d1222015-04-14 22:13:18 +0200334 err = azx_alloc_stream_pages(chip);
Thierry Reding6a464a42015-05-05 14:56:21 +0200335 if (err < 0) {
336 dev_err(card->dev, "failed to allocate stream pages: %d\n",
337 err);
Takashi Iwaia41d1222015-04-14 22:13:18 +0200338 return err;
Thierry Reding6a464a42015-05-05 14:56:21 +0200339 }
Dylan Reid3c320f32014-05-19 19:18:27 -0700340
341 /* initialize chip */
342 azx_init_chip(chip, 1);
343
Sameer Pujar60019d82020-05-04 13:46:16 +0530344 /*
345 * Playback (for 44.1K/48K, 2-channel, 16-bps) fails with
346 * 4 SDO lines due to legacy design limitation. Following
347 * is, from HD Audio Specification (Revision 1.0a), used to
348 * control striping of the stream across multiple SDO lines
349 * for sample rates <= 48K.
350 *
351 * { ((num_channels * bits_per_sample) / number of SDOs) >= 8 }
352 *
353 * Due to legacy design issue it is recommended that above
354 * ratio must be greater than 8. Since number of SDO lines is
355 * in powers of 2, next available ratio is 16 which can be
356 * used as a limiting factor here.
357 */
Peter Geis615d4352021-01-08 13:59:13 +0000358 if (of_device_is_compatible(np, "nvidia,tegra30-hda"))
Sameer Pujar60019d82020-05-04 13:46:16 +0530359 chip->bus.core.sdo_limit = 16;
360
Dylan Reid3c320f32014-05-19 19:18:27 -0700361 /* codec detection */
Takashi Iwaia41d1222015-04-14 22:13:18 +0200362 if (!bus->codec_mask) {
Dylan Reid3c320f32014-05-19 19:18:27 -0700363 dev_err(card->dev, "no codecs found!\n");
364 return -ENODEV;
365 }
366
Sameer Pujarc94800a2018-11-29 09:28:52 +0530367 /* driver name */
Sameer Pujarc0bde002019-02-20 20:43:24 +0530368 strncpy(card->driver, drv_name, sizeof(card->driver));
Sameer Pujarc94800a2018-11-29 09:28:52 +0530369 /* shortname for card */
Sameer Pujarc0bde002019-02-20 20:43:24 +0530370 sname = of_get_property(np, "nvidia,model", NULL);
371 if (!sname)
372 sname = drv_name;
Sameer Pujarc94800a2018-11-29 09:28:52 +0530373 if (strlen(sname) > sizeof(card->shortname))
374 dev_info(card->dev, "truncating shortname for card\n");
375 strncpy(card->shortname, sname, sizeof(card->shortname));
376
377 /* longname for card */
Dylan Reid3c320f32014-05-19 19:18:27 -0700378 snprintf(card->longname, sizeof(card->longname),
379 "%s at 0x%lx irq %i",
Takashi Iwaia41d1222015-04-14 22:13:18 +0200380 card->shortname, bus->addr, bus->irq);
Dylan Reid3c320f32014-05-19 19:18:27 -0700381
382 return 0;
383}
384
385/*
386 * constructor
387 */
Takashi Iwai83510442015-09-24 11:00:18 +0200388
389static void hda_tegra_probe_work(struct work_struct *work);
390
Dylan Reid3c320f32014-05-19 19:18:27 -0700391static int hda_tegra_create(struct snd_card *card,
392 unsigned int driver_caps,
Dylan Reid3c320f32014-05-19 19:18:27 -0700393 struct hda_tegra *hda)
394{
Takashi Iwai41f394a2020-01-03 09:16:24 +0100395 static const struct snd_device_ops ops = {
Takashi Iwaia41d1222015-04-14 22:13:18 +0200396 .dev_disconnect = hda_tegra_dev_disconnect,
Dylan Reid3c320f32014-05-19 19:18:27 -0700397 .dev_free = hda_tegra_dev_free,
398 };
399 struct azx *chip;
400 int err;
401
402 chip = &hda->chip;
403
Dylan Reid3c320f32014-05-19 19:18:27 -0700404 mutex_init(&chip->open_mutex);
405 chip->card = card;
Takashi Iwaia43ff5b2015-04-14 17:26:00 +0200406 chip->ops = &hda_tegra_ops;
Dylan Reid3c320f32014-05-19 19:18:27 -0700407 chip->driver_caps = driver_caps;
408 chip->driver_type = driver_caps & 0xff;
409 chip->dev_index = 0;
410 INIT_LIST_HEAD(&chip->pcm_list);
Dylan Reid3c320f32014-05-19 19:18:27 -0700411
Dylan Reid3c320f32014-05-19 19:18:27 -0700412 chip->codec_probe_mask = -1;
413
414 chip->single_cmd = false;
415 chip->snoop = true;
416
Takashi Iwai83510442015-09-24 11:00:18 +0200417 INIT_WORK(&hda->probe_work, hda_tegra_probe_work);
418
Takashi Iwai19abfef2019-08-07 20:32:08 +0200419 err = azx_bus_init(chip, NULL);
Thierry Reding3b90f402015-05-05 14:45:57 +0200420 if (err < 0)
421 return err;
422
Jon Hunteree85a362020-07-14 17:08:41 +0100423 chip->bus.core.sync_write = 0;
Takashi Iwai5f2cb362019-12-12 20:11:01 +0100424 chip->bus.core.needs_damn_long_delay = 1;
Takashi Iwai4d024fe2020-01-20 11:41:27 +0100425 chip->bus.core.aligned_mmio = 1;
Takashi Iwai7d9a1802015-12-17 08:23:39 +0100426
Dylan Reid3c320f32014-05-19 19:18:27 -0700427 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
428 if (err < 0) {
429 dev_err(card->dev, "Error creating device\n");
430 return err;
431 }
432
433 return 0;
434}
435
Sameer Pujard278dc92021-12-23 17:23:49 +0530436static const struct hda_tegra_soc tegra30_data = {
437 .has_hda2codec_2x_reset = true,
438};
439
440static const struct hda_tegra_soc tegra194_data = {
441 .has_hda2codec_2x_reset = false,
442};
443
Dylan Reid3c320f32014-05-19 19:18:27 -0700444static const struct of_device_id hda_tegra_match[] = {
Sameer Pujard278dc92021-12-23 17:23:49 +0530445 { .compatible = "nvidia,tegra30-hda", .data = &tegra30_data },
446 { .compatible = "nvidia,tegra194-hda", .data = &tegra194_data },
Dylan Reid3c320f32014-05-19 19:18:27 -0700447 {},
448};
Dylan Reidf73387c2014-05-20 11:26:12 -0700449MODULE_DEVICE_TABLE(of, hda_tegra_match);
Dylan Reid3c320f32014-05-19 19:18:27 -0700450
451static int hda_tegra_probe(struct platform_device *pdev)
452{
Sameer Pujar9935d552019-01-22 13:03:21 +0530453 const unsigned int driver_flags = AZX_DCAPS_CORBRP_SELF_CLEAR |
454 AZX_DCAPS_PM_RUNTIME;
Dylan Reid3c320f32014-05-19 19:18:27 -0700455 struct snd_card *card;
456 struct azx *chip;
457 struct hda_tegra *hda;
458 int err;
Dylan Reid3c320f32014-05-19 19:18:27 -0700459
460 hda = devm_kzalloc(&pdev->dev, sizeof(*hda), GFP_KERNEL);
461 if (!hda)
462 return -ENOMEM;
463 hda->dev = &pdev->dev;
464 chip = &hda->chip;
465
Sameer Pujard278dc92021-12-23 17:23:49 +0530466 hda->soc = of_device_get_match_data(&pdev->dev);
467
Dylan Reid3c320f32014-05-19 19:18:27 -0700468 err = snd_card_new(&pdev->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
469 THIS_MODULE, 0, &card);
470 if (err < 0) {
471 dev_err(&pdev->dev, "Error creating card!\n");
472 return err;
473 }
474
Sameer Pujard278dc92021-12-23 17:23:49 +0530475 hda->resets[hda->nresets++].id = "hda";
476 hda->resets[hda->nresets++].id = "hda2hdmi";
477 /*
478 * "hda2codec_2x" reset is not present on Tegra194. Though DT would
479 * be updated to reflect this, but to have backward compatibility
480 * below is necessary.
481 */
482 if (hda->soc->has_hda2codec_2x_reset)
483 hda->resets[hda->nresets++].id = "hda2codec_2x";
484
485 err = devm_reset_control_bulk_get_exclusive(&pdev->dev, hda->nresets,
486 hda->resets);
487 if (err)
Dmitry Osipenko87f0e462021-01-20 03:31:50 +0300488 goto out_free;
Dmitry Osipenko87f0e462021-01-20 03:31:50 +0300489
Dmitry Osipenko3a465f02021-01-20 03:31:49 +0300490 hda->clocks[hda->nclocks++].id = "hda";
491 hda->clocks[hda->nclocks++].id = "hda2hdmi";
492 hda->clocks[hda->nclocks++].id = "hda2codec_2x";
493
494 err = devm_clk_bulk_get(&pdev->dev, hda->nclocks, hda->clocks);
Sameer Pujar65af2122019-01-22 13:03:17 +0530495 if (err < 0)
496 goto out_free;
497
Takashi Iwaia43ff5b2015-04-14 17:26:00 +0200498 err = hda_tegra_create(card, driver_flags, hda);
Dylan Reid3c320f32014-05-19 19:18:27 -0700499 if (err < 0)
500 goto out_free;
501 card->private_data = chip;
502
503 dev_set_drvdata(&pdev->dev, card);
Sameer Pujar3f7e94e2019-01-22 13:03:16 +0530504
505 pm_runtime_enable(hda->dev);
506 if (!azx_has_pm_runtime(chip))
507 pm_runtime_forbid(hda->dev);
508
Takashi Iwai83510442015-09-24 11:00:18 +0200509 schedule_work(&hda->probe_work);
510
511 return 0;
512
513out_free:
514 snd_card_free(card);
515 return err;
516}
517
518static void hda_tegra_probe_work(struct work_struct *work)
519{
520 struct hda_tegra *hda = container_of(work, struct hda_tegra, probe_work);
521 struct azx *chip = &hda->chip;
522 struct platform_device *pdev = to_platform_device(hda->dev);
523 int err;
Dylan Reid3c320f32014-05-19 19:18:27 -0700524
Sameer Pujar3f7e94e2019-01-22 13:03:16 +0530525 pm_runtime_get_sync(hda->dev);
Dylan Reid3c320f32014-05-19 19:18:27 -0700526 err = hda_tegra_first_init(chip, pdev);
527 if (err < 0)
528 goto out_free;
529
530 /* create codec instances */
Thierry Reding350355e2018-12-03 16:53:16 +0100531 err = azx_probe_codecs(chip, 8);
Dylan Reid3c320f32014-05-19 19:18:27 -0700532 if (err < 0)
533 goto out_free;
534
535 err = azx_codec_configure(chip);
536 if (err < 0)
537 goto out_free;
538
Dylan Reid3c320f32014-05-19 19:18:27 -0700539 err = snd_card_register(chip->card);
540 if (err < 0)
541 goto out_free;
542
543 chip->running = 1;
Takashi Iwaia41d1222015-04-14 22:13:18 +0200544 snd_hda_set_power_save(&chip->bus, power_save * 1000);
Dylan Reid3c320f32014-05-19 19:18:27 -0700545
Takashi Iwai83510442015-09-24 11:00:18 +0200546 out_free:
Sameer Pujar3f7e94e2019-01-22 13:03:16 +0530547 pm_runtime_put(hda->dev);
Takashi Iwai83510442015-09-24 11:00:18 +0200548 return; /* no error return from async probe */
Dylan Reid3c320f32014-05-19 19:18:27 -0700549}
550
551static int hda_tegra_remove(struct platform_device *pdev)
552{
Sameer Pujar3f7e94e2019-01-22 13:03:16 +0530553 int ret;
554
555 ret = snd_card_free(dev_get_drvdata(&pdev->dev));
556 pm_runtime_disable(&pdev->dev);
557
558 return ret;
Dylan Reid3c320f32014-05-19 19:18:27 -0700559}
560
Takashi Iwaib2a0baf2015-03-05 17:21:32 +0100561static void hda_tegra_shutdown(struct platform_device *pdev)
562{
563 struct snd_card *card = dev_get_drvdata(&pdev->dev);
564 struct azx *chip;
565
566 if (!card)
567 return;
568 chip = card->private_data;
569 if (chip && chip->running)
570 azx_stop_chip(chip);
571}
572
Dylan Reid3c320f32014-05-19 19:18:27 -0700573static struct platform_driver tegra_platform_hda = {
574 .driver = {
575 .name = "tegra-hda",
576 .pm = &hda_tegra_pm,
577 .of_match_table = hda_tegra_match,
578 },
579 .probe = hda_tegra_probe,
580 .remove = hda_tegra_remove,
Takashi Iwaib2a0baf2015-03-05 17:21:32 +0100581 .shutdown = hda_tegra_shutdown,
Dylan Reid3c320f32014-05-19 19:18:27 -0700582};
583module_platform_driver(tegra_platform_hda);
584
585MODULE_DESCRIPTION("Tegra HDA bus driver");
586MODULE_LICENSE("GPL v2");