aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorChristophe RICARD <christophe.ricard@gmail.com>2016-02-13 10:15:32 -0500
committerJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>2016-06-25 10:21:42 -0400
commitfec60f2991c00504f6f862f0a6790da78c4ba904 (patch)
treefa1667da6913aa8a864bc970af2390b31ac956ac /drivers/char
parent2c2b217a13ed11ff6d8f4583f9bee3a54e8f1034 (diff)
tpm/st33zp24: Add support for acpi probing for i2c device.
Add support for acpi probing. SMO3324 is used for st33zp24. It has been tested with the following acpi node on Minnowboard: Device (TPM1) { Name (_ADR, Zero) // _ADR: Address Name (_HID, "SMO3324") // _HID: Hardware ID Name (_CID, "SMO3324") // _CID: Compatible ID Name (_DDN, "SMO TPM") // _DDN: DOS Device Name Name (_UID, One) // _UID: Unique ID Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings { Name (SBUF, ResourceTemplate () { I2cSerialBus (0x0013, ControllerInitiated, 400000, AddressingMode7Bit, "\\_SB.I2C7", 0x00, ResourceConsumer, ,) GpioInt (Edge, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000, "\\_SB.GPO2", 0x00, ResourceConsumer, ,) { // Pin list 0x0001 } GpioIo (Exclusive, PullDefault, 0x0000, 0x0000, IoRestrictionOutputOnly, "\\_SB.GPO2", 0x00, ResourceConsumer, ,) { // Pin list 0x0002, } }) Return (SBUF) /* \_SB_.I2C7.TPM1._CRS.SBUF */ } Method (_STA, 0, NotSerialized) // _STA: Status { Return (0x0F) } } Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/tpm/st33zp24/i2c.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/drivers/char/tpm/st33zp24/i2c.c b/drivers/char/tpm/st33zp24/i2c.c
index a49b6f10836d..b20cc2ba98cc 100644
--- a/drivers/char/tpm/st33zp24/i2c.c
+++ b/drivers/char/tpm/st33zp24/i2c.c
@@ -19,8 +19,10 @@
19#include <linux/module.h> 19#include <linux/module.h>
20#include <linux/i2c.h> 20#include <linux/i2c.h>
21#include <linux/gpio.h> 21#include <linux/gpio.h>
22#include <linux/gpio/consumer.h>
22#include <linux/of_irq.h> 23#include <linux/of_irq.h>
23#include <linux/of_gpio.h> 24#include <linux/of_gpio.h>
25#include <linux/acpi.h>
24#include <linux/tpm.h> 26#include <linux/tpm.h>
25#include <linux/platform_data/st33zp24.h> 27#include <linux/platform_data/st33zp24.h>
26 28
@@ -108,6 +110,43 @@ static const struct st33zp24_phy_ops i2c_phy_ops = {
108 .recv = st33zp24_i2c_recv, 110 .recv = st33zp24_i2c_recv,
109}; 111};
110 112
113static int st33zp24_i2c_acpi_request_resources(struct st33zp24_i2c_phy *phy)
114{
115 struct i2c_client *client = phy->client;
116 const struct acpi_device_id *id;
117 struct gpio_desc *gpiod_lpcpd;
118 struct device *dev;
119
120 if (!client)
121 return -EINVAL;
122
123 dev = &client->dev;
124
125 /* Match the struct device against a given list of ACPI IDs */
126 id = acpi_match_device(dev->driver->acpi_match_table, dev);
127 if (!id)
128 return -ENODEV;
129
130 /* Get LPCPD GPIO from ACPI */
131 gpiod_lpcpd = devm_gpiod_get_index(dev, "TPM IO LPCPD", 1,
132 GPIOD_OUT_HIGH);
133 if (IS_ERR(gpiod_lpcpd)) {
134 dev_err(&client->dev,
135 "Failed to retrieve lpcpd-gpios from acpi.\n");
136 phy->io_lpcpd = -1;
137 /*
138 * lpcpd pin is not specified. This is not an issue as
139 * power management can be also managed by TPM specific
140 * commands. So leave with a success status code.
141 */
142 return 0;
143 }
144
145 phy->io_lpcpd = desc_to_gpio(gpiod_lpcpd);
146
147 return 0;
148}
149
111static int st33zp24_i2c_of_request_resources(struct st33zp24_i2c_phy *phy) 150static int st33zp24_i2c_of_request_resources(struct st33zp24_i2c_phy *phy)
112{ 151{
113 struct device_node *pp; 152 struct device_node *pp;
@@ -214,6 +253,10 @@ static int st33zp24_i2c_probe(struct i2c_client *client,
214 ret = st33zp24_i2c_request_resources(client, phy); 253 ret = st33zp24_i2c_request_resources(client, phy);
215 if (ret) 254 if (ret)
216 return ret; 255 return ret;
256 } else if (ACPI_HANDLE(&client->dev)) {
257 ret = st33zp24_i2c_acpi_request_resources(phy);
258 if (ret)
259 return ret;
217 } 260 }
218 261
219 return st33zp24_probe(phy, &i2c_phy_ops, &client->dev, client->irq, 262 return st33zp24_probe(phy, &i2c_phy_ops, &client->dev, client->irq,
@@ -244,6 +287,12 @@ static const struct of_device_id of_st33zp24_i2c_match[] = {
244}; 287};
245MODULE_DEVICE_TABLE(of, of_st33zp24_i2c_match); 288MODULE_DEVICE_TABLE(of, of_st33zp24_i2c_match);
246 289
290static const struct acpi_device_id st33zp24_i2c_acpi_match[] = {
291 {"SMO3324"},
292 {}
293};
294MODULE_DEVICE_TABLE(acpi, st33zp24_i2c_acpi_match);
295
247static SIMPLE_DEV_PM_OPS(st33zp24_i2c_ops, st33zp24_pm_suspend, 296static SIMPLE_DEV_PM_OPS(st33zp24_i2c_ops, st33zp24_pm_suspend,
248 st33zp24_pm_resume); 297 st33zp24_pm_resume);
249 298
@@ -252,6 +301,7 @@ static struct i2c_driver st33zp24_i2c_driver = {
252 .name = TPM_ST33_I2C, 301 .name = TPM_ST33_I2C,
253 .pm = &st33zp24_i2c_ops, 302 .pm = &st33zp24_i2c_ops,
254 .of_match_table = of_match_ptr(of_st33zp24_i2c_match), 303 .of_match_table = of_match_ptr(of_st33zp24_i2c_match),
304 .acpi_match_table = ACPI_PTR(st33zp24_i2c_acpi_match),
255 }, 305 },
256 .probe = st33zp24_i2c_probe, 306 .probe = st33zp24_i2c_probe,
257 .remove = st33zp24_i2c_remove, 307 .remove = st33zp24_i2c_remove,