All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kever Yang <kever.yang@rock-chips.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/22] spl: Add features for passing info from SPL to U-Boot proper
Date: Mon, 8 Oct 2018 10:30:10 +0800	[thread overview]
Message-ID: <36895375-25bf-a4dd-b19a-ef267a2a4760@rock-chips.com> (raw)
In-Reply-To: <20180926215520.87168-1-sjg@chromium.org>

Hi Simon,


On 09/27/2018 05:54 AM, Simon Glass wrote:
> At present we have no standard way of passing information from SPL to
> U-Boot. Such information may be the size of DRAM banks or some information
> about the reset state of the machine,for example.
>
> This series first adds a bloblist, which allows a list of 'blobs' to be
> created, each with a tag so that subsystems can store data and retrieve it
> later. Then it adds the SPL 'handoff' information, which uses bloblist.

It's great to see this patch set, because Rockchip U-Boot is also
implementing this
kind of feature recently, my plan was send it upstream after we run in a
good result.
We have some discussion in our team,  and we chose ATAGs instead of a new
format of data structure at last, fdt is another candidate, but we think
it is too
complicated for those TINY sram SoCs.
The information we need to passing including:
- DRAM size from TPL/SPL;
- boot device from bootrom which can be read only in TPL/SPL;
- DRAM reserved space in TRUST(ATF, OP-TEE), which means we need to modify;
- other info which may help U-Boot, for example, we may able to skip
MMC/SD init
    if we can get enough info for controller setting;

