2010-07-15 04:55:30 +00:00
|
|
|
/*
|
2011-02-03 07:21:58 +00:00
|
|
|
* Atmel maXTouch Touchscreen driver
|
2010-07-15 04:55:30 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Samsung Electronics Co.Ltd
|
|
|
|
* Author: Joonyoung Shim <jy0922.shim@samsung.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*/
|
|
|
|
|
2011-02-03 07:21:58 +00:00
|
|
|
#ifndef __LINUX_ATMEL_MXT_TS_H
|
|
|
|
#define __LINUX_ATMEL_MXT_TS_H
|
2010-07-15 04:55:30 +00:00
|
|
|
|
2011-02-15 21:36:52 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2010-07-15 04:55:30 +00:00
|
|
|
/* Orient */
|
2011-02-03 07:21:58 +00:00
|
|
|
#define MXT_NORMAL 0x0
|
|
|
|
#define MXT_DIAGONAL 0x1
|
|
|
|
#define MXT_HORIZONTAL_FLIP 0x2
|
|
|
|
#define MXT_ROTATED_90_COUNTER 0x3
|
|
|
|
#define MXT_VERTICAL_FLIP 0x4
|
|
|
|
#define MXT_ROTATED_90 0x5
|
|
|
|
#define MXT_ROTATED_180 0x6
|
|
|
|
#define MXT_DIAGONAL_COUNTER 0x7
|
2010-07-15 04:55:30 +00:00
|
|
|
|
2011-02-03 07:21:58 +00:00
|
|
|
/* The platform data for the Atmel maXTouch touchscreen driver */
|
|
|
|
struct mxt_platform_data {
|
2011-02-15 21:36:52 +00:00
|
|
|
const u8 *config;
|
|
|
|
size_t config_length;
|
|
|
|
|
2010-07-15 04:55:30 +00:00
|
|
|
unsigned int x_line;
|
|
|
|
unsigned int y_line;
|
|
|
|
unsigned int x_size;
|
|
|
|
unsigned int y_size;
|
|
|
|
unsigned int blen;
|
|
|
|
unsigned int threshold;
|
|
|
|
unsigned int voltage;
|
|
|
|
unsigned char orient;
|
2011-02-15 21:36:52 +00:00
|
|
|
unsigned long irqflags;
|
2010-07-15 04:55:30 +00:00
|
|
|
};
|
|
|
|
|
2011-02-03 07:21:58 +00:00
|
|
|
#endif /* __LINUX_ATMEL_MXT_TS_H */
|