1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 3 #ifndef SUPERIO_ITE_IT8629E_H 4 #define SUPERIO_ITE_IT8629E_H 5 6 #define IT8629E_FDC 0x00 // FDC 7 #define IT8629E_SP1 0x01 // Serial Port 1 8 #define IT8629E_SP2 0x02 // Serial Port 2 9 #define IT8629E_PP 0x03 // Parallel Port 10 #define IT8629E_EC 0x04 // Environment Controller 11 #define IT8629E_KBCK 0x05 // PS/2 Keyboard 12 #define IT8629E_KBCM 0x06 // PS/2 Mouse 13 #define IT8629E_GPIO 0x07 // GPIO 14 #define IT8629E_UNKNOWN 0x08 15 #define IT8629E_IR 0x0a // Consumer IR 16 17 #endif /* SUPERIO_ITE_IT8629E_H */ 18