All of lore.kernel.org
 help / color / mirror / Atom feed
From: dillon min <dillon.minfei@gmail.com>
To: u-boot@lists.denx.de
Subject: [PATCH v4 0/7] Add rt-thread art-pi board support
Date: Wed, 7 Apr 2021 10:00:33 +0800	[thread overview]
Message-ID: <CAL9mu0J04K3rhYq3HuKxAnGTOg-sfA+DKETtztP2i+KfKHiH-g@mail.gmail.com> (raw)
In-Reply-To: <1617352961-20550-1-git-send-email-dillon.minfei@gmail.com>

Hi All,

Just a gentle ping, thanks.

Regards

On Fri, Apr 2, 2021 at 4:42 PM <dillon.minfei@gmail.com> wrote:
>
> From: dillon min <dillon.minfei@gmail.com>
>
> These patches aim to adds u-boot support on art-pi board.
>
> the board resources:
> - stm32h750xbh6 128k flash, 1024k sram
> - 32MiB sdram
> - 16MiB spi flash
> - 8MiB qspi flash
> - onboard wifi, bt, fm
>
> the detail board information can be found at:
> https://art-pi.gitee.io/website/
>
> ---
> changes in v4:
> - sync with kernel side device tree submit
> - use strlcpy in stm32_sdram.c
> - update CONFIG_BOOTARGS, remove rdinit=/linuxrc, to use kernel's devtmpfs
> - remove unused st,stm32h750-pinctrl from patch v3
>
> changes in v3:
> two mirror changes in [PATCH v3 2/6], others same to version 2
> - remove "for STMicroelectronics." from arch/arm/dts/stm32h750-pinctrl.dtsi
> - correct misspelling parameters
> you can found detail patch v2 information at link:
> https://patchwork.ozlabs.org/project/uboot/list/?series=236009
>
> changes in v2:
> - fix wrong author/date in previous submit
> - sync with kernel device tree files
> - add st,stm32h750-pinctrl in doc and pinctrl driver
>
> *** BLURB HERE ***
>
> dillon min (7):
>   ARM: dts: stm32: split sdram pin & timing parameter into specific
>     board dts
>   ARM: dts: stm32: introduce stm32h7-pinctrl.dtsi to support stm32h750
>   ARM: dts: stm32: add new instances for stm32h743 MCU
>   ARM: dts: stm32: fix i2c node typo in stm32h743, update dmamux1
>     register
>   ARM: dts: stm32: add support for art-pi board based on stm32h750xbh6
>   ram: stm32: fix strsep failed on read only memory
>   board: Add rt-thread art-pi board support
>
>  arch/arm/dts/Makefile                        |   3 +-
>  arch/arm/dts/stm32h7-pinctrl.dtsi            | 274 ++++++++++++++++++++++++
>  arch/arm/dts/stm32h7-u-boot.dtsi             | 100 +--------
>  arch/arm/dts/stm32h743-pinctrl.dtsi          | 306 ---------------------------
>  arch/arm/dts/stm32h743.dtsi                  | 178 +++++++++++++++-
>  arch/arm/dts/stm32h743i-disco-u-boot.dtsi    |  98 +++++++++
>  arch/arm/dts/stm32h743i-disco.dts            |   2 +-
>  arch/arm/dts/stm32h743i-eval-u-boot.dtsi     |  98 +++++++++
>  arch/arm/dts/stm32h743i-eval.dts             |   2 +-
>  arch/arm/dts/stm32h750.dtsi                  |   5 +
>  arch/arm/dts/stm32h750i-art-pi-u-boot.dtsi   |  81 +++++++
>  arch/arm/dts/stm32h750i-art-pi.dts           | 188 ++++++++++++++++
>  arch/arm/mach-stm32/stm32h7/Kconfig          |   4 +
>  board/st/stm32h750-art-pi/Kconfig            |  19 ++
>  board/st/stm32h750-art-pi/MAINTAINERS        |   7 +
>  board/st/stm32h750-art-pi/Makefile           |   6 +
>  board/st/stm32h750-art-pi/stm32h750-art-pi.c |  58 +++++
>  configs/stm32h750-art-pi_defconfig           |  51 +++++
>  drivers/ram/stm32_sdram.c                    |   3 +
>  include/configs/stm32h750-art-pi.h           |  48 +++++
>  include/dt-bindings/memory/stm32-sdram.h     |   2 +
>  21 files changed, 1126 insertions(+), 407 deletions(-)
>  create mode 100644 arch/arm/dts/stm32h7-pinctrl.dtsi
>  delete mode 100644 arch/arm/dts/stm32h743-pinctrl.dtsi
>  create mode 100644 arch/arm/dts/stm32h750.dtsi
>  create mode 100644 arch/arm/dts/stm32h750i-art-pi-u-boot.dtsi
>  create mode 100644 arch/arm/dts/stm32h750i-art-pi.dts
>  create mode 100644 board/st/stm32h750-art-pi/Kconfig
>  create mode 100644 board/st/stm32h750-art-pi/MAINTAINERS
>  create mode 100644 board/st/stm32h750-art-pi/Makefile
>  create mode 100644 board/st/stm32h750-art-pi/stm32h750-art-pi.c
>  create mode 100644 configs/stm32h750-art-pi_defconfig
>  create mode 100644 include/configs/stm32h750-art-pi.h
>
> --
> 2.7.4
>

      parent reply	other threads:[~2021-04-07  2:00 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-02  8:42 [PATCH v4 0/7] Add rt-thread art-pi board support dillon.minfei at gmail.com
2021-04-02  8:42 ` [PATCH v4 1/7] ARM: dts: stm32: split sdram pin & timing parameter into specific board dts dillon.minfei at gmail.com
2021-04-02  8:42 ` [PATCH v4 2/7] ARM: dts: stm32: introduce stm32h7-pinctrl.dtsi to support stm32h750 dillon.minfei at gmail.com
2021-04-08 13:41   ` Patrice CHOTARD
2021-04-02  8:42 ` [PATCH v4 3/7] ARM: dts: stm32: add new instances for stm32h743 MCU dillon.minfei at gmail.com
2021-04-08 13:41   ` Patrice CHOTARD
2021-04-02  8:42 ` [PATCH v4 4/7] ARM: dts: stm32: fix i2c node typo in stm32h743, update dmamux1 register dillon.minfei at gmail.com
2021-04-08 13:42   ` Patrice CHOTARD
2021-04-02  8:42 ` [PATCH v4 5/7] ARM: dts: stm32: add support for art-pi board based on stm32h750xbh6 dillon.minfei at gmail.com
2021-04-08 13:46   ` Patrice CHOTARD
2021-04-02  8:42 ` [PATCH v4 6/7] ram: stm32: fix strsep failed on read only memory dillon.minfei at gmail.com
2021-04-08 13:48   ` Patrice CHOTARD
2021-04-02  8:42 ` [PATCH v4 7/7] board: Add rt-thread art-pi board support dillon.minfei at gmail.com
2021-04-08 13:53   ` Patrice CHOTARD
2021-04-08 23:16     ` dillon min
2021-04-07  2:00 ` dillon min [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=CAL9mu0J04K3rhYq3HuKxAnGTOg-sfA+DKETtztP2i+KfKHiH-g@mail.gmail.com \
    --to=dillon.minfei@gmail.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.