blob: d84097f6c640e010967bce5d1df5664a2b4b7207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include <arch/acpi_device.h>
#include <device/i2c.h>
struct drivers_i2c_generic_config {
const char *hid; /* ACPI _HID (required) */
const char *name; /* ACPI Device Name */
const char *desc; /* Device Description */
unsigned uid; /* ACPI _UID */
enum i2c_speed speed; /* Bus speed in Hz, default is I2C_SPEED_FAST */
unsigned wake; /* Wake GPE */
struct acpi_irq irq; /* Interrupt */
/*
* This flag will add a device propery which will indicate
* to the OS that it should probe this device before adding it.
*
* This can be used to declare a device that may not exist on
* the board, for example to support multiple trackpad vendors.
*/
int probed;
/* GPIO used to indicate if this device is present */
unsigned device_present_gpio;
unsigned device_present_gpio_invert;
};
|