All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V3 00/11] Add GPIO driver for Freescale Vybrid platform
Date: Mon, 08 Jun 2015 08:47:18 +0200	[thread overview]
Message-ID: <55753A76.3000606@denx.de> (raw)
In-Reply-To: <1433164045-9987-1-git-send-email-bhuvanchandra.dv@toradex.com>

On 01/06/2015 15:07, Bhuvanchandra DV wrote:
> Changes since V2:
> Add defconfig and device tree files list to Toradex boards maintainer file.
> Invert the logic for enabling the DSPI support.
> 
> Bhuvanchandra DV (9):
>   dm: gpio: uclass: Add flag to control sequence numbering
>   dm: gpio: vf610: Add GPIO driver support
>   colibri_vf: Add pinmux entries for GPIOs
>   colibri_vf: Enable GPIO support
>   arm: vf610: Add clock support for DSPI
>   arm: vf610: Add iomux support for DSPI
>   vf610: dts: Add device tree support
>   colibri-vf: Enable SPI support
>   colibri_vf: Add separate defconfig for device tree support
> 
> Sanchayan Maity (2):
>   usb: ehci-vf: Add weak function for board specific initialisation
>   colibri_vf: Enable board specific USB initialisation for USB pen gpio
> 
>  arch/arm/cpu/armv7/vf610/generic.c            |   7 ++
>  arch/arm/dts/Makefile                         |   3 +
>  arch/arm/dts/vf-colibri.dtsi                  |  21 ++++
>  arch/arm/dts/vf.dtsi                          | 100 +++++++++++++++
>  arch/arm/dts/vf500-colibri.dts                |  18 +++
>  arch/arm/dts/vf610-colibri.dts                |  18 +++
>  arch/arm/imx-common/iomux-v3.c                |  26 ++++
>  arch/arm/include/asm/arch-vf610/clock.h       |   1 +
>  arch/arm/include/asm/arch-vf610/crm_regs.h    |   4 +
>  arch/arm/include/asm/arch-vf610/gpio.h        |  29 +++++
>  arch/arm/include/asm/arch-vf610/imx-regs.h    |   5 +
>  arch/arm/include/asm/arch-vf610/iomux-vf610.h |  59 +++++++++
>  arch/arm/include/asm/imx-common/iomux-v3.h    |   6 +
>  board/toradex/colibri_vf/MAINTAINERS          |   4 +
>  board/toradex/colibri_vf/colibri_vf.c         | 106 ++++++++++++++++
>  configs/colibri_vf_defconfig                  |   1 +
>  configs/colibri_vf_dtb_defconfig              |   8 ++
>  drivers/gpio/Kconfig                          |   7 ++
>  drivers/gpio/Makefile                         |   1 +
>  drivers/gpio/gpio-uclass.c                    |   1 +
>  drivers/gpio/vybrid_gpio.c                    | 169 ++++++++++++++++++++++++++
>  drivers/usb/host/ehci-vf.c                    |   8 ++
>  include/configs/colibri_vf.h                  |  12 ++
>  23 files changed, 614 insertions(+)
>  create mode 100644 arch/arm/dts/vf-colibri.dtsi
>  create mode 100644 arch/arm/dts/vf.dtsi
>  create mode 100644 arch/arm/dts/vf500-colibri.dts
>  create mode 100644 arch/arm/dts/vf610-colibri.dts
>  create mode 100644 arch/arm/include/asm/arch-vf610/gpio.h
>  create mode 100644 configs/colibri_vf_dtb_defconfig
>  create mode 100644 drivers/gpio/vybrid_gpio.c
> 

Applied to u-boot-imx, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

      parent reply	other threads:[~2015-06-08  6:47 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-01 13:07 [U-Boot] [PATCH V3 00/11] Add GPIO driver for Freescale Vybrid platform Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 01/11] dm: gpio: uclass: Add flag to control sequence numbering Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 02/11] dm: gpio: vf610: Add GPIO driver support Bhuvanchandra DV
2015-06-08  6:46   ` Stefano Babic
2015-06-01 13:07 ` [U-Boot] [PATCH V3 03/11] colibri_vf: Add pinmux entries for GPIOs Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 04/11] colibri_vf: Enable GPIO support Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 05/11] arm: vf610: Add clock support for DSPI Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 06/11] arm: vf610: Add iomux " Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 07/11] vf610: dts: Add device tree support Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 08/11] colibri-vf: Enable SPI support Bhuvanchandra DV
2015-06-01 17:04   ` Stefan Agner
2015-06-01 13:07 ` [U-Boot] [PATCH V3 09/11] colibri_vf: Add separate defconfig for device tree support Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 10/11] usb: ehci-vf: Add weak function for board specific initialisation Bhuvanchandra DV
2015-06-01 13:07 ` [U-Boot] [PATCH V3 11/11] colibri_vf: Enable board specific USB initialisation for USB pen gpio Bhuvanchandra DV
2015-06-08  6:09 ` [U-Boot] [PATCH V3 00/11] Add GPIO driver for Freescale Vybrid platform Bhuvanchandra DV
2015-06-08  6:47 ` Stefano Babic [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55753A76.3000606@denx.de \
    --to=sbabic@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.