2019-05-29 17:17:56 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2010-03-16 05:40:06 +03:00
/*
* arch / arm / mach - tegra / gpio . c
*
* Copyright ( c ) 2010 Google , Inc
2019-02-19 23:32:02 +03:00
* Copyright ( c ) 2011 - 2016 , NVIDIA CORPORATION . All rights reserved .
2010-03-16 05:40:06 +03:00
*
* Author :
* Erik Gilling < konkers @ google . com >
*/
2013-01-21 14:09:01 +04:00
# include <linux/err.h>
2010-03-16 05:40:06 +03:00
# include <linux/init.h>
# include <linux/irq.h>
2010-04-07 23:59:42 +04:00
# include <linux/interrupt.h>
2010-03-16 05:40:06 +03:00
# include <linux/io.h>
2018-08-06 18:38:33 +03:00
# include <linux/gpio/driver.h>
2012-03-17 03:35:08 +04:00
# include <linux/of_device.h>
2011-10-12 02:16:14 +04:00
# include <linux/platform_device.h>
# include <linux/module.h>
2012-01-04 12:39:37 +04:00
# include <linux/irqdomain.h>
2013-01-18 19:31:37 +04:00
# include <linux/irqchip/chained_irq.h>
2012-02-18 12:04:55 +04:00
# include <linux/pinctrl/consumer.h>
2012-11-07 19:01:32 +04:00
# include <linux/pm.h>
2010-03-16 05:40:06 +03:00
# define GPIO_BANK(x) ((x) >> 5)
# define GPIO_PORT(x) (((x) >> 3) & 0x3)
# define GPIO_BIT(x) ((x) & 0x7)
2016-04-25 13:38:33 +03:00
# define GPIO_REG(tgi, x) (GPIO_BANK(x) * tgi->soc->bank_stride + \
2012-03-17 03:35:08 +04:00
GPIO_PORT ( x ) * 4 )
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:33 +03:00
# define GPIO_CNF(t, x) (GPIO_REG(t, x) + 0x00)
# define GPIO_OE(t, x) (GPIO_REG(t, x) + 0x10)
# define GPIO_OUT(t, x) (GPIO_REG(t, x) + 0X20)
# define GPIO_IN(t, x) (GPIO_REG(t, x) + 0x30)
# define GPIO_INT_STA(t, x) (GPIO_REG(t, x) + 0x40)
# define GPIO_INT_ENB(t, x) (GPIO_REG(t, x) + 0x50)
# define GPIO_INT_LVL(t, x) (GPIO_REG(t, x) + 0x60)
# define GPIO_INT_CLR(t, x) (GPIO_REG(t, x) + 0x70)
2016-04-25 13:38:34 +03:00
# define GPIO_DBC_CNT(t, x) (GPIO_REG(t, x) + 0xF0)
2016-04-25 13:38:33 +03:00
# define GPIO_MSK_CNF(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x00)
# define GPIO_MSK_OE(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x10)
# define GPIO_MSK_OUT(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0X20)
2016-04-25 13:38:34 +03:00
# define GPIO_MSK_DBC_EN(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x30)
2016-04-25 13:38:33 +03:00
# define GPIO_MSK_INT_STA(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x40)
# define GPIO_MSK_INT_ENB(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x50)
# define GPIO_MSK_INT_LVL(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x60)
2010-03-16 05:40:06 +03:00
# define GPIO_INT_LVL_MASK 0x010101
# define GPIO_INT_LVL_EDGE_RISING 0x000101
# define GPIO_INT_LVL_EDGE_FALLING 0x000100
# define GPIO_INT_LVL_EDGE_BOTH 0x010100
# define GPIO_INT_LVL_LEVEL_HIGH 0x000001
# define GPIO_INT_LVL_LEVEL_LOW 0x000000
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info ;
2010-03-16 05:40:06 +03:00
struct tegra_gpio_bank {
2017-07-24 17:55:08 +03:00
unsigned int bank ;
unsigned int irq ;
2010-03-16 05:40:06 +03:00
spinlock_t lvl_lock [ 4 ] ;
2016-04-25 13:38:34 +03:00
spinlock_t dbc_lock [ 4 ] ; /* Lock for updating debounce count register */
2012-11-07 19:01:32 +04:00
# ifdef CONFIG_PM_SLEEP
2010-04-07 23:59:42 +04:00
u32 cnf [ 4 ] ;
u32 out [ 4 ] ;
u32 oe [ 4 ] ;
u32 int_enb [ 4 ] ;
u32 int_lvl [ 4 ] ;
2013-04-03 15:31:44 +04:00
u32 wake_enb [ 4 ] ;
2016-04-25 13:38:34 +03:00
u32 dbc_enb [ 4 ] ;
2010-04-07 23:59:42 +04:00
# endif
2016-04-25 13:38:34 +03:00
u32 dbc_cnt [ 4 ] ;
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi ;
2010-03-16 05:40:06 +03:00
} ;
2016-04-25 13:38:31 +03:00
struct tegra_gpio_soc_config {
2016-04-25 13:38:34 +03:00
bool debounce_supported ;
2016-04-25 13:38:31 +03:00
u32 bank_stride ;
u32 upper_offset ;
} ;
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info {
struct device * dev ;
void __iomem * regs ;
struct irq_domain * irq_domain ;
struct tegra_gpio_bank * bank_info ;
const struct tegra_gpio_soc_config * soc ;
struct gpio_chip gc ;
struct irq_chip ic ;
u32 bank_count ;
} ;
2011-10-12 02:16:14 +04:00
2016-04-25 13:38:33 +03:00
static inline void tegra_gpio_writel ( struct tegra_gpio_info * tgi ,
u32 val , u32 reg )
2011-10-12 02:16:14 +04:00
{
2019-12-15 21:30:45 +03:00
writel_relaxed ( val , tgi - > regs + reg ) ;
2011-10-12 02:16:14 +04:00
}
2016-04-25 13:38:33 +03:00
static inline u32 tegra_gpio_readl ( struct tegra_gpio_info * tgi , u32 reg )
2011-10-12 02:16:14 +04:00
{
2019-12-15 21:30:45 +03:00
return readl_relaxed ( tgi - > regs + reg ) ;
2011-10-12 02:16:14 +04:00
}
2010-03-16 05:40:06 +03:00
2017-07-24 17:55:08 +03:00
static unsigned int tegra_gpio_compose ( unsigned int bank , unsigned int port ,
unsigned int bit )
2010-03-16 05:40:06 +03:00
{
return ( bank < < 5 ) | ( ( port & 0x3 ) < < 3 ) | ( bit & 0x7 ) ;
}
2016-04-25 13:38:33 +03:00
static void tegra_gpio_mask_write ( struct tegra_gpio_info * tgi , u32 reg ,
2017-07-24 17:55:08 +03:00
unsigned int gpio , u32 value )
2010-03-16 05:40:06 +03:00
{
u32 val ;
val = 0x100 < < GPIO_BIT ( gpio ) ;
if ( value )
val | = 1 < < GPIO_BIT ( gpio ) ;
2016-04-25 13:38:33 +03:00
tegra_gpio_writel ( tgi , val , reg ) ;
2010-03-16 05:40:06 +03:00
}
2017-07-24 17:55:08 +03:00
static void tegra_gpio_enable ( struct tegra_gpio_info * tgi , unsigned int gpio )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
tegra_gpio_mask_write ( tgi , GPIO_MSK_CNF ( tgi , gpio ) , gpio , 1 ) ;
2010-03-16 05:40:06 +03:00
}
2017-07-24 17:55:08 +03:00
static void tegra_gpio_disable ( struct tegra_gpio_info * tgi , unsigned int gpio )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
tegra_gpio_mask_write ( tgi , GPIO_MSK_CNF ( tgi , gpio ) , gpio , 0 ) ;
2010-03-16 05:40:06 +03:00
}
2017-07-24 17:55:07 +03:00
static int tegra_gpio_request ( struct gpio_chip * chip , unsigned int offset )
2012-02-18 12:04:55 +04:00
{
2019-02-19 23:32:02 +03:00
return pinctrl_gpio_request ( chip - > base + offset ) ;
2012-02-18 12:04:55 +04:00
}
2017-07-24 17:55:07 +03:00
static void tegra_gpio_free ( struct gpio_chip * chip , unsigned int offset )
2012-02-18 12:04:55 +04:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = gpiochip_get_data ( chip ) ;
2019-02-19 23:32:02 +03:00
pinctrl_gpio_free ( chip - > base + offset ) ;
2016-04-25 13:38:33 +03:00
tegra_gpio_disable ( tgi , offset ) ;
2012-02-18 12:04:55 +04:00
}
2017-07-24 17:55:07 +03:00
static void tegra_gpio_set ( struct gpio_chip * chip , unsigned int offset ,
int value )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = gpiochip_get_data ( chip ) ;
tegra_gpio_mask_write ( tgi , GPIO_MSK_OUT ( tgi , offset ) , offset , value ) ;
2010-03-16 05:40:06 +03:00
}
2017-07-24 17:55:07 +03:00
static int tegra_gpio_get ( struct gpio_chip * chip , unsigned int offset )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = gpiochip_get_data ( chip ) ;
2017-07-24 17:55:08 +03:00
unsigned int bval = BIT ( GPIO_BIT ( offset ) ) ;
2016-04-25 13:38:33 +03:00
2012-11-09 10:04:20 +04:00
/* If gpio is in output mode then read from the out value */
2016-04-25 13:38:33 +03:00
if ( tegra_gpio_readl ( tgi , GPIO_OE ( tgi , offset ) ) & bval )
return ! ! ( tegra_gpio_readl ( tgi , GPIO_OUT ( tgi , offset ) ) & bval ) ;
2012-11-09 10:04:20 +04:00
2016-04-25 13:38:33 +03:00
return ! ! ( tegra_gpio_readl ( tgi , GPIO_IN ( tgi , offset ) ) & bval ) ;
2010-03-16 05:40:06 +03:00
}
2017-07-24 17:55:07 +03:00
static int tegra_gpio_direction_input ( struct gpio_chip * chip ,
unsigned int offset )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = gpiochip_get_data ( chip ) ;
2019-02-19 23:32:02 +03:00
int ret ;
2016-04-25 13:38:33 +03:00
tegra_gpio_mask_write ( tgi , GPIO_MSK_OE ( tgi , offset ) , offset , 0 ) ;
tegra_gpio_enable ( tgi , offset ) ;
2019-02-19 23:32:02 +03:00
ret = pinctrl_gpio_direction_input ( chip - > base + offset ) ;
if ( ret < 0 )
dev_err ( tgi - > dev ,
" Failed to set pinctrl input direction of GPIO %d: %d " ,
chip - > base + offset , ret ) ;
return ret ;
2010-03-16 05:40:06 +03:00
}
2017-07-24 17:55:07 +03:00
static int tegra_gpio_direction_output ( struct gpio_chip * chip ,
unsigned int offset ,
int value )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = gpiochip_get_data ( chip ) ;
2019-02-19 23:32:02 +03:00
int ret ;
2016-04-25 13:38:33 +03:00
2010-03-16 05:40:06 +03:00
tegra_gpio_set ( chip , offset , value ) ;
2016-04-25 13:38:33 +03:00
tegra_gpio_mask_write ( tgi , GPIO_MSK_OE ( tgi , offset ) , offset , 1 ) ;
tegra_gpio_enable ( tgi , offset ) ;
2019-02-19 23:32:02 +03:00
ret = pinctrl_gpio_direction_output ( chip - > base + offset ) ;
if ( ret < 0 )
dev_err ( tgi - > dev ,
" Failed to set pinctrl output direction of GPIO %d: %d " ,
chip - > base + offset , ret ) ;
return ret ;
2010-03-16 05:40:06 +03:00
}
2017-07-24 17:55:07 +03:00
static int tegra_gpio_get_direction ( struct gpio_chip * chip ,
unsigned int offset )
2016-04-29 19:25:23 +03:00
{
struct tegra_gpio_info * tgi = gpiochip_get_data ( chip ) ;
u32 pin_mask = BIT ( GPIO_BIT ( offset ) ) ;
u32 cnf , oe ;
cnf = tegra_gpio_readl ( tgi , GPIO_CNF ( tgi , offset ) ) ;
if ( ! ( cnf & pin_mask ) )
return - EINVAL ;
oe = tegra_gpio_readl ( tgi , GPIO_OE ( tgi , offset ) ) ;
2019-11-06 11:54:12 +03:00
if ( oe & pin_mask )
return GPIO_LINE_DIRECTION_OUT ;
return GPIO_LINE_DIRECTION_IN ;
2016-04-29 19:25:23 +03:00
}
2016-04-25 13:38:34 +03:00
static int tegra_gpio_set_debounce ( struct gpio_chip * chip , unsigned int offset ,
unsigned int debounce )
{
struct tegra_gpio_info * tgi = gpiochip_get_data ( chip ) ;
struct tegra_gpio_bank * bank = & tgi - > bank_info [ GPIO_BANK ( offset ) ] ;
unsigned int debounce_ms = DIV_ROUND_UP ( debounce , 1000 ) ;
unsigned long flags ;
2017-07-24 17:55:08 +03:00
unsigned int port ;
2016-04-25 13:38:34 +03:00
if ( ! debounce_ms ) {
tegra_gpio_mask_write ( tgi , GPIO_MSK_DBC_EN ( tgi , offset ) ,
offset , 0 ) ;
return 0 ;
}
debounce_ms = min ( debounce_ms , 255U ) ;
port = GPIO_PORT ( offset ) ;
/* There is only one debounce count register per port and hence
* set the maximum of current and requested debounce time .
*/
spin_lock_irqsave ( & bank - > dbc_lock [ port ] , flags ) ;
if ( bank - > dbc_cnt [ port ] < debounce_ms ) {
tegra_gpio_writel ( tgi , debounce_ms , GPIO_DBC_CNT ( tgi , offset ) ) ;
bank - > dbc_cnt [ port ] = debounce_ms ;
}
spin_unlock_irqrestore ( & bank - > dbc_lock [ port ] , flags ) ;
tegra_gpio_mask_write ( tgi , GPIO_MSK_DBC_EN ( tgi , offset ) , offset , 1 ) ;
return 0 ;
}
2017-01-23 15:34:34 +03:00
static int tegra_gpio_set_config ( struct gpio_chip * chip , unsigned int offset ,
unsigned long config )
{
u32 debounce ;
if ( pinconf_to_config_param ( config ) ! = PIN_CONFIG_INPUT_DEBOUNCE )
return - ENOTSUPP ;
debounce = pinconf_to_config_argument ( config ) ;
return tegra_gpio_set_debounce ( chip , offset , debounce ) ;
}
2017-07-24 17:55:07 +03:00
static int tegra_gpio_to_irq ( struct gpio_chip * chip , unsigned int offset )
2011-08-23 03:39:56 +04:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = gpiochip_get_data ( chip ) ;
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:33 +03:00
return irq_find_mapping ( tgi - > irq_domain , offset ) ;
}
2010-03-16 05:40:06 +03:00
2010-11-29 13:14:46 +03:00
static void tegra_gpio_irq_ack ( struct irq_data * d )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_bank * bank = irq_data_get_irq_chip_data ( d ) ;
struct tegra_gpio_info * tgi = bank - > tgi ;
2017-07-24 17:55:08 +03:00
unsigned int gpio = d - > hwirq ;
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:33 +03:00
tegra_gpio_writel ( tgi , 1 < < GPIO_BIT ( gpio ) , GPIO_INT_CLR ( tgi , gpio ) ) ;
2010-03-16 05:40:06 +03:00
}
2010-11-29 13:14:46 +03:00
static void tegra_gpio_irq_mask ( struct irq_data * d )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_bank * bank = irq_data_get_irq_chip_data ( d ) ;
struct tegra_gpio_info * tgi = bank - > tgi ;
2017-07-24 17:55:08 +03:00
unsigned int gpio = d - > hwirq ;
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:33 +03:00
tegra_gpio_mask_write ( tgi , GPIO_MSK_INT_ENB ( tgi , gpio ) , gpio , 0 ) ;
2010-03-16 05:40:06 +03:00
}
2010-11-29 13:14:46 +03:00
static void tegra_gpio_irq_unmask ( struct irq_data * d )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_bank * bank = irq_data_get_irq_chip_data ( d ) ;
struct tegra_gpio_info * tgi = bank - > tgi ;
2017-07-24 17:55:08 +03:00
unsigned int gpio = d - > hwirq ;
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:33 +03:00
tegra_gpio_mask_write ( tgi , GPIO_MSK_INT_ENB ( tgi , gpio ) , gpio , 1 ) ;
2010-03-16 05:40:06 +03:00
}
2010-11-29 13:14:46 +03:00
static int tegra_gpio_irq_set_type ( struct irq_data * d , unsigned int type )
2010-03-16 05:40:06 +03:00
{
2017-07-24 17:55:08 +03:00
unsigned int gpio = d - > hwirq , port = GPIO_PORT ( gpio ) , lvl_type ;
2010-11-29 13:14:46 +03:00
struct tegra_gpio_bank * bank = irq_data_get_irq_chip_data ( d ) ;
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = bank - > tgi ;
2010-03-16 05:40:06 +03:00
unsigned long flags ;
2017-07-24 17:55:08 +03:00
u32 val ;
2013-10-16 23:25:33 +04:00
int ret ;
2010-03-16 05:40:06 +03:00
switch ( type & IRQ_TYPE_SENSE_MASK ) {
case IRQ_TYPE_EDGE_RISING :
lvl_type = GPIO_INT_LVL_EDGE_RISING ;
break ;
case IRQ_TYPE_EDGE_FALLING :
lvl_type = GPIO_INT_LVL_EDGE_FALLING ;
break ;
case IRQ_TYPE_EDGE_BOTH :
lvl_type = GPIO_INT_LVL_EDGE_BOTH ;
break ;
case IRQ_TYPE_LEVEL_HIGH :
lvl_type = GPIO_INT_LVL_LEVEL_HIGH ;
break ;
case IRQ_TYPE_LEVEL_LOW :
lvl_type = GPIO_INT_LVL_LEVEL_LOW ;
break ;
default :
return - EINVAL ;
}
spin_lock_irqsave ( & bank - > lvl_lock [ port ] , flags ) ;
2016-04-25 13:38:33 +03:00
val = tegra_gpio_readl ( tgi , GPIO_INT_LVL ( tgi , gpio ) ) ;
2010-03-16 05:40:06 +03:00
val & = ~ ( GPIO_INT_LVL_MASK < < GPIO_BIT ( gpio ) ) ;
val | = lvl_type < < GPIO_BIT ( gpio ) ;
2016-04-25 13:38:33 +03:00
tegra_gpio_writel ( tgi , val , GPIO_INT_LVL ( tgi , gpio ) ) ;
2010-03-16 05:40:06 +03:00
spin_unlock_irqrestore ( & bank - > lvl_lock [ port ] , flags ) ;
2016-04-25 13:38:33 +03:00
tegra_gpio_mask_write ( tgi , GPIO_MSK_OE ( tgi , gpio ) , gpio , 0 ) ;
tegra_gpio_enable ( tgi , gpio ) ;
2012-03-19 20:31:58 +04:00
2018-07-17 19:10:38 +03:00
ret = gpiochip_lock_as_irq ( & tgi - > gc , gpio ) ;
if ( ret ) {
dev_err ( tgi - > dev ,
" unable to lock Tegra GPIO %u as IRQ \n " , gpio ) ;
tegra_gpio_disable ( tgi , gpio ) ;
return ret ;
}
2010-03-16 05:40:06 +03:00
if ( type & ( IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH ) )
2015-06-23 16:52:40 +03:00
irq_set_handler_locked ( d , handle_level_irq ) ;
2010-03-16 05:40:06 +03:00
else if ( type & ( IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING ) )
2015-06-23 16:52:40 +03:00
irq_set_handler_locked ( d , handle_edge_irq ) ;
2010-03-16 05:40:06 +03:00
return 0 ;
}
2013-10-16 23:25:33 +04:00
static void tegra_gpio_irq_shutdown ( struct irq_data * d )
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_bank * bank = irq_data_get_irq_chip_data ( d ) ;
struct tegra_gpio_info * tgi = bank - > tgi ;
2017-07-24 17:55:08 +03:00
unsigned int gpio = d - > hwirq ;
2013-10-16 23:25:33 +04:00
2020-04-28 02:26:05 +03:00
tegra_gpio_irq_mask ( d ) ;
2016-04-25 13:38:33 +03:00
gpiochip_unlock_as_irq ( & tgi - > gc , gpio ) ;
2013-10-16 23:25:33 +04:00
}
2015-09-14 11:42:37 +03:00
static void tegra_gpio_irq_handler ( struct irq_desc * desc )
2010-03-16 05:40:06 +03:00
{
2017-07-24 17:55:08 +03:00
unsigned int port , pin , gpio ;
2017-07-18 15:35:45 +03:00
bool unmasked = false ;
2016-04-25 13:38:33 +03:00
u32 lvl ;
unsigned long sta ;
2011-02-21 16:58:10 +03:00
struct irq_chip * chip = irq_desc_get_chip ( desc ) ;
2015-06-04 07:13:15 +03:00
struct tegra_gpio_bank * bank = irq_desc_get_handler_data ( desc ) ;
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = bank - > tgi ;
2010-03-16 05:40:06 +03:00
2011-02-21 16:58:10 +03:00
chained_irq_enter ( chip , desc ) ;
2010-03-16 05:40:06 +03:00
for ( port = 0 ; port < 4 ; port + + ) {
2016-04-25 13:38:33 +03:00
gpio = tegra_gpio_compose ( bank - > bank , port , 0 ) ;
sta = tegra_gpio_readl ( tgi , GPIO_INT_STA ( tgi , gpio ) ) &
tegra_gpio_readl ( tgi , GPIO_INT_ENB ( tgi , gpio ) ) ;
lvl = tegra_gpio_readl ( tgi , GPIO_INT_LVL ( tgi , gpio ) ) ;
2010-03-16 05:40:06 +03:00
for_each_set_bit ( pin , & sta , 8 ) {
2016-04-25 13:38:33 +03:00
tegra_gpio_writel ( tgi , 1 < < pin ,
GPIO_INT_CLR ( tgi , gpio ) ) ;
2010-03-16 05:40:06 +03:00
/* if gpio is edge triggered, clear condition
2015-05-18 21:41:43 +03:00
* before executing the handler so that we don ' t
2010-03-16 05:40:06 +03:00
* miss edges
*/
2017-07-18 15:35:45 +03:00
if ( ! unmasked & & lvl & ( 0x100 < < pin ) ) {
unmasked = true ;
2011-02-21 16:58:10 +03:00
chained_irq_exit ( chip , desc ) ;
2010-03-16 05:40:06 +03:00
}
2017-07-09 01:44:11 +03:00
generic_handle_irq ( irq_find_mapping ( tgi - > irq_domain ,
gpio + pin ) ) ;
2010-03-16 05:40:06 +03:00
}
}
if ( ! unmasked )
2011-02-21 16:58:10 +03:00
chained_irq_exit ( chip , desc ) ;
2010-03-16 05:40:06 +03:00
}
2012-11-07 19:01:32 +04:00
# ifdef CONFIG_PM_SLEEP
static int tegra_gpio_resume ( struct device * dev )
2010-04-07 23:59:42 +04:00
{
2018-10-21 23:00:00 +03:00
struct tegra_gpio_info * tgi = dev_get_drvdata ( dev ) ;
2017-07-24 17:55:08 +03:00
unsigned int b , p ;
2010-04-07 23:59:42 +04:00
2016-04-25 13:38:33 +03:00
for ( b = 0 ; b < tgi - > bank_count ; b + + ) {
struct tegra_gpio_bank * bank = & tgi - > bank_info [ b ] ;
2010-04-07 23:59:42 +04:00
for ( p = 0 ; p < ARRAY_SIZE ( bank - > oe ) ; p + + ) {
2017-07-24 17:55:07 +03:00
unsigned int gpio = ( b < < 5 ) | ( p < < 3 ) ;
2016-04-25 13:38:33 +03:00
tegra_gpio_writel ( tgi , bank - > cnf [ p ] ,
GPIO_CNF ( tgi , gpio ) ) ;
2016-04-25 13:38:34 +03:00
if ( tgi - > soc - > debounce_supported ) {
tegra_gpio_writel ( tgi , bank - > dbc_cnt [ p ] ,
GPIO_DBC_CNT ( tgi , gpio ) ) ;
tegra_gpio_writel ( tgi , bank - > dbc_enb [ p ] ,
GPIO_MSK_DBC_EN ( tgi , gpio ) ) ;
}
2016-04-25 13:38:33 +03:00
tegra_gpio_writel ( tgi , bank - > out [ p ] ,
GPIO_OUT ( tgi , gpio ) ) ;
tegra_gpio_writel ( tgi , bank - > oe [ p ] ,
GPIO_OE ( tgi , gpio ) ) ;
tegra_gpio_writel ( tgi , bank - > int_lvl [ p ] ,
GPIO_INT_LVL ( tgi , gpio ) ) ;
tegra_gpio_writel ( tgi , bank - > int_enb [ p ] ,
GPIO_INT_ENB ( tgi , gpio ) ) ;
2010-04-07 23:59:42 +04:00
}
}
2012-11-07 19:01:32 +04:00
return 0 ;
2010-04-07 23:59:42 +04:00
}
2012-11-07 19:01:32 +04:00
static int tegra_gpio_suspend ( struct device * dev )
2010-04-07 23:59:42 +04:00
{
2018-10-21 23:00:00 +03:00
struct tegra_gpio_info * tgi = dev_get_drvdata ( dev ) ;
2017-07-24 17:55:08 +03:00
unsigned int b , p ;
2010-04-07 23:59:42 +04:00
2016-04-25 13:38:33 +03:00
for ( b = 0 ; b < tgi - > bank_count ; b + + ) {
struct tegra_gpio_bank * bank = & tgi - > bank_info [ b ] ;
2010-04-07 23:59:42 +04:00
for ( p = 0 ; p < ARRAY_SIZE ( bank - > oe ) ; p + + ) {
2017-07-24 17:55:07 +03:00
unsigned int gpio = ( b < < 5 ) | ( p < < 3 ) ;
2016-04-25 13:38:33 +03:00
bank - > cnf [ p ] = tegra_gpio_readl ( tgi ,
GPIO_CNF ( tgi , gpio ) ) ;
bank - > out [ p ] = tegra_gpio_readl ( tgi ,
GPIO_OUT ( tgi , gpio ) ) ;
bank - > oe [ p ] = tegra_gpio_readl ( tgi ,
GPIO_OE ( tgi , gpio ) ) ;
2016-04-25 13:38:34 +03:00
if ( tgi - > soc - > debounce_supported ) {
bank - > dbc_enb [ p ] = tegra_gpio_readl ( tgi ,
GPIO_MSK_DBC_EN ( tgi , gpio ) ) ;
bank - > dbc_enb [ p ] = ( bank - > dbc_enb [ p ] < < 8 ) |
bank - > dbc_enb [ p ] ;
}
2016-04-25 13:38:33 +03:00
bank - > int_enb [ p ] = tegra_gpio_readl ( tgi ,
GPIO_INT_ENB ( tgi , gpio ) ) ;
bank - > int_lvl [ p ] = tegra_gpio_readl ( tgi ,
GPIO_INT_LVL ( tgi , gpio ) ) ;
2013-04-03 15:31:44 +04:00
/* Enable gpio irq for wake up source */
2016-04-25 13:38:33 +03:00
tegra_gpio_writel ( tgi , bank - > wake_enb [ p ] ,
GPIO_INT_ENB ( tgi , gpio ) ) ;
2010-04-07 23:59:42 +04:00
}
}
2019-12-15 21:30:47 +03:00
2012-11-07 19:01:32 +04:00
return 0 ;
2010-04-07 23:59:42 +04:00
}
2013-04-03 15:31:44 +04:00
static int tegra_gpio_irq_set_wake ( struct irq_data * d , unsigned int enable )
2010-04-07 23:59:42 +04:00
{
2010-11-29 13:14:46 +03:00
struct tegra_gpio_bank * bank = irq_data_get_irq_chip_data ( d ) ;
2017-07-24 17:55:08 +03:00
unsigned int gpio = d - > hwirq ;
2013-04-03 15:31:44 +04:00
u32 port , bit , mask ;
2019-12-15 21:30:46 +03:00
int err ;
err = irq_set_irq_wake ( bank - > irq , enable ) ;
if ( err )
return err ;
2013-04-03 15:31:44 +04:00
port = GPIO_PORT ( gpio ) ;
bit = GPIO_BIT ( gpio ) ;
mask = BIT ( bit ) ;
if ( enable )
bank - > wake_enb [ port ] | = mask ;
else
bank - > wake_enb [ port ] & = ~ mask ;
2019-12-15 21:30:46 +03:00
return 0 ;
2010-04-07 23:59:42 +04:00
}
# endif
2010-03-16 05:40:06 +03:00
2015-11-16 19:07:10 +03:00
# ifdef CONFIG_DEBUG_FS
# include <linux/debugfs.h>
# include <linux/seq_file.h>
2018-02-12 17:01:57 +03:00
static int tegra_dbg_gpio_show ( struct seq_file * s , void * unused )
2015-11-16 19:07:10 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi = s - > private ;
2017-07-24 17:55:08 +03:00
unsigned int i , j ;
2015-11-16 19:07:10 +03:00
2016-04-25 13:38:33 +03:00
for ( i = 0 ; i < tgi - > bank_count ; i + + ) {
2015-11-16 19:07:10 +03:00
for ( j = 0 ; j < 4 ; j + + ) {
2017-07-24 17:55:08 +03:00
unsigned int gpio = tegra_gpio_compose ( i , j , 0 ) ;
2017-07-24 17:55:07 +03:00
2015-11-16 19:07:10 +03:00
seq_printf ( s ,
2017-07-24 17:55:08 +03:00
" %u:%u %02x %02x %02x %02x %02x %02x %06x \n " ,
2015-11-16 19:07:10 +03:00
i , j ,
2016-04-25 13:38:33 +03:00
tegra_gpio_readl ( tgi , GPIO_CNF ( tgi , gpio ) ) ,
tegra_gpio_readl ( tgi , GPIO_OE ( tgi , gpio ) ) ,
tegra_gpio_readl ( tgi , GPIO_OUT ( tgi , gpio ) ) ,
tegra_gpio_readl ( tgi , GPIO_IN ( tgi , gpio ) ) ,
tegra_gpio_readl ( tgi , GPIO_INT_STA ( tgi , gpio ) ) ,
tegra_gpio_readl ( tgi , GPIO_INT_ENB ( tgi , gpio ) ) ,
tegra_gpio_readl ( tgi , GPIO_INT_LVL ( tgi , gpio ) ) ) ;
2015-11-16 19:07:10 +03:00
}
}
return 0 ;
}
2018-02-12 17:01:57 +03:00
DEFINE_SHOW_ATTRIBUTE ( tegra_dbg_gpio ) ;
2015-11-16 19:07:10 +03:00
2016-04-25 13:38:33 +03:00
static void tegra_gpio_debuginit ( struct tegra_gpio_info * tgi )
2015-11-16 19:07:10 +03:00
{
2019-07-06 21:15:54 +03:00
debugfs_create_file ( " tegra_gpio " , 0444 , NULL , tgi ,
& tegra_dbg_gpio_fops ) ;
2015-11-16 19:07:10 +03:00
}
# else
2016-04-25 13:38:33 +03:00
static inline void tegra_gpio_debuginit ( struct tegra_gpio_info * tgi )
2015-11-16 19:07:10 +03:00
{
}
# endif
2012-11-07 19:01:32 +04:00
static const struct dev_pm_ops tegra_gpio_pm_ops = {
2019-12-15 21:30:47 +03:00
SET_NOIRQ_SYSTEM_SLEEP_PM_OPS ( tegra_gpio_suspend , tegra_gpio_resume )
2012-11-07 19:01:32 +04:00
} ;
2012-11-19 22:22:34 +04:00
static int tegra_gpio_probe ( struct platform_device * pdev )
2010-03-16 05:40:06 +03:00
{
2016-04-25 13:38:33 +03:00
struct tegra_gpio_info * tgi ;
2010-03-16 05:40:06 +03:00
struct tegra_gpio_bank * bank ;
2017-07-24 17:55:08 +03:00
unsigned int gpio , i , j ;
2013-12-07 00:36:11 +04:00
int ret ;
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:33 +03:00
tgi = devm_kzalloc ( & pdev - > dev , sizeof ( * tgi ) , GFP_KERNEL ) ;
if ( ! tgi )
return - ENODEV ;
2017-07-24 17:55:05 +03:00
tgi - > soc = of_device_get_match_data ( & pdev - > dev ) ;
2016-04-25 13:38:33 +03:00
tgi - > dev = & pdev - > dev ;
2012-03-17 03:35:08 +04:00
2017-07-20 19:00:56 +03:00
ret = platform_irq_count ( pdev ) ;
if ( ret < 0 )
return ret ;
tgi - > bank_count = ret ;
2016-04-25 13:38:33 +03:00
if ( ! tgi - > bank_count ) {
2012-01-19 12:16:35 +04:00
dev_err ( & pdev - > dev , " Missing IRQ resource \n " ) ;
return - ENODEV ;
}
2016-04-25 13:38:33 +03:00
tgi - > gc . label = " tegra-gpio " ;
tgi - > gc . request = tegra_gpio_request ;
tgi - > gc . free = tegra_gpio_free ;
tgi - > gc . direction_input = tegra_gpio_direction_input ;
tgi - > gc . get = tegra_gpio_get ;
tgi - > gc . direction_output = tegra_gpio_direction_output ;
tgi - > gc . set = tegra_gpio_set ;
2016-04-29 19:25:23 +03:00
tgi - > gc . get_direction = tegra_gpio_get_direction ;
2016-04-25 13:38:33 +03:00
tgi - > gc . to_irq = tegra_gpio_to_irq ;
tgi - > gc . base = 0 ;
tgi - > gc . ngpio = tgi - > bank_count * 32 ;
tgi - > gc . parent = & pdev - > dev ;
tgi - > gc . of_node = pdev - > dev . of_node ;
tgi - > ic . name = " GPIO " ;
tgi - > ic . irq_ack = tegra_gpio_irq_ack ;
tgi - > ic . irq_mask = tegra_gpio_irq_mask ;
tgi - > ic . irq_unmask = tegra_gpio_irq_unmask ;
tgi - > ic . irq_set_type = tegra_gpio_irq_set_type ;
tgi - > ic . irq_shutdown = tegra_gpio_irq_shutdown ;
# ifdef CONFIG_PM_SLEEP
tgi - > ic . irq_set_wake = tegra_gpio_irq_set_wake ;
# endif
platform_set_drvdata ( pdev , tgi ) ;
2012-01-19 12:16:35 +04:00
2017-07-24 17:55:05 +03:00
if ( tgi - > soc - > debounce_supported )
2017-01-23 15:34:34 +03:00
tgi - > gc . set_config = tegra_gpio_set_config ;
2016-04-25 13:38:34 +03:00
2017-07-24 17:55:06 +03:00
tgi - > bank_info = devm_kcalloc ( & pdev - > dev , tgi - > bank_count ,
2016-04-25 13:38:33 +03:00
sizeof ( * tgi - > bank_info ) , GFP_KERNEL ) ;
if ( ! tgi - > bank_info )
2017-07-24 17:55:06 +03:00
return - ENOMEM ;
2012-01-19 12:16:35 +04:00
2016-04-25 13:38:33 +03:00
tgi - > irq_domain = irq_domain_add_linear ( pdev - > dev . of_node ,
tgi - > gc . ngpio ,
& irq_domain_simple_ops , NULL ) ;
if ( ! tgi - > irq_domain )
2012-10-16 23:00:09 +04:00
return - ENODEV ;
2012-01-04 12:39:37 +04:00
2016-04-25 13:38:33 +03:00
for ( i = 0 ; i < tgi - > bank_count ; i + + ) {
2017-07-20 19:00:57 +03:00
ret = platform_get_irq ( pdev , i ) ;
2019-07-30 21:15:15 +03:00
if ( ret < 0 )
2017-07-20 19:00:57 +03:00
return ret ;
2011-10-12 02:16:14 +04:00
2016-04-25 13:38:33 +03:00
bank = & tgi - > bank_info [ i ] ;
2011-10-12 02:16:14 +04:00
bank - > bank = i ;
2017-07-20 19:00:57 +03:00
bank - > irq = ret ;
2016-04-25 13:38:33 +03:00
bank - > tgi = tgi ;
2011-10-12 02:16:14 +04:00
}
2019-03-11 21:55:12 +03:00
tgi - > regs = devm_platform_ioremap_resource ( pdev , 0 ) ;
2016-04-25 13:38:33 +03:00
if ( IS_ERR ( tgi - > regs ) )
return PTR_ERR ( tgi - > regs ) ;
2011-10-12 02:16:14 +04:00
2016-04-25 13:38:33 +03:00
for ( i = 0 ; i < tgi - > bank_count ; i + + ) {
2010-03-16 05:40:06 +03:00
for ( j = 0 ; j < 4 ; j + + ) {
int gpio = tegra_gpio_compose ( i , j , 0 ) ;
2017-07-24 17:55:07 +03:00
2016-04-25 13:38:33 +03:00
tegra_gpio_writel ( tgi , 0x00 , GPIO_INT_ENB ( tgi , gpio ) ) ;
2010-03-16 05:40:06 +03:00
}
}
2016-04-25 13:38:33 +03:00
ret = devm_gpiochip_add_data ( & pdev - > dev , & tgi - > gc , tgi ) ;
2013-12-07 00:36:11 +04:00
if ( ret < 0 ) {
2016-04-25 13:38:33 +03:00
irq_domain_remove ( tgi - > irq_domain ) ;
2013-12-07 00:36:11 +04:00
return ret ;
}
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:33 +03:00
for ( gpio = 0 ; gpio < tgi - > gc . ngpio ; gpio + + ) {
int irq = irq_create_mapping ( tgi - > irq_domain , gpio ) ;
2011-08-23 03:39:55 +04:00
/* No validity check; all Tegra GPIOs are valid IRQs */
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:33 +03:00
bank = & tgi - > bank_info [ GPIO_BANK ( gpio ) ] ;
2010-03-16 05:40:06 +03:00
2011-08-23 03:39:55 +04:00
irq_set_chip_data ( irq , bank ) ;
2016-04-25 13:38:33 +03:00
irq_set_chip_and_handler ( irq , & tgi - > ic , handle_simple_irq ) ;
2010-03-16 05:40:06 +03:00
}
2016-04-25 13:38:33 +03:00
for ( i = 0 ; i < tgi - > bank_count ; i + + ) {
bank = & tgi - > bank_info [ i ] ;
2010-03-16 05:40:06 +03:00
2015-06-17 01:06:50 +03:00
irq_set_chained_handler_and_data ( bank - > irq ,
tegra_gpio_irq_handler , bank ) ;
2010-03-16 05:40:06 +03:00
2016-04-25 13:38:34 +03:00
for ( j = 0 ; j < 4 ; j + + ) {
2010-03-16 05:40:06 +03:00
spin_lock_init ( & bank - > lvl_lock [ j ] ) ;
2016-04-25 13:38:34 +03:00
spin_lock_init ( & bank - > dbc_lock [ j ] ) ;
}
2010-03-16 05:40:06 +03:00
}
2016-04-25 13:38:33 +03:00
tegra_gpio_debuginit ( tgi ) ;
2015-11-16 19:07:10 +03:00
2010-03-16 05:40:06 +03:00
return 0 ;
}
2016-04-25 13:38:32 +03:00
static const struct tegra_gpio_soc_config tegra20_gpio_config = {
2016-04-25 13:38:31 +03:00
. bank_stride = 0x80 ,
. upper_offset = 0x800 ,
} ;
2016-04-25 13:38:32 +03:00
static const struct tegra_gpio_soc_config tegra30_gpio_config = {
2016-04-25 13:38:31 +03:00
. bank_stride = 0x100 ,
. upper_offset = 0x80 ,
} ;
2016-04-25 13:38:34 +03:00
static const struct tegra_gpio_soc_config tegra210_gpio_config = {
. debounce_supported = true ,
. bank_stride = 0x100 ,
. upper_offset = 0x80 ,
} ;
2016-04-25 13:38:31 +03:00
static const struct of_device_id tegra_gpio_of_match [ ] = {
2016-04-25 13:38:34 +03:00
{ . compatible = " nvidia,tegra210-gpio " , . data = & tegra210_gpio_config } ,
2016-04-25 13:38:31 +03:00
{ . compatible = " nvidia,tegra30-gpio " , . data = & tegra30_gpio_config } ,
{ . compatible = " nvidia,tegra20-gpio " , . data = & tegra20_gpio_config } ,
{ } ,
} ;
2011-10-12 02:16:14 +04:00
static struct platform_driver tegra_gpio_driver = {
. driver = {
. name = " tegra-gpio " ,
2012-11-07 19:01:32 +04:00
. pm = & tegra_gpio_pm_ops ,
2011-10-12 02:16:14 +04:00
. of_match_table = tegra_gpio_of_match ,
} ,
. probe = tegra_gpio_probe ,
} ;
static int __init tegra_gpio_init ( void )
{
return platform_driver_register ( & tegra_gpio_driver ) ;
}
2018-08-02 14:11:44 +03:00
subsys_initcall ( tegra_gpio_init ) ;