ALSA: hda - Migrate more hdac_stream codes
[linux-2.6-block.git] / sound / pci / hda / hda_tegra.c
CommitLineData
3c320f3f
DR
1/*
2 *
3 * Implementation of primary ALSA driver code base for NVIDIA Tegra HDA.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 */
18
19#include <linux/clk.h>
20#include <linux/clocksource.h>
21#include <linux/completion.h>
22#include <linux/delay.h>
23#include <linux/dma-mapping.h>
24#include <linux/init.h>
25#include <linux/interrupt.h>
26#include <linux/io.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/mutex.h>
31#include <linux/of_device.h>
3c320f3f
DR
32#include <linux/slab.h>
33#include <linux/time.h>
34
35#include <sound/core.h>
36#include <sound/initval.h>
37
38#include "hda_codec.h"
39#include "hda_controller.h"
3c320f3f
DR
40
41/* Defines for Nvidia Tegra HDA support */
42#define HDA_BAR0 0x8000
43
44#define HDA_CFG_CMD 0x1004
45#define HDA_CFG_BAR0 0x1010
46
47#define HDA_ENABLE_IO_SPACE (1 << 0)
48#define HDA_ENABLE_MEM_SPACE (1 << 1)
49#define HDA_ENABLE_BUS_MASTER (1 << 2)
50#define HDA_ENABLE_SERR (1 << 8)
51#define HDA_DISABLE_INTR (1 << 10)
52#define HDA_BAR0_INIT_PROGRAM 0xFFFFFFFF
53#define HDA_BAR0_FINAL_PROGRAM (1 << 14)
54
55/* IPFS */
56#define HDA_IPFS_CONFIG 0x180
57#define HDA_IPFS_EN_FPCI 0x1
58
59#define HDA_IPFS_FPCI_BAR0 0x80
60#define HDA_FPCI_BAR0_START 0x40
61
62#define HDA_IPFS_INTR_MASK 0x188
63#define HDA_IPFS_EN_INTR (1 << 16)
64
65/* max number of SDs */
66#define NUM_CAPTURE_SD 1
67#define NUM_PLAYBACK_SD 1
68
69struct hda_tegra {
70 struct azx chip;
71 struct device *dev;
72 struct clk *hda_clk;
73 struct clk *hda2codec_2x_clk;
74 struct clk *hda2hdmi_clk;
75 void __iomem *regs;
76};
77
16c23952 78#ifdef CONFIG_PM
3c320f3f
DR
79static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
80module_param(power_save, bint, 0644);
81MODULE_PARM_DESC(power_save,
82 "Automatic power-saving timeout (in seconds, 0 = disable).");
16c23952 83#else
bb573928 84#define power_save 0
16c23952 85#endif
3c320f3f
DR
86
87/*
88 * DMA page allocation ops.
89 */
a43ff5ba 90static int dma_alloc_pages(struct hdac_bus *bus, int type, size_t size,
3c320f3f
DR
91 struct snd_dma_buffer *buf)
92{
a43ff5ba 93 return snd_dma_alloc_pages(type, bus->dev, size, buf);
3c320f3f
DR
94}
95
a43ff5ba 96static void dma_free_pages(struct hdac_bus *bus, struct snd_dma_buffer *buf)
3c320f3f
DR
97{
98 snd_dma_free_pages(buf);
99}
100
101static int substream_alloc_pages(struct azx *chip,
102 struct snd_pcm_substream *substream,
103 size_t size)
104{
105 struct azx_dev *azx_dev = get_azx_dev(substream);
106
7833c3f8
TI
107 azx_dev->core.bufsize = 0;
108 azx_dev->core.period_bytes = 0;
109 azx_dev->core.format_val = 0;
3c320f3f
DR
110 return snd_pcm_lib_malloc_pages(substream, size);
111}
112
113static int substream_free_pages(struct azx *chip,
114 struct snd_pcm_substream *substream)
115{
116 return snd_pcm_lib_free_pages(substream);
117}
118
119/*
120 * Register access ops. Tegra HDA register access is DWORD only.
121 */
122static void hda_tegra_writel(u32 value, u32 *addr)
123{
124 writel(value, addr);
125}
126
127static u32 hda_tegra_readl(u32 *addr)
128{
129 return readl(addr);
130}
131
132static void hda_tegra_writew(u16 value, u16 *addr)
133{
134 unsigned int shift = ((unsigned long)(addr) & 0x3) << 3;
135 void *dword_addr = (void *)((unsigned long)(addr) & ~0x3);
136 u32 v;
137
138 v = readl(dword_addr);
139 v &= ~(0xffff << shift);
140 v |= value << shift;
141 writel(v, dword_addr);
142}
143
144static u16 hda_tegra_readw(u16 *addr)
145{
146 unsigned int shift = ((unsigned long)(addr) & 0x3) << 3;
147 void *dword_addr = (void *)((unsigned long)(addr) & ~0x3);
148 u32 v;
149
150 v = readl(dword_addr);
151 return (v >> shift) & 0xffff;
152}
153
154static void hda_tegra_writeb(u8 value, u8 *addr)
155{
156 unsigned int shift = ((unsigned long)(addr) & 0x3) << 3;
157 void *dword_addr = (void *)((unsigned long)(addr) & ~0x3);
158 u32 v;
159
160 v = readl(dword_addr);
161 v &= ~(0xff << shift);
162 v |= value << shift;
163 writel(v, dword_addr);
164}
165
166static u8 hda_tegra_readb(u8 *addr)
167{
168 unsigned int shift = ((unsigned long)(addr) & 0x3) << 3;
169 void *dword_addr = (void *)((unsigned long)(addr) & ~0x3);
170 u32 v;
171
172 v = readl(dword_addr);
173 return (v >> shift) & 0xff;
174}
175
a43ff5ba 176static const struct hdac_io_ops hda_tegra_io_ops = {
3c320f3f
DR
177 .reg_writel = hda_tegra_writel,
178 .reg_readl = hda_tegra_readl,
179 .reg_writew = hda_tegra_writew,
180 .reg_readw = hda_tegra_readw,
181 .reg_writeb = hda_tegra_writeb,
182 .reg_readb = hda_tegra_readb,
183 .dma_alloc_pages = dma_alloc_pages,
184 .dma_free_pages = dma_free_pages,
a43ff5ba
TI
185};
186
187static const struct hda_controller_ops hda_tegra_ops = {
3c320f3f
DR
188 .substream_alloc_pages = substream_alloc_pages,
189 .substream_free_pages = substream_free_pages,
190};
191
192static void hda_tegra_init(struct hda_tegra *hda)
193{
194 u32 v;
195
196 /* Enable PCI access */
197 v = readl(hda->regs + HDA_IPFS_CONFIG);
198 v |= HDA_IPFS_EN_FPCI;
199 writel(v, hda->regs + HDA_IPFS_CONFIG);
200
201 /* Enable MEM/IO space and bus master */
202 v = readl(hda->regs + HDA_CFG_CMD);
203 v &= ~HDA_DISABLE_INTR;
204 v |= HDA_ENABLE_MEM_SPACE | HDA_ENABLE_IO_SPACE |
205 HDA_ENABLE_BUS_MASTER | HDA_ENABLE_SERR;
206 writel(v, hda->regs + HDA_CFG_CMD);
207
208 writel(HDA_BAR0_INIT_PROGRAM, hda->regs + HDA_CFG_BAR0);
209 writel(HDA_BAR0_FINAL_PROGRAM, hda->regs + HDA_CFG_BAR0);
210 writel(HDA_FPCI_BAR0_START, hda->regs + HDA_IPFS_FPCI_BAR0);
211
212 v = readl(hda->regs + HDA_IPFS_INTR_MASK);
213 v |= HDA_IPFS_EN_INTR;
214 writel(v, hda->regs + HDA_IPFS_INTR_MASK);
215}
216
217static int hda_tegra_enable_clocks(struct hda_tegra *data)
218{
219 int rc;
220
221 rc = clk_prepare_enable(data->hda_clk);
222 if (rc)
223 return rc;
224 rc = clk_prepare_enable(data->hda2codec_2x_clk);
225 if (rc)
226 goto disable_hda;
227 rc = clk_prepare_enable(data->hda2hdmi_clk);
228 if (rc)
229 goto disable_codec_2x;
230
231 return 0;
232
233disable_codec_2x:
234 clk_disable_unprepare(data->hda2codec_2x_clk);
235disable_hda:
236 clk_disable_unprepare(data->hda_clk);
237 return rc;
238}
239
525549d7 240#ifdef CONFIG_PM_SLEEP
3c320f3f
DR
241static void hda_tegra_disable_clocks(struct hda_tegra *data)
242{
243 clk_disable_unprepare(data->hda2hdmi_clk);
244 clk_disable_unprepare(data->hda2codec_2x_clk);
245 clk_disable_unprepare(data->hda_clk);
246}
247
3c320f3f
DR
248/*
249 * power management
250 */
251static int hda_tegra_suspend(struct device *dev)
252{
253 struct snd_card *card = dev_get_drvdata(dev);
254 struct azx *chip = card->private_data;
3c320f3f
DR
255 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
256
257 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
3c320f3f
DR
258
259 azx_stop_chip(chip);
260 azx_enter_link_reset(chip);
261 hda_tegra_disable_clocks(hda);
262
263 return 0;
264}
265
266static int hda_tegra_resume(struct device *dev)
267{
268 struct snd_card *card = dev_get_drvdata(dev);
269 struct azx *chip = card->private_data;
270 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
3c320f3f
DR
271
272 hda_tegra_enable_clocks(hda);
273
3c320f3f
DR
274 hda_tegra_init(hda);
275
276 azx_init_chip(chip, 1);
277
3c320f3f
DR
278 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
279
280 return 0;
281}
282#endif /* CONFIG_PM_SLEEP */
283
284static const struct dev_pm_ops hda_tegra_pm = {
285 SET_SYSTEM_SLEEP_PM_OPS(hda_tegra_suspend, hda_tegra_resume)
286};
287
3c320f3f
DR
288/*
289 * destructor
290 */
291static int hda_tegra_dev_free(struct snd_device *device)
292{
3c320f3f
DR
293 struct azx *chip = device->device_data;
294
3c320f3f 295 if (chip->initialized) {
7833c3f8 296 azx_stop_all_streams(chip);
3c320f3f
DR
297 azx_stop_chip(chip);
298 }
299
300 azx_free_stream_pages(chip);
301
302 return 0;
303}
304
305static int hda_tegra_init_chip(struct azx *chip, struct platform_device *pdev)
306{
307 struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip);
308 struct device *dev = hda->dev;
309 struct resource *res;
310 int err;
311
312 hda->hda_clk = devm_clk_get(dev, "hda");
313 if (IS_ERR(hda->hda_clk))
314 return PTR_ERR(hda->hda_clk);
315 hda->hda2codec_2x_clk = devm_clk_get(dev, "hda2codec_2x");
316 if (IS_ERR(hda->hda2codec_2x_clk))
317 return PTR_ERR(hda->hda2codec_2x_clk);
318 hda->hda2hdmi_clk = devm_clk_get(dev, "hda2hdmi");
319 if (IS_ERR(hda->hda2hdmi_clk))
320 return PTR_ERR(hda->hda2hdmi_clk);
321
322 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
323 hda->regs = devm_ioremap_resource(dev, res);
93ceaa30
EB
324 if (IS_ERR(hda->regs))
325 return PTR_ERR(hda->regs);
3c320f3f
DR
326
327 chip->remap_addr = hda->regs + HDA_BAR0;
ccc98865 328 azx_bus(chip)->remap_addr = chip->remap_addr; /* FIXME */
3c320f3f
DR
329 chip->addr = res->start + HDA_BAR0;
330
331 err = hda_tegra_enable_clocks(hda);
332 if (err)
333 return err;
334
335 hda_tegra_init(hda);
336
337 return 0;
338}
339
3c320f3f
DR
340static int hda_tegra_first_init(struct azx *chip, struct platform_device *pdev)
341{
342 struct snd_card *card = chip->card;
343 int err;
344 unsigned short gcap;
345 int irq_id = platform_get_irq(pdev, 0);
346
347 err = hda_tegra_init_chip(chip, pdev);
348 if (err)
349 return err;
350
351 err = devm_request_irq(chip->card->dev, irq_id, azx_interrupt,
352 IRQF_SHARED, KBUILD_MODNAME, chip);
353 if (err) {
354 dev_err(chip->card->dev,
355 "unable to request IRQ %d, disabling device\n",
356 irq_id);
357 return err;
358 }
359 chip->irq = irq_id;
360
361 synchronize_irq(chip->irq);
362
363 gcap = azx_readw(chip, GCAP);
364 dev_dbg(card->dev, "chipset global capabilities = 0x%x\n", gcap);
365
366 /* read number of streams from GCAP register instead of using
367 * hardcoded value
368 */
369 chip->capture_streams = (gcap >> 8) & 0x0f;
370 chip->playback_streams = (gcap >> 12) & 0x0f;
371 if (!chip->playback_streams && !chip->capture_streams) {
372 /* gcap didn't give any info, switching to old method */
373 chip->playback_streams = NUM_PLAYBACK_SD;
374 chip->capture_streams = NUM_CAPTURE_SD;
375 }
376 chip->capture_index_offset = 0;
377 chip->playback_index_offset = chip->capture_streams;
378 chip->num_streams = chip->playback_streams + chip->capture_streams;
3c320f3f
DR
379
380 err = azx_alloc_stream_pages(chip);
381 if (err < 0)
382 return err;
383
384 /* initialize streams */
385 azx_init_stream(chip);
386
387 /* initialize chip */
388 azx_init_chip(chip, 1);
389
390 /* codec detection */
391 if (!chip->codec_mask) {
392 dev_err(card->dev, "no codecs found!\n");
393 return -ENODEV;
394 }
395
396 strcpy(card->driver, "tegra-hda");
397 strcpy(card->shortname, "tegra-hda");
398 snprintf(card->longname, sizeof(card->longname),
399 "%s at 0x%lx irq %i",
400 card->shortname, chip->addr, chip->irq);
401
402 return 0;
403}
404
405/*
406 * constructor
407 */
408static int hda_tegra_create(struct snd_card *card,
409 unsigned int driver_caps,
3c320f3f
DR
410 struct hda_tegra *hda)
411{
412 static struct snd_device_ops ops = {
413 .dev_free = hda_tegra_dev_free,
414 };
415 struct azx *chip;
416 int err;
417
418 chip = &hda->chip;
419
420 spin_lock_init(&chip->reg_lock);
421 mutex_init(&chip->open_mutex);
422 chip->card = card;
a43ff5ba
TI
423 chip->ops = &hda_tegra_ops;
424 chip->io_ops = &hda_tegra_io_ops;
3c320f3f
DR
425 chip->irq = -1;
426 chip->driver_caps = driver_caps;
427 chip->driver_type = driver_caps & 0xff;
428 chip->dev_index = 0;
429 INIT_LIST_HEAD(&chip->pcm_list);
3c320f3f 430
3c320f3f
DR
431 chip->codec_probe_mask = -1;
432
433 chip->single_cmd = false;
434 chip->snoop = true;
435
436 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
437 if (err < 0) {
438 dev_err(card->dev, "Error creating device\n");
439 return err;
440 }
441
442 return 0;
443}
444
445static const struct of_device_id hda_tegra_match[] = {
446 { .compatible = "nvidia,tegra30-hda" },
447 {},
448};
f73387cb 449MODULE_DEVICE_TABLE(of, hda_tegra_match);
3c320f3f
DR
450
451static int hda_tegra_probe(struct platform_device *pdev)
452{
453 struct snd_card *card;
454 struct azx *chip;
455 struct hda_tegra *hda;
456 int err;
457 const unsigned int driver_flags = AZX_DCAPS_RIRB_DELAY;
458
459 hda = devm_kzalloc(&pdev->dev, sizeof(*hda), GFP_KERNEL);
460 if (!hda)
461 return -ENOMEM;
462 hda->dev = &pdev->dev;
463 chip = &hda->chip;
464
465 err = snd_card_new(&pdev->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
466 THIS_MODULE, 0, &card);
467 if (err < 0) {
468 dev_err(&pdev->dev, "Error creating card!\n");
469 return err;
470 }
471
a43ff5ba
TI
472 err = azx_bus_create(chip, NULL);
473 if (err < 0)
474 goto out_free;
475
476 err = hda_tegra_create(card, driver_flags, hda);
3c320f3f
DR
477 if (err < 0)
478 goto out_free;
479 card->private_data = chip;
480
481 dev_set_drvdata(&pdev->dev, card);
482
483 err = hda_tegra_first_init(chip, pdev);
484 if (err < 0)
485 goto out_free;
486
487 /* create codec instances */
96d2bd6e 488 err = azx_probe_codecs(chip, 0);
3c320f3f
DR
489 if (err < 0)
490 goto out_free;
491
492 err = azx_codec_configure(chip);
493 if (err < 0)
494 goto out_free;
495
3c320f3f
DR
496 err = snd_card_register(chip->card);
497 if (err < 0)
498 goto out_free;
499
500 chip->running = 1;
bb573928 501 snd_hda_set_power_save(chip->bus, power_save * 1000);
3c320f3f
DR
502
503 return 0;
504
505out_free:
506 snd_card_free(card);
507 return err;
508}
509
510static int hda_tegra_remove(struct platform_device *pdev)
511{
512 return snd_card_free(dev_get_drvdata(&pdev->dev));
513}
514
b2a0bafa
TI
515static void hda_tegra_shutdown(struct platform_device *pdev)
516{
517 struct snd_card *card = dev_get_drvdata(&pdev->dev);
518 struct azx *chip;
519
520 if (!card)
521 return;
522 chip = card->private_data;
523 if (chip && chip->running)
524 azx_stop_chip(chip);
525}
526
3c320f3f
DR
527static struct platform_driver tegra_platform_hda = {
528 .driver = {
529 .name = "tegra-hda",
530 .pm = &hda_tegra_pm,
531 .of_match_table = hda_tegra_match,
532 },
533 .probe = hda_tegra_probe,
534 .remove = hda_tegra_remove,
b2a0bafa 535 .shutdown = hda_tegra_shutdown,
3c320f3f
DR
536};
537module_platform_driver(tegra_platform_hda);
538
539MODULE_DESCRIPTION("Tegra HDA bus driver");
540MODULE_LICENSE("GPL v2");