[ARM] public interface for CPCAP audio codec driver
authorIliyan Malchev <malchev@google.com>
Thu, 29 Jul 2010 21:08:42 +0000 (14:08 -0700)
committerColin Cross <ccross@android.com>
Wed, 6 Oct 2010 23:33:28 +0000 (16:33 -0700)
Signed-off-by: Iliyan Malchev <malchev@google.com>
include/linux/cpcap_audio.h [new file with mode: 0644]

diff --git a/include/linux/cpcap_audio.h b/include/linux/cpcap_audio.h
new file mode 100644 (file)
index 0000000..d1225d6
--- /dev/null
@@ -0,0 +1,42 @@
+/* include/linux/cpcap_audio.h
+ *
+ * Copyright (C) 2010 Google, Inc.
+ *
+ * Author:
+ *     Iliyan Malchev <malchev@google.com>
+ *
+ * This software is licensed under the terms of the GNU General Public
+ * License version 2, as published by the Free Software Foundation, and
+ * may be copied, distributed, and modified under those terms.
+ *
+ * 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.
+ *
+ */
+
+#ifndef _CPCAP_AUDIO_H
+#define _CPCAP_AUDIO_H
+
+#include <linux/ioctl.h>
+
+#define CPCAP_AUDIO_MAGIC 'c'
+
+#define CPCAP_AUDIO_OUT_SPEAKER                0
+#define CPCAP_AUDIO_OUT_HEADSET                1
+#define CPCAP_AUDIO_OUT_MAX            1
+
+#define CPCAP_AUDIO_OUT_SET_OUTPUT _IOW(CPCAP_AUDIO_MAGIC, 0, unsigned int)
+
+#define CPCAP_AUDIO_OUT_VOL_MIN 0
+#define CPCAP_AUDIO_OUT_VOL_MAX 15
+
+#define CPCAP_AUDIO_OUT_SET_VOLUME _IOW(CPCAP_AUDIO_MAGIC, 1, unsigned int)
+
+#define CPCAP_AUDIO_OUT_GET_OUTPUT \
+                       _IOR(CPCAP_AUDIO_MAGIC, 2, unsigned int *)
+#define CPCAP_AUDIO_OUT_GET_VOLUME \
+                       _IOR(CPCAP_AUDIO_MAGIC, 3, unsigned int *)
+
+#endif/*_CPCAP_AUDIO_H*/