Search Linux Wireless

[PATCH 1/5] net: rfkill: gpio: Configurable GPIO idx

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Some devices don't match the current static gpio mapping:
-BCM4752 (GPS) uses gpio res 0 as host wake irq.
-OBDA8723 (Bluetooth) uses gpio res 0 as controller wake gpio
and res 2 as host wake irq.

To allow more flexibility, this patch introduces an index
map description.
By default, legacy config still used (reset: idx 0;
shutdown: idx 1).

Signed-off-by: Loic Poulain <loic.poulain@xxxxxxxxx>
---
 net/rfkill/rfkill-gpio.c | 125 +++++++++++++++++++++++++++++++++--------------
 1 file changed, 88 insertions(+), 37 deletions(-)

diff --git a/net/rfkill/rfkill-gpio.c b/net/rfkill/rfkill-gpio.c
index 0f62326..7982841 100644
--- a/net/rfkill/rfkill-gpio.c
+++ b/net/rfkill/rfkill-gpio.c
@@ -41,6 +41,13 @@ struct rfkill_gpio_data {
 	bool			clk_enabled;
 };
 
+struct rfkill_gpio_desc {
+	enum rfkill_type	type;
+
+	int			reset_idx;
+	int			shutdown_idx;
+};
+
 static int rfkill_gpio_set_power(void *data, bool blocked)
 {
 	struct rfkill_gpio_data *rfkill = data;
@@ -63,32 +70,89 @@ static const struct rfkill_ops rfkill_gpio_ops = {
 	.set_block = rfkill_gpio_set_power,
 };
 
+static int rfkill_gpio_init(struct device *dev, struct rfkill_gpio_desc *desc)
+{
+	int ret;
+	struct gpio_desc *gpio;
+	struct rfkill_gpio_data *rfkill = dev_get_drvdata(dev);
+
+	if (!rfkill->name) {
+		dev_err(dev, "invalid platform data\n");
+		return -EINVAL;
+	}
+
+	rfkill->clk = devm_clk_get(dev, NULL);
+
+	if (!desc)
+		gpio = devm_gpiod_get_index(dev, "reset", 0);
+	else if (desc->reset_idx >= 0)
+		gpio = devm_gpiod_get_index(dev, "reset", desc->reset_idx);
+	else
+		gpio = NULL;
+
+	if (gpio && !IS_ERR(gpio)) {
+		ret = gpiod_direction_output(gpio, 0);
+		if (ret)
+			return ret;
+		rfkill->reset_gpio = gpio;
+	}
+
+	if (!desc)
+		gpio = devm_gpiod_get_index(dev, "shutdown", 1);
+	else if (desc->shutdown_idx >= 0)
+		gpio = devm_gpiod_get_index(dev, "shutdown",
+					    desc->shutdown_idx);
+	else
+		gpio = NULL;
+
+	if (gpio && !IS_ERR(gpio)) {
+		ret = gpiod_direction_output(gpio, 0);
+		if (ret)
+			return ret;
+		rfkill->shutdown_gpio = gpio;
+	}
+
+	/* Make sure at-least one of the GPIO is defined */
+	if (!rfkill->reset_gpio && !rfkill->shutdown_gpio) {
+		dev_err(dev, "invalid platform data\n");
+		return -EINVAL;
+	}
+
+	return 0;
+}
+
 static int rfkill_gpio_acpi_probe(struct device *dev,
 				  struct rfkill_gpio_data *rfkill)
 {
 	const struct acpi_device_id *id;
+	struct rfkill_gpio_desc *desc;
 
 	id = acpi_match_device(dev->driver->acpi_match_table, dev);
 	if (!id)
 		return -ENODEV;
 
+	desc = (struct rfkill_gpio_desc *)id->driver_data;
+	if (!desc)
+		return -ENODEV;
+
 	rfkill->name = dev_name(dev);
-	rfkill->type = (unsigned)id->driver_data;
+	rfkill->type = desc->type;
 
-	return 0;
+	return rfkill_gpio_init(dev, desc);
 }
 
 static int rfkill_gpio_probe(struct platform_device *pdev)
 {
 	struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
 	struct rfkill_gpio_data *rfkill;
-	struct gpio_desc *gpio;
 	int ret;
 
 	rfkill = devm_kzalloc(&pdev->dev, sizeof(*rfkill), GFP_KERNEL);
 	if (!rfkill)
 		return -ENOMEM;
 
+	platform_set_drvdata(pdev, rfkill);
+
 	if (ACPI_HANDLE(&pdev->dev)) {
 		ret = rfkill_gpio_acpi_probe(&pdev->dev, rfkill);
 		if (ret)
@@ -96,34 +160,11 @@ static int rfkill_gpio_probe(struct platform_device *pdev)
 	} else if (pdata) {
 		rfkill->name = pdata->name;
 		rfkill->type = pdata->type;
-	} else {
-		return -ENODEV;
-	}
-
-	rfkill->clk = devm_clk_get(&pdev->dev, NULL);
-
-	gpio = devm_gpiod_get_index(&pdev->dev, "reset", 0);
-	if (!IS_ERR(gpio)) {
-		ret = gpiod_direction_output(gpio, 0);
+		ret = rfkill_gpio_init(&pdev->dev, NULL);
 		if (ret)
 			return ret;
-		rfkill->reset_gpio = gpio;
-	}
-
-	gpio = devm_gpiod_get_index(&pdev->dev, "shutdown", 1);
-	if (!IS_ERR(gpio)) {
-		ret = gpiod_direction_output(gpio, 0);
-		if (ret)
-			return ret;
-		rfkill->shutdown_gpio = gpio;
-	}
-
-	/* Make sure at-least one of the GPIO is defined and that
-	 * a name is specified for this instance
-	 */
-	if ((!rfkill->reset_gpio && !rfkill->shutdown_gpio) || !rfkill->name) {
-		dev_err(&pdev->dev, "invalid platform data\n");
-		return -EINVAL;
+	} else {
+		return -ENODEV;
 	}
 
 	rfkill->rfkill_dev = rfkill_alloc(rfkill->name, &pdev->dev,
@@ -136,8 +177,6 @@ static int rfkill_gpio_probe(struct platform_device *pdev)
 	if (ret < 0)
 		return ret;
 
-	platform_set_drvdata(pdev, rfkill);
-
 	dev_info(&pdev->dev, "%s device registered.\n", rfkill->name);
 
 	return 0;
@@ -154,13 +193,25 @@ static int rfkill_gpio_remove(struct platform_device *pdev)
 }
 
 #ifdef CONFIG_ACPI
+static struct rfkill_gpio_desc acpi_default_bluetooth = {
+	.type = RFKILL_TYPE_BLUETOOTH,
+	.reset_idx = 0,
+	.shutdown_idx = 1,
+};
+
+static struct rfkill_gpio_desc acpi_default_gps = {
+	.type = RFKILL_TYPE_GPS,
+	.reset_idx = 0,
+	.shutdown_idx = 1,
+};
+
 static const struct acpi_device_id rfkill_acpi_match[] = {
-	{ "BCM2E1A", RFKILL_TYPE_BLUETOOTH },
-	{ "BCM2E39", RFKILL_TYPE_BLUETOOTH },
-	{ "BCM2E3D", RFKILL_TYPE_BLUETOOTH },
-	{ "BCM2E64", RFKILL_TYPE_BLUETOOTH },
-	{ "BCM4752", RFKILL_TYPE_GPS },
-	{ "LNV4752", RFKILL_TYPE_GPS },
+	{ "BCM2E1A", (kernel_ulong_t)&acpi_default_bluetooth },
+	{ "BCM2E39", (kernel_ulong_t)&acpi_default_bluetooth },
+	{ "BCM2E3D", (kernel_ulong_t)&acpi_default_bluetooth },
+	{ "BCM2E64", (kernel_ulong_t)&acpi_default_bluetooth },
+	{ "BCM4752", (kernel_ulong_t)&acpi_default_gps },
+	{ "LNV4752", (kernel_ulong_t)&acpi_default_gps },
 	{ },
 };
 MODULE_DEVICE_TABLE(acpi, rfkill_acpi_match);
-- 
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Host AP]     [ATH6KL]     [Linux Wireless Personal Area Network]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [Linux Kernel]     [IDE]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite Hiking]     [MIPS Linux]     [ARM Linux]     [Linux RAID]

  Powered by Linux