pinctrl: rockchip: implement PIN_CONFIG_OUTPUT handling
In some cases it is nice to be able to simply control a gpio output via the PIN_CONFIG_OUTPUT option without having a driver control it. Thus add support for it to the rockchip pinctrl driver. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Родитель
dab3eba7c1
Коммит
a076e2ed3f
|
@ -329,6 +329,23 @@ static const struct pinctrl_ops rockchip_pctrl_ops = {
|
||||||
* Hardware access
|
* Hardware access
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
static int rockchip_get_mux(struct rockchip_pin_bank *bank, int pin)
|
||||||
|
{
|
||||||
|
struct rockchip_pinctrl *info = bank->drvdata;
|
||||||
|
void __iomem *reg = info->reg_base + info->ctrl->mux_offset;
|
||||||
|
u8 bit;
|
||||||
|
|
||||||
|
if (bank->bank_type == RK3188_BANK0 && pin < 16)
|
||||||
|
return RK_FUNC_GPIO;
|
||||||
|
|
||||||
|
/* get basic quadrupel of mux registers and the correct reg inside */
|
||||||
|
reg += bank->bank_num * 0x10;
|
||||||
|
reg += (pin / 8) * 4;
|
||||||
|
bit = (pin % 8) * 2;
|
||||||
|
|
||||||
|
return ((readl(reg) >> bit) & 3);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set a new mux function for a pin.
|
* Set a new mux function for a pin.
|
||||||
*
|
*
|
||||||
|
@ -687,6 +704,10 @@ static bool rockchip_pinconf_pull_valid(struct rockchip_pin_ctrl *ctrl,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int rockchip_gpio_direction_output(struct gpio_chip *gc,
|
||||||
|
unsigned offset, int value);
|
||||||
|
static int rockchip_gpio_get(struct gpio_chip *gc, unsigned offset);
|
||||||
|
|
||||||
/* set the pin config settings for a specified pin */
|
/* set the pin config settings for a specified pin */
|
||||||
static int rockchip_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
|
static int rockchip_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
|
||||||
unsigned long *configs, unsigned num_configs)
|
unsigned long *configs, unsigned num_configs)
|
||||||
|
@ -724,6 +745,13 @@ static int rockchip_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
break;
|
break;
|
||||||
|
case PIN_CONFIG_OUTPUT:
|
||||||
|
rc = rockchip_gpio_direction_output(&bank->gpio_chip,
|
||||||
|
pin - bank->pin_base,
|
||||||
|
arg);
|
||||||
|
if (rc)
|
||||||
|
return rc;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return -ENOTSUPP;
|
return -ENOTSUPP;
|
||||||
break;
|
break;
|
||||||
|
@ -741,6 +769,7 @@ static int rockchip_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
|
||||||
struct rockchip_pin_bank *bank = pin_to_bank(info, pin);
|
struct rockchip_pin_bank *bank = pin_to_bank(info, pin);
|
||||||
enum pin_config_param param = pinconf_to_config_param(*config);
|
enum pin_config_param param = pinconf_to_config_param(*config);
|
||||||
u16 arg;
|
u16 arg;
|
||||||
|
int rc;
|
||||||
|
|
||||||
switch (param) {
|
switch (param) {
|
||||||
case PIN_CONFIG_BIAS_DISABLE:
|
case PIN_CONFIG_BIAS_DISABLE:
|
||||||
|
@ -761,6 +790,17 @@ static int rockchip_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
|
||||||
|
|
||||||
arg = 1;
|
arg = 1;
|
||||||
break;
|
break;
|
||||||
|
case PIN_CONFIG_OUTPUT:
|
||||||
|
rc = rockchip_get_mux(bank, pin - bank->pin_base);
|
||||||
|
if (rc != RK_FUNC_GPIO)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
rc = rockchip_gpio_get(&bank->gpio_chip, pin - bank->pin_base);
|
||||||
|
if (rc < 0)
|
||||||
|
return rc;
|
||||||
|
|
||||||
|
arg = rc ? 1 : 0;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return -ENOTSUPP;
|
return -ENOTSUPP;
|
||||||
break;
|
break;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче