summaryrefslogtreecommitdiff
path: root/arch/arm/plat-mxc/include/mach/esai.h
diff options
context:
space:
mode:
authorLionel Xu <Lionel.Xu@freescale.com>2011-07-25 21:44:45 +0800
committerJason Liu <r64343@freescale.com>2012-01-09 20:21:37 +0800
commit4a8d4f9b38ee1310ae10552f052c295465f36617 (patch)
tree6074686c6f95192207f1fca18a15965914c61eb5 /arch/arm/plat-mxc/include/mach/esai.h
parent85e448c45b4919cf5ef29ef475f4fea55db8dc12 (diff)
ENGR00153651-1 ESAI: Prepare MSL support for esai/cs42888 audio codec driver
1) Add machine specific code for esai/cs42888 driver support, including pad control, clk setting, i2c setting, etc. 2) Enable audio support in default config. Signed-off-by: Lionel Xu <R63889@freescale.com>
Diffstat (limited to 'arch/arm/plat-mxc/include/mach/esai.h')
-rw-r--r--arch/arm/plat-mxc/include/mach/esai.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/include/mach/esai.h b/arch/arm/plat-mxc/include/mach/esai.h
new file mode 100644
index 000000000000..d77eb1542066
--- /dev/null
+++ b/arch/arm/plat-mxc/include/mach/esai.h
@@ -0,0 +1,18 @@
+/*
+ * Copyright (C) 2011 Freescale Semiconductor, Inc. All Rights Reserved.
+ *
+ * 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.
+ */
+
+#ifndef __MACH_ESAI_H
+#define __MACH_ESAI_H
+
+struct imx_esai_platform_data {
+ unsigned int flags;
+#define IMX_ESAI_NET (1 << 0)
+#define IMX_ESAI_SYN (1 << 1)
+};
+
+#endif