1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Tablet driver configuration 4# 5menuconfig INPUT_TABLET 6 bool "Tablets" 7 help 8 Say Y here, and a list of supported tablets will be displayed. 9 This option doesn't affect the kernel. 10 11 If unsure, say Y. 12 13if INPUT_TABLET 14 15config TABLET_USB_ACECAD 16 tristate "Acecad Flair tablet support (USB)" 17 depends on USB_ARCH_HAS_HCD 18 select USB 19 help 20 Say Y here if you want to use the USB version of the Acecad Flair 21 tablet. Make sure to say Y to "Mouse support" 22 (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support" 23 (CONFIG_INPUT_EVDEV) as well. 24 25 To compile this driver as a module, choose M here: the 26 module will be called acecad. 27 28config TABLET_USB_AIPTEK 29 tristate "Aiptek 6000U/8000U and Genius G_PEN tablet support (USB)" 30 depends on USB_ARCH_HAS_HCD 31 select USB 32 help 33 Say Y here if you want to use the USB version of the Aiptek 6000U, 34 Aiptek 8000U or Genius G-PEN 560 tablet. Make sure to say Y to 35 "Mouse support" (CONFIG_INPUT_MOUSEDEV) and/or "Event interface 36 support" (CONFIG_INPUT_EVDEV) as well. 37 38 To compile this driver as a module, choose M here: the 39 module will be called aiptek. 40 41config TABLET_USB_HANWANG 42 tristate "Hanwang Art Master III tablet support (USB)" 43 depends on USB_ARCH_HAS_HCD 44 select USB 45 help 46 Say Y here if you want to use the USB version of the Hanwang Art 47 Master III tablet. 48 49 To compile this driver as a module, choose M here: the 50 module will be called hanwang. 51 52config TABLET_USB_KBTAB 53 tristate "KB Gear JamStudio tablet support (USB)" 54 depends on USB_ARCH_HAS_HCD 55 select USB 56 help 57 Say Y here if you want to use the USB version of the KB Gear 58 JamStudio tablet. Make sure to say Y to "Mouse support" 59 (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support" 60 (CONFIG_INPUT_EVDEV) as well. 61 62 To compile this driver as a module, choose M here: the 63 module will be called kbtab. 64 65config TABLET_USB_PEGASUS 66 tristate "Pegasus Mobile Notetaker Pen input tablet support" 67 depends on USB_ARCH_HAS_HCD 68 select USB 69 help 70 Say Y here if you want to use the Pegasus Mobile Notetaker, 71 also known as: 72 Genie e-note The Notetaker, 73 Staedtler Digital ballpoint pen 990 01, 74 IRISnotes Express or 75 NEWLink Digital Note Taker. 76 77 To compile this driver as a module, choose M here: the 78 module will be called pegasus_notetaker. 79 80config TABLET_SERIAL_WACOM4 81 tristate "Wacom protocol 4 serial tablet support" 82 select SERIO 83 help 84 Say Y here if you want to use Wacom protocol 4 serial tablets. 85 E.g. serial versions of the Cintiq, Graphire or Penpartner. 86 87 To compile this driver as a module, choose M here: the 88 module will be called wacom_serial4. 89 90endif 91