blob: b74c1776a2f7de78f7b93545dcc559d38a1d3d29 [file] [log] [blame]
Angel Pons8a3453f2020-04-02 23:48:19 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Furquan Shaikh20a91c92017-02-11 11:16:18 -08003
4#ifndef __SPI_ACPI_CHIP_H__
5#define __SPI_ACPI_CHIP_H__
6
7#include <arch/acpi_device.h>
8
9struct drivers_spi_acpi_config {
10 const char *hid; /* ACPI _HID (required) */
11 const char *cid; /* ACPI _CID */
12 const char *name; /* ACPI Device Name */
13 const char *desc; /* Device Description */
Martin Roth38ddbfb2019-10-23 21:41:00 -060014 unsigned int uid; /* ACPI _UID */
15 unsigned int speed; /* Bus speed in Hz (default 1MHz) */
Furquan Shaikh20a91c92017-02-11 11:16:18 -080016 const char *compat_string; /* Compatible string for _HID=PRP0001 */
17 struct acpi_irq irq; /* Interrupt */
Martin Roth38ddbfb2019-10-23 21:41:00 -060018 unsigned int wake; /* Wake GPE */
Duncan Lauriec9db3842017-02-17 17:14:35 -080019
20 /* Use GPIO based interrupt instead of PIRQ */
21 struct acpi_gpio irq_gpio;
22
23 /* Disable reset and enable GPIO export in _CRS */
24 bool disable_gpio_export_in_crs;
25
26 /* Does the device have a power resource? */
27 bool has_power_resource;
28
29 /* GPIO used to take device out of reset or to put it into reset. */
30 struct acpi_gpio reset_gpio;
31 /* Delay to be inserted after device is taken out of reset. */
Shelley Chena0603392018-04-26 13:52:30 -070032 unsigned int reset_delay_ms;
33 /* Delay to be inserted after device is put into reset. */
34 unsigned int reset_off_delay_ms;
Duncan Lauriec9db3842017-02-17 17:14:35 -080035
36 /* GPIO used to enable device. */
37 struct acpi_gpio enable_gpio;
38 /* Delay to be inserted after device is enabled. */
Shelley Chena0603392018-04-26 13:52:30 -070039 unsigned int enable_delay_ms;
40 /* Delay to be inserted after device is disabled. */
41 unsigned int enable_off_delay_ms;
Furquan Shaikhedf459f2017-08-28 17:20:49 -070042
43 /* GPIO used to stop operation of device. */
44 struct acpi_gpio stop_gpio;
45 /* Delay to be inserted after disabling stop. */
Shelley Chena0603392018-04-26 13:52:30 -070046 unsigned int stop_delay_ms;
47 /* Delay to be inserted after enabling stop. */
48 unsigned int stop_off_delay_ms;
Furquan Shaikh20a91c92017-02-11 11:16:18 -080049};
50
51#endif /* __SPI_ACPI_CHIP_H__ */