All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: Tom Rini <trini@konsulko.com>, Michal Suchanek <msuchanek@suse.de>
Subject: Please pull u-boot-dm
Date: Tue, 18 Oct 2022 05:34:28 -0600	[thread overview]
Message-ID: <CAPnjgZ1vH82AJ9v87oiFcWihKf2zQSDYdQMqxKjvO-WKYdcVTA@mail.gmail.com> (raw)

Hi Tom,

The following changes since commit 17196e446b6ea11220c3e08cebff839f999e0185:

  CI: Update to jammy-20221003-17Oct2022 tag (2022-10-17 11:10:32 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-dm.git tags/dm-pull-18oct22

for you to fetch changes up to ae0bf2214b81b56a5670819958234947443680be:

  vbe: Add a test for VBE device tree fixups (2022-10-17 21:17:13 -0600)

----------------------------------------------------------------
Update uclass iterators to work better when devices fail to probe
Support VBE OS requests / fixups
Minor error-handling tweaks to bootm command

----------------------------------------------------------------
Michal Suchanek (16):
      dm: core: Fix uclass_probe_all to really probe all devices
      dm: treewide: Do not opencode uclass_probe_all()
      dm: pci: Fix device PCI iteration
      bootstd: Fix listing boot devices
      usb: ether: Fix error handling in usb_ether_init
      stdio: Fix class iteration in stdio_add_devices()
      video: ipuv3: Fix error handling when getting the display
      w1: Fix bus counting in w1_get_bus
      cmd: List all uclass devices regardless of probe error
      dm: treewide: Use uclass_first_device_err when accessing one device
      dm: treewide: Use uclass_next_device_err when accessing second device
      dm: blk: Do not use uclass_next_device_err
      net: eth-uclass: Do not set device on error
      mpc83xx: gazerbeam: Update sysinfo_get error handling
      dm: core: Switch uclass_foreach_dev_probe to use simple iterator
      dm: core: Switch uclass_*_device_err to use uclass_*_device_check

Simon Glass (15):
      dm: regmap: Disable range checks in SPL
      bootm: Change incorrect 'unsupported' error
      bootm: Avoid returning error codes from command
      bootm: Drop #ifdef from do_bootm()
      boot: Correct handling of addresses in boot_relocate_fdt()
      fs: Quieten down the filesystems more
      fdt: Show a message when the working FDT changes
      bootstd: Move VBE setup into a shared function
      sandbox: Support FDT fixups
      boot: Pass the correct FDT to the EVT_FT_FIXUP event
      boot: Tidy up logging and naming in vbe_simple
      test: Move common FIT code into a separate fit_util file
      vbe: Add fixups for a basic set of OS requests
      dm: core: Update docs about oftree_from_fdt()
      vbe: Add a test for VBE device tree fixups

 arch/arm/mach-k3/j721s2_init.c            |   2 +-
 arch/arm/mach-omap2/am33xx/board.c        |   4 +-
 arch/sandbox/lib/bootm.c                  |  17 ++++
 arch/x86/cpu/broadwell/cpu.c              |   4 +-
 arch/x86/cpu/intel_common/cpu.c           |   4 +-
 arch/x86/lib/pinctrl_ich6.c               |   4 +-
 board/atmel/common/mac_eeprom.c           |   2 +-
 board/gdsys/mpc8308/gazerbeam.c           |  12 ++-
 board/intel/cougarcanyon2/cougarcanyon2.c |   4 +-
 boot/Makefile                             |   2 +-
 boot/bootdev-uclass.c                     |   4 +-
 boot/bootm.c                              |   2 +-
 boot/image-fdt.c                          |  37 +++++----
 boot/vbe_fixup.c                          | 233
++++++++++++++++++++++++++++++++++++++++++++++++++++
 boot/vbe_simple.c                         |  16 ++--
 cmd/adc.c                                 |  20 ++---
 cmd/bootm.c                               |  25 +++---
 cmd/demo.c                                |  15 ++--
 cmd/fdt.c                                 |   1 +
 cmd/gpio.c                                |  15 +++-
 cmd/pmic.c                                |  15 ++--
 cmd/regulator.c                           |  13 +--
 common/stdio.c                            |  32 +++-----
 configs/sandbox_flattree_defconfig        |   2 +-
 disk/part_efi.c                           |  15 ++--
 doc/develop/driver-model/livetree.rst     |   2 +-
 doc/develop/vbe.rst                       |   3 +-
 doc/usage/cmd/fdt.rst                     |   1 +
 drivers/block/blk-uclass.c                |  16 ++--
 drivers/core/regmap.c                     |  23 +++++-
 drivers/core/uclass.c                     |  40 +++++----
 drivers/cpu/cpu-uclass.c                  |  20 +----
 drivers/mmc/omap_hsmmc.c                  |   2 +-
 drivers/pci/pci-uclass.c                  |   4 +-
 drivers/serial/serial-uclass.c            |   2 +-
 drivers/serial/serial_bcm283x_mu.c        |   2 +-
 drivers/serial/serial_bcm283x_pl011.c     |   2 +-
 drivers/sysreset/sysreset_ast.c           |   2 +-
 drivers/usb/gadget/ether.c                |  11 ++-
 drivers/video/exynos/exynos_fb.c          |  14 +---
 drivers/video/imx/mxc_ipuv3_fb.c          |   9 +-
 drivers/video/mali_dp.c                   |   2 +-
 drivers/video/stm32/stm32_dsi.c           |   2 +-
 drivers/video/tegra124/dp.c               |   4 +-
 drivers/virtio/virtio-uclass.c            |  15 +---
 drivers/w1/w1-uclass.c                    |  20 +++--
 drivers/xen/pvblock.c                     |   5 +-
 fs/btrfs/disk-io.c                        |   7 +-
 fs/ext4/ext4_common.c                     |   2 +-
 fs/fs_internal.c                          |   3 +-
 include/dm/ofnode.h                       |   3 +
 include/dm/uclass.h                       |  26 +++---
 lib/acpi/acpi_table.c                     |   2 +-
 lib/efi_loader/efi_gop.c                  |   2 +-
 net/eth-uclass.c                          |   6 +-
 test/boot/Makefile                        |   1 +
 test/boot/bootflow.c                      |   2 +
 test/boot/bootmeth.c                      |   2 +-
 test/boot/bootstd_common.c                |  49 +++++++++++
 test/boot/bootstd_common.h                |  16 ++++
 test/boot/vbe_fixup.c                     |  59 +++++++++++++
 test/boot/vbe_simple.c                    |  34 +-------
 test/cmd/fdt.c                            |  11 ++-
 test/dm/acpi.c                            |  14 ++--
 test/dm/core.c                            |  17 +---
 test/dm/devres.c                          |   4 +-
 test/dm/i2c.c                             |   8 +-
 test/dm/test-fdt.c                        |  19 ++++-
 test/dm/virtio_device.c                   |   8 +-
 test/dm/virtio_rng.c                      |   2 +-
 test/fuzz/cmd_fuzz.c                      |   2 +-
 test/fuzz/virtio.c                        |   2 +-
 test/py/tests/fit_util.py                 |  93 +++++++++++++++++++++
 test/py/tests/test_event_dump.py          |   1 +
 test/py/tests/test_fit.py                 |  79 ++----------------
 test/py/tests/test_vbe.py                 | 123 +++++++++++++++++++++++++++
 test/test-main.c                          |  11 +--
 77 files changed, 904 insertions(+), 405 deletions(-)
 create mode 100644 boot/vbe_fixup.c
 create mode 100644 test/boot/vbe_fixup.c
 create mode 100644 test/py/tests/fit_util.py
 create mode 100644 test/py/tests/test_vbe.py

Regards,
Simon

             reply	other threads:[~2022-10-18 11:34 UTC|newest]

Thread overview: 154+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-18 11:34 Simon Glass [this message]
2022-10-18 13:47 ` Please pull u-boot-dm Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2023-11-15 13:19 Simon Glass
2023-11-15 22:38 ` Tom Rini
2023-11-02 22:54 Simon Glass
2023-11-03 13:42 ` Tom Rini
2023-10-13 22:01 Simon Glass
2023-10-14 21:19 ` Tom Rini
2023-10-04 18:00 Simon Glass
2023-10-05 14:49 ` Tom Rini
2023-09-23 18:16 Simon Glass
2023-09-25 14:02 ` Tom Rini
2023-08-22 19:46 Simon Glass
2023-08-23 14:41 ` Tom Rini
2023-08-21 19:11 Simon Glass
2023-08-21 20:18 ` Tom Rini
2023-08-06  2:00 Simon Glass
2023-08-06 13:29 ` Tom Rini
2023-08-02 21:31 Simon Glass
2023-08-03 12:02 ` Tom Rini
2023-07-24 18:31 Simon Glass
2023-07-24 23:01 ` Tom Rini
2023-07-20 20:13 Simon Glass
2023-07-21 13:53 ` Tom Rini
2023-07-12 15:51 Simon Glass
2023-07-12 19:29 ` Tom Rini
2023-07-12 19:36   ` Tom Rini
2023-07-12 20:09     ` Simon Glass
2023-07-12 20:14       ` Tom Rini
2023-07-12 20:17         ` Simon Glass
2023-07-12 20:31           ` Tom Rini
2023-07-15 23:40             ` Simon Glass
2023-04-28 19:25 Simon Glass
2023-04-29 13:29 ` Tom Rini
2023-03-30 21:29 Simon Glass
2023-03-31 16:25 ` Tom Rini
2023-03-10 20:54 Simon Glass
2023-03-10 23:27 ` Tom Rini
2023-03-01 20:10 Simon Glass
2023-03-02 15:49 ` Tom Rini
2023-02-13  0:37 Simon Glass
2023-02-13 16:28 ` Tom Rini
2023-01-27  2:20 Simon Glass
2023-01-27 13:22 ` Tom Rini
2023-01-19  2:18 Simon Glass
2023-01-19 21:33 ` Tom Rini
2022-11-23  2:13 Simon Glass
2022-11-23 14:57 ` Tom Rini
2022-11-08 14:44 Simon Glass
2022-11-08 17:08 ` Tom Rini
2022-10-29 22:43 Simon Glass
2022-10-30 16:37 ` Tom Rini
2022-09-21  9:50 Simon Glass
2022-09-21 13:49 ` Tom Rini
2022-09-12 13:39 Simon Glass
2022-09-12 17:20 ` Tom Rini
2022-09-07 12:32 Simon Glass
2022-09-07 17:56 ` Tom Rini
2022-08-27  2:01 Simon Glass
2022-08-27 22:15 ` Tom Rini
2022-08-21  1:02 Simon Glass
2022-08-22  6:23 ` Stefan Herbrechtsmeier
2022-08-22 16:38   ` Simon Glass
2022-08-22 22:56 ` Tom Rini
2022-08-11  3:18 Simon Glass
2022-08-11 16:24 ` Tom Rini
2022-08-09 22:51 Simon Glass
2022-08-10 15:01 ` Tom Rini
2022-07-27  4:37 Simon Glass
2022-07-27 13:05 ` Tom Rini
2022-02-22 23:45 Simon Glass
2022-02-23 20:49 ` Tom Rini
2022-02-08 23:34 Simon Glass
2022-01-31 13:41 Simon Glass
2022-01-31 15:22 ` Tom Rini
2022-01-27  3:35 Simon Glass
2022-01-27 17:31 ` Tom Rini
2022-01-27 19:09   ` Simon Glass
2022-01-28  4:36     ` Tom Rini
2022-01-13 18:05 Simon Glass
2022-01-13 23:52 ` Tom Rini
2021-11-14  0:38 Simon Glass
2021-11-14 15:23 ` Tom Rini
2021-10-31 19:40 Simon Glass
2021-11-01  1:03 ` Tom Rini
2021-10-22  1:36 Simon Glass
2021-10-22 12:56 ` Tom Rini
2021-09-18 11:34 Simon Glass
2021-09-18 11:59 ` Ilias Apalodimas
2021-09-18 12:13   ` Simon Glass
2021-09-18 12:22     ` Ilias Apalodimas
2021-09-18 12:43       ` François Ozog
2021-09-18 15:31         ` Simon Glass
2021-09-18 12:14   ` Tom Rini
2021-09-18 12:19     ` Ilias Apalodimas
2021-09-19 16:51 ` Tom Rini
2021-08-09  2:32 Simon Glass
2021-08-09 18:46 ` Tom Rini
2021-08-01 18:08 Simon Glass
2021-08-02 16:05 ` Tom Rini
2021-07-22 13:07 Simon Glass
2021-07-22 19:00 ` Tom Rini
2021-07-07 15:58 Simon Glass
2021-07-07 23:28 ` Tom Rini
2021-06-06 16:42 Simon Glass
2021-06-07 11:22 ` Tom Rini
2021-04-29 23:16 Simon Glass
2021-04-30 11:16 ` Tom Rini
2021-04-06  7:14 Simon Glass
2021-04-06 17:48 ` Tom Rini
2021-03-04  3:27 Simon Glass
2021-03-04 18:13 ` Tom Rini
2021-02-04  4:30 Simon Glass
2021-02-04 21:58 ` Tom Rini
2021-01-31  3:28 Simon Glass
2021-02-01  0:44 ` Tom Rini
2020-11-15 14:11 Simon Glass
2020-11-16 14:49 ` Tom Rini
2020-11-05 17:22 Simon Glass
2020-11-09 12:59 ` Tom Rini
2020-10-30 19:13 Simon Glass
2020-10-31  2:54 ` Tom Rini
2020-10-06 17:36 Simon Glass
2020-10-07 21:25 ` Tom Rini
2020-08-22 23:21 Simon Glass
2020-08-24 13:05 ` Tom Rini
2020-07-29  2:38 Simon Glass
2020-07-30  0:03 ` Simon Glass
2020-07-30 13:21 ` Tom Rini
2020-07-20 20:19 Simon Glass
2020-07-23 18:25 ` Simon Glass
2020-07-24  1:09 ` Tom Rini
2020-07-24 12:41   ` Tom Rini
2020-07-27 14:54     ` Simon Glass
2020-07-27 14:55       ` Michal Simek
2020-07-27 14:59       ` Tom Rini
2020-07-10 17:07 Simon Glass
2020-07-11 12:57 ` Tom Rini
2020-05-30 15:16 Simon Glass
2020-05-31  0:10 ` Tom Rini
2020-04-27 15:20 Simon Glass
2020-04-28 13:52 ` Tom Rini
2020-04-21 15:14 Simon Glass
2020-04-22 12:58 ` Tom Rini
2020-04-10 13:57 Simon Glass
2020-04-10 19:14 ` Tom Rini
2020-04-01 15:03 Simon Glass
2020-04-02  0:43 ` Tom Rini
2020-03-03 23:53 Simon Glass
2020-03-04 15:41 ` Tom Rini
2020-01-08 18:04 Simon Glass
2020-01-09 18:42 ` Tom Rini
2019-12-03 16:52 Simon Glass
2019-12-04  4:03 ` Tom Rini

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=CAPnjgZ1vH82AJ9v87oiFcWihKf2zQSDYdQMqxKjvO-WKYdcVTA@mail.gmail.com \
    --to=sjg@chromium.org \
    --cc=msuchanek@suse.de \
    --cc=trini@konsulko.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.