Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1326809 > unrolled thread

Re: [PATCH v3 4/5] pinctrl: mediatek: Add Pinctrl/GPIO/EINT driver for mt2701

Started byMatthias Brugger <matthias.bgg@gmail.com>
First post2016-02-04 14:50 +0100
Last post2016-02-04 15:00 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH v3 4/5] pinctrl: mediatek: Add Pinctrl/GPIO/EINT driver  for mt2701 Matthias Brugger <matthias.bgg@gmail.com> - 2016-02-04 14:50 +0100
    Re: [PATCH v3 4/5] pinctrl: mediatek: Add Pinctrl/GPIO/EINT driver  for mt2701 Yingjoe Chen <yingjoe.chen@mediatek.com> - 2016-02-04 15:00 +0100

#1326809 — Re: [PATCH v3 4/5] pinctrl: mediatek: Add Pinctrl/GPIO/EINT driver for mt2701

FromMatthias Brugger <matthias.bgg@gmail.com>
Date2016-02-04 14:50 +0100
SubjectRe: [PATCH v3 4/5] pinctrl: mediatek: Add Pinctrl/GPIO/EINT driver for mt2701
Message-ID<qYssi-RV-13@gated-at.bofh.it>

On 28/12/15 09:07, Yingjoe Chen wrote:
> On Mon, 2015-12-28 at 15:09 +0800, Biao Huang wrote:
>> Add mt2701 support using mediatek common pinctrl driver.
>> MT2701 have some special pins need an extra setting register
>> than other ICs, so adding this support to common code.
>>
>> Signed-off-by: Biao Huang <biao.huang@mediatek.com>
>> Acked-by: Yingjoe Chen <yingjoe.chen@mediatek.com>
> <...>
>> +
>> +static struct platform_driver mtk_pinctrl_driver = {
>> +	.probe = mt2701_pinctrl_probe,
>> +	.driver = {
>> +		.name = "mediatek-mt2701-pinctrl",
>> +		.owner = THIS_MODULE,
>> +		.of_match_table = mt2701_pctrl_match,
>> +	},
>> +};
>> +
>> +static int __init mtk_pinctrl_init(void)
>> +{
>> +	return platform_driver_register(&mtk_pinctrl_driver);
>> +}
>> +
>> +arch_initcall(mtk_pinctrl_init);
>
>
> As discussed in
> http://lists.infradead.org/pipermail/linux-mediatek/2015-December/003350.html
> we should use subsys_initcall() instead.
>
>
>> diff --git a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
>> index f307f1d..76279f0 100644
>> --- a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
>> +++ b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
> <...>
>> @@ -347,6 +352,7 @@ static int mtk_pconf_parse_conf(struct pinctrl_dev *pctldev,
>>   		ret = mtk_pconf_set_pull_select(pctl, pin, true, false, arg);
>>   		break;
>>   	case PIN_CONFIG_INPUT_ENABLE:
>> +		mtk_pmx_gpio_set_direction(pctldev, NULL, pin, true);
>>   		ret = mtk_pconf_set_ies_smt(pctl, pin, arg, param);
>>   		break;
>>   	case PIN_CONFIG_OUTPUT:
>> @@ -354,6 +360,7 @@ static int mtk_pconf_parse_conf(struct pinctrl_dev *pctldev,
>>   		ret = mtk_pmx_gpio_set_direction(pctldev, NULL, pin, false);
>>   		break;
>>   	case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
>> +		mtk_pmx_gpio_set_direction(pctldev, NULL, pin, true);
>>   		ret = mtk_pconf_set_ies_smt(pctl, pin, arg, param);
>>   		break;
>>   	case PIN_CONFIG_DRIVE_STRENGTH:
>
> This change is not directly related to adding mt2710 support and change
> behavior for all MTK pinctrl drivers, please create a separate patch for
> this.
>

Hi Biao,

This patch didn't make it into v4.5-rc1. Are you thinking of sending a 
new version addressing the comments from Yingjoe?

Regards,
Matthias

[toc] | [next] | [standalone]


#1326835

FromYingjoe Chen <yingjoe.chen@mediatek.com>
Date2016-02-04 15:00 +0100
Message-ID<qYsBZ-W2-27@gated-at.bofh.it>
In reply to#1326809
On Thu, 2016-02-04 at 14:48 +0100, Matthias Brugger wrote:
> 
> On 28/12/15 09:07, Yingjoe Chen wrote:
> > On Mon, 2015-12-28 at 15:09 +0800, Biao Huang wrote:
> >> Add mt2701 support using mediatek common pinctrl driver.
> >> MT2701 have some special pins need an extra setting register
> >> than other ICs, so adding this support to common code.
> >>
> >> Signed-off-by: Biao Huang <biao.huang@mediatek.com>
> >> Acked-by: Yingjoe Chen <yingjoe.chen@mediatek.com>
> > <...>
> >> +
> >> +static struct platform_driver mtk_pinctrl_driver = {
> >> +	.probe = mt2701_pinctrl_probe,
> >> +	.driver = {
> >> +		.name = "mediatek-mt2701-pinctrl",
> >> +		.owner = THIS_MODULE,
> >> +		.of_match_table = mt2701_pctrl_match,
> >> +	},
> >> +};
> >> +
> >> +static int __init mtk_pinctrl_init(void)
> >> +{
> >> +	return platform_driver_register(&mtk_pinctrl_driver);
> >> +}
> >> +
> >> +arch_initcall(mtk_pinctrl_init);
> >
> >
> > As discussed in
> > http://lists.infradead.org/pipermail/linux-mediatek/2015-December/003350.html
> > we should use subsys_initcall() instead.
> >
> >
> >> diff --git a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
> >> index f307f1d..76279f0 100644
> >> --- a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
> >> +++ b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
> > <...>
> >> @@ -347,6 +352,7 @@ static int mtk_pconf_parse_conf(struct pinctrl_dev *pctldev,
> >>   		ret = mtk_pconf_set_pull_select(pctl, pin, true, false, arg);
> >>   		break;
> >>   	case PIN_CONFIG_INPUT_ENABLE:
> >> +		mtk_pmx_gpio_set_direction(pctldev, NULL, pin, true);
> >>   		ret = mtk_pconf_set_ies_smt(pctl, pin, arg, param);
> >>   		break;
> >>   	case PIN_CONFIG_OUTPUT:
> >> @@ -354,6 +360,7 @@ static int mtk_pconf_parse_conf(struct pinctrl_dev *pctldev,
> >>   		ret = mtk_pmx_gpio_set_direction(pctldev, NULL, pin, false);
> >>   		break;
> >>   	case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
> >> +		mtk_pmx_gpio_set_direction(pctldev, NULL, pin, true);
> >>   		ret = mtk_pconf_set_ies_smt(pctl, pin, arg, param);
> >>   		break;
> >>   	case PIN_CONFIG_DRIVE_STRENGTH:
> >
> > This change is not directly related to adding mt2710 support and change
> > behavior for all MTK pinctrl drivers, please create a separate patch for
> > this.
> >
> 
> Hi Biao,
> 
> This patch didn't make it into v4.5-rc1. Are you thinking of sending a 
> new version addressing the comments from Yingjoe?

He already did,
http://lists.infradead.org/pipermail/linux-mediatek/2016-February/003980.html

The issue now is whether this change match the property.

Joe.C

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web