blob: 16fc8dce39a9249f6f2cfb9e95a7b5f53df3aac6 [file] [log] [blame]
Angel Pons210a0082020-04-02 23:48:24 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Rudolph1194aa82017-05-21 08:49:44 +02002
3#include <southbridge/intel/common/gpio.h>
4#include <console/console.h>
5#include <device/device.h>
6#include <ec/acpi/ec.h>
7#include <option.h>
Elyes HAOUAS4f66cb92019-12-01 13:21:52 +01008#include <types.h>
Patrick Rudolph1194aa82017-05-21 08:49:44 +02009
10#include "h8.h"
11#include "chip.h"
12
13/*
14 * Controls BDC (Bluetooth daughter card) power.
15 */
16void h8_bluetooth_enable(int on)
17{
18 if (on)
19 ec_set_bit(0x3a, 4);
20 else
21 ec_clr_bit(0x3a, 4);
22}
23
24/*
25 * Detect BDC on supported MBs.
26 */
Furquan Shaikh4fc17b42020-04-24 21:39:08 -070027bool h8_has_bdc(const struct device *dev)
Patrick Rudolph1194aa82017-05-21 08:49:44 +020028{
29 struct ec_lenovo_h8_config *conf = dev->chip_info;
30
31 if (!conf->has_bdc_detection) {
32 printk(BIOS_INFO, "H8: BDC detection not implemented. "
33 "Assuming BDC installed\n");
34 return true;
35 }
36
37 if (get_gpio(conf->bdc_gpio_num) == conf->bdc_gpio_lvl) {
38 printk(BIOS_INFO, "H8: BDC installed\n");
39 return true;
40 }
41
42 printk(BIOS_INFO, "H8: BDC not installed\n");
43 return false;
44}
45
46/*
47 * Return BDC NVRAM setting.
48 */
49bool h8_bluetooth_nv_enable(void)
50{
Angel Pons88dcb312021-04-26 17:10:28 +020051 return get_uint_option("bluetooth", true);
Patrick Rudolph1194aa82017-05-21 08:49:44 +020052}