coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
ec.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _EC_HP_KBC1126_EC_H
4 #define _EC_HP_KBC1126_EC_H
5 
6 #define KBC1100_PM1 1 /* PM1 */
7 #define SMSCSUPERIO_SP1 4 /* Com1 */
8 #define SMSCSUPERIO_SP2 5 /* Com2 */
9 #define KBC1100_KBC 7 /* Keyboard */
10 #define KBC1100_EC0 8 /* EC Channel 0 */
11 #define KBC1100_MAILBOX 9 /* Mail Box */
12 #define KBC1100_GPIO 0x0A /* GPIO */
13 #define KBC1100_SPI 0x0B /* Share flash interface */
14 
15 #define KBC1100_EC1 0x0D /* EC Channel 1 */
16 #define KBC1100_EC2 0x0E /* EC Channel 2 */
17 
18 /* early init */
19 void kbc1126_enter_conf(void);
20 void kbc1126_exit_conf(void);
21 void kbc1126_mailbox_init(void);
22 void kbc1126_kbc_init(void);
23 void kbc1126_ec_init(void);
24 void kbc1126_com1_init(void);
25 void kbc1126_pm1_init(void);
26 void kbc1126_disable4e(void);
27 
28 #endif /* _EC_HP_KBC1126_EC_H */
void kbc1126_ec_init(void)
Definition: early_init.c:47
void kbc1126_mailbox_init(void)
Definition: early_init.c:30
void kbc1126_kbc_init(void)
Definition: early_init.c:38
void kbc1126_pm1_init(void)
Definition: early_init.c:64
void kbc1126_enter_conf(void)
Definition: early_init.c:8
void kbc1126_exit_conf(void)
Definition: early_init.c:19
void kbc1126_disable4e(void)
Definition: early_init.c:80
void kbc1126_com1_init(void)
Definition: early_init.c:55