
This collection of patches to common/ adds the following:
- EDID support for LCD displays - TPM stress test - gettime command to find out the time since boot - Adds coreboot information to the 'version' command - Fixes LMB on x86 - Allows the console overwrite to be selected by board files - SHA256 hashing - Merging of saved environment variables with the default environment - Reading raw data from a partition of a block device
Also fixes a few minor bugs and tidy-ups.
ARUN MANKUZHI (1): Add sha256 command for hashing
Anton Staaf (2): Add gettime command console: Call overwrite_console before searching for console devices
Doug Anderson (1): env: Add the ability to merge the saved env with the default.
Kenneth Waters (1): Add a command to read raw blocks from a partition
Luigi Semenzato (1): tpm: Add TPM stress test
Simon Glass (4): arm: Add new bootstage step for the main loop Fix use of conditional LMB Update time command to avoid using get_timer_masked() console: Enable function to display console info
Stefan Reinauer (1): Add coreboot version to u-boot's version command
Taylor Hutt (1): mmc: Fix incorrect handling of 'read' & 'write' commands
Tom Wai-Hong Tam (3): edid: Library of EDID decode and print edid: Add I2C command for printing the EDID fdt: edid: Enable fdt_add_edid() function when CONFIG_LCD defined
Vadim Bendebury (1): Add console command to access io space registers
Vincent Palatin (1): stdio: remove useless strncpy
README | 17 +++ common/Makefile | 5 + common/cmd_bootm.c | 2 +- common/cmd_gettime.c | 56 +++++++++ common/cmd_i2c.c | 39 ++++++ common/cmd_io.c | 93 ++++++++++++++ common/cmd_mmc.c | 9 +- common/cmd_read.c | 81 ++++++++++++ common/cmd_sha256.c | 57 +++++++++ common/cmd_time.c | 5 +- common/cmd_tpm.c | 93 +++++++++++++- common/cmd_version.c | 7 +- common/console.c | 21 +++- common/edid.c | 307 ++++++++++++++++++++++++++++++++++++++++++++++ common/env_common.c | 25 ++++ common/fdt_support.c | 2 +- common/main.c | 2 + common/stdio.c | 1 - include/command.h | 8 +- include/config_cmd_all.h | 5 + include/edid.h | 275 +++++++++++++++++++++++++++++++++++++++++ 21 files changed, 1084 insertions(+), 26 deletions(-) create mode 100644 common/cmd_gettime.c create mode 100644 common/cmd_io.c create mode 100644 common/cmd_read.c create mode 100644 common/cmd_sha256.c create mode 100644 common/edid.c create mode 100644 include/edid.h