~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/input/kxtj9.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 /*
  3  * Copyright (C) 2011 Kionix, Inc.
  4  * Written by Chris Hudson <chudson@kionix.com>
  5  */
  6 
  7 #ifndef __KXTJ9_H__
  8 #define __KXTJ9_H__
  9 
 10 #define KXTJ9_I2C_ADDR          0x0F
 11 
 12 struct kxtj9_platform_data {
 13         unsigned int min_interval;      /* minimum poll interval (in milli-seconds) */
 14         unsigned int init_interval;     /* initial poll interval (in milli-seconds) */
 15 
 16         /*
 17          * By default, x is axis 0, y is axis 1, z is axis 2; these can be
 18          * changed to account for sensor orientation within the host device.
 19          */
 20         u8 axis_map_x;
 21         u8 axis_map_y;
 22         u8 axis_map_z;
 23 
 24         /*
 25          * Each axis can be negated to account for sensor orientation within
 26          * the host device.
 27          */
 28         bool negate_x;
 29         bool negate_y;
 30         bool negate_z;
 31 
 32         /* CTRL_REG1: set resolution, g-range, data ready enable */
 33         /* Output resolution: 8-bit valid or 12-bit valid */
 34         #define RES_8BIT                0
 35         #define RES_12BIT               (1 << 6)
 36         u8 res_12bit;
 37         /* Output g-range: +/-2g, 4g, or 8g */
 38         #define KXTJ9_G_2G              0
 39         #define KXTJ9_G_4G              (1 << 3)
 40         #define KXTJ9_G_8G              (1 << 4)
 41         u8 g_range;
 42 
 43         int (*init)(void);
 44         void (*exit)(void);
 45         int (*power_on)(void);
 46         int (*power_off)(void);
 47 };
 48 #endif  /* __KXTJ9_H__ */
 49 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php