]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
tpm/st33zp24: Add GPIO ACPI mapping table
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 15 Mar 2017 19:58:00 +0000 (21:58 +0200)
committerJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Mon, 3 Apr 2017 19:46:02 +0000 (22:46 +0300)
In order to make GPIO ACPI library stricter prepare users of
gpiod_get_index() to correctly behave when there no mapping is
provided by firmware.

Here we add explicit mapping between _CRS GpioIo() resources and
their names used in the driver.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
drivers/char/tpm/st33zp24/i2c.c
drivers/char/tpm/st33zp24/spi.c

index 028a9cd76b63c0fada5b7bfb8a9e453e3a5e2458..1b10e38f214ef48acffdd41de4c49bb6c5599a45 100644 (file)
@@ -111,6 +111,13 @@ static const struct st33zp24_phy_ops i2c_phy_ops = {
        .recv = st33zp24_i2c_recv,
 };
 
+static const struct acpi_gpio_params lpcpd_gpios = { 1, 0, false };
+
+static const struct acpi_gpio_mapping acpi_st33zp24_gpios[] = {
+       { "lpcpd-gpios", &lpcpd_gpios, 1 },
+       {},
+};
+
 static int st33zp24_i2c_acpi_request_resources(struct i2c_client *client)
 {
        struct tpm_chip *chip = i2c_get_clientdata(client);
@@ -118,10 +125,14 @@ static int st33zp24_i2c_acpi_request_resources(struct i2c_client *client)
        struct st33zp24_i2c_phy *phy = tpm_dev->phy_id;
        struct gpio_desc *gpiod_lpcpd;
        struct device *dev = &client->dev;
+       int ret;
+
+       ret = acpi_dev_add_driver_gpios(ACPI_COMPANION(dev), acpi_st33zp24_gpios);
+       if (ret)
+               return ret;
 
        /* Get LPCPD GPIO from ACPI */
-       gpiod_lpcpd = devm_gpiod_get_index(dev, "TPM IO LPCPD", 1,
-                                          GPIOD_OUT_HIGH);
+       gpiod_lpcpd = devm_gpiod_get(dev, "lpcpd", GPIOD_OUT_HIGH);
        if (IS_ERR(gpiod_lpcpd)) {
                dev_err(&client->dev,
                        "Failed to retrieve lpcpd-gpios from acpi.\n");
@@ -268,8 +279,14 @@ static int st33zp24_i2c_probe(struct i2c_client *client,
 static int st33zp24_i2c_remove(struct i2c_client *client)
 {
        struct tpm_chip *chip = i2c_get_clientdata(client);
+       int ret;
 
-       return st33zp24_remove(chip);
+       ret = st33zp24_remove(chip);
+       if (ret)
+               return ret;
+
+       acpi_dev_remove_driver_gpios(ACPI_COMPANION(&client->dev));
+       return 0;
 }
 
 static const struct i2c_device_id st33zp24_i2c_id[] = {
index 9f5a0117098c0c0fe08f7a69149f0c26ef7f190d..c69d15198f84c7de79303e732037f588404d0537 100644 (file)
@@ -230,6 +230,13 @@ static const struct st33zp24_phy_ops spi_phy_ops = {
        .recv = st33zp24_spi_recv,
 };
 
+static const struct acpi_gpio_params lpcpd_gpios = { 1, 0, false };
+
+static const struct acpi_gpio_mapping acpi_st33zp24_gpios[] = {
+       { "lpcpd-gpios", &lpcpd_gpios, 1 },
+       {},
+};
+
 static int st33zp24_spi_acpi_request_resources(struct spi_device *spi_dev)
 {
        struct tpm_chip *chip = spi_get_drvdata(spi_dev);
@@ -237,10 +244,14 @@ static int st33zp24_spi_acpi_request_resources(struct spi_device *spi_dev)
        struct st33zp24_spi_phy *phy = tpm_dev->phy_id;
        struct gpio_desc *gpiod_lpcpd;
        struct device *dev = &spi_dev->dev;
+       int ret;
+
+       ret = acpi_dev_add_driver_gpios(ACPI_COMPANION(dev), acpi_st33zp24_gpios);
+       if (ret)
+               return ret;
 
        /* Get LPCPD GPIO from ACPI */
-       gpiod_lpcpd = devm_gpiod_get_index(dev, "TPM IO LPCPD", 1,
-                                          GPIOD_OUT_HIGH);
+       gpiod_lpcpd = devm_gpiod_get(dev, "lpcpd", GPIOD_OUT_HIGH);
        if (IS_ERR(gpiod_lpcpd)) {
                dev_err(dev, "Failed to retrieve lpcpd-gpios from acpi.\n");
                phy->io_lpcpd = -1;
@@ -385,8 +396,14 @@ static int st33zp24_spi_probe(struct spi_device *dev)
 static int st33zp24_spi_remove(struct spi_device *dev)
 {
        struct tpm_chip *chip = spi_get_drvdata(dev);
+       int ret;
 
-       return st33zp24_remove(chip);
+       ret = st33zp24_remove(chip);
+       if (ret)
+               return ret;
+
+       acpi_dev_remove_driver_gpios(ACPI_COMPANION(&dev->dev));
+       return 0;
 }
 
 static const struct spi_device_id st33zp24_spi_id[] = {