public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/17] Various patches in common/
@ 2012-11-03  0:27 Simon Glass
  2012-11-03  0:27 ` [U-Boot] [PATCH 01/17] arm: Add new bootstage step for the main loop Simon Glass
                   ` (16 more replies)
  0 siblings, 17 replies; 43+ messages in thread
From: Simon Glass @ 2012-11-03  0:27 UTC (permalink / raw)
  To: u-boot

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

-- 
1.7.7.3

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

end of thread, other threads:[~2012-11-22 14:48 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-03  0:27 [U-Boot] [PATCH 0/17] Various patches in common/ Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 01/17] arm: Add new bootstage step for the main loop Simon Glass
2012-11-03 15:12   ` Wolfgang Denk
2012-11-07  0:54     ` Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 02/17] Add gettime command Simon Glass
2012-11-03  8:22   ` Luka Perkov
2012-11-15 22:23     ` Simon Glass
2012-11-03 15:24   ` Wolfgang Denk
2012-11-15 22:15     ` Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 03/17] Add a command to read raw blocks from a partition Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 04/17] Fix use of conditional LMB Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 05/17] stdio: remove useless strncpy Simon Glass
2012-11-03 15:31   ` Wolfgang Denk
2012-11-15 22:25     ` Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 06/17] env: Add the ability to merge the saved env with the default Simon Glass
2012-11-03 15:28   ` Wolfgang Denk
2012-11-07  0:53     ` Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 07/17] Add coreboot version to u-boot's version command Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 08/17] Update time command to avoid using get_timer_masked() Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 09/17] Add sha256 command for hashing Simon Glass
2012-11-03 15:23   ` Wolfgang Denk
2012-11-22 14:48     ` Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 10/17] edid: Library of EDID decode and print Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 11/17] edid: Add I2C command for printing the EDID Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 12/17] fdt: edid: Enable fdt_add_edid() function when CONFIG_LCD defined Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 13/17] mmc: Fix incorrect handling of 'read' & 'write' commands Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 14/17] console: Call overwrite_console before searching for console devices Simon Glass
2012-11-03 15:32   ` Wolfgang Denk
2012-11-07 21:28     ` Simon Glass
2012-11-08 10:33       ` Wolfgang Denk
2012-11-03  0:27 ` [U-Boot] [PATCH 15/17] Add console command to access io space registers Simon Glass
2012-11-03 15:26   ` Wolfgang Denk
2012-11-15 23:28     ` Vadim Bendebury
2012-11-03  0:27 ` [U-Boot] [PATCH 16/17] console: Enable function to display console info Simon Glass
2012-11-03 15:15   ` Wolfgang Denk
2012-11-15 23:24     ` Simon Glass
2012-11-03  0:27 ` [U-Boot] [PATCH 17/17] tpm: Add TPM stress test Simon Glass
2012-11-03 15:29   ` Wolfgang Denk
2012-11-03 20:40     ` Simon Glass
2012-11-19 23:50       ` Marek Vasut
2012-11-20  1:11         ` Simon Glass
2012-11-20  2:16           ` Marek Vasut
2012-11-20  7:04           ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox