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

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

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/input/ad714x.h (Version linux-6.12-rc7) and /include/linux/input/ad714x.h (Version linux-4.10.17)


  1 /* SPDX-License-Identifier: GPL-2.0-or-later * << 
  2 /*                                                  1 /*
  3  * include/linux/input/ad714x.h                     2  * include/linux/input/ad714x.h
  4  *                                                  3  *
  5  * AD714x is very flexible, it can be used as       4  * AD714x is very flexible, it can be used as buttons, scrollwheel,
  6  * slider, touchpad at the same time. That dep      5  * slider, touchpad at the same time. That depends on the boards.
  7  * The platform_data for the device's "struct       6  * The platform_data for the device's "struct device" holds this
  8  * information.                                     7  * information.
  9  *                                                  8  *
 10  * Copyright 2009-2011 Analog Devices Inc.          9  * Copyright 2009-2011 Analog Devices Inc.
                                                   >>  10  *
                                                   >>  11  * Licensed under the GPL-2 or later.
 11  */                                                12  */
 12                                                    13 
 13 #ifndef __LINUX_INPUT_AD714X_H__                   14 #ifndef __LINUX_INPUT_AD714X_H__
 14 #define __LINUX_INPUT_AD714X_H__                   15 #define __LINUX_INPUT_AD714X_H__
 15                                                    16 
 16 #define STAGE_NUM              12                  17 #define STAGE_NUM              12
 17 #define STAGE_CFGREG_NUM       8                   18 #define STAGE_CFGREG_NUM       8
 18 #define SYS_CFGREG_NUM         8                   19 #define SYS_CFGREG_NUM         8
 19                                                    20 
 20 /* board information which need be initialized     21 /* board information which need be initialized in arch/mach... */
 21 struct ad714x_slider_plat {                        22 struct ad714x_slider_plat {
 22         int start_stage;                           23         int start_stage;
 23         int end_stage;                             24         int end_stage;
 24         int max_coord;                             25         int max_coord;
 25 };                                                 26 };
 26                                                    27 
 27 struct ad714x_wheel_plat {                         28 struct ad714x_wheel_plat {
 28         int start_stage;                           29         int start_stage;
 29         int end_stage;                             30         int end_stage;
 30         int max_coord;                             31         int max_coord;
 31 };                                                 32 };
 32                                                    33 
 33 struct ad714x_touchpad_plat {                      34 struct ad714x_touchpad_plat {
 34         int x_start_stage;                         35         int x_start_stage;
 35         int x_end_stage;                           36         int x_end_stage;
 36         int x_max_coord;                           37         int x_max_coord;
 37                                                    38 
 38         int y_start_stage;                         39         int y_start_stage;
 39         int y_end_stage;                           40         int y_end_stage;
 40         int y_max_coord;                           41         int y_max_coord;
 41 };                                                 42 };
 42                                                    43 
 43 struct ad714x_button_plat {                        44 struct ad714x_button_plat {
 44         int keycode;                               45         int keycode;
 45         unsigned short l_mask;                     46         unsigned short l_mask;
 46         unsigned short h_mask;                     47         unsigned short h_mask;
 47 };                                                 48 };
 48                                                    49 
 49 struct ad714x_platform_data {                      50 struct ad714x_platform_data {
 50         int slider_num;                            51         int slider_num;
 51         int wheel_num;                             52         int wheel_num;
 52         int touchpad_num;                          53         int touchpad_num;
 53         int button_num;                            54         int button_num;
 54         struct ad714x_slider_plat *slider;         55         struct ad714x_slider_plat *slider;
 55         struct ad714x_wheel_plat *wheel;           56         struct ad714x_wheel_plat *wheel;
 56         struct ad714x_touchpad_plat *touchpad;     57         struct ad714x_touchpad_plat *touchpad;
 57         struct ad714x_button_plat *button;         58         struct ad714x_button_plat *button;
 58         unsigned short stage_cfg_reg[STAGE_NUM     59         unsigned short stage_cfg_reg[STAGE_NUM][STAGE_CFGREG_NUM];
 59         unsigned short sys_cfg_reg[SYS_CFGREG_     60         unsigned short sys_cfg_reg[SYS_CFGREG_NUM];
 60         unsigned long irqflags;                    61         unsigned long irqflags;
 61 };                                                 62 };
 62                                                    63 
 63 #endif                                             64 #endif
 64                                                    65 

~ [ 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