19
19
#include <linux/module.h>
20
20
#include <linux/spi/spi.h>
21
21
#include <linux/gpio.h>
22
+ #include <linux/gpio/consumer.h>
22
23
#include <linux/of_irq.h>
23
24
#include <linux/of_gpio.h>
25
+ #include <linux/acpi.h>
24
26
#include <linux/tpm.h>
25
27
#include <linux/platform_data/st33zp24.h>
26
28
@@ -227,6 +229,42 @@ static const struct st33zp24_phy_ops spi_phy_ops = {
227
229
.recv = st33zp24_spi_recv ,
228
230
};
229
231
232
+ static int st33zp24_spi_acpi_request_resources (struct st33zp24_spi_phy * phy )
233
+ {
234
+ struct spi_device * spi_dev = phy -> spi_device ;
235
+ const struct acpi_device_id * id ;
236
+ struct gpio_desc * gpiod_lpcpd ;
237
+ struct device * dev ;
238
+
239
+ if (!spi_dev )
240
+ return - EINVAL ;
241
+
242
+ dev = & spi_dev -> dev ;
243
+
244
+ /* Match the struct device against a given list of ACPI IDs */
245
+ id = acpi_match_device (dev -> driver -> acpi_match_table , dev );
246
+ if (!id )
247
+ return - ENODEV ;
248
+
249
+ /* Get LPCPD GPIO from ACPI */
250
+ gpiod_lpcpd = devm_gpiod_get_index (dev , "TPM IO LPCPD" , 1 ,
251
+ GPIOD_OUT_HIGH );
252
+ if (IS_ERR (gpiod_lpcpd )) {
253
+ dev_err (dev , "Failed to retrieve lpcpd-gpios from acpi.\n" );
254
+ phy -> io_lpcpd = -1 ;
255
+ /*
256
+ * lpcpd pin is not specified. This is not an issue as
257
+ * power management can be also managed by TPM specific
258
+ * commands. So leave with a success status code.
259
+ */
260
+ return 0 ;
261
+ }
262
+
263
+ phy -> io_lpcpd = desc_to_gpio (gpiod_lpcpd );
264
+
265
+ return 0 ;
266
+ }
267
+
230
268
static int st33zp24_spi_of_request_resources (struct st33zp24_spi_phy * phy )
231
269
{
232
270
struct device_node * pp ;
@@ -328,6 +366,10 @@ static int st33zp24_spi_probe(struct spi_device *dev)
328
366
ret = st33zp24_spi_request_resources (dev , phy );
329
367
if (ret )
330
368
return ret ;
369
+ } else if (ACPI_HANDLE (& dev -> dev )) {
370
+ ret = st33zp24_spi_acpi_request_resources (phy );
371
+ if (ret )
372
+ return ret ;
331
373
}
332
374
333
375
phy -> latency = st33zp24_spi_evaluate_latency (phy );
@@ -362,6 +404,12 @@ static const struct of_device_id of_st33zp24_spi_match[] = {
362
404
};
363
405
MODULE_DEVICE_TABLE (of , of_st33zp24_spi_match );
364
406
407
+ static const struct acpi_device_id st33zp24_spi_acpi_match [] = {
408
+ {"SMO3324" },
409
+ {}
410
+ };
411
+ MODULE_DEVICE_TABLE (acpi , st33zp24_spi_acpi_match );
412
+
365
413
static SIMPLE_DEV_PM_OPS (st33zp24_spi_ops , st33zp24_pm_suspend ,
366
414
st33zp24_pm_resume ) ;
367
415
@@ -370,6 +418,7 @@ static struct spi_driver st33zp24_spi_driver = {
370
418
.name = TPM_ST33_SPI ,
371
419
.pm = & st33zp24_spi_ops ,
372
420
.of_match_table = of_match_ptr (of_st33zp24_spi_match ),
421
+ .acpi_match_table = ACPI_PTR (st33zp24_spi_acpi_match ),
373
422
},
374
423
.probe = st33zp24_spi_probe ,
375
424
.remove = st33zp24_spi_remove ,
0 commit comments