From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Schwierzeck Date: Mon, 03 Aug 2020 21:10:13 +0200 Subject: [PATCH v2 01/10] gpio: octeon_gpio: Add GPIO controller driver for Octeon In-Reply-To: <20200730115622.2870090-2-sr@denx.de> References: <20200730115622.2870090-1-sr@denx.de> <20200730115622.2870090-2-sr@denx.de> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de > From: Suneel Garapati > > Add support for GPIO controllers found on Octeon II/III and Octeon TX > TX2 SoC platforms. > > Signed-off-by: Aaron Williams > Signed-off-by: Suneel Garapati > Signed-off-by: Stefan Roese > Reviewed-by: Simon Glass > > --- > > (no changes since v2) > > Changes in v2: > - Tested on MIPS Octeon and ARM Octeon TX2 > - Removed "struct pci_device_id" definition and U_BOOT_PCI_DEVICE() > as its not needed for the PCI based probing on Octeon TX2 > - Added "depends on DM_PCI" to Kconfig > > Changes in v1: > - Removed common.h and reduced headers as suggested by Daniel > > drivers/gpio/Kconfig | 10 ++ > drivers/gpio/Makefile | 1 + > drivers/gpio/octeon_gpio.c | 242 +++++++++++++++++++++++++++++++++++++ > 3 files changed, 253 insertions(+) > create mode 100644 drivers/gpio/octeon_gpio.c > > Reviewed-by: Daniel Schwierzeck -- - Daniel