linux/include/linux/input/elan-i2c-ids.h
<<
>>
Prefs
   1/*
   2 * Elan I2C/SMBus Touchpad device whitelist
   3 *
   4 * Copyright (c) 2013 ELAN Microelectronics Corp.
   5 *
   6 * Author: æ維 (Duson Lin) <dusonlin@emc.com.tw>
   7 * Author: KT Liao <kt.liao@emc.com.tw>
   8 * Version: 1.6.3
   9 *
  10 * Based on cyapa driver:
  11 * copyright (c) 2011-2012 Cypress Semiconductor, Inc.
  12 * copyright (c) 2011-2012 Google, Inc.
  13 *
  14 * This program is free software; you can redistribute it and/or modify it
  15 * under the terms of the GNU General Public License version 2 as published
  16 * by the Free Software Foundation.
  17 *
  18 * Trademarks are the property of their respective owners.
  19 */
  20
  21#ifndef __ELAN_I2C_IDS_H
  22#define __ELAN_I2C_IDS_H
  23
  24#include <linux/mod_devicetable.h>
  25
  26static const struct acpi_device_id elan_acpi_id[] = {
  27        { "ELAN0000", 0 },
  28        { "ELAN0100", 0 },
  29        { "ELAN0600", 0 },
  30        { "ELAN0601", 0 },
  31        { "ELAN0602", 0 },
  32        { "ELAN0603", 0 },
  33        { "ELAN0604", 0 },
  34        { "ELAN0605", 0 },
  35        { "ELAN0606", 0 },
  36        { "ELAN0607", 0 },
  37        { "ELAN0608", 0 },
  38        { "ELAN0609", 0 },
  39        { "ELAN060B", 0 },
  40        { "ELAN060C", 0 },
  41        { "ELAN060F", 0 },
  42        { "ELAN0610", 0 },
  43        { "ELAN0611", 0 },
  44        { "ELAN0612", 0 },
  45        { "ELAN0615", 0 },
  46        { "ELAN0616", 0 },
  47        { "ELAN0617", 0 },
  48        { "ELAN0618", 0 },
  49        { "ELAN0619", 0 },
  50        { "ELAN061A", 0 },
  51/*      { "ELAN061B", 0 }, not working on the Lenovo Legion Y7000 */
  52        { "ELAN061C", 0 },
  53        { "ELAN061D", 0 },
  54        { "ELAN061E", 0 },
  55        { "ELAN061F", 0 },
  56        { "ELAN0620", 0 },
  57        { "ELAN0621", 0 },
  58        { "ELAN0622", 0 },
  59        { "ELAN0623", 0 },
  60        { "ELAN0624", 0 },
  61        { "ELAN0625", 0 },
  62        { "ELAN0626", 0 },
  63        { "ELAN0627", 0 },
  64        { "ELAN0628", 0 },
  65        { "ELAN0629", 0 },
  66        { "ELAN062A", 0 },
  67        { "ELAN062B", 0 },
  68        { "ELAN062C", 0 },
  69        { "ELAN062D", 0 },
  70        { "ELAN062E", 0 }, /* Lenovo V340 Whiskey Lake U */
  71        { "ELAN062F", 0 }, /* Lenovo V340 Comet Lake U */
  72        { "ELAN0631", 0 },
  73        { "ELAN0632", 0 },
  74        { "ELAN0633", 0 }, /* Lenovo S145 */
  75        { "ELAN0634", 0 }, /* Lenovo V340 Ice lake */
  76        { "ELAN0635", 0 }, /* Lenovo V1415-IIL */
  77        { "ELAN0636", 0 }, /* Lenovo V1415-Dali */
  78        { "ELAN0637", 0 }, /* Lenovo V1415-IGLR */
  79        { "ELAN1000", 0 },
  80        { }
  81};
  82
  83#endif /* __ELAN_I2C_IDS_H */
  84