All of lore.kernel.org
 help / color / mirror / Atom feed
From: Philip Oberfichtner <pro@denx.de>
To: u-boot@lists.denx.de, Tom Rini <trini@konsulko.com>,
	Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Cc: Anshul Dalal <anshuld@ti.com>,
	Dario Binacchi <dario.binacchi@amarulasolutions.com>,
	Greg Malysa <malysagreg@gmail.com>,
	GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>,
	Ilias Apalodimas <ilias.apalodimas@linaro.org>,
	Jerome Forissier <jerome.forissier@linaro.org>,
	Jiaxun Yang <jiaxun.yang@flygoat.com>,
	Marek Vasut <marex@denx.de>,
	Nathan Barrett-Morrison <nathan.morrison@timesys.com>,
	Paul Kocialkowski <contact@paulk.fr>, Peng Fan <peng.fan@nxp.com>,
	Peter Robinson <pbrobinson@gmail.com>,
	Simon Glass <sjg@chromium.org>, Stefan Roese <sr@denx.de>,
	Stefan Roese <stefan.roese@mailbox.org>,
	Sumit Garg <sumit.garg@kernel.org>,
	Weijie Gao <weijie.gao@mediatek.com>
Subject: Re: [PATCH v4 0/3] Add Onion Omega2/2+ board support
Date: Thu, 17 Jul 2025 10:04:09 +0200	[thread overview]
Message-ID: <aHiued6ia50bT1-b@antares> (raw)
In-Reply-To: <20250708103959.26129-1-pro@denx.de>

Hi all,

It's been a while since my first submission of this patch set (end of
May).  I'd hope we could still get it in within the current merge
window?

Best regards,
Philip

On Tue, Jul 08, 2025 at 12:39:56PM +0200, Philip Oberfichtner wrote:
> Add support for the MediaTek based boards by Onion. Commit one and two are
> rather generic, whereas the third commit adds the actual board support.
> 
> Changes in v4:
> 	- Rebase board support to v2025.07
> 	- Add new commit to silence warning in arch/mips/
> 
> Changes in v3:
> 	- Simplify image size check
> 
> Changes in v2:
> 	- I forgot to run checkpatch in v1. Fix some style issues in v2.
> 
> Philip Oberfichtner (3):
>   Makefile: Add size check for u-boot-with-spl.bin
>   mips: serial: Silence "unused variable" warning
>   mips: mt7628: Add Onion Omega2/2+ board support
> 
>  Makefile                                  |   1 +
>  arch/mips/dts/Makefile                    |   1 +
>  arch/mips/dts/onion-omega2p.dts           |  58 ++++++++++
>  arch/mips/mach-mtmips/mt7620/serial.c     |   2 +-
>  arch/mips/mach-mtmips/mt7621/spl/serial.c |   2 +-
>  arch/mips/mach-mtmips/mt7628/Kconfig      |   7 ++
>  arch/mips/mach-mtmips/mt7628/serial.c     |   2 +-
>  board/onion/omega2p/Kconfig               |  12 ++
>  board/onion/omega2p/MAINTAINERS           |  10 ++
>  board/onion/omega2p/Makefile              |   3 +
>  board/onion/omega2p/board.c               | 134 ++++++++++++++++++++++
>  board/onion/omega2p/omega2p.env           |  32 ++++++
>  common/spl/Kconfig                        |   2 +-
>  configs/onion-omega2p_defconfig           |  82 +++++++++++++
>  include/configs/onion-omega2p.h           |  15 +++
>  15 files changed, 359 insertions(+), 4 deletions(-)
>  create mode 100644 arch/mips/dts/onion-omega2p.dts
>  create mode 100644 board/onion/omega2p/Kconfig
>  create mode 100644 board/onion/omega2p/MAINTAINERS
>  create mode 100644 board/onion/omega2p/Makefile
>  create mode 100644 board/onion/omega2p/board.c
>  create mode 100644 board/onion/omega2p/omega2p.env
>  create mode 100644 configs/onion-omega2p_defconfig
>  create mode 100644 include/configs/onion-omega2p.h
> 
> -- 
> 2.39.5
> 

-- 
=====================================================================
DENX Software Engineering GmbH,
Managing Director: Johanna Denk, Tabea Lutz
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
=====================================================================

      parent reply	other threads:[~2025-07-17  8:04 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-08 10:39 [PATCH v4 0/3] Add Onion Omega2/2+ board support Philip Oberfichtner
2025-07-08 10:39 ` [PATCH v4 1/3] Makefile: Add size check for u-boot-with-spl.bin Philip Oberfichtner
2025-07-08 11:31   ` Ilias Apalodimas
2025-07-08 14:34     ` Philip Oberfichtner
2025-07-10  8:32       ` Ilias Apalodimas
2025-07-28 22:25   ` Tom Rini
2025-07-29 12:27     ` Philip Oberfichtner
2025-07-29 14:22       ` Tom Rini
2025-07-30 12:41         ` Philip Oberfichtner
2025-07-08 10:39 ` [PATCH v4 2/3] mips: serial: Silence "unused variable" warning Philip Oberfichtner
2025-07-08 10:39 ` [PATCH v4 3/3] mips: mt7628: Add Onion Omega2/2+ board support Philip Oberfichtner
2025-07-17  8:04 ` Philip Oberfichtner [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=aHiued6ia50bT1-b@antares \
    --to=pro@denx.de \
    --cc=GSS_MTK_Uboot_upstream@mediatek.com \
    --cc=anshuld@ti.com \
    --cc=contact@paulk.fr \
    --cc=daniel.schwierzeck@gmail.com \
    --cc=dario.binacchi@amarulasolutions.com \
    --cc=ilias.apalodimas@linaro.org \
    --cc=jerome.forissier@linaro.org \
    --cc=jiaxun.yang@flygoat.com \
    --cc=malysagreg@gmail.com \
    --cc=marex@denx.de \
    --cc=nathan.morrison@timesys.com \
    --cc=pbrobinson@gmail.com \
    --cc=peng.fan@nxp.com \
    --cc=sjg@chromium.org \
    --cc=sr@denx.de \
    --cc=stefan.roese@mailbox.org \
    --cc=sumit.garg@kernel.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=weijie.gao@mediatek.com \
    /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.