summaryrefslogtreecommitdiff
path: root/sound/soc/tegra/tegra_pcm.h
blob: 5a9531b9fbf7566f62d73416760dfc07c1974771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * tegra_pcm.h - Definitions for Tegra PCM driver
 *
 * Author: Stephen Warren <swarren@nvidia.com>
 * Copyright (C) 2010 - NVIDIA, Inc.
 *
 * Based on code copyright/by:
 *
 * Copyright (c) 2009-2010, NVIDIA Corporation.
 * Scott Peterson <speterson@nvidia.com>
 *
 * Copyright (C) 2010 Google, Inc.
 * Iliyan Malchev <malchev@google.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#ifndef __TEGRA_PCM_H__
#define __TEGRA_PCM_H__

#include <mach/dma.h>

#define MAX_DMA_REQ_COUNT 2

struct tegra_pcm_dma_params {
	unsigned long addr;
	unsigned long wrap;
	unsigned long width;
	unsigned long req_sel;
};

struct tegra_runtime_data {
	struct snd_pcm_substream *substream;
	spinlock_t lock;
	int running;
	int dma_pos;
	int dma_pos_end;
	int period_index;
	int dma_req_idx;
	struct tegra_dma_req dma_req[MAX_DMA_REQ_COUNT];
	struct tegra_dma_channel *dma_chan;
	int dma_req_count;
	int disable_intr;
	unsigned int avp_dma_addr;
};

int tegra_pcm_trigger(struct snd_pcm_substream *substream, int cmd);
int tegra_pcm_allocate(struct snd_pcm_substream *substream,
					int dma_mode,
					const struct snd_pcm_hardware *pcm_hardware);
int tegra_pcm_close(struct snd_pcm_substream *substream);
int tegra_pcm_hw_params(struct snd_pcm_substream *substream,
				struct snd_pcm_hw_params *params);
int tegra_pcm_trigger(struct snd_pcm_substream *substream, int cmd);
int tegra_pcm_mmap(struct snd_pcm_substream *substream,
				struct vm_area_struct *vma);
int tegra_pcm_dma_allocate(struct snd_soc_pcm_runtime *rtd, size_t size);
void tegra_pcm_free(struct snd_pcm *pcm);
snd_pcm_uframes_t tegra_pcm_pointer(struct snd_pcm_substream *substream);
int tegra_pcm_hw_free(struct snd_pcm_substream *substream);

#endif