blob: 3a3d78ed6da859751408c7fe9b6f46c8cb305736 [file] [log] [blame]
Dylan Reid05e84872014-02-28 15:41:22 -08001/*
2 * Common functionality for the alsa driver code base for HD Audio.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope that 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
15#ifndef __SOUND_HDA_CONTROLLER_H
16#define __SOUND_HDA_CONTROLLER_H
17
18#include <sound/core.h>
19#include <sound/initval.h>
20#include "hda_codec.h"
21#include "hda_priv.h"
22
23/* PCM setup */
24int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
25 struct hda_pcm *cpcm);
26static inline struct azx_dev *get_azx_dev(struct snd_pcm_substream *substream)
27{
28 return substream->runtime->private_data;
29}
30unsigned int azx_get_position(struct azx *chip,
31 struct azx_dev *azx_dev,
32 bool with_check);
33
34/* Stream control. */
Dylan Reid05e84872014-02-28 15:41:22 -080035void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev);
Dylan Reid05e84872014-02-28 15:41:22 -080036
Dylan Reid05e84872014-02-28 15:41:22 -080037#ifdef CONFIG_SND_HDA_DSP_LOADER
Dylan Reid2b5fd6c2014-02-28 15:41:24 -080038int azx_load_dsp_prepare(struct hda_bus *bus, unsigned int format,
39 unsigned int byte_size,
40 struct snd_dma_buffer *bufp);
41void azx_load_dsp_trigger(struct hda_bus *bus, bool start);
42void azx_load_dsp_cleanup(struct hda_bus *bus,
43 struct snd_dma_buffer *dmab);
Dylan Reid05e84872014-02-28 15:41:22 -080044#endif
45
Dylan Reid67908992014-02-28 15:41:23 -080046/* Allocation functions. */
47int azx_alloc_stream_pages(struct azx *chip);
48void azx_free_stream_pages(struct azx *chip);
49
Dylan Reid6e85ddd2014-02-28 15:41:25 -080050/*
51 * CORB / RIRB interface
52 */
Dylan Reid6e85ddd2014-02-28 15:41:25 -080053void azx_init_cmd_io(struct azx *chip);
54void azx_free_cmd_io(struct azx *chip);
55void azx_update_rirb(struct azx *chip);
56int azx_send_cmd(struct hda_bus *bus, unsigned int val);
57unsigned int azx_get_response(struct hda_bus *bus,
58 unsigned int addr);
59
Dylan Reid05e84872014-02-28 15:41:22 -080060#endif /* __SOUND_HDA_CONTROLLER_H */