coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
onboard.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef ONBOARD_H
4 #define ONBOARD_H
5 
6 #define BOARD_TRACKPAD_I2C_ADDR 0x4a
7 #define BOARD_TOUCHSCREEN_I2C_ADDR 0x4b
8 #define BOARD_CODEC_I2C_ADDR 0x2c
9 
10 #define BOARD_TRACKPAD_WAKE_GPIO 9 /* GPIO9 */
11 #define BOARD_WLAN_WAKE_GPIO 10 /* GPIO10 */
12 #define BOARD_TOUCHSCREEN_WAKE_GPIO 14 /* GPIO14 */
13 #define BOARD_PP3300_AUTOBAHN_GPIO 23 /* GPIO23 */
14 #define BOARD_WLAN_DISABLE_GPIO 42 /* GPIO42 */
15 #define BOARD_CODEC_WAKE_GPIO 45 /* GPIO45 */
16 #define BOARD_SSD_RESET_GPIO 47 /* GPIO47 */
17 #define BOARD_LTE_DISABLE_GPIO 59 /* GPIO59 */
18 
19 #endif