coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
fw_config.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootstate.h>
4 #include <console/console.h>
5 #include <fw_config.h>
6 #include <gpio.h>
7 
8 static const struct pad_config bt_i2s_enable_pads[] = {
9  PAD_CFG_NF(GPP_VGPIO_30, NONE, DEEP, NF3), /* BT_I2S_BCLK */
10  PAD_CFG_NF(GPP_VGPIO_31, NONE, DEEP, NF3), /* BT_I2S_SYNC */
11  PAD_CFG_NF(GPP_VGPIO_32, NONE, DEEP, NF3), /* BT_I2S_SDO */
12  PAD_CFG_NF(GPP_VGPIO_33, NONE, DEEP, NF3), /* BT_I2S_SDI */
13  PAD_CFG_NF(GPP_VGPIO_34, NONE, DEEP, NF1), /* SSP2_SCLK */
14  PAD_CFG_NF(GPP_VGPIO_35, NONE, DEEP, NF1), /* SSP2_SFRM */
15  PAD_CFG_NF(GPP_VGPIO_36, NONE, DEEP, NF1), /* SSP_TXD */
16  PAD_CFG_NF(GPP_VGPIO_37, NONE, DEEP, NF1), /* SSP_RXD */
17 };
18 
19 static const struct pad_config bt_i2s_disable_pads[] = {
28 };
29 
30 static void fw_config_handle(void *unused)
31 {
32  if (!fw_config_is_provisioned() || fw_config_probe(FW_CONFIG(AUDIO, AUDIO_UNKNOWN))) {
33  printk(BIOS_INFO, "Disable BT offload audio related GPIO pins.\n");
35  return;
36  }
37 
38  if (fw_config_probe(FW_CONFIG(AUDIO, NAU88L25B_I2S))) {
39  printk(BIOS_INFO, "BT offload enabled over I2S with NAU88L25B\n");
41  }
42 
43 }
#define GPP_VGPIO_37
#define GPP_VGPIO_32
#define GPP_VGPIO_36
#define GPP_VGPIO_31
#define GPP_VGPIO_34
#define GPP_VGPIO_35
#define GPP_VGPIO_30
#define GPP_VGPIO_33
@ BS_DEV_ENABLE
Definition: bootstate.h:82
@ BS_ON_ENTRY
Definition: bootstate.h:95
#define ARRAY_SIZE(a)
Definition: helpers.h:12
#define printk(level,...)
Definition: stdlib.h:16
#define FW_CONFIG(__field, __option)
Definition: fw_config.h:28
bool fw_config_is_provisioned(void)
Definition: fw_config.c:83
bool fw_config_probe(const struct fw_config *match)
Definition: fw_config.c:62
#define BIOS_INFO
BIOS_INFO - Expected events.
Definition: loglevel.h:113
BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_ENTRY, fw_config_handle, NULL)
static const struct pad_config bt_i2s_disable_pads[]
Definition: fw_config.c:19
static void fw_config_handle(void *unused)
Definition: fw_config.c:30
static const struct pad_config bt_i2s_enable_pads[]
Definition: fw_config.c:8
@ AUDIO
Definition: dramc_pi_api.h:49
void gpio_configure_pads(const struct soc_amd_gpio *gpio_list_ptr, size_t size)
program a particular set of GPIO
Definition: gpio.c:307
#define PAD_NC(pin)
Definition: gpio_defs.h:263
#define PAD_CFG_NF(pad, pull, rst, func)
Definition: gpio_defs.h:197
#define NULL
Definition: stddef.h:19
uint16_t unused
Definition: padconfig.h:13