1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 3 #ifndef SUPERIO_ITE_IT8718F_H 4 #define SUPERIO_ITE_IT8718F_H 5 6 #include <device/pnp_type.h> 7 8 /* Datasheet: http://www.ite.com.tw/product_info/PC/Brief-IT8718_2.asp */ 9 10 #define IT8718F_FDC 0x00 /* Floppy */ 11 #define IT8718F_SP1 0x01 /* Com1 */ 12 #define IT8718F_SP2 0x02 /* Com2 */ 13 #define IT8718F_PP 0x03 /* Parallel port */ 14 #define IT8718F_EC 0x04 /* Environment controller */ 15 #define IT8718F_KBCK 0x05 /* PS/2 keyboard */ 16 #define IT8718F_KBCM 0x06 /* PS/2 mouse */ 17 #define IT8718F_GPIO 0x07 /* GPIO */ 18 #define IT8718F_IR 0x0a /* Consumer IR */ 19 20 void it8718f_disable_reboot(pnp_devfn_t dev); 21 22 #endif /* SUPERIO_ITE_IT8718F_H */ 23