coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
pc87392.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #ifndef SUPERIO_NSC_PC87392_H
4 #define SUPERIO_NSC_PC87392_H
5 
6 #define PC87392_FDC 0x00
7 #define PC87392_PP 0x01
8 #define PC87392_SP2 0x02
9 #define PC87392_SP1 0x03
10 #define PC87392_GPIO 0x07
11 #define PC87392_WDT 0x0A
12 
13 #define PC87392_GPIO_PIN_OE 0x01
14 #define PC87392_GPIO_PIN_TYPE_PUSH_PULL 0x02
15 #define PC87392_GPIO_PIN_PULLUP 0x04
16 #define PC87392_GPIO_PIN_LOCK 0x08
17 #define PC87392_GPIO_PIN_TRIG_LEVEL 0x10
18 #define PC87392_GPIO_PIN_TRIG_LOW 0x20
19 #define PC87392_GPIO_PIN_DEBOUNCE 0x40
20 
21 #define PC87392_GPIO_PIN_TRIGGERS_IRQ 0x01
22 #define PC87392_GPIO_PIN_TRIGGERS_SMI 0x02
23 
24 #endif