summaryrefslogtreecommitdiff
path: root/include/nds/touchscreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/nds/touchscreen.h')
-rw-r--r--include/nds/touchscreen.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/include/nds/touchscreen.h b/include/nds/touchscreen.h
new file mode 100644
index 0000000000..d9a854c270
--- /dev/null
+++ b/include/nds/touchscreen.h
@@ -0,0 +1,60 @@
+/*
+ * Copyright (c) 2008 by Matthieu Bucchianeri <mbucchia@gmail.com>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ *
+ * http://www.rtems.org/license/LICENSE
+ */
+
+#ifndef _TOUCHSCREEN_H_
+#define _TOUCHSCREEN_H_
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+ /*
+ * ioctl for lefthanded/righthanded mode.
+ */
+
+#define MW_UID_SET_RIGHTHANDED 0x4108
+#define MW_UID_SET_LEFTHANDED 0x4109
+
+ /*
+ * touchscreen prototype entry points
+ */
+
+ rtems_device_driver touchscreen_initialize (rtems_device_major_number,
+ rtems_device_minor_number,
+ void *);
+
+ rtems_device_driver touchscreen_open (rtems_device_major_number,
+ rtems_device_minor_number, void *);
+
+ rtems_device_driver touchscreen_control (rtems_device_major_number,
+ rtems_device_minor_number, void *);
+
+ rtems_device_driver touchscreen_close (rtems_device_major_number,
+ rtems_device_minor_number, void *);
+
+ rtems_device_driver touchscreen_read (rtems_device_major_number,
+ rtems_device_minor_number, void *);
+
+ rtems_device_driver touchscreen_write (rtems_device_major_number,
+ rtems_device_minor_number, void *);
+
+ rtems_device_driver touchscreen_control (rtems_device_major_number,
+ rtems_device_minor_number, void *);
+
+#define TOUCHSCREEN_DRIVER_TABLE_ENTRY \
+ { touchscreen_initialize, touchscreen_open, touchscreen_close, \
+ touchscreen_read, touchscreen_write, touchscreen_control }
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif