public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Kamil Lulko <rev13@wp.pl>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/4] Add support for stm32f429-discovery board
Date: Sun,  1 Mar 2015 12:44:38 +0100	[thread overview]
Message-ID: <1425210282-7887-1-git-send-email-rev13@wp.pl> (raw)

The following patches implement basic support for the ARMv7-M microcontroller
architecture.
Additionally, stm32f429-discovery board support is added with tested ability
to boot uClinux from the embedded Flash memory.

Kamil Lulko (4):
  ARM: Add ARMv7-M support
  ARMv7M: Add STM32F4 support
  stm32f4: Add serial driver
  stm32f4: Add support for stm32f429-discovery board

 arch/arm/Kconfig                                   |   9 +
 arch/arm/cpu/armv7m/Makefile                       |  11 +
 arch/arm/cpu/armv7m/config.mk                      |   8 +
 arch/arm/cpu/armv7m/cpu.c                          |  35 +++
 arch/arm/cpu/armv7m/start.S                        |  15 ++
 arch/arm/cpu/armv7m/stm32f4/Makefile               |  11 +
 arch/arm/cpu/armv7m/stm32f4/clock.c                | 209 +++++++++++++++
 arch/arm/cpu/armv7m/stm32f4/flash.c                | 143 ++++++++++
 arch/arm/cpu/armv7m/stm32f4/soc.c                  |  37 +++
 arch/arm/cpu/armv7m/stm32f4/timer.c                | 118 +++++++++
 arch/arm/include/asm/arch-stm32f4/fmc.h            |  75 ++++++
 arch/arm/include/asm/arch-stm32f4/gpio.h           | 116 +++++++++
 arch/arm/include/asm/arch-stm32f4/stm32.h          | 108 ++++++++
 arch/arm/include/asm/armv7m.h                      |  60 +++++
 arch/arm/lib/Makefile                              |   8 +-
 arch/arm/lib/crt0.S                                |  30 +++
 arch/arm/lib/interrupts_m.c                        |  95 +++++++
 arch/arm/lib/relocate.S                            |  13 +
 arch/arm/lib/vectors_m.S                           |  57 ++++
 board/st/stm32f429-discovery/Kconfig               |  19 ++
 board/st/stm32f429-discovery/MAINTAINERS           |   6 +
 board/st/stm32f429-discovery/Makefile              |  12 +
 board/st/stm32f429-discovery/led.c                 |  35 +++
 board/st/stm32f429-discovery/stm32f429-discovery.c | 288 +++++++++++++++++++++
 configs/stm32f429-discovery_defconfig              |   2 +
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/stm32_gpio.c                          | 199 ++++++++++++++
 drivers/serial/Makefile                            |   1 +
 drivers/serial/serial.c                            |   2 +
 drivers/serial/serial_stm32.c                      | 117 +++++++++
 include/configs/stm32f429-discovery.h              | 106 ++++++++
 include/flash.h                                    |   2 +
 32 files changed, 1946 insertions(+), 2 deletions(-)
 create mode 100644 arch/arm/cpu/armv7m/Makefile
 create mode 100644 arch/arm/cpu/armv7m/config.mk
 create mode 100644 arch/arm/cpu/armv7m/cpu.c
 create mode 100644 arch/arm/cpu/armv7m/start.S
 create mode 100644 arch/arm/cpu/armv7m/stm32f4/Makefile
 create mode 100644 arch/arm/cpu/armv7m/stm32f4/clock.c
 create mode 100644 arch/arm/cpu/armv7m/stm32f4/flash.c
 create mode 100644 arch/arm/cpu/armv7m/stm32f4/soc.c
 create mode 100644 arch/arm/cpu/armv7m/stm32f4/timer.c
 create mode 100644 arch/arm/include/asm/arch-stm32f4/fmc.h
 create mode 100644 arch/arm/include/asm/arch-stm32f4/gpio.h
 create mode 100644 arch/arm/include/asm/arch-stm32f4/stm32.h
 create mode 100644 arch/arm/include/asm/armv7m.h
 create mode 100644 arch/arm/lib/interrupts_m.c
 create mode 100644 arch/arm/lib/vectors_m.S
 create mode 100644 board/st/stm32f429-discovery/Kconfig
 create mode 100644 board/st/stm32f429-discovery/MAINTAINERS
 create mode 100644 board/st/stm32f429-discovery/Makefile
 create mode 100644 board/st/stm32f429-discovery/led.c
 create mode 100644 board/st/stm32f429-discovery/stm32f429-discovery.c
 create mode 100644 configs/stm32f429-discovery_defconfig
 create mode 100644 drivers/gpio/stm32_gpio.c
 create mode 100644 drivers/serial/serial_stm32.c
 create mode 100644 include/configs/stm32f429-discovery.h

-- 
1.9.1

             reply	other threads:[~2015-03-01 11:44 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-01 11:44 Kamil Lulko [this message]
2015-03-01 11:44 ` [U-Boot] [PATCH 1/4] ARM: Add ARMv7-M support Kamil Lulko
2015-03-05 15:32   ` Tom Rini
2015-03-30 22:06     ` Andreas Färber
2015-04-01  0:55       ` Tom Rini
2015-04-23 13:14   ` [U-Boot] [U-Boot,1/4] " Tom Rini
2015-03-01 11:44 ` [U-Boot] [PATCH 2/4] ARMv7M: Add STM32F4 support Kamil Lulko
2015-03-05 15:34   ` Tom Rini
2015-04-23 13:14   ` [U-Boot] [U-Boot,2/4] " Tom Rini
2015-03-01 11:44 ` [U-Boot] [PATCH 3/4] stm32f4: Add serial driver Kamil Lulko
2015-03-05 15:34   ` Tom Rini
2015-04-23 13:14   ` [U-Boot] [U-Boot,3/4] " Tom Rini
2015-03-01 11:44 ` [U-Boot] [PATCH 4/4] stm32f4: Add support for stm32f429-discovery board Kamil Lulko
2015-03-05 15:35   ` Tom Rini
2015-04-23 13:14   ` [U-Boot] [U-Boot, " Tom Rini
2015-03-25  4:07 ` [U-Boot] [PATCH 0/4] " Chanwoo Choi
2015-03-25 16:58   ` Tom Rini
2015-03-26 13:47     ` Kamil Lulko
2015-03-26 14:07       ` 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=1425210282-7887-1-git-send-email-rev13@wp.pl \
    --to=rev13@wp.pl \
    --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