mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	wifi: wilc1000: use correct sequence of RESET for chip Power-UP/Down
For power-up sequence, WILC expects RESET set to high 5ms after making
chip_en(enable) so corrected chip power-up sequence by making RESET high.
For Power-Down sequence, the correct sequence make RESET and CHIP_EN low
without any extra delay.
Fixes: ec031ac479 ("wilc1000: Add reset/enable GPIO support to SPI driver")
Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20220524120606.9675-1-ajay.kathat@microchip.com
			
			
This commit is contained in:
		
							parent
							
								
									b88d28146c
								
							
						
					
					
						commit
						fcf690b0b4
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -191,11 +191,11 @@ static void wilc_wlan_power(struct wilc *wilc, bool on)
 | 
			
		|||
		/* assert ENABLE: */
 | 
			
		||||
		gpiod_set_value(gpios->enable, 1);
 | 
			
		||||
		mdelay(5);
 | 
			
		||||
		/* deassert RESET: */
 | 
			
		||||
		gpiod_set_value(gpios->reset, 0);
 | 
			
		||||
	} else {
 | 
			
		||||
		/* assert RESET: */
 | 
			
		||||
		gpiod_set_value(gpios->reset, 1);
 | 
			
		||||
	} else {
 | 
			
		||||
		/* deassert RESET: */
 | 
			
		||||
		gpiod_set_value(gpios->reset, 0);
 | 
			
		||||
		/* deassert ENABLE: */
 | 
			
		||||
		gpiod_set_value(gpios->enable, 0);
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue