U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Vikas Manocha <vikas.manocha@st.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/4] stm32: add stm32f7 family support
Date: Thu, 11 Feb 2016 15:47:16 -0800	[thread overview]
Message-ID: <1455234440-23403-1-git-send-email-vikas.manocha@st.com> (raw)

This patchset:
	- adds support for stm32f7 family.
	- adds support for stm32f746 disco board.
	- moves base addresses & clock config from stm32 gpio
	  driver to soc area to be usable by stm32f7.

Vikas Manocha (4):
  gpio: stm32_gpio: move clock config from driver to board
  gpio: stm32_gpio: move base addresses to the soc file
  stm32x7: add support for stm32x7 serial driver
  stm32: add support for stm32f7 & stm32f746 discovery board

 arch/arm/include/asm/arch-stm32f1/stm32.h          |   8 ++
 arch/arm/include/asm/arch-stm32f4/stm32.h          |  10 ++
 arch/arm/include/asm/arch-stm32f4/stm32_periph.h   |  11 ++
 arch/arm/include/asm/arch-stm32f7/gpio.h           | 113 +++++++++++++++++++++
 arch/arm/include/asm/arch-stm32f7/gpt.h            |  53 ++++++++++
 arch/arm/include/asm/arch-stm32f7/rcc.h            |  64 ++++++++++++
 arch/arm/include/asm/arch-stm32f7/stm32.h          |  63 ++++++++++++
 arch/arm/include/asm/arch-stm32f7/stm32_defs.h     |  15 +++
 .../{arch-stm32f4 => arch-stm32f7}/stm32_periph.h  |  11 ++
 arch/arm/mach-stm32/Kconfig                        |   4 +
 arch/arm/mach-stm32/Makefile                       |   1 +
 arch/arm/mach-stm32/stm32f4/clock.c                |  48 +++++++++
 arch/arm/mach-stm32/stm32f7/Kconfig                |   8 ++
 arch/arm/mach-stm32/stm32f7/Makefile               |   8 ++
 arch/arm/mach-stm32/stm32f7/clock.c                |  56 ++++++++++
 arch/arm/mach-stm32/stm32f7/timer.c                | 112 ++++++++++++++++++++
 board/st/stm32f429-discovery/stm32f429-discovery.c |   8 ++
 board/st/stm32f746-disco/Kconfig                   |  19 ++++
 board/st/stm32f746-disco/MAINTAINERS               |   6 ++
 board/st/stm32f746-disco/Makefile                  |   8 ++
 board/st/stm32f746-disco/stm32f746-disco.c         |  99 ++++++++++++++++++
 configs/stm32f746-disco_defconfig                  |   9 ++
 drivers/gpio/stm32_gpio.c                          |  29 +-----
 drivers/serial/Makefile                            |   1 +
 drivers/serial/serial_stm32x7.c                    |  83 +++++++++++++++
 drivers/serial/serial_stm32x7.h                    |  37 +++++++
 include/configs/stm32f746-disco.h                  |  89 ++++++++++++++++
 include/dm/platform_data/serial_stm32x7.h          |  17 ++++
 28 files changed, 964 insertions(+), 26 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-stm32f7/gpio.h
 create mode 100644 arch/arm/include/asm/arch-stm32f7/gpt.h
 create mode 100644 arch/arm/include/asm/arch-stm32f7/rcc.h
 create mode 100644 arch/arm/include/asm/arch-stm32f7/stm32.h
 create mode 100644 arch/arm/include/asm/arch-stm32f7/stm32_defs.h
 copy arch/arm/include/asm/{arch-stm32f4 => arch-stm32f7}/stm32_periph.h (71%)
 create mode 100644 arch/arm/mach-stm32/stm32f7/Kconfig
 create mode 100644 arch/arm/mach-stm32/stm32f7/Makefile
 create mode 100644 arch/arm/mach-stm32/stm32f7/clock.c
 create mode 100644 arch/arm/mach-stm32/stm32f7/timer.c
 create mode 100644 board/st/stm32f746-disco/Kconfig
 create mode 100644 board/st/stm32f746-disco/MAINTAINERS
 create mode 100644 board/st/stm32f746-disco/Makefile
 create mode 100644 board/st/stm32f746-disco/stm32f746-disco.c
 create mode 100644 configs/stm32f746-disco_defconfig
 create mode 100644 drivers/serial/serial_stm32x7.c
 create mode 100644 drivers/serial/serial_stm32x7.h
 create mode 100644 include/configs/stm32f746-disco.h
 create mode 100644 include/dm/platform_data/serial_stm32x7.h

-- 
1.9.1

             reply	other threads:[~2016-02-11 23:47 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-11 23:47 Vikas Manocha [this message]
2016-02-11 23:47 ` [U-Boot] [PATCH 1/4] gpio: stm32_gpio: move clock config from driver to board Vikas Manocha
2016-02-25 15:23   ` [U-Boot] [U-Boot, " Tom Rini
2016-02-11 23:47 ` [U-Boot] [PATCH 2/4] gpio: stm32_gpio: move base addresses to the soc file Vikas Manocha
2016-02-25 15:23   ` [U-Boot] [U-Boot, " Tom Rini
2016-02-11 23:47 ` [U-Boot] [PATCH 3/4] stm32x7: add support for stm32x7 serial driver Vikas Manocha
2016-02-16 16:00   ` Simon Glass
2016-02-25 15:23   ` [U-Boot] [U-Boot, " Tom Rini
2016-02-11 23:47 ` [U-Boot] [PATCH 4/4] stm32: add support for stm32f7 & stm32f746 discovery board Vikas Manocha
2016-02-25 15:23   ` [U-Boot] [U-Boot, " Tom Rini

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=1455234440-23403-1-git-send-email-vikas.manocha@st.com \
    --to=vikas.manocha@st.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox