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_NAME "trackpad"
7 #define BOARD_TRACKPAD_IRQ 37 /* PIRQV */
8 #define BOARD_TRACKPAD_WAKE_GPIO 12 /* GPIO12 */
9 #define BOARD_TRACKPAD_I2C_BUS 1 /* I2C0 */
10 #define BOARD_TRACKPAD_I2C_ADDR 0x15
11 
12 #define BOARD_WLAN_WAKE_GPIO 10 /* GPIO10 */
13 #define BOARD_PP3300_CODEC_GPIO 45 /* GPIO45 */
14 #define BOARD_WLAN_DISABLE_GPIO 46 /* GPIO46 */
15 
16 #endif