All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] Various minor clean-ups and improvements
@ 2021-01-14  3:29 Simon Glass
  2021-01-14  3:29 ` [PATCH 01/17] doc: Correct documentation for uclass_root Simon Glass
                   ` (16 more replies)
  0 siblings, 17 replies; 45+ messages in thread
From: Simon Glass @ 2021-01-14  3:29 UTC (permalink / raw)
  To: u-boot

This series includes a collection of things noticed while bringing up
verified boot on Coral.

It includes support for relocating the bloblist.


Simon Glass (17):
  doc: Correct documentation for uclass_root
  spl: Add functions for next and previous phase
  bloblist: Support relocating to a larger space
  bloblist: Add missing tag names
  x86: tsc_timer: Correct overflow in __udelay()
  video: Allow syncing the entire framebuffer to the copy
  net: Use CONFIG_IS_ENABLED() in eth_dev_get_mac_address()
  fdtdec: Update the missing-devicetree message
  fdtdec: Use CONFIG_IS_ENABLED in board_fdt_blob_setup()
  display_options: Use USE_TINY_PRINTF for SPL check
  uuid: Add a comment for UUID_STR_LEN
  mmc: pci_mmc: Only generate ACPI code for the SD card
  x86: coral: Add a devicetree node for eMMC
  mmc: pci_mmc: Set the removable flag
  crc32: Exclude crc32 from TPL
  binman: Move selection of the binman node into a function
  binman: Allow reading entries from a subnode

 arch/x86/dts/chromebook_coral.dts |  6 +++
 common/Kconfig                    | 10 +++++
 common/bloblist.c                 | 17 +++++++++
 common/board_f.c                  | 10 +++--
 common/spl/spl.c                  |  2 +-
 drivers/mmc/pci_mmc.c             | 19 +++++++++-
 drivers/timer/tsc_timer.c         |  2 +-
 drivers/video/video-uclass.c      | 10 +++++
 include/asm-generic/global_data.h |  4 +-
 include/binman.h                  | 14 +++++++
 include/bloblist.h                | 10 +++++
 include/spl.h                     | 53 +++++++++++++++++++++++++++
 include/uuid.h                    |  1 +
 include/video.h                   | 14 +++++++
 lib/Makefile                      |  2 +
 lib/binman.c                      | 61 ++++++++++++++++++++++++++-----
 lib/display_options.c             |  9 ++---
 lib/fdtdec.c                      |  5 ++-
 net/eth-uclass.c                  |  2 +-
 test/bloblist.c                   | 36 ++++++++++++++++++
 20 files changed, 260 insertions(+), 27 deletions(-)

-- 
2.30.0.284.gd98b1dd5eaa7-goog

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

end of thread, other threads:[~2021-02-14 20:25 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-14  3:29 [PATCH 00/17] Various minor clean-ups and improvements Simon Glass
2021-01-14  3:29 ` [PATCH 01/17] doc: Correct documentation for uclass_root Simon Glass
2021-01-14  3:29 ` [PATCH 02/17] spl: Add functions for next and previous phase Simon Glass
2021-01-28 23:57   ` Tom Rini
2021-01-14  3:29 ` [PATCH 03/17] bloblist: Support relocating to a larger space Simon Glass
2021-01-28 23:57   ` Tom Rini
2021-01-14  3:29 ` [PATCH 04/17] bloblist: Add missing tag names Simon Glass
2021-01-28 23:57   ` Tom Rini
2021-01-14  3:29 ` [PATCH 05/17] x86: tsc_timer: Correct overflow in __udelay() Simon Glass
2021-02-01  6:10   ` Bin Meng
2021-02-01  6:12     ` Bin Meng
2021-01-14  3:29 ` [PATCH 06/17] video: Allow syncing the entire framebuffer to the copy Simon Glass
2021-01-28 23:57   ` Tom Rini
2021-01-14  3:29 ` [PATCH 07/17] net: Use CONFIG_IS_ENABLED() in eth_dev_get_mac_address() Simon Glass
2021-01-28 23:57   ` Tom Rini
2021-01-14  3:29 ` [PATCH 08/17] fdtdec: Update the missing-devicetree message Simon Glass
2021-01-28 23:57   ` Tom Rini
2021-01-14  3:29 ` [PATCH 09/17] fdtdec: Use CONFIG_IS_ENABLED in board_fdt_blob_setup() Simon Glass
2021-01-28 23:58   ` Tom Rini
2021-02-14 18:50     ` Peter Robinson
2021-02-14 19:05       ` Jesper Schmitz Mouridsen
2021-02-14 19:08         ` Tom Rini
2021-02-14 19:10           ` Tom Rini
2021-02-14 19:20             ` Peter Robinson
2021-02-14 20:25               ` Tom Rini
2021-01-14  3:29 ` [PATCH 10/17] display_options: Use USE_TINY_PRINTF for SPL check Simon Glass
2021-01-28 23:58   ` Tom Rini
2021-01-14  3:29 ` [PATCH 11/17] uuid: Add a comment for UUID_STR_LEN Simon Glass
2021-01-28 23:58   ` Tom Rini
2021-01-14  3:29 ` [PATCH 12/17] mmc: pci_mmc: Only generate ACPI code for the SD card Simon Glass
2021-01-14 21:48   ` Jaehoon Chung
2021-01-28 23:58   ` Tom Rini
2021-01-14  3:29 ` [PATCH 13/17] x86: coral: Add a devicetree node for eMMC Simon Glass
2021-01-14 21:48   ` Jaehoon Chung
2021-02-01  6:11   ` Bin Meng
2021-02-01  6:13     ` Bin Meng
2021-01-14  3:29 ` [PATCH 14/17] mmc: pci_mmc: Set the removable flag Simon Glass
2021-01-14 21:48   ` Jaehoon Chung
2021-01-28 23:58   ` Tom Rini
2021-01-14  3:29 ` [PATCH 15/17] crc32: Exclude crc32 from TPL Simon Glass
2021-01-28 23:58   ` Tom Rini
2021-01-14  3:29 ` [PATCH 16/17] binman: Move selection of the binman node into a function Simon Glass
2021-01-28 23:58   ` Tom Rini
2021-01-14  3:29 ` [PATCH 17/17] binman: Allow reading entries from a subnode Simon Glass
2021-01-28 23:58   ` 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.