blob: 2794a3b82e8373b294ef6beb99b91c5d4d48a766 [file] [log] [blame]
Bora Guvendik94ee3282017-05-04 13:06:43 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2017 Google Inc.
praveen hodagatta praneshe26c4a42018-09-20 03:49:45 +08005 * Copyright (C) 2018 Intel Corporation.
Bora Guvendik94ee3282017-05-04 13:06:43 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#include <arch/acpigen.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
20#include <intelblocks/sd.h>
21
Julius Wernercd49cce2019-03-05 16:53:33 -080022#if CONFIG(HAVE_ACPI_TABLES)
Bora Guvendik94ee3282017-05-04 13:06:43 -070023static void sd_fill_ssdt(struct device *dev)
24{
25 const char *path;
26 struct acpi_gpio default_gpio = { 0 };
27 struct acpi_dp *dp;
28
29 if (!dev->enabled)
30 return;
31
32 if (sd_fill_soc_gpio_info(&default_gpio, dev) != 0)
33 return;
34
35 /* Use device path as the Scope for the SSDT */
36 path = acpi_device_path(dev);
37 if (!path)
38 return;
39 acpigen_write_scope(path);
40 acpigen_write_name("_CRS");
41
42 /* Write GpioInt() as default (if set) or custom from devicetree */
43 acpigen_write_resourcetemplate_header();
44 acpi_device_write_gpio(&default_gpio);
45 acpigen_write_resourcetemplate_footer();
46
47 /* Bind the cd-gpio name to the GpioInt() resource */
48 dp = acpi_dp_new_table("_DSD");
49 if (!dp)
50 return;
51 acpi_dp_add_gpio(dp, "cd-gpio", path, 0, 0, 1);
52 acpi_dp_write(dp);
53
54 acpigen_pop_len();
55}
56#endif
57
58static struct device_operations dev_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +010059 .read_resources = pci_dev_read_resources,
60 .set_resources = pci_dev_set_resources,
61 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -080062#if CONFIG(HAVE_ACPI_TABLES)
Elyes HAOUAS1d191272018-11-27 12:23:48 +010063 .acpi_fill_ssdt_generator = sd_fill_ssdt,
Bora Guvendik94ee3282017-05-04 13:06:43 -070064#endif
Subrata Banik6bbc91a2017-12-07 14:55:51 +053065 .ops_pci = &pci_dev_ops_pci,
Bora Guvendik94ee3282017-05-04 13:06:43 -070066};
67
68static const unsigned short pci_device_ids[] = {
69 PCI_DEVICE_ID_INTEL_APL_SD,
Lijian Zhaobbedef92017-07-29 16:38:38 -070070 PCI_DEVICE_ID_INTEL_CNL_SD,
Bora Guvendik94ee3282017-05-04 13:06:43 -070071 PCI_DEVICE_ID_INTEL_GLK_SD,
72 PCI_DEVICE_ID_INTEL_SKL_SD,
praveen hodagatta praneshe26c4a42018-09-20 03:49:45 +080073 PCI_DEVICE_ID_INTEL_CNP_H_SD,
Aamir Bohra9eac0392018-06-30 12:07:04 +053074 PCI_DEVICE_ID_INTEL_ICL_SD,
Ronak Kanabarda7ffb482019-02-05 01:51:13 +053075 PCI_DEVICE_ID_INTEL_CMP_SD,
Bora Guvendik94ee3282017-05-04 13:06:43 -070076 0
77};
78
79static const struct pci_driver pch_sd __pci_driver = {
80 .ops = &dev_ops,
81 .vendor = PCI_VENDOR_ID_INTEL,
82 .devices = pci_device_ids
83};