From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 97A3FC5CFE7 for ; Wed, 11 Jul 2018 10:12:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 367A920C0A for ; Wed, 11 Jul 2018 10:12:19 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 367A920C0A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=nvidia.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732415AbeGKKPv (ORCPT ); Wed, 11 Jul 2018 06:15:51 -0400 Received: from hqemgate16.nvidia.com ([216.228.121.65]:3457 "EHLO hqemgate16.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726787AbeGKKPv (ORCPT ); Wed, 11 Jul 2018 06:15:51 -0400 Received: from hqpgpgate101.nvidia.com (Not Verified[216.228.121.13]) by hqemgate16.nvidia.com (using TLS: TLSv1, AES128-SHA) id ; Wed, 11 Jul 2018 03:12:10 -0700 Received: from HQMAIL101.nvidia.com ([172.20.161.6]) by hqpgpgate101.nvidia.com (PGP Universal service); Wed, 11 Jul 2018 03:12:15 -0700 X-PGP-Universal: processed; by hqpgpgate101.nvidia.com on Wed, 11 Jul 2018 03:12:15 -0700 Received: from dhcp-10-21-25-168 (10.21.25.201) by HQMAIL101.nvidia.com (172.20.187.10) with Microsoft SMTP Server (TLS) id 15.0.1347.2; Wed, 11 Jul 2018 10:12:12 +0000 Date: Wed, 11 Jul 2018 13:12:06 +0300 From: Aapo Vienamo To: Jon Hunter CC: Rob Herring , Mark Rutland , Thierry Reding , Mikko Perttunen , , , Subject: Re: [PATCH 6/6] soc/tegra: pmc: Implement pad configuration via pinctrl Message-ID: <20180711131206.31d83143@dhcp-10-21-25-168> In-Reply-To: <8a666c2b-09d3-9d25-a846-bdaccbfbefa9@nvidia.com> References: <1531226879-11802-1-git-send-email-avienamo@nvidia.com> <1531227295-12752-1-git-send-email-avienamo@nvidia.com> <20180711123818.0a62f93a@dhcp-10-21-25-168> <8a666c2b-09d3-9d25-a846-bdaccbfbefa9@nvidia.com> X-NVConfidentiality: public MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.21.25.201] X-ClientProxiedBy: UKMAIL102.nvidia.com (10.26.138.15) To HQMAIL101.nvidia.com (172.20.187.10) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 11 Jul 2018 10:46:21 +0100 Jon Hunter wrote: > On 11/07/18 10:38, Aapo Vienamo wrote: > > On Wed, 11 Jul 2018 09:40:01 +0100 > > Jon Hunter wrote: > > > >> On 10/07/18 13:54, Aapo Vienamo wrote: > >>> Register a pinctrl device and implement get and set functions for > >>> PIN_CONFIG_LOW_POWER_MODE and PIN_CONFIG_POWER_SOURCE parameters. > >>> > >>> Signed-off-by: Aapo Vienamo > >>> --- > >>> drivers/soc/tegra/pmc.c | 192 +++++++++++++++++++++++++++++++++++++++++++++++- > >>> 1 file changed, 190 insertions(+), 2 deletions(-) > >>> > >>> diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c > >>> index b833334..8677391 100644 > >>> --- a/drivers/soc/tegra/pmc.c > >>> +++ b/drivers/soc/tegra/pmc.c > >>> @@ -33,6 +33,9 @@ > >>> #include > >>> #include > >>> #include > >>> +#include > >>> +#include > >>> +#include > >>> #include > >>> #include > >>> #include > >>> @@ -45,6 +48,8 @@ > >>> #include > >>> #include > >>> > >>> +#include > >>> + > >>> #define PMC_CNTRL 0x0 > >>> #define PMC_CNTRL_INTR_POLARITY BIT(17) /* inverts INTR polarity */ > >>> #define PMC_CNTRL_CPU_PWRREQ_OE BIT(16) /* CPU pwr req enable */ > >>> @@ -162,6 +167,9 @@ struct tegra_pmc_soc { > >>> const struct tegra_io_pad_soc *io_pads; > >>> unsigned int num_io_pads; > >>> > >>> + const struct pinctrl_pin_desc *pin_descs; > >>> + unsigned int num_pin_descs; > >>> + > >>> const struct tegra_pmc_regs *regs; > >>> void (*init)(struct tegra_pmc *pmc); > >>> void (*setup_irq_polarity)(struct tegra_pmc *pmc, > >>> @@ -220,6 +228,8 @@ struct tegra_pmc { > >>> DECLARE_BITMAP(powergates_available, TEGRA_POWERGATE_MAX); > >>> > >>> struct mutex powergates_lock; > >>> + > >>> + struct pinctrl_dev *pctl_dev; > >>> }; > >>> > >>> static struct tegra_pmc *pmc = &(struct tegra_pmc) { > >>> @@ -1400,6 +1410,145 @@ static void tegra_pmc_init_tsense_reset(struct tegra_pmc *pmc) > >>> of_node_put(np); > >>> } > >>> > >>> +static int tegra_io_pad_pinctrl_get_groups_count(struct pinctrl_dev *pctl_dev) > >>> +{ > >>> + return pmc->soc->num_io_pads; > >>> +} > >>> + > >>> +static const char *tegra_io_pad_pinctrl_get_group_name( > >>> + struct pinctrl_dev *pctl, unsigned int group) > >>> +{ > >>> + return pmc->soc->io_pads[group].name; > >>> +} > >>> + > >>> +static int tegra_io_pad_pinctrl_get_group_pins(struct pinctrl_dev *pctl_dev, > >>> + unsigned int group, > >>> + const unsigned int **pins, > >>> + unsigned int *num_pins) > >>> +{ > >>> + *pins = &pmc->soc->io_pads[group].id; > >>> + *num_pins = 1; > >>> + return 0; > >>> +} > >>> + > >>> +static const struct pinctrl_ops tegra_io_pad_pinctrl_ops = { > >>> + .get_groups_count = tegra_io_pad_pinctrl_get_groups_count, > >>> + .get_group_name = tegra_io_pad_pinctrl_get_group_name, > >>> + .get_group_pins = tegra_io_pad_pinctrl_get_group_pins, > >>> + .dt_node_to_map = pinconf_generic_dt_node_to_map_pin, > >>> + .dt_free_map = pinconf_generic_dt_free_map, > >>> +}; > >>> + > >>> +static int tegra_io_pad_pinconf_get(struct pinctrl_dev *pctl_dev, > >>> + unsigned int pin, unsigned long *config) > >>> +{ > >>> + const struct tegra_io_pad_soc *pad = tegra_io_pad_find(pmc, pin); > >>> + enum pin_config_param param = pinconf_to_config_param(*config); > >>> + int ret; > >>> + u32 arg; > >>> + > >>> + switch (param) { > >>> + case PIN_CONFIG_POWER_SOURCE: > >>> + ret = tegra_io_pad_get_voltage(pad->id); > >>> + if (ret == TEGRA_IO_PAD_1800000UV) > >>> + arg = TEGRA_IO_PAD_VOLTAGE_1V8; > >>> + else if (ret == TEGRA_IO_PAD_3300000UV) > >>> + arg = TEGRA_IO_PAD_VOLTAGE_3V3; > >> > >> It looks like we have two definitions for the same thing here. > >> Can we get rid of one of these? > > > > They are indeed pretty much the same thing, however > > TEGRA_IO_PAD_1800000UV is part of the pmc.h api and > > TEGRA_IO_PAD_VOLTAGE_1V8 comes from the device tree binding abi headers. > > The key difference between them is that TEGRA_IO_PAD_VOLTAGE_1V8 is a > > macro and TEGRA_IO_PAD_1800000UV is an enum and it's used like this in > > the pmc api: > > > > int tegra_io_pad_set_voltage(enum tegra_io_pad id, > > enum tegra_io_pad_voltage voltage); > > > > where it's obvious that the function takes this enum as an argument. If > > the enum definitions were replaced with macros usable from the dts > > files, the enum from the function prototype would have to be changed to > > an int. This makes the api more ambiguous because other parts of the > > kernel have the convention where "int voltage" means voltage in > > microvolts. > > Raises the question, do we need these legacy APIs? I don't see them being > used. > True, however other parts of the pmc pad configuration API are used, for example tegra_io_pad_power_enable() and _disable() are used by the sor driver. I see couple of options here: For sake of consistency we could merge this as is and later replace all of the existing usage of the pmc.h pad control API with pinctrl in a separate series and clean that part up. Or I could remove the pad voltage configuration API as part of this series and leave the pmc.h pad power state API the way it is. Or I could transition the existing usage of pmc pad control to use the pinctrl API but I'm not sure if that's within the scope of this series. Any thoughts? -Aapo