From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikram Narayanan Date: Sun, 24 Jun 2012 22:49:24 +0530 Subject: [U-Boot] [PATCH 0/2] Add GPIO driver for BCM2835 SoC Message-ID: <4FE74C1C.7080409@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Add a GPIO driver for the BCM2835 Soc. Refer Datasheet http://www.raspberrypi.org/wp-content/uploads/2012/02/BCM2835-ARM-Peripherals.pdf Also, add the driver to the raspberrypi's default config Vikram Narayanan (2): bcm: Add GPIO driver for BCM2835 SoC rbpi: Add BCM2835 GPIO driver for raspberry pi arch/arm/include/asm/arch-bcm2835/gpio.h | 49 +++++++++++ drivers/gpio/Makefile | 1 + drivers/gpio/rpi_gpio.c | 128 ++++++++++++++++++++++++++++++ include/configs/rpi_b.h | 4 +- 4 files changed, 181 insertions(+), 1 deletions(-) create mode 100644 arch/arm/include/asm/arch-bcm2835/gpio.h create mode 100644 drivers/gpio/rpi_gpio.c -- 1.7.4.1