On 8/7/25 09:56, Philip Oberfichtner wrote:
The Omega2 / Omega2+ are based on the MediaTek MT7688 SoC with the
following features:
- 64 / 128MB of DDR2 memory
- 16 / 32MB of SPI NOR flash
- USB, WiFi and many more peripherals
Signed-off-by: Philip Oberfichtner <p...@denx.de>
---
Notes:
Changes in v6:
As Daniel pointed out in his review, vendor specific
configurations should be kept in the downstream sources. All of
this non-generic code has been removed in v6. Most notably, that
is:
- custom environment and bootcommand
- network settings
- mtd partitioning
Apart from that, there are a few more simplifications, like the
removal of gpio_init() and superfluous spi drivers.
Changes in v5: none
Changes in v4:
- Adapt bootcmd
- Rebase defconfig
Changes in v3:
- Adapt defconfig to [PATCH 1/2] (SPL_SIZE_LIMIT)
Changes in v2:
- Fix style issues as reported by checkpatch
- Add MAINTAINERS file
arch/mips/dts/Makefile | 1 +
arch/mips/dts/onion-omega2p.dts | 58 ++++++++++++++++++++++
arch/mips/mach-mtmips/mt7628/Kconfig | 7 +++
board/onion/omega2p/Kconfig | 12 +++++
board/onion/omega2p/MAINTAINERS | 6 +++
configs/onion-omega2p_defconfig | 73 ++++++++++++++++++++++++++++
include/configs/onion-omega2p.h | 15 ++++++
7 files changed, 172 insertions(+)
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 configs/onion-omega2p_defconfig
create mode 100644 include/configs/onion-omega2p.h
Reviewed-by: Daniel Schwierzeck <daniel.schwierz...@gmail.com>
--
- Daniel