blob: 302e1392a573fb684e494ec6cae50cedda52c897 [file] [log] [blame]
Iliyan Malcheva169e312010-08-23 21:01:55 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef _TEGRA_AUDIO_H
13#define _TEGRA_AUDIO_H
14
15#include <linux/ioctl.h>
16
17#define TEGRA_AUDIO_MAGIC 't'
18
19#define TEGRA_AUDIO_IN_START _IO(TEGRA_AUDIO_MAGIC, 0)
20#define TEGRA_AUDIO_IN_STOP _IO(TEGRA_AUDIO_MAGIC, 1)
21
22struct tegra_audio_in_config {
23 int rate;
24 int stereo;
25};
26
27#define TEGRA_AUDIO_IN_SET_CONFIG _IOW(TEGRA_AUDIO_MAGIC, 2, const struct tegra_audio_in_config *)
28#define TEGRA_AUDIO_IN_GET_CONFIG _IOR(TEGRA_AUDIO_MAGIC, 3, struct tegra_audio_in_config *)
29
30struct tegra_audio_buf_config {
31 unsigned size;
32 unsigned threshold;
33 unsigned chunk;
34};
35
36#define TEGRA_AUDIO_IN_SET_BUF_CONFIG _IOW(TEGRA_AUDIO_MAGIC, 4, const struct tegra_audio_buf_config *)
37#define TEGRA_AUDIO_IN_GET_BUF_CONFIG _IOR(TEGRA_AUDIO_MAGIC, 5, struct tegra_audio_buf_config *)
38
39#define TEGRA_AUDIO_OUT_SET_BUF_CONFIG _IOW(TEGRA_AUDIO_MAGIC, 6, const struct tegra_audio_buf_config *)
40#define TEGRA_AUDIO_OUT_GET_BUF_CONFIG _IOR(TEGRA_AUDIO_MAGIC, 7, struct tegra_audio_buf_config *)
41
42#define TEGRA_AUDIO_IN_GET_ERROR_COUNT _IOR(TEGRA_AUDIO_MAGIC, 8, unsigned *)
43
44#define TEGRA_AUDIO_OUT_GET_ERROR_COUNT _IOR(TEGRA_AUDIO_MAGIC, 9, unsigned *)
45
46struct tegra_audio_out_preload {
47 void *data;
48 size_t len;
49 size_t len_written;
50};
51
52#define TEGRA_AUDIO_OUT_PRELOAD_FIFO _IOWR(TEGRA_AUDIO_MAGIC, 10, struct tegra_audio_out_preload *)
53
54#endif
55