From: Gregory CLEMENT <gregory.clement@free-electrons.com>
To: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Linus Walleij <linus.walleij@linaro.org>,
linux-gpio@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>,
Jason Cooper <jason@lakedaemon.net>, Andrew Lunn <andrew@lunn.ch>,
Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
"linux-arm-kernel\@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
Rob Herring <robh+dt@kernel.org>,
devicetree@vger.kernel.org,
Russell King <rmk+kernel@armlinux.org.uk>,
Nadav Haklai <nadavh@marvell.com>,
Kostya Porotchkin <kostap@marvell.com>,
Neta Zur Hershkovits <neta@marvell.com>,
Marcin Wojtas <mw@semihalf.com>, Omri Itach <omrii@marvell.com>,
Shadi Ammouri <shadi@marvell.com>,
Hanna Hawa <hannah@marvell.com>
Subject: Re: [PATCH 7/9] pinctrl: mvebu: add driver for Armada AP806 pinctrl
Date: Mon, 22 May 2017 16:37:12 +0200 [thread overview]
Message-ID: <87k2590xgn.fsf@free-electrons.com> (raw)
In-Reply-To: <CAP=VYLrpQJ+C+KaEVcv8Rjmp470UH9-+MKAsjErXYoh=AME-Qw@mail.gmail.com> (Paul Gortmaker's message of "Sat, 20 May 2017 15:04:22 -0400")
Hi Paul,
On sam., mai 20 2017, Paul Gortmaker <paul.gortmaker@windriver.com> wrote:
> On Fri, May 19, 2017 at 12:04 PM, Gregory CLEMENT
> <gregory.clement@free-electrons.com> wrote:
>> From: Hanna Hawa <hannah@marvell.com>
>>
>> This commit adds a pinctrl driver for the pin-muxing controller found in
>> the AP806 part of the Marvell Armada 7K and 8K SoCs. Its register
>> interface is compatible with the one used by previous mvebu pin
>> controllers, so the common logic in drivers/pinctrl/mvebu/pinctrl-mvebu.c
>> is used.
>>
>> Signed-off-by: Hanna Hawa <hannah@marvell.com>
>> Reviewed-by: Shadi Ammouri <shadi@marvell.com>
>> [updated for mvebu pinctrl changes
>> - converted to simple_mmio
>> - removed unimplemented .remove function
>> - removed DTS description
>> - converted to use syscon/regmap
>> --rmk]
>> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
>> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
>> Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
>> ---
>> drivers/pinctrl/mvebu/Kconfig | 4 +-
>> drivers/pinctrl/mvebu/Makefile | 1 +-
>> drivers/pinctrl/mvebu/pinctrl-armada-ap806.c | 145 ++++++++++++++++++++-
>> 3 files changed, 150 insertions(+)
>> create mode 100644 drivers/pinctrl/mvebu/pinctrl-armada-ap806.c
>>
>> diff --git a/drivers/pinctrl/mvebu/Kconfig b/drivers/pinctrl/mvebu/Kconfig
>> index 8cb444b60ae9..0e0b009f2b71 100644
>> --- a/drivers/pinctrl/mvebu/Kconfig
>> +++ b/drivers/pinctrl/mvebu/Kconfig
>> @@ -28,6 +28,10 @@ config PINCTRL_ARMADA_39X
>> bool
>> select PINCTRL_MVEBU
>>
>> +config PINCTRL_ARMADA_AP806
>> + bool
>> + select PINCTRL_MVEBU
>
> If this isn't going to be modular, can we remove all the uses
> of module.h and MODULE_ etc. I've nearly got all of these
> cleaned up in pinctrl and it would be nice to not have new
> ones creep back in.
Indeed it won't be modular, so I will remove it in this driver and the
next one.
Thanks,
Gregory
>
> Thanks,
> Paul.
> --
>
>> +
>> config PINCTRL_ARMADA_XP
>> bool
>> select PINCTRL_MVEBU
>> diff --git a/drivers/pinctrl/mvebu/Makefile b/drivers/pinctrl/mvebu/Makefile
>> index 60c245a60f39..455db274b53d 100644
>> --- a/drivers/pinctrl/mvebu/Makefile
>> +++ b/drivers/pinctrl/mvebu/Makefile
>> @@ -5,6 +5,7 @@ obj-$(CONFIG_PINCTRL_ARMADA_370) += pinctrl-armada-370.o
>> obj-$(CONFIG_PINCTRL_ARMADA_375) += pinctrl-armada-375.o
>> obj-$(CONFIG_PINCTRL_ARMADA_38X) += pinctrl-armada-38x.o
>> obj-$(CONFIG_PINCTRL_ARMADA_39X) += pinctrl-armada-39x.o
>> +obj-$(CONFIG_PINCTRL_ARMADA_AP806) += pinctrl-armada-ap806.o
>> obj-$(CONFIG_PINCTRL_ARMADA_XP) += pinctrl-armada-xp.o
>> obj-$(CONFIG_PINCTRL_ARMADA_37XX) += pinctrl-armada-37xx.o
>> obj-$(CONFIG_PINCTRL_ORION) += pinctrl-orion.o
>> diff --git a/drivers/pinctrl/mvebu/pinctrl-armada-ap806.c b/drivers/pinctrl/mvebu/pinctrl-armada-ap806.c
>> new file mode 100644
>> index 000000000000..269b1c1f53b1
>> --- /dev/null
>> +++ b/drivers/pinctrl/mvebu/pinctrl-armada-ap806.c
>> @@ -0,0 +1,145 @@
>> +/*
>> + * Marvell Armada ap806 pinctrl driver based on mvebu pinctrl core
>> + *
>> + * Copyright (C) 2017 Marvell
>> + *
>> + * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
>> + * Hanna Hawa <hannah@marvell.com>
>> + *
>> + * This program is free software; you can redistribute it and/or modify
>> + * it under the terms of the GNU General Public License as published by
>> + * the Free Software Foundation; either version 2 of the License, or
>> + * (at your option) any later version.
>> + */
>> +
>> +#include <linux/err.h>
>> +#include <linux/init.h>
>> +#include <linux/io.h>
>> +#include <linux/module.h>
>
> [...]
>
>> +module_platform_driver(armada_ap806_pinctrl_driver);
>> +
>> +MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
>> +MODULE_DESCRIPTION("Marvell Armada ap806 pinctrl driver");
>> +MODULE_LICENSE("GPL v2");
>> --
>> git-series 0.9.1
--
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
next prev parent reply other threads:[~2017-05-22 14:37 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-19 16:04 [PATCH 0/9] Add support for the pin controllers on the Marvell Armada 7K/8K Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 1/9] MAINTAINERS: extend mvebu SoC entry with pinctrl drivers Gregory CLEMENT
2017-05-23 9:23 ` Linus Walleij
2017-05-19 16:04 ` [PATCH 2/9] pinctrl: dt-bindings: add documentation for AP806 pin controllers Gregory CLEMENT
2017-05-29 8:02 ` Linus Walleij
2017-05-30 21:46 ` Rob Herring
2017-05-19 16:04 ` [PATCH 3/9] pinctrl: dt-bindings: add documentation for CP110 " Gregory CLEMENT
2017-05-30 21:48 ` Rob Herring
2017-05-19 16:04 ` [PATCH 4/9] pinctrl: mvebu: remove the offset property for regmap Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 5/9] pinctrl: avoid PLAT_ORION dependency Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 6/9] arm64: marvell: enable the Armada 7K/8K pinctrl driver Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 7/9] pinctrl: mvebu: add driver for Armada AP806 pinctrl Gregory CLEMENT
2017-05-20 19:04 ` Paul Gortmaker
2017-05-22 14:37 ` Gregory CLEMENT [this message]
2017-05-19 16:04 ` [PATCH 8/9] pinctrl: mvebu: add driver for Armada CP110 pinctrl Gregory CLEMENT
2017-05-20 19:09 ` Paul Gortmaker
2017-05-19 16:04 ` [PATCH 9/9] arm64: dts: marvell: add pinctrl support for Armada 7K/8K Gregory CLEMENT
2017-05-31 9:15 ` [PATCH 0/9] Add support for the pin controllers on the Marvell " Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87k2590xgn.fsf@free-electrons.com \
--to=gregory.clement@free-electrons.com \
--cc=andrew@lunn.ch \
--cc=devicetree@vger.kernel.org \
--cc=hannah@marvell.com \
--cc=jason@lakedaemon.net \
--cc=kostap@marvell.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mw@semihalf.com \
--cc=nadavh@marvell.com \
--cc=neta@marvell.com \
--cc=omrii@marvell.com \
--cc=paul.gortmaker@windriver.com \
--cc=rmk+kernel@armlinux.org.uk \
--cc=robh+dt@kernel.org \
--cc=sebastian.hesselbarth@gmail.com \
--cc=shadi@marvell.com \
--cc=thomas.petazzoni@free-electrons.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox