mirror of
				https://github.com/Ysurac/openmptcprouter.git
				synced 2025-03-09 15:40:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From b08b00f24b396ec8dc4dbe3fdb60c7390305123c Mon Sep 17 00:00:00 2001
 | |
| From: Nick Bulleid <nedbulleid@fastmail.com>
 | |
| Date: Thu, 10 May 2018 21:57:02 +0100
 | |
| Subject: [PATCH 130/432] Add ability to export gpio used by gpio-poweroff
 | |
| 
 | |
| Signed-off-by: Nick Bulleid <nedbulleid@fastmail.com>
 | |
| 
 | |
| Added export feature to gpio-poweroff documentation
 | |
| 
 | |
| Signed-off-by: Nick Bulleid <nedbulleid@fastmail.com>
 | |
| ---
 | |
|  .../devicetree/bindings/power/reset/gpio-poweroff.txt    | 1 +
 | |
|  drivers/power/reset/gpio-poweroff.c                      | 9 +++++++++
 | |
|  2 files changed, 10 insertions(+)
 | |
| 
 | |
| diff --git a/Documentation/devicetree/bindings/power/reset/gpio-poweroff.txt b/Documentation/devicetree/bindings/power/reset/gpio-poweroff.txt
 | |
| index 6d8980c18c34..561a04e4be29 100644
 | |
| --- a/Documentation/devicetree/bindings/power/reset/gpio-poweroff.txt
 | |
| +++ b/Documentation/devicetree/bindings/power/reset/gpio-poweroff.txt
 | |
| @@ -29,6 +29,7 @@ Optional properties:
 | |
|    inactive state.
 | |
|  - timeout-ms: Time to wait before asserting a WARN_ON(1). If nothing is
 | |
|                specified, 3000 ms is used.
 | |
| +- export : Export the GPIO line to the sysfs system
 | |
|  
 | |
|  Examples:
 | |
|  
 | |
| diff --git a/drivers/power/reset/gpio-poweroff.c b/drivers/power/reset/gpio-poweroff.c
 | |
| index cf8cfc83e4a1..f53b4eb96711 100644
 | |
| --- a/drivers/power/reset/gpio-poweroff.c
 | |
| +++ b/drivers/power/reset/gpio-poweroff.c
 | |
| @@ -52,6 +52,7 @@ static int gpio_poweroff_probe(struct platform_device *pdev)
 | |
|  	bool input = false;
 | |
|  	enum gpiod_flags flags;
 | |
|  	bool force = false;
 | |
| +	bool export = false;
 | |
|  
 | |
|  	/* If a pm_power_off function has already been added, leave it alone */
 | |
|  	force = of_property_read_bool(pdev->dev.of_node, "force");
 | |
| @@ -74,6 +75,12 @@ static int gpio_poweroff_probe(struct platform_device *pdev)
 | |
|  	if (IS_ERR(reset_gpio))
 | |
|  		return PTR_ERR(reset_gpio);
 | |
|  
 | |
| +	export = of_property_read_bool(pdev->dev.of_node, "export");
 | |
| +	if (export) {
 | |
| +		gpiod_export(reset_gpio, false);
 | |
| +		gpiod_export_link(&pdev->dev, "poweroff-gpio", reset_gpio);
 | |
| +	}
 | |
| +
 | |
|  	pm_power_off = &gpio_poweroff_do_poweroff;
 | |
|  	return 0;
 | |
|  }
 | |
| @@ -83,6 +90,8 @@ static int gpio_poweroff_remove(struct platform_device *pdev)
 | |
|  	if (pm_power_off == &gpio_poweroff_do_poweroff)
 | |
|  		pm_power_off = NULL;
 | |
|  
 | |
| +	gpiod_unexport(reset_gpio);
 | |
| +
 | |
|  	return 0;
 | |
|  }
 | |
|  
 | |
| -- 
 | |
| 2.19.1
 | |
| 
 |