payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / google / jecht / onboard.h
bloba6ba80a7b3c80c11bd4f6f6960987c5dd0b00c1e
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef ONBOARD_H
4 #define ONBOARD_H
6 #ifndef __ACPI__
7 void lan_init(void);
9 void set_power_led(int state);
11 enum {
12 LED_OFF = 0,
13 LED_ON,
14 LED_BLINK,
16 #endif
18 /* defines for programming the MAC address */
19 #define JECHT_NIC_VENDOR_ID 0x10EC
20 #define JECHT_NIC_DEVICE_ID 0x8168
22 /* 0x00: White LINK LED and Amber ACTIVE LED */
23 #define JECHT_NIC_LED_MODE 0x00
25 /* NIC wake is GPIO 8 */
26 #define JECHT_NIC_WAKE_GPIO 8
28 /* WLAN wake is GPIO 10 */
29 #define JECHT_WLAN_WAKE_GPIO 10
31 /* USB Charger Control: GPIO26 */
32 #define GPIO_USB_CTL_1 26
34 /* IT8772F defs */
35 #define IT8772F_BASE 0x2e
36 #define IT8772F_SERIAL_DEV PNP_DEV(IT8772F_BASE, IT8772F_SP1)
37 #define IT8772F_GPIO_DEV PNP_DEV(IT8772F_BASE, IT8772F_GPIO)
38 #define IT8772F_SUPERIO_DEV PNP_DEV(IT8772F_BASE, 0)
40 /* Write Protect: GPIO58 = GPIO_SPI_WP, active high */
41 #define GPIO_SPI_WP 58
43 /* Recovery: GPIO12 = RECOVERY_L, active low */
44 #define GPIO_REC_MODE 12
46 #endif