public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v6 0/5] Add gdsys ControlCenter Digital board
@ 2013-06-12  8:08 dirk.eibach at gdsys.cc
  2013-06-12  8:08 ` [U-Boot] [PATCH v6 1/5] tpm: add AUTH1 cmds for LoadKey2 and GetPubKey dirk.eibach at gdsys.cc
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: dirk.eibach at gdsys.cc @ 2013-06-12  8:08 UTC (permalink / raw)
  To: u-boot

From: Dirk Eibach <dirk.eibach@gdsys.cc>



Changes in v6:
- Add CONFIG_PCI_INDIRECT_BRIDGE to controlcenterd.h
- Add MAINTAINERS entry
- drop "mpc85xx: Add CONFIG_RELEASE_CORE0_ONLY" and use mp_holdoff instead
- rename CONFIG_ATMEL_TWI_TPM to CONFIG_TPM_ATMEL_TWI
- rename drivers/tpm/atmel_twi_tpm.c to drivers/tpm/tpm_atmel_twi.c
- replace DEBUG_ATMEL_TWI_TPM, simply use DEBUG
- sort drivers/tpm/Makefile
- timeout on waiting for TPM reply

Changes in v5:
- avoid probing dp501 i2c bridge addresses
- fix i2c_probe

Changes in v4:
- consider CONFIG_CMD_BOOTM for all architectures

Changes in v3:
- fix email addresses

Changes in v2:
- configuration for SPI builds was missing
- replace some numeric constants with named constants
- style fixes (as shown by checkpatch.pl) in common/cmd_tpm.c and lib/tpm.c
- whitespace fixes

Dirk Eibach (3):
  Add Atmel I2C tpm
  Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM
  mpc85xx: Add gdsys ControlCenter Digital board

Reinhard Pfau (2):
  tpm: add AUTH1 cmds for LoadKey2 and GetPubKey
  i2c: fsl_i2c: i2c_read(): dont try to write address w/ alen=0

 .checkpatch.conf                      |    4 +-
 MAINTAINERS                           |    3 +-
 README                                |   17 +
 arch/arm/lib/Makefile                 |    2 +-
 arch/avr32/lib/Makefile               |    2 +-
 arch/m68k/lib/Makefile                |    2 +-
 arch/microblaze/lib/Makefile          |    2 +-
 arch/mips/lib/Makefile                |    4 +-
 arch/nds32/lib/Makefile               |    3 +-
 arch/nios2/lib/Makefile               |    2 +-
 arch/openrisc/lib/Makefile            |    2 +-
 arch/powerpc/lib/Makefile             |    2 +-
 arch/sh/lib/Makefile                  |    2 +-
 arch/sparc/lib/Makefile               |    3 +-
 arch/x86/lib/Makefile                 |    2 +-
 board/gdsys/common/Makefile           |    1 +
 board/gdsys/common/dp501.c            |  107 +++
 board/gdsys/common/dp501.h            |   30 +
 board/gdsys/p1022/Makefile            |   37 +
 board/gdsys/p1022/controlcenterd-id.c | 1205 +++++++++++++++++++++++++++++++++
 board/gdsys/p1022/controlcenterd-id.h |   29 +
 board/gdsys/p1022/controlcenterd.c    |  447 ++++++++++++
 board/gdsys/p1022/ddr.c               |   71 ++
 board/gdsys/p1022/diu.c               |   87 +++
 board/gdsys/p1022/law.c               |   20 +
 board/gdsys/p1022/sdhc_boot.c         |   63 ++
 board/gdsys/p1022/tlb.c               |   77 +++
 boards.cfg                            |    7 +
 common/cmd_tpm.c                      |  100 +++
 drivers/i2c/fsl_i2c.c                 |    9 +-
 drivers/tpm/Makefile                  |    1 +
 drivers/tpm/tpm_atmel_twi.c           |  121 ++++
 include/configs/controlcenterd.h      |  528 +++++++++++++++
 include/tpm.h                         |  174 +++++
 lib/tpm.c                             |  351 +++++++++-
 35 files changed, 3497 insertions(+), 20 deletions(-)
 create mode 100644 board/gdsys/common/dp501.c
 create mode 100644 board/gdsys/common/dp501.h
 create mode 100644 board/gdsys/p1022/Makefile
 create mode 100644 board/gdsys/p1022/controlcenterd-id.c
 create mode 100644 board/gdsys/p1022/controlcenterd-id.h
 create mode 100644 board/gdsys/p1022/controlcenterd.c
 create mode 100644 board/gdsys/p1022/ddr.c
 create mode 100644 board/gdsys/p1022/diu.c
 create mode 100644 board/gdsys/p1022/law.c
 create mode 100644 board/gdsys/p1022/sdhc_boot.c
 create mode 100644 board/gdsys/p1022/tlb.c
 create mode 100644 drivers/tpm/tpm_atmel_twi.c
 create mode 100644 include/configs/controlcenterd.h

-- 
1.8.3

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

end of thread, other threads:[~2013-06-20 13:06 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-12  8:08 [U-Boot] [PATCH v6 0/5] Add gdsys ControlCenter Digital board dirk.eibach at gdsys.cc
2013-06-12  8:08 ` [U-Boot] [PATCH v6 1/5] tpm: add AUTH1 cmds for LoadKey2 and GetPubKey dirk.eibach at gdsys.cc
2013-06-12 21:29   ` Che-liang Chiou
2013-06-12  8:08 ` [U-Boot] [PATCH v6 2/5] i2c: fsl_i2c: i2c_read(): dont try to write address w/ alen=0 dirk.eibach at gdsys.cc
2013-06-20  4:59   ` Heiko Schocher
2013-06-12  8:08 ` [U-Boot] [PATCH v6 3/5] Add Atmel I2C tpm dirk.eibach at gdsys.cc
2013-06-12  8:08 ` [U-Boot] [PATCH v6 4/5] Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM dirk.eibach at gdsys.cc
2013-06-19 21:49   ` Andy Fleming
2013-06-20  6:56     ` Dirk Eibach
2013-06-20 13:06       ` Dirk Eibach
2013-06-12  8:08 ` [U-Boot] [PATCH v6 5/5] mpc85xx: Add gdsys ControlCenter Digital board dirk.eibach at gdsys.cc
2013-06-12 18:12   ` Wolfgang Denk

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