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


Groups > linux.kernel > #1556207 > unrolled thread

[PATCH 0/3] gpio: davinci: Redesign driver to accommodate ngpios in one gpio chip

Started byKeerthy <j-keerthy@ti.com>
First post2017-01-11 06:10 +0100
Last post2017-01-11 06:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/3] gpio: davinci: Redesign driver to accommodate ngpios in one gpio chip Keerthy <j-keerthy@ti.com> - 2017-01-11 06:10 +0100

#1556207 — [PATCH 0/3] gpio: davinci: Redesign driver to accommodate ngpios in one gpio chip

FromKeerthy <j-keerthy@ti.com>
Date2017-01-11 06:10 +0100
Subject[PATCH 0/3] gpio: davinci: Redesign driver to accommodate ngpios in one gpio chip
Message-ID<sYjkB-2yK-3@gated-at.bofh.it>
The Davinci GPIO driver is implemented to work with one monolithic
Davinci GPIO platform device which may have up to Y(144) gpios.
The Davinci GPIO driver instantiates number of GPIO chips with
max 32 gpio pins per each during initialization and one IRQ domain.
So, the current GPIO's  opjects structure is:

<platform device> Davinci GPIO controller
 |- <gpio0_chip0> ------|
 ...                    |--- irq_domain (hwirq [0..143])
 |- <gpio0_chipN> ------|

Current driver creates one chip for every 32 GPIOs in a controller.
This was a limitation earlier now there is no need for that. Hence
redesigning the driver to create one gpio chip for all the ngpio
in the controller.

|- <gpio0_chip0> ------|--- irq_domain (hwirq [0..143]).

The previous discussion on this can be found here:
https://www.spinics.net/lists/linux-omap/msg132869.html

The series is posted on top of coouple of clean up patches:

https://lkml.org/lkml/2017/1/4/94
https://patchwork.ozlabs.org/patch/710855/

Keerthy (3):
  gpio: davinci: Remove unwanted blank line
  gpio: davinci: Redesign driver to accomodate ngpio in one gpio chip
  gpio: davinci: Add support for multiple GPIO controllers

 drivers/gpio/gpio-davinci.c                | 129 +++++++++++++++++------------
 include/linux/platform_data/gpio-davinci.h |  13 ++-
 2 files changed, 86 insertions(+), 56 deletions(-)

-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web