All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/4] Add support for stm32f429-discovery board
Date: Wed, 25 Mar 2015 12:58:30 -0400	[thread overview]
Message-ID: <20150325165830.GU32541@bill-the-cat> (raw)
In-Reply-To: <CAGTfZH323xjhJ83aRx3++2P5wjE=PJphwKeNc_wVpqNSncJ3ww@mail.gmail.com>

On Wed, Mar 25, 2015 at 01:07:47PM +0900, Chanwoo Choi wrote:
> Hi Kamil,
> 
> I tested this patch-set in STM32 Discovery board. After applied this
> patch-set on latest u-boot, I could not see the normal u-boot log. I
> saw broken console log. I used the USART1 port (pa9, pa10 gpio pin).
> 
> Could you give me a tip to resolve this issue?

I bet this needs changes similar to b81bdf6 as that was a similar
problem I believe.  In short, DM needs to be enabled now.

> 
> Best Regards,
> Chanwoo Choi
> 
> 2015? 3? 1? ???, Kamil Lulko<rev13@wp.pl>?? ??? ???:
> 
> > 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
> >
> > _______________________________________________
> > U-Boot mailing list
> > U-Boot at lists.denx.de <javascript:;>
> > http://lists.denx.de/mailman/listinfo/u-boot
> >
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150325/4ad0d26c/attachment.sig>

  reply	other threads:[~2015-03-25 16:58 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-01 11:44 [U-Boot] [PATCH 0/4] Add support for stm32f429-discovery board Kamil Lulko
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 [this message]
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=20150325165830.GU32541@bill-the-cat \
    --to=trini@konsulko.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 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.