All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: u-boot@lists.denx.de
Subject: Please pull u-boot-dm
Date: Fri, 30 Oct 2020 13:13:04 -0600	[thread overview]
Message-ID: <CAPnjgZ0BY-m4a6k=Jdjj_Y3icn9uXLYKNQ8qzw6ZCoLhyt6YCQ@mail.gmail.com> (raw)

Hi Tom,

https://gitlab.denx.de/u-boot/custodians/u-boot-dm/-/commits/master
https://travis-ci.com/github/sjg20/u-boot/builds/196409920
https://dev.azure.com/simon0972/u-boot/_build?definitionId=1


The following changes since commit cdeb7b8f984e6d9bcdc5a6fdda6107af156d47bf:

  configs: Resync with savedefconfig (2020-10-29 10:48:01 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-dm.git tags/dm-pull-30oct20

for you to fetch changes up to 2424057b2ad0eacdd2d81e35e7bea5df97802b8f:

  binman: Avoid calculated section data repeatedly (2020-10-29 14:42:59 -0600)

----------------------------------------------------------------
of-platdata and dtoc improvements
sandbox SPL tests
binman support for compressed sections

----------------------------------------------------------------
Dario Binacchi (1):
      dm: core: fix typo in device.h

Heinrich Schuchardt (1):
      sandbox: make SDL window resizable

Simon Glass (69):
      binman: Add a way to read the ROM offset
      binman: Support multiple images in the library
      dtoc: Extract inner loop from output_node()
      dtoc: Use a namedtuple for _links
      dm: core: Expand the comment for DM_GET_DEVICE()
      dm: core: Avoid void * in the of-platdata structs
      dm: Avoid using #ifdef for CONFIG_OF_LIVE
      dm: test: Sort the Makefile
      dm: test: Update Makefile conditions
      dm: test: Make use of CONFIG_UNIT_TEST
      dm: test: Disable some tests that should not run in SPL
      sandbox: Drop ad-hoc device declarations in SPL
      dtoc: Document the return value of scan_structs()
      dtoc: Order the structures internally by name
      dm: core: Allow dm_warn() to be used in SPL
      dtoc: Fix widening of int to bytes
      dm: test: Build tests for SPL
      dm: test: Update the test runner to support of-platdata
      dm: test: Add a way to run SPL tests
      dm: test: Add a very simple of-platadata test
      Makefile: Generate a symbol file for u-boot-spl
      pytest: Collect SPL unit tests
      test: Run SPL unit tests
      sandbox: Allow selection of SPL unit tests
      test: Run only the selected SPL test
      dm: test: Drop of-platdata pytest
      Azure/GitLab/Travis: Add SPL unit tests
      dm: Add a C test for of-platdata properties
      dm: test: Add a check that all devices have a dev value
      dm: test: Add a test for of-platdata phandles
      dm: Use an allocated array for run-time device info
      sandbox: Fix up building for of-platdata
      dm: Support parent devices with of-platdata
      dm: Add a test for of-platdata parent information
      dm: core: Convert #ifdef to if() in root.c
      x86: apl: Enable SPI flash in TPL with APL_SPI_FLASH_BOOT
      x86: apl: Take advantage of the of-platdata parent support
      dm: Use driver_info index instead of pointer
      imx: mx6cuboxi: Disable thermal driver in SPL
      dm: Don't allow U_BOOT_DEVICE() when of-platdata is used
      dm: doc: Update the of-platadata documentation
      binman: Update the entry docs
      binman: Drop unused return variable for _DoTestFile()
      binman: Add tests for skip-at-start sections
      binman: Give a sensible error if no command is given
      binman: Fix return from u-boot-ucode if there is no DT
      binman: Remove references to 'image' in entry_Section
      binman: Expand the error message for breaching a section
      binman: Move CompressData() into Entry base class
      binman: Use 'files-compress' to set compression for files
      binman: Update testPackExtra with more checks
      binman: Expand docs and test for padding
      binman: Expand docs and test for alignment
      binman: Move section-building code into a function
      binman: Refactor _BuildSectionData()
      binman: Move section padding to the parent
      binman: Make section padding consistent with other entries
      binman: Store the original data before compression
      binman: Set section contents in GetData()
      binman: Avoid reporting image-pos with compression
      binman: Drop Entry.CheckOffset()
      binman: Move sort and expand to the main Pack() function
      binman: Drop the Entry.CheckSize() method
      binman: Call CheckSize() from the section's Pack() method
      binman: Drop CheckEntries()
      binman: Update CheckEntries() for compressed sections
      binman: Use the actual contents in CheckSize()
      binman: Support compression of sections
      binman: Avoid calculated section data repeatedly

 .azure-pipelines.yml                                |   2 +-
 .gitlab-ci.yml                                      |   2 +-
 .travis.yml                                         |   2 +-
 Makefile                                            |   2 +-
 arch/arm/mach-imx/mx6/soc.c                         |   2 +-
 arch/sandbox/cpu/sdl.c                              |   3 +-
 arch/sandbox/cpu/spl.c                              |  18 +-
 arch/sandbox/cpu/start.c                            |  15 +-
 arch/sandbox/dts/sandbox.dts                        |   1 +
 arch/sandbox/dts/sandbox.dtsi                       |  27 ++
 arch/sandbox/include/asm/state.h                    |   3 +-
 arch/x86/cpu/apollolake/Kconfig                     |   2 +
 arch/x86/cpu/apollolake/spl.c                       |   3 +-
 board/sandbox/sandbox.c                             |   2 +
 common/board_r.c                                    |  19 +-
 configs/sandbox_spl_defconfig                       |   7 +-
 doc/driver-model/of-plat.rst                        |  42 ++-
 drivers/clk/clk-uclass.c                            |   3 +-
 drivers/clk/clk_fixed_rate.c                        |   4 +-
 drivers/clk/clk_sandbox.c                           |   4 +-
 drivers/core/Kconfig                                |  18 +-
 drivers/core/Makefile                               |   2 +-
 drivers/core/device.c                               |  23 +-
 drivers/core/lists.c                                |  70 ++++-
 drivers/core/root.c                                 |  56 ++--
 drivers/core/util.c                                 |   2 +-
 drivers/i2c/Makefile                                |   2 +-
 drivers/i2c/i2c-emul-uclass.c                       |   2 +
 drivers/i2c/sandbox_i2c.c                           |   4 +-
 drivers/misc/irq-uclass.c                           |   2 +-
 drivers/misc/p2sb-uclass.c                          |  27 +-
 drivers/misc/spltest_sandbox.c                      |  35 ---
 drivers/mmc/fsl_esdhc_imx.c                         |   7 +-
 drivers/rtc/rtc-uclass.c                            |   2 +
 drivers/rtc/sandbox_rtc.c                           |   4 +-
 drivers/serial/sandbox.c                            |   3 +
 drivers/spi/ich.c                                   |   4 +-
 drivers/sysreset/sysreset_sandbox.c                 |   2 +
 dts/Kconfig                                         |  18 ++
 include/asm-generic/global_data.h                   |  27 +-
 include/binman.h                                    |   7 +
 include/config_uncmd_spl.h                          |   1 -
 include/dm/device-internal.h                        |   2 +-
 include/dm/device.h                                 |  16 +-
 include/dm/of.h                                     |   9 +-
 include/dm/platdata.h                               |  49 +++-
 include/dm/util.h                                   |   2 +-
 include/dt-structs.h                                |   8 +-
 include/test/test.h                                 |  11 +
 lib/binman.c                                        |  14 +-
 scripts/Makefile.spl                                |   8 +-
 test/Kconfig                                        |  10 +
 test/Makefile                                       |  24 +-
 test/dm/Makefile                                    |  13 +-
 test/dm/of_platdata.c                               | 222 ++++++++++++++++
 test/dm/test-main.c                                 |  69 +++--
 test/py/conftest.py                                 |  13 +-
 test/py/tests/test_ofplatdata.py                    |  47 ----
 test/py/tests/test_spl.py                           |  34 +++
 test/run                                            |   2 +-
 tools/binman/README                                 |  72 +++--
 tools/binman/README.entries                         |  25 +-
 tools/binman/cmdline.py                             |   1 +
 tools/binman/control.py                             |   4 +-
 tools/binman/entry.py                               |  65 ++++-
 tools/binman/etype/blob.py                          |   7 -
 tools/binman/etype/cbfs.py                          |   6 +-
 tools/binman/etype/files.py                         |   7 +-
 tools/binman/etype/section.py                       | 167 +++++++++---
 tools/binman/etype/u_boot_ucode.py                  |   1 +
 tools/binman/ftest.py                               | 409
++++++++++++++++++++++++++++-
 tools/binman/image.py                               |   2 +-
 tools/binman/test/009_pack_extra.dts                |   2 +-
 tools/binman/test/085_files_compress.dts            |   2 +-
 tools/binman/test/177_skip_at_start.dts             |  19 ++
 tools/binman/test/178_skip_at_start_pad.dts         |  21 ++
 tools/binman/test/179_skip_at_start_section_pad.dts |  22 ++
 tools/binman/test/180_section_pad.dts               |  27 ++
 tools/binman/test/181_section_align.dts             |  34 +++
 tools/binman/test/182_compress_image.dts            |  14 +
 tools/binman/test/183_compress_image_less.dts       |  14 +
 tools/binman/test/184_compress_section_size.dts     |  17 ++
 tools/binman/test/185_compress_section.dts          |  16 ++
 tools/binman/test/186_compress_extra.dts            |  37 +++
 tools/dtoc/dtb_platdata.py                          | 138 ++++++----
 tools/dtoc/dtoc_test_simple.dts                     |   1 +
 tools/dtoc/fdt.py                                   |   9 +
 tools/dtoc/test_dtoc.py                             | 178 ++++++++-----
 tools/dtoc/test_fdt.py                              |  10 +
 89 files changed, 1860 insertions(+), 501 deletions(-)
 create mode 100644 test/dm/of_platdata.c
 create mode 100644 test/py/tests/test_spl.py
 create mode 100644 tools/binman/test/177_skip_at_start.dts
 create mode 100644 tools/binman/test/178_skip_at_start_pad.dts
 create mode 100644 tools/binman/test/179_skip_at_start_section_pad.dts
 create mode 100644 tools/binman/test/180_section_pad.dts
 create mode 100644 tools/binman/test/181_section_align.dts
 create mode 100644 tools/binman/test/182_compress_image.dts
 create mode 100644 tools/binman/test/183_compress_image_less.dts
 create mode 100644 tools/binman/test/184_compress_section_size.dts
 create mode 100644 tools/binman/test/185_compress_section.dts
 create mode 100644 tools/binman/test/186_compress_extra.dts

Regards,
Simon

             reply	other threads:[~2020-10-30 19:13 UTC|newest]

Thread overview: 154+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-30 19:13 Simon Glass [this message]
2020-10-31  2:54 ` 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-10-18 11:34 Simon Glass
2022-10-18 13:47 ` 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-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='CAPnjgZ0BY-m4a6k=Jdjj_Y3icn9uXLYKNQ8qzw6ZCoLhyt6YCQ@mail.gmail.com' \
    --to=sjg@chromium.org \
    --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.