mbox series

[0/2] gpio: tegra186: Add support for Tegra241

Message ID 20211216141009.1478562-1-thierry.reding@gmail.com
Headers show
Series gpio: tegra186: Add support for Tegra241 | expand

Message

Thierry Reding Dec. 16, 2021, 2:10 p.m. UTC
From: Thierry Reding <treding@nvidia.com>

Hi,

this is another extension of the Tegra186 GPIO driver, this time for the
upcoming Tegra241 (Grace) chip. Note that while this adds the DT binding
header, it doesn't actually define a new DT compatible string because it
is unlikely that the Tegra241 will ever boot using DT but will use ACPI
instead.

The pin definitions are still in the "DT binding" header for consistency
with previous chips. Just wanted to highlight this to preempt questions
as to why I haven't Cc'ed Rob or the devicetree mailing list.

Thierry

Akhil R (2):
  dt-bindings: gpio: Add Tegra241 support
  gpio: tegra186: Add support for Tegra241

 drivers/gpio/gpio-tegra186.c             | 52 ++++++++++++++++++++++++
 include/dt-bindings/gpio/tegra241-gpio.h | 42 +++++++++++++++++++
 2 files changed, 94 insertions(+)
 create mode 100644 include/dt-bindings/gpio/tegra241-gpio.h

Comments

Bartosz Golaszewski Dec. 23, 2021, 4:13 p.m. UTC | #1
On Thu, Dec 16, 2021 at 3:10 PM Thierry Reding <thierry.reding@gmail.com> wrote:
>
> From: Thierry Reding <treding@nvidia.com>
>
> Hi,
>
> this is another extension of the Tegra186 GPIO driver, this time for the
> upcoming Tegra241 (Grace) chip. Note that while this adds the DT binding
> header, it doesn't actually define a new DT compatible string because it
> is unlikely that the Tegra241 will ever boot using DT but will use ACPI
> instead.
>
> The pin definitions are still in the "DT binding" header for consistency
> with previous chips. Just wanted to highlight this to preempt questions
> as to why I haven't Cc'ed Rob or the devicetree mailing list.
>
> Thierry
>
> Akhil R (2):
>   dt-bindings: gpio: Add Tegra241 support
>   gpio: tegra186: Add support for Tegra241
>
>  drivers/gpio/gpio-tegra186.c             | 52 ++++++++++++++++++++++++
>  include/dt-bindings/gpio/tegra241-gpio.h | 42 +++++++++++++++++++
>  2 files changed, 94 insertions(+)
>  create mode 100644 include/dt-bindings/gpio/tegra241-gpio.h
>
> --
> 2.34.1
>

Sounds good, applied, thanks!

Bart