mbox series

[v1,0/3] add elog support for broadcom NS3 soc

Message ID 20200517083257.22191-1-rayagonda.kokatanur@broadcom.com
Headers show
Series add elog support for broadcom NS3 soc | expand

Message

Rayagonda Kokatanur May 17, 2020, 8:32 a.m. UTC
This is fifth patch set series prepared on top of fourth
patch set ("add optee support for broadcom NS3 soc").

This patch adds support for error logging and corresponding command.

Sheetal Tigadoli (1):
  common: ns3: add error logging support

Vladimir Olovyannikov (2):
  board: ns3: kconfig: extend board kconfig with specific commands
  cmd: bcm: add broadcom error log setup command

 board/broadcom/bcmns3/Kconfig |   5 +
 cmd/Kconfig                   |   2 +
 cmd/Makefile                  |   2 +
 cmd/bcm/Kconfig               |  12 +
 cmd/bcm/Makefile              |   4 +
 cmd/bcm/elog.h                |  64 +++++
 cmd/bcm/logsetup.c            | 432 ++++++++++++++++++++++++++++++++++
 common/Kconfig                |   8 +
 common/Makefile               |   1 +
 common/bcm_elog.c             |  49 ++++
 common/console.c              |  22 ++
 configs/bcm_ns3_defconfig     |   1 +
 include/bcm_elog.h            |  37 +++
 13 files changed, 639 insertions(+)
 create mode 100644 cmd/bcm/Kconfig
 create mode 100644 cmd/bcm/Makefile
 create mode 100644 cmd/bcm/elog.h
 create mode 100644 cmd/bcm/logsetup.c
 create mode 100644 common/bcm_elog.c
 create mode 100644 include/bcm_elog.h