All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL u-boot] Please pull u-boot-amlogic-20200420
@ 2020-04-20 15:15 ` Neil Armstrong
  0 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2020-04-20 15:15 UTC (permalink / raw)
  To: u-boot

Hi Tom,

This respin PR of u-boot-amlogic-20200417 enables RNG on meson boards for UEFI, fixes the SMBIOS
information for ODROID-C2, fixes HDMI Video Output broken on GXBB/GXL/GXM based boards and adds
support for USB gadget on GXL/GXM boards.

The CI job is at https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/2832

Thanks,
Neil

The following changes since commit 142a07f2a44262d76fec609e1fcde51794a456eb:

  Merge branch 'master' of git://git.denx.de/u-boot-marvell (2020-04-14 08:47:07 -0400)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20200420

for you to fetch changes up to 699a33b9388607446452ed3457921cfd61fc094e:

  configs: libretech-s912-pc: Enable USB gadget with Mass Storage function (2020-04-20 14:19:10 +0200)

----------------------------------------------------------------
- enable DM_RNG on meson boards
- fix SMBIOS info on Odroid-C2
- Fix video output on GXBB/GXL/GXM boards
- add USB gadget support for GXL/GXM boards

----------------------------------------------------------------
Heinrich Schuchardt (2):
      arm: meson: imply DM_RNG
      configs: correct SMBIOS information for ODROID-C2

Neil Armstrong (12):
      ARM: dts: add missing meson-gxl-s805x-libretech-ac-u-boot.dtsi file
      arm64: dts: meson-gx: add back dmc register range until canvas driver is available
      generic-phy: add generic_phy_get_by_node()
      phy: meson-gxl-usb: add set_mode call to force switch to peripheral mode
      arm: meson-gx: add board_usb_init()/cleanup() for USB gadget
      arm: dts: meson-gxl: Add USB Gadget nodes for U-Boot
      configs: libretech-cc: Enable USB gadget with Mass Storage function
      configs: libretech-ac: Enable USB gadget with Mass Storage function
      configs: khadas-vim2: Enable USB gadget with Mass Storage function
      configs: khadas-vim: Enable USB gadget with Mass Storage function
      configs: libretech-s905d-pc: Enable USB gadget with Mass Storage function
      configs: libretech-s912-pc: Enable USB gadget with Mass Storage function

 arch/arm/Kconfig                                   |   1 +
 arch/arm/dts/meson-gx-u-boot.dtsi                  |   4 +
 .../dts/meson-gxl-s805x-libretech-ac-u-boot.dtsi   |   7 ++
 .../arm/dts/meson-gxl-s905x-khadas-vim-u-boot.dtsi |   2 +-
 .../dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi   |   6 +-
 arch/arm/dts/meson-gxl-s905x-p212-u-boot.dtsi      |   2 +-
 arch/arm/dts/meson-gxl-u-boot.dtsi                 |  23 ++++
 arch/arm/include/asm/arch-meson/usb-gx.h           |  16 +++
 arch/arm/mach-meson/board-gx.c                     | 118 +++++++++++++++++++++
 configs/khadas-vim2_defconfig                      |   7 ++
 configs/khadas-vim_defconfig                       |   7 ++
 configs/libretech-ac_defconfig                     |   7 ++
 configs/libretech-cc_defconfig                     |   7 ++
 configs/libretech-s905d-pc_defconfig               |   7 ++
 configs/libretech-s912-pc_defconfig                |   7 ++
 configs/odroid-c2_defconfig                        |   2 +
 drivers/phy/meson-gxl-usb2.c                       |  30 ++++--
 drivers/phy/meson-gxl-usb3.c                       |  44 +++++---
 drivers/phy/phy-uclass.c                           |  16 ++-
 include/generic-phy.h                              |  29 +++++
 20 files changed, 316 insertions(+), 26 deletions(-)
 create mode 100644 arch/arm/dts/meson-gxl-s805x-libretech-ac-u-boot.dtsi
 create mode 100644 arch/arm/dts/meson-gxl-u-boot.dtsi
 create mode 100644 arch/arm/include/asm/arch-meson/usb-gx.h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PULL u-boot] Please pull u-boot-amlogic-20200420
@ 2020-04-20 15:15 ` Neil Armstrong
  0 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2020-04-20 15:15 UTC (permalink / raw)
  To: trini; +Cc: u-boot-amlogic, U-Boot Mailing List

Hi Tom,

This respin PR of u-boot-amlogic-20200417 enables RNG on meson boards for UEFI, fixes the SMBIOS
information for ODROID-C2, fixes HDMI Video Output broken on GXBB/GXL/GXM based boards and adds
support for USB gadget on GXL/GXM boards.

The CI job is at https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/2832

Thanks,
Neil

The following changes since commit 142a07f2a44262d76fec609e1fcde51794a456eb:

  Merge branch 'master' of git://git.denx.de/u-boot-marvell (2020-04-14 08:47:07 -0400)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20200420

for you to fetch changes up to 699a33b9388607446452ed3457921cfd61fc094e:

  configs: libretech-s912-pc: Enable USB gadget with Mass Storage function (2020-04-20 14:19:10 +0200)

----------------------------------------------------------------
- enable DM_RNG on meson boards
- fix SMBIOS info on Odroid-C2
- Fix video output on GXBB/GXL/GXM boards
- add USB gadget support for GXL/GXM boards

----------------------------------------------------------------
Heinrich Schuchardt (2):
      arm: meson: imply DM_RNG
      configs: correct SMBIOS information for ODROID-C2

