* [GIT PULL] Please pull u-boot-amlogic-20230131
@ 2023-01-31 8:48 Neil Armstrong
2023-01-31 21:51 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: Neil Armstrong @ 2023-01-31 8:48 UTC (permalink / raw)
To: trini; +Cc: u-boot-amlogic, u-boot
Hi Tom,
Sorry for the late PR, here's changes for next release:
- Switch USB Gadget to DM ! Finally, the last legacy bit is now over
- Add new boards:
- Odroid Go Ultra, a portable console based on S922X
- Odroid-N2L, a smaller version of the N2+
The PR also contains:
- jethub j100: add rescue boot from microSD
- move meson sm command to cmd/meson and add efusedump sub-command
The CI job is at https://source.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/14947
Thanks,
Neil
The following changes since commit 7b84c973b96775576dcff228d865e8570be26c82:
ns16650: Correct CONFIG_SYS_NS16550_MEM32 platforms (2023-01-09 11:30:49 -0500)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20230131
for you to fetch changes up to 8f5e9de121003bfd9a64a5b3a503c0fbd02af823:
ARM: meson: Add support for Odroid-N2L (2023-01-30 14:24:17 +0100)
----------------------------------------------------------------
- jethub j100: add rescue boot from microSD
- move meson sm command to cmd/meson and add efusedump sub-command
- switch dwc2 otg to DM for G12A, GXL & AXG
- Add new boards:
- Odroid Go Ultra
- Odroid-N2L
----------------------------------------------------------------
Alexey Romanov (5):
asm/arch-meson: add missing meson_sm_write_efuse signature
arm/mach-meson: move smc commands in cmd/meson
doc/usage: cmd: documentation for meson/sm command
cmd/arm: meson: sm: introduce efusedump command
doc/usage: cmd: sm: documentation efusedump cmd
Mattijs Korpershoek (2):
usb: dwc3-meson-g12a: force mode on child add/removal
ARM: meson: g12a: switch dwc2 otg to DM
Neil Armstrong (6):
usb: dwc3-meson-gxl: force mode on child add/removal
ARM: meson: switch AXG & GX dwc2 otg to DM
ARM: dts: sync Amlogic ARM64 DT from v6.2-rc1
ARM: meson: add support for Odroid Go Ultra
ARM: dts: Import Odroid-N2L support
ARM: meson: Add support for Odroid-N2L
Viacheslav Bocharov (1):
board: amlogic: jethub j100: add rescue boot from microSD
MAINTAINERS | 1 +
arch/arm/dts/Makefile | 2 +
arch/arm/dts/meson-g12-common.dtsi | 167 +++--
arch/arm/dts/meson-g12a.dtsi | 5 +
.../arm/dts/meson-g12b-odroid-go-ultra-u-boot.dtsi | 16 +
arch/arm/dts/meson-g12b-odroid-go-ultra.dts | 722 +++++++++++++++++++++
arch/arm/dts/meson-g12b-odroid-n2.dtsi | 410 +-----------
arch/arm/dts/meson-g12b-odroid-n2l-u-boot.dtsi | 7 +
arch/arm/dts/meson-g12b-odroid-n2l.dts | 125 ++++
arch/arm/dts/meson-g12b-odroid.dtsi | 445 +++++++++++++
arch/arm/dts/meson-g12b.dtsi | 5 +
arch/arm/dts/meson-sm1.dtsi | 52 +-
arch/arm/include/asm/arch-meson/sm.h | 28 +
arch/arm/mach-meson/board-axg.c | 129 ----
arch/arm/mach-meson/board-g12a.c | 127 ----
arch/arm/mach-meson/board-gx.c | 137 ----
arch/arm/mach-meson/sm.c | 144 ----
cmd/Kconfig | 7 +
cmd/Makefile | 3 +
cmd/meson/Makefile | 5 +
cmd/meson/sm.c | 191 ++++++
configs/bananapi-m5_defconfig | 1 +
configs/beelink-gsking-x_defconfig | 1 +
configs/beelink-gtking_defconfig | 1 +
configs/beelink-gtkingpro_defconfig | 1 +
configs/jethub_j100_defconfig | 1 +
configs/jethub_j80_defconfig | 1 +
configs/khadas-vim2_defconfig | 1 +
configs/khadas-vim3_android_ab_defconfig | 1 +
configs/khadas-vim3_android_defconfig | 1 +
configs/khadas-vim3_defconfig | 1 +
configs/khadas-vim3l_android_ab_defconfig | 1 +
configs/khadas-vim3l_android_defconfig | 1 +
configs/khadas-vim3l_defconfig | 1 +
configs/khadas-vim_defconfig | 1 +
configs/libretech-ac_defconfig | 1 +
configs/libretech-cc_defconfig | 1 +
configs/libretech-s905d-pc_defconfig | 1 +
configs/libretech-s912-pc_defconfig | 1 +
configs/odroid-c4_defconfig | 1 +
configs/odroid-go-ultra_defconfig | 70 ++
configs/odroid-hc4_defconfig | 1 +
configs/odroid-n2_defconfig | 1 +
configs/odroid-n2l_defconfig | 70 ++
configs/radxa-zero_defconfig | 1 +
configs/s400_defconfig | 1 +
configs/sei510_defconfig | 1 +
configs/sei610_defconfig | 1 +
configs/u200_defconfig | 1 +
configs/wetek-core2_defconfig | 1 +
doc/board/amlogic/index.rst | 6 +-
doc/board/amlogic/odroid-go-ultra.rst | 34 +
doc/board/amlogic/odroid-n2l.rst | 31 +
doc/usage/cmd/sm.rst | 48 ++
doc/usage/index.rst | 1 +
drivers/usb/dwc3/dwc3-meson-g12a.c | 18 +
drivers/usb/dwc3/dwc3-meson-gxl.c | 18 +
include/configs/jethub.h | 1 +
58 files changed, 2040 insertions(+), 1012 deletions(-)
create mode 100644 arch/arm/dts/meson-g12b-odroid-go-ultra-u-boot.dtsi
create mode 100644 arch/arm/dts/meson-g12b-odroid-go-ultra.dts
create mode 100644 arch/arm/dts/meson-g12b-odroid-n2l-u-boot.dtsi
create mode 100644 arch/arm/dts/meson-g12b-odroid-n2l.dts
create mode 100644 arch/arm/dts/meson-g12b-odroid.dtsi
create mode 100644 cmd/meson/Makefile
create mode 100644 cmd/meson/sm.c
create mode 100644 configs/odroid-go-ultra_defconfig
create mode 100644 configs/odroid-n2l_defconfig
create mode 100644 doc/board/amlogic/odroid-go-ultra.rst
create mode 100644 doc/board/amlogic/odroid-n2l.rst
create mode 100644 doc/usage/cmd/sm.rst
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [GIT PULL] Please pull u-boot-amlogic-20230131
2023-01-31 8:48 [GIT PULL] Please pull u-boot-amlogic-20230131 Neil Armstrong
@ 2023-01-31 21:51 ` Tom Rini
0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2023-01-31 21:51 UTC (permalink / raw)
To: Neil Armstrong; +Cc: u-boot-amlogic, u-boot
[-- Attachment #1: Type: text/plain, Size: 1134 bytes --]
On Tue, Jan 31, 2023 at 09:48:09AM +0100, Neil Armstrong wrote:
>
> Hi Tom,
>
> Sorry for the late PR, here's changes for next release:
> - Switch USB Gadget to DM ! Finally, the last legacy bit is now over
> - Add new boards:
> - Odroid Go Ultra, a portable console based on S922X
> - Odroid-N2L, a smaller version of the N2+
>
> The PR also contains:
> - jethub j100: add rescue boot from microSD
> - move meson sm command to cmd/meson and add efusedump sub-command
>
> The CI job is at https://source.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/14947
>
> Thanks,
> Neil
>
> The following changes since commit 7b84c973b96775576dcff228d865e8570be26c82:
>
> ns16650: Correct CONFIG_SYS_NS16550_MEM32 platforms (2023-01-09 11:30:49 -0500)
>
> are available in the Git repository at:
>
> https://source.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20230131
>
> for you to fetch changes up to 8f5e9de121003bfd9a64a5b3a503c0fbd02af823:
>
> ARM: meson: Add support for Odroid-N2L (2023-01-30 14:24:17 +0100)
>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL] Please pull u-boot-amlogic-20230131
@ 2023-03-22 10:46 Neil Armstrong
2023-03-22 13:27 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: Neil Armstrong @ 2023-03-22 10:46 UTC (permalink / raw)
To: trini; +Cc: u-boot-amlogic, u-boot
Hi Tom,
A single change to enable the odroid-go-ultra PMIC regulator at boot.
The CI job is at https://source.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/15691
Thanks,
Neil
The following changes since commit 88e08fc5f6e508eac46cd1dfb0379b11ae032c0a:
Prepare v2023.04-rc4 (2023-03-13 20:52:48 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20230322
for you to fetch changes up to de58694f0d5431627d7389f50a6b2034a682ba24:
ARM: meson: odroid-go-ultra: setup PMIC regulators are board init (2023-03-14 09:03:16 +0100)
----------------------------------------------------------------
- odroid-go-ultra: setup PMIC regulators at board init
----------------------------------------------------------------
Neil Armstrong (1):
ARM: meson: odroid-go-ultra: setup PMIC regulators are board init
.../arm/dts/meson-g12b-odroid-go-ultra-u-boot.dtsi | 8 ++++++++
board/amlogic/odroid-go-ultra/MAINTAINERS | 7 +++++++
board/amlogic/odroid-go-ultra/Makefile | 5 +++++
board/amlogic/odroid-go-ultra/odroid-go-ultra.c | 22 ++++++++++++++++++++++
configs/odroid-go-ultra_defconfig | 4 ++--
5 files changed, 44 insertions(+), 2 deletions(-)
create mode 100644 board/amlogic/odroid-go-ultra/MAINTAINERS
create mode 100644 board/amlogic/odroid-go-ultra/Makefile
create mode 100644 board/amlogic/odroid-go-ultra/odroid-go-ultra.c
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [GIT PULL] Please pull u-boot-amlogic-20230131
2023-03-22 10:46 Neil Armstrong
@ 2023-03-22 13:27 ` Tom Rini
0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2023-03-22 13:27 UTC (permalink / raw)
To: Neil Armstrong; +Cc: u-boot-amlogic, u-boot
[-- Attachment #1: Type: text/plain, Size: 801 bytes --]
On Wed, Mar 22, 2023 at 11:46:42AM +0100, Neil Armstrong wrote:
>
> Hi Tom,
>
> A single change to enable the odroid-go-ultra PMIC regulator at boot.
>
> The CI job is at https://source.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/15691
>
> Thanks,
> Neil
>
> The following changes since commit 88e08fc5f6e508eac46cd1dfb0379b11ae032c0a:
>
> Prepare v2023.04-rc4 (2023-03-13 20:52:48 -0400)
>
> are available in the Git repository at:
>
> https://source.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20230322
>
> for you to fetch changes up to de58694f0d5431627d7389f50a6b2034a682ba24:
>
> ARM: meson: odroid-go-ultra: setup PMIC regulators are board init (2023-03-14 09:03:16 +0100)
>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-22 13:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-31 8:48 [GIT PULL] Please pull u-boot-amlogic-20230131 Neil Armstrong
2023-01-31 21:51 ` Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2023-03-22 10:46 Neil Armstrong
2023-03-22 13:27 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox