blob: e18ce11d63a9de987b9a0640601c2c5caafd173b [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
Ben Cheng4b29af02012-03-07 16:14:53 -080014
Iliyan Malcheva169e312010-08-23 21:01:55 -070015#include <linux/ioctl.h>
Ben Cheng4b29af02012-03-07 16:14:53 -080016
Iliyan Malcheva169e312010-08-23 21:01:55 -070017#define TEGRA_AUDIO_MAGIC 't'
Ben Cheng4b29af02012-03-07 16:14:53 -080018
Iliyan Malcheva169e312010-08-23 21:01:55 -070019#define TEGRA_AUDIO_IN_START _IO(TEGRA_AUDIO_MAGIC, 0)
20#define TEGRA_AUDIO_IN_STOP _IO(TEGRA_AUDIO_MAGIC, 1)
Ben Cheng4b29af02012-03-07 16:14:53 -080021
Iliyan Malcheva169e312010-08-23 21:01:55 -070022struct tegra_audio_in_config {
23 int rate;
24 int stereo;
25};
Ben Cheng4b29af02012-03-07 16:14:53 -080026
Iliyan Malcheva169e312010-08-23 21:01:55 -070027#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 *)
Ben Cheng4b29af02012-03-07 16:14:53 -080029
Iliyan Malchevc1974ee2010-11-22 16:52:22 -080030#define TEGRA_AUDIO_IN_SET_NUM_BUFS _IOW(TEGRA_AUDIO_MAGIC, 4, const unsigned int *)
31#define TEGRA_AUDIO_IN_GET_NUM_BUFS _IOW(TEGRA_AUDIO_MAGIC, 5, unsigned int *)
32#define TEGRA_AUDIO_OUT_SET_NUM_BUFS _IOW(TEGRA_AUDIO_MAGIC, 6, const unsigned int *)
33#define TEGRA_AUDIO_OUT_GET_NUM_BUFS _IOW(TEGRA_AUDIO_MAGIC, 7, unsigned int *)
Ben Cheng4b29af02012-03-07 16:14:53 -080034
Iliyan Malchev9883f392010-10-19 15:23:42 -070035#define TEGRA_AUDIO_OUT_FLUSH _IO(TEGRA_AUDIO_MAGIC, 10)
Ben Cheng4b29af02012-03-07 16:14:53 -080036
Iliyan Malchev9883f392010-10-19 15:23:42 -070037#define TEGRA_AUDIO_BIT_FORMAT_DEFAULT 0
38#define TEGRA_AUDIO_BIT_FORMAT_DSP 1
Iliyan Malchevc1974ee2010-11-22 16:52:22 -080039#define TEGRA_AUDIO_SET_BIT_FORMAT _IOW(TEGRA_AUDIO_MAGIC, 11, const unsigned int *)
Iliyan Malchev9883f392010-10-19 15:23:42 -070040#define TEGRA_AUDIO_GET_BIT_FORMAT _IOR(TEGRA_AUDIO_MAGIC, 12, unsigned int *)
Ben Cheng4b29af02012-03-07 16:14:53 -080041
Iliyan Malcheva169e312010-08-23 21:01:55 -070042#endif
Ben Cheng4b29af02012-03-07 16:14:53 -080043