Neil Armstrong (12):
      ARM: dts: add missing meson-gxl-s805x-libretech-ac-u-boot.dtsi file
      arm64: dts: meson-gx: add back dmc register range until canvas driver is available
      generic-phy: add generic_phy_get_by_node()
      phy: meson-gxl-usb: add set_mode call to force switch to peripheral mode
      arm: meson-gx: add board_usb_init()/cleanup() for USB gadget
      arm: dts: meson-gxl: Add USB Gadget nodes for U-Boot
      configs: libretech-cc: Enable USB gadget with Mass Storage function
      configs: libretech-ac: Enable USB gadget with Mass Storage function
      configs: khadas-vim2: Enable USB gadget with Mass Storage function
      configs: khadas-vim: Enable USB gadget with Mass Storage function
      configs: libretech-s905d-pc: Enable USB gadget with Mass Storage function
      configs: libretech-s912-pc: Enable USB gadget with Mass Storage function

 arch/arm/Kconfig                                   |   1 +
 arch/arm/dts/meson-gx-u-boot.dtsi                  |   4 +
 .../dts/meson-gxl-s805x-libretech-ac-u-boot.dtsi   |   7 ++
 .../arm/dts/meson-gxl-s905x-khadas-vim-u-boot.dtsi |   2 +-
 .../dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi   |   6 +-
 arch/arm/dts/meson-gxl-s905x-p212-u-boot.dtsi      |   2 +-
 arch/arm/dts/meson-gxl-u-boot.dtsi                 |  23 ++++
 arch/arm/include/asm/arch-meson/usb-gx.h           |  16 +++
 arch/arm/mach-meson/board-gx.c                     | 118 +++++++++++++++++++++
 configs/khadas-vim2_defconfig                      |   7 ++
 configs/khadas-vim_defconfig                       |   7 ++
 configs/libretech-ac_defconfig                     |   7 ++
 configs/libretech-cc_defconfig                     |   7 ++
 configs/libretech-s905d-pc_defconfig               |   7 ++
 configs/libretech-s912-pc_defconfig                |   7 ++
 configs/odroid-c2_defconfig                        |   2 +
 drivers/phy/meson-gxl-usb2.c                       |  30 ++++--
 drivers/phy/meson-gxl-usb3.c                       |  44 +++++---
 drivers/phy/phy-uclass.c                           |  16 ++-
 include/generic-phy.h                              |  29 +++++
 20 files changed, 316 insertions(+), 26 deletions(-)
 create mode 100644 arch/arm/dts/meson-gxl-s805x-libretech-ac-u-boot.dtsi
 create mode 100644 arch/arm/dts/meson-gxl-u-boot.dtsi
 create mode 100644 arch/arm/include/asm/arch-meson/usb-gx.h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PULL u-boot] Please pull u-boot-amlogic-20200420
  2020-04-20 15:15 ` Neil Armstrong
@ 2020-04-20 21:22   ` Tom Rini
  -1 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2020-04-20 21:22 UTC (permalink / raw)
  To: u-boot

On Mon, Apr 20, 2020 at 05:15:13PM +0200, Neil Armstrong wrote:

> Hi Tom,
> 
> This respin PR of u-boot-amlogic-20200417 enables RNG on meson boards for UEFI, fixes the SMBIOS
> information for ODROID-C2, fixes HDMI Video Output broken on GXBB/GXL/GXM based boards and adds
> support for USB gadget on GXL/GXM boards.
> 
> The CI job is at https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/2832
> 
> Thanks,
> Neil
> 
> The following changes since commit 142a07f2a44262d76fec609e1fcde51794a456eb:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-marvell (2020-04-14 08:47:07 -0400)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20200420
> 
> for you to fetch changes up to 699a33b9388607446452ed3457921cfd61fc094e:
> 
>   configs: libretech-s912-pc: Enable USB gadget with Mass Storage function (2020-04-20 14:19:10 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200420/4ccbdf87/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PULL u-boot] Please pull u-boot-amlogic-20200420
@ 2020-04-20 21:22   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2020-04-20 21:22 UTC (permalink / raw)
  To: Neil Armstrong; +Cc: u-boot-amlogic, U-Boot Mailing List

[-- Attachment #1: Type: text/plain, Size: 1011 bytes --]

On Mon, Apr 20, 2020 at 05:15:13PM +0200, Neil Armstrong wrote:

> Hi Tom,
> 
> This respin PR of u-boot-amlogic-20200417 enables RNG on meson boards for UEFI, fixes the SMBIOS
> information for ODROID-C2, fixes HDMI Video Output broken on GXBB/GXL/GXM based boards and adds
> support for USB gadget on GXL/GXM boards.
> 
> The CI job is at https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic/pipelines/2832
> 
> Thanks,
> Neil
> 
> The following changes since commit 142a07f2a44262d76fec609e1fcde51794a456eb:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-marvell (2020-04-14 08:47:07 -0400)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git tags/u-boot-amlogic-20200420
> 
> for you to fetch changes up to 699a33b9388607446452ed3457921cfd61fc094e:
> 
>   configs: libretech-s912-pc: Enable USB gadget with Mass Storage function (2020-04-20 14:19:10 +0200)
> 

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:[~2020-04-20 21:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-20 15:15 [PULL u-boot] Please pull u-boot-amlogic-20200420 Neil Armstrong
2020-04-20 15:15 ` Neil Armstrong
2020-04-20 21:22 ` Tom Rini
2020-04-20 21:22   ` Tom Rini

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.