Blame view

include/linux/i2c/atmel_mxt_ts.h 1.1 KB
4cf51c383   Joonyoung Shim   Input: Add ATMEL ...
1
  /*
7686b108d   Iiro Valkonen   Input: atmel_mxt_...
2
   * Atmel maXTouch Touchscreen driver
4cf51c383   Joonyoung Shim   Input: Add ATMEL ...
3
4
5
6
7
8
9
10
11
   *
   * 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.
   */
7686b108d   Iiro Valkonen   Input: atmel_mxt_...
12
13
  #ifndef __LINUX_ATMEL_MXT_TS_H
  #define __LINUX_ATMEL_MXT_TS_H
4cf51c383   Joonyoung Shim   Input: Add ATMEL ...
14

71749f5c6   Iiro Valkonen   Input: atmel_mxt_...
15
  #include <linux/types.h>
4cf51c383   Joonyoung Shim   Input: Add ATMEL ...
16
  /* Orient */
7686b108d   Iiro Valkonen   Input: atmel_mxt_...
17
18
19
20
21
22
23
24
  #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
4cf51c383   Joonyoung Shim   Input: Add ATMEL ...
25

7686b108d   Iiro Valkonen   Input: atmel_mxt_...
26
27
  /* The platform data for the Atmel maXTouch touchscreen driver */
  struct mxt_platform_data {
71749f5c6   Iiro Valkonen   Input: atmel_mxt_...
28
29
  	const u8 *config;
  	size_t config_length;
4cf51c383   Joonyoung Shim   Input: Add ATMEL ...
30
31
32
33
34
35
36
37
  	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;
919ed895f   Iiro Valkonen   Input: atmel_mxt_...
38
  	unsigned long irqflags;
4cf51c383   Joonyoung Shim   Input: Add ATMEL ...
39
  };
7686b108d   Iiro Valkonen   Input: atmel_mxt_...
40
  #endif /* __LINUX_ATMEL_MXT_TS_H */