Thanks,
- Kever
> Various minor sandbox enhancements are provided to make this easier, or to
> support testing.
>
>
> Simon Glass (22):
>   log: Correct definition of log_msg_ret()
>   spl: Add support for logging in SPL and TPL
>   Add core support for a bloblist to convey data from SPL
>   spl: Set up the bloblist in SPL
>   bloblist: Locate bloblist in U-Boot
>   test: Add a simple test for bloblist
>   Add bloblist documentation
>   spl: Support hash, input, pch, pci, rtc, tpm in SPL
>   spl: Add a define for SPL_TPL_PROMPT
>   spl: Make SPL_DISABLE_BANNER_PRINT a positive option
>   spl: Add a comment to spl_set_bd()
>   spl: Print a message if we are unable to load an image
>   sandbox: Add a memory map to the sandbox README
>   test/py: Add a way to pass flags to sandbox
>   sandbox: Add an option to display of-platdata in SPL
>   sandbox: Add a new 'sb' command
>   sandbox: Allow puts() output before global_data is set up
>   sandbox: Refactor code to create os_jump_to_file()
>   sandbox: Use malloc() and free() from os layer
>   sandbox: Filter arguments when starting U-Boot
>   sandbox: Boot in U-Boot through the standard call
>   spl: Add support for passing handoff info to U-Boot proper
>
>  arch/Kconfig                       |   1 +
>  arch/powerpc/include/asm/spl.h     |   3 -
>  arch/sandbox/cpu/eth-raw-os.c      |   9 +-
>  arch/sandbox/cpu/os.c              | 115 +++++++++-----
>  arch/sandbox/cpu/spl.c             |  31 +++-
>  arch/sandbox/cpu/start.c           |  19 +++
>  arch/sandbox/cpu/u-boot-spl.lds    |   2 +-
>  arch/sandbox/include/asm/handoff.h |  18 +++
>  arch/sandbox/include/asm/state.h   |   8 +
>  board/sandbox/README.sandbox       |  14 +-
>  cmd/Makefile                       |   1 +
>  cmd/host.c                         |   5 -
>  cmd/sb.c                           |  65 ++++++++
>  common/Kconfig                     |  84 +++++++++-
>  common/Makefile                    |   5 +-
>  common/bloblist.c                  | 239 +++++++++++++++++++++++++++++
>  common/board_f.c                   |  47 ++++++
>  common/console.c                   |   7 +
>  common/init/Makefile               |   1 +
>  common/init/handoff.c              |  47 ++++++
>  common/spl/Kconfig                 |  95 +++++++++++-
>  common/spl/spl.c                   | 142 +++++++++++++----
>  configs/sandbox_spl_defconfig      |   1 +
>  doc/README.bloblist                |  82 ++++++++++
>  drivers/Makefile                   |  11 +-
>  include/asm-generic/global_data.h  |   7 +
>  include/bloblist.h                 | 194 +++++++++++++++++++++++
>  include/handoff.h                  |  36 +++++
>  include/log.h                      |  10 +-
>  include/spl.h                      |  41 +++++
>  include/test/suites.h              |   1 +
>  test/Makefile                      |   1 +
>  test/bloblist.c                    | 187 ++++++++++++++++++++++
>  test/cmd_ut.c                      |   3 +
>  test/py/tests/test_handoff.py      |  14 ++
>  test/py/tests/test_ofplatdata.py   |  31 +++-
>  test/py/u_boot_console_base.py     |   2 +-
>  test/py/u_boot_console_sandbox.py  |  18 ++-
>  test/run                           |   2 +-
>  39 files changed, 1497 insertions(+), 102 deletions(-)
>  create mode 100644 arch/sandbox/include/asm/handoff.h
>  create mode 100644 cmd/sb.c
>  create mode 100644 common/bloblist.c
>  create mode 100644 common/init/handoff.c
>  create mode 100644 doc/README.bloblist
>  create mode 100644 include/bloblist.h
>  create mode 100644 include/handoff.h
>  create mode 100644 test/bloblist.c
>  create mode 100644 test/py/tests/test_handoff.py
>

  parent reply	other threads:[~2018-10-08  2:30 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-26 21:54 [U-Boot] [PATCH 00/22] spl: Add features for passing info from SPL to U-Boot proper Simon Glass
2018-09-26 21:54 ` [U-Boot] [PATCH 01/22] log: Correct definition of log_msg_ret() Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 02/22] spl: Add support for logging in SPL and TPL Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 03/22] Add core support for a bloblist to convey data from SPL Simon Glass
2018-09-27  4:54   ` Andreas Dannenberg
2018-10-02 11:21     ` Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 04/22] spl: Set up the bloblist in SPL Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 05/22] bloblist: Locate bloblist in U-Boot Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 06/22] test: Add a simple test for bloblist Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 07/22] Add bloblist documentation Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 08/22] spl: Support hash, input, pch, pci, rtc, tpm in SPL Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 09/22] spl: Add a define for SPL_TPL_PROMPT Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 10/22] spl: Make SPL_DISABLE_BANNER_PRINT a positive option Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 11/22] spl: Add a comment to spl_set_bd() Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 12/22] spl: Print a message if we are unable to load an image Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 13/22] sandbox: Add a memory map to the sandbox README Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 14/22] test/py: Add a way to pass flags to sandbox Simon Glass
2018-10-01 15:59   ` Stephen Warren
2018-09-26 21:55 ` [U-Boot] [PATCH 15/22] sandbox: Add an option to display of-platdata in SPL Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 16/22] sandbox: Add a new 'sb' command Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 17/22] sandbox: Allow puts() output before global_data is set up Simon Glass
2018-09-26 22:24   ` Joe Hershberger
2018-09-26 21:55 ` [U-Boot] [PATCH 18/22] sandbox: Refactor code to create os_jump_to_file() Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 19/22] sandbox: Use malloc() and free() from os layer Simon Glass
2018-09-26 22:22   ` Joe Hershberger
2018-09-26 21:55 ` [U-Boot] [PATCH 20/22] sandbox: Filter arguments when starting U-Boot Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 21/22] sandbox: Boot in U-Boot through the standard call Simon Glass
2018-09-26 21:55 ` [U-Boot] [PATCH 22/22] spl: Add support for passing handoff info to U-Boot proper Simon Glass
2018-10-01 13:06 ` [U-Boot] [PATCH 00/22] spl: Add features for passing info from SPL " Lukasz Majewski
2018-10-01 17:32   ` Simon Glass
2018-10-08  2:30 ` Kever Yang [this message]
2018-10-09  3:40   ` Simon Glass

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=36895375-25bf-a4dd-b19a-ef267a2a4760@rock-chips.com \
    --to=kever.yang@rock-chips.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.