blob: b7b39f7c3aa6e1296f627c9e950819d357cc1bfd [file] [log] [blame]
Angel Pons8a3453f2020-04-02 23:48:19 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Furquan Shaikh20a91c92017-02-11 11:16:18 -08002
3#ifndef __SPI_ACPI_CHIP_H__
4#define __SPI_ACPI_CHIP_H__
5
Furquan Shaikh76cedd22020-05-02 10:24:23 -07006#include <acpi/acpi_device.h>
Furquan Shaikh20a91c92017-02-11 11:16:18 -08007
Kun Liuc693e922024-06-20 13:35:42 +08008#define MAX_GENERIC_PROPERTY_LIST 10
9
Furquan Shaikh20a91c92017-02-11 11:16:18 -080010struct drivers_spi_acpi_config {
11 const char *hid; /* ACPI _HID (required) */
12 const char *cid; /* ACPI _CID */
13 const char *name; /* ACPI Device Name */
14 const char *desc; /* Device Description */
Martin Roth38ddbfb2019-10-23 21:41:00 -060015 unsigned int uid; /* ACPI _UID */
16 unsigned int speed; /* Bus speed in Hz (default 1MHz) */
Furquan Shaikh20a91c92017-02-11 11:16:18 -080017 const char *compat_string; /* Compatible string for _HID=PRP0001 */
18 struct acpi_irq irq; /* Interrupt */
Martin Roth38ddbfb2019-10-23 21:41:00 -060019 unsigned int wake; /* Wake GPE */
Duncan Lauriec9db3842017-02-17 17:14:35 -080020
21 /* Use GPIO based interrupt instead of PIRQ */
22 struct acpi_gpio irq_gpio;
23
Duncan Lauriec9db3842017-02-17 17:14:35 -080024 /* Does the device have a power resource? */
25 bool has_power_resource;
26
27 /* GPIO used to take device out of reset or to put it into reset. */
28 struct acpi_gpio reset_gpio;
29 /* Delay to be inserted after device is taken out of reset. */
Shelley Chena0603392018-04-26 13:52:30 -070030 unsigned int reset_delay_ms;
31 /* Delay to be inserted after device is put into reset. */
32 unsigned int reset_off_delay_ms;
Duncan Lauriec9db3842017-02-17 17:14:35 -080033
34 /* GPIO used to enable device. */
35 struct acpi_gpio enable_gpio;
36 /* Delay to be inserted after device is enabled. */
Shelley Chena0603392018-04-26 13:52:30 -070037 unsigned int enable_delay_ms;
38 /* Delay to be inserted after device is disabled. */
39 unsigned int enable_off_delay_ms;
Furquan Shaikhedf459f2017-08-28 17:20:49 -070040
41 /* GPIO used to stop operation of device. */
42 struct acpi_gpio stop_gpio;
43 /* Delay to be inserted after disabling stop. */
Shelley Chena0603392018-04-26 13:52:30 -070044 unsigned int stop_delay_ms;
45 /* Delay to be inserted after enabling stop. */
46 unsigned int stop_off_delay_ms;
Kun Liuc693e922024-06-20 13:35:42 +080047 /* Generic properties for exporting device-specific data to the OS */
48 struct acpi_dp property_list[MAX_GENERIC_PROPERTY_LIST];
49 unsigned int property_count;
Furquan Shaikh20a91c92017-02-11 11:16:18 -080050};
51
52#endif /* __SPI_ACPI_CHIP_H__ */