mb/system76/cml-u/dt: Make use of chipset devicetree
[coreboot.git] / src / soc / intel / elkhartlake / sd.c
bloba4b89c580373183678f1303efeeb2cd0e607f5e2
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <intelblocks/sd.h>
4 #include <soc/soc_chip.h>
6 int sd_fill_soc_gpio_info(struct acpi_gpio *gpio, const struct device *dev)
8 config_t *config = config_of(dev);
10 if (!config->sdcard_cd_gpio)
11 return -1;
13 gpio->type = ACPI_GPIO_TYPE_INTERRUPT;
14 gpio->pull = ACPI_GPIO_PULL_NONE;
15 gpio->irq.mode = ACPI_IRQ_EDGE_TRIGGERED;
16 gpio->irq.polarity = ACPI_IRQ_ACTIVE_BOTH;
17 gpio->irq.shared = ACPI_IRQ_SHARED;
18 gpio->irq.wake = ACPI_IRQ_WAKE;
19 gpio->interrupt_debounce_timeout = 10000; /* 100ms */
20 gpio->pin_count = 1;
21 gpio->pins[0] = config->sdcard_cd_gpio;
23 return 0;