]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - Documentation/acpi/gpio-properties.txt
gpio: Rework of_gpiochip_set_names() to use device property accessors
[mirror_ubuntu-bionic-kernel.git] / Documentation / acpi / gpio-properties.txt
CommitLineData
0d9a693c
MW
1_DSD Device Properties Related to GPIO
2--------------------------------------
3
a00212e2
RW
4With the release of ACPI 5.1, the _DSD configuration object finally
5allows names to be given to GPIOs (and other things as well) returned
6by _CRS. Previously, we were only able to use an integer index to find
0d9a693c
MW
7the corresponding GPIO, which is pretty error prone (it depends on
8the _CRS output ordering, for example).
9
10With _DSD we can now query GPIOs using a name instead of an integer
11index, like the ASL example below shows:
12
13 // Bluetooth device with reset and shutdown GPIOs
14 Device (BTH)
15 {
16 Name (_HID, ...)
17
18 Name (_CRS, ResourceTemplate ()
19 {
20 GpioIo (Exclusive, PullUp, 0, 0, IoRestrictionInputOnly,
21 "\\_SB.GPO0", 0, ResourceConsumer) {15}
22 GpioIo (Exclusive, PullUp, 0, 0, IoRestrictionInputOnly,
23 "\\_SB.GPO0", 0, ResourceConsumer) {27, 31}
24 })
25
26 Name (_DSD, Package ()
27 {
28 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
29 Package ()
30 {
060d791f
MW
31 Package () {"reset-gpios", Package() {^BTH, 1, 1, 0 }},
32 Package () {"shutdown-gpios", Package() {^BTH, 0, 0, 0 }},
0d9a693c
MW
33 }
34 })
35 }
36
37The format of the supported GPIO property is:
38
39 Package () { "name", Package () { ref, index, pin, active_low }}
40
41 ref - The device that has _CRS containing GpioIo()/GpioInt() resources,
42 typically this is the device itself (BTH in our case).
43 index - Index of the GpioIo()/GpioInt() resource in _CRS starting from zero.
44 pin - Pin in the GpioIo()/GpioInt() resource. Typically this is zero.
45 active_low - If 1 the GPIO is marked as active_low.
46
47Since ACPI GpioIo() resource does not have a field saying whether it is
48active low or high, the "active_low" argument can be used here. Setting
49it to 1 marks the GPIO as active low.
50
060d791f 51In our Bluetooth example the "reset-gpios" refers to the second GpioIo()
0d9a693c 52resource, second pin in that resource with the GPIO number of 31.
e36d453e 53
6f7194a1
MW
54It is possible to leave holes in the array of GPIOs. This is useful in
55cases like with SPI host controllers where some chip selects may be
56implemented as GPIOs and some as native signals. For example a SPI host
57controller can have chip selects 0 and 2 implemented as GPIOs and 1 as
58native:
59
60 Package () {
61 "cs-gpios",
62 Package () {
63 ^GPIO, 19, 0, 0, // chip select 0: GPIO
64 0, // chip select 1: native signal
65 ^GPIO, 20, 0, 0, // chip select 2: GPIO
66 }
67 }
68
c80f1ba7
MW
69Other supported properties
70--------------------------
71
72Following Device Tree compatible device properties are also supported by
73_DSD device properties for GPIO controllers:
74
75- gpio-hog
76- output-high
77- output-low
78- input
79- line-name
80
81Example:
82
83 Name (_DSD, Package () {
84 // _DSD Hierarchical Properties Extension UUID
85 ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"),
86 Package () {
87 Package () {"hog-gpio8", "G8PU"}
88 }
89 })
90
91 Name (G8PU, Package () {
92 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
93 Package () {
94 Package () {"gpio-hog", 1},
95 Package () {"gpios", Package () {8, 0}},
96 Package () {"output-high", 1},
97 Package () {"line-name", "gpio8-pullup"},
98 }
99 })
100
101See Documentation/devicetree/bindings/gpio/gpio.txt for more information
102about these properties.
103
e36d453e
RW
104ACPI GPIO Mappings Provided by Drivers
105--------------------------------------
106
107There are systems in which the ACPI tables do not contain _DSD but provide _CRS
108with GpioIo()/GpioInt() resources and device drivers still need to work with
109them.
110
111In those cases ACPI device identification objects, _HID, _CID, _CLS, _SUB, _HRV,
112available to the driver can be used to identify the device and that is supposed
113to be sufficient to determine the meaning and purpose of all of the GPIO lines
114listed by the GpioIo()/GpioInt() resources returned by _CRS. In other words,
115the driver is supposed to know what to use the GpioIo()/GpioInt() resources for
116once it has identified the device. Having done that, it can simply assign names
117to the GPIO lines it is going to use and provide the GPIO subsystem with a
118mapping between those names and the ACPI GPIO resources corresponding to them.
119
120To do that, the driver needs to define a mapping table as a NULL-terminated
121array of struct acpi_gpio_mapping objects that each contain a name, a pointer
122to an array of line data (struct acpi_gpio_params) objects and the size of that
123array. Each struct acpi_gpio_params object consists of three fields,
124crs_entry_index, line_index, active_low, representing the index of the target
125GpioIo()/GpioInt() resource in _CRS starting from zero, the index of the target
126line in that resource starting from zero, and the active-low flag for that line,
127respectively, in analogy with the _DSD GPIO property format specified above.
128
129For the example Bluetooth device discussed previously the data structures in
130question would look like this:
131
132static const struct acpi_gpio_params reset_gpio = { 1, 1, false };
133static const struct acpi_gpio_params shutdown_gpio = { 0, 0, false };
134
135static const struct acpi_gpio_mapping bluetooth_acpi_gpios[] = {
060d791f
MW
136 { "reset-gpios", &reset_gpio, 1 },
137 { "shutdown-gpios", &shutdown_gpio, 1 },
e36d453e
RW
138 { },
139};
140
141Next, the mapping table needs to be passed as the second argument to
142acpi_dev_add_driver_gpios() that will register it with the ACPI device object
143pointed to by its first argument. That should be done in the driver's .probe()
144routine. On removal, the driver should unregister its GPIO mapping table by
145calling acpi_dev_remove_driver_gpios() on the ACPI device object where that
146table was previously registered.