msm_serial_hs_cir: Add HTC CIR serial driver

* HTC kernel version: m7-kk-3.4.10-17db3b4

Change-Id: I738963154d7b29aec19190f667082f2e66578a00
diff --git a/include/linux/htc_cir.h b/include/linux/htc_cir.h
new file mode 100644
index 0000000..3bb31e7
--- /dev/null
+++ b/include/linux/htc_cir.h
@@ -0,0 +1,31 @@
+/* include/linux/htc_cir.h
+ *
+ * Copyright (C) 2011 HTC, Inc.
+ *
+ * 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 __LINUX_HTC_CIR_H
+#define __LINUX_HTC_CIR_H
+
+struct cir_platform_data {
+	int (*cir_set_path)(int);
+	int (*cir_reset)(void);
+	int (*cir_power)(int);
+};
+
+enum irda_path {
+	PATH_NONE = 0,
+	PATH_IRDA,
+	PATH_CIR,
+};
+
+#endif