mbox series

[v2,0/3] pinctrl: uniphier: Introduce some features and NX1 support

Message ID 1633518606-8298-1-git-send-email-hayashi.kunihiko@socionext.com
Headers show
Series pinctrl: uniphier: Introduce some features and NX1 support | expand

Message

Kunihiko Hayashi Oct. 6, 2021, 11:10 a.m. UTC
This series includes the patches to add audio pinmux settings for LD11/LD20/PXs3
SoCs and basic pinmux settings for new UniPhier NX1 SoC. NX1 SoC also has
the same kinds of pinmux settings as the other UniPhier SoCs.

---
Change since v1:
- Remove non-existent groups "usb2" and "usb3" in NX1 patch

Kunihiko Hayashi (3):
  pinctrl: uniphier: Add extra audio pinmux settings for LD11, LD20 and
    PXs3 SoCs
  dt-bindings: pinctrl: uniphier: Add NX1 pinctrl binding
  pinctrl: uniphier: Add UniPhier NX1 pinctrl driver

 .../pinctrl/socionext,uniphier-pinctrl.yaml        |   1 +
 drivers/pinctrl/uniphier/Kconfig                   |   4 +
 drivers/pinctrl/uniphier/Makefile                  |   1 +
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld11.c   |  18 +
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld20.c   |  35 ++
 drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c    | 489 +++++++++++++++++++++
 drivers/pinctrl/uniphier/pinctrl-uniphier-pxs3.c   |  40 ++
 7 files changed, 588 insertions(+)
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c

Comments

Linus Walleij Oct. 13, 2021, 12:14 a.m. UTC | #1
On Wed, Oct 6, 2021 at 1:10 PM Kunihiko Hayashi
<hayashi.kunihiko@socionext.com> wrote:

> This series includes the patches to add audio pinmux settings for LD11/LD20/PXs3
> SoCs and basic pinmux settings for new UniPhier NX1 SoC. NX1 SoC also has
> the same kinds of pinmux settings as the other UniPhier SoCs.
>
> ---
> Change since v1:
> - Remove non-existent groups "usb2" and "usb3" in NX1 patch

This v2 patch set applied.

Rob's checker is complaining on patch 2 but that patch just adds
a compatible so the warnings must be old? Please look into them
anyways.

Yours,
Linus Walleij
Kunihiko Hayashi Oct. 13, 2021, 1:09 a.m. UTC | #2
Hi Linus,

On 2021/10/13 9:14, Linus Walleij wrote:
> On Wed, Oct 6, 2021 at 1:10 PM Kunihiko Hayashi
> <hayashi.kunihiko@socionext.com> wrote:
> 
>> This series includes the patches to add audio pinmux settings for
>> LD11/LD20/PXs3
>> SoCs and basic pinmux settings for new UniPhier NX1 SoC. NX1 SoC also has
>> the same kinds of pinmux settings as the other UniPhier SoCs.
>>
>> ---
>> Change since v1:
>> - Remove non-existent groups "usb2" and "usb3" in NX1 patch
> 
> This v2 patch set applied.

Thank you.

> Rob's checker is complaining on patch 2 but that patch just adds
> a compatible so the warnings must be old? Please look into them
> anyways.

Yes, the warnings are old. I think that there are some descriptions
in devicetree that do not fit the dt-bindings pattern.
I'll investigate and fix them.

Thank you,

---
Best Regards
Kunihiko Hayashi