nyan: Add jtag config file
To reenable JTAG on security mode, chip unique id needs to be built into bct. BUG=chrome-os-partner:27525 BRANCH=None TEST=build nyan and verifed chip uid is built in. Change-Id: I4f7d2136c2a7ed3254224f80316a69bc34c7245b Signed-off-by: Jimmy Zhang <jimmzhang@nvidia.com> Reviewed-on: https://chromium-review.googlesource.com/193076 Reviewed-by: Gabe Black <gabeblack@chromium.org>
This commit is contained in:
parent
bc01877020
commit
bf2f728343
6 changed files with 51 additions and 0 deletions
|
|
@ -20,6 +20,7 @@
|
|||
bct-cfg-$(CONFIG_NYAN_BCT_CFG_EMMC) += emmc.cfg
|
||||
bct-cfg-$(CONFIG_NYAN_BCT_CFG_SPI) += spi.cfg
|
||||
bct-cfg-y += odmdata.cfg
|
||||
bct-cfg-y += jtag.cfg
|
||||
|
||||
# Note when SDRAM config (sdram-*.cfg) files are changed, we have to regenerate
|
||||
# the include files (sdram-*.inc) by running "./cfg2inc.sh sdram-*.cfg".
|
||||
|
|
|
|||
16
src/mainboard/google/nyan/bct/jtag.cfg
Normal file
16
src/mainboard/google/nyan/bct/jtag.cfg
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#
|
||||
# Set JtagCtrl to 1 to reenable Jtag
|
||||
#
|
||||
JtagCtrl = 0;
|
||||
#
|
||||
# Fill in chip unique id
|
||||
#
|
||||
# ChipUid can be found by running tegrarcm in tegra recovery mode
|
||||
# (also hooking up A-A USB cable) and looking for console output
|
||||
# on line starting with "Chip UID:"
|
||||
#
|
||||
# Command example:
|
||||
# $ sudo tegrarcm --bct=/build/nyan/firmware/bct/board.bct --bootloader=/build/nyan/firmware/u-boot.bin --loadaddr=0x80108000
|
||||
# Where board.bct and u-boot.bin do not have to be prebuilt.
|
||||
#
|
||||
ChipUid = 0x00000000000000000000000000000000;
|
||||
|
|
@ -20,6 +20,7 @@
|
|||
bct-cfg-$(CONFIG_NYAN_BIG_BCT_CFG_EMMC) += emmc.cfg
|
||||
bct-cfg-$(CONFIG_NYAN_BIG_BCT_CFG_SPI) += spi.cfg
|
||||
bct-cfg-y += odmdata.cfg
|
||||
bct-cfg-y += jtag.cfg
|
||||
|
||||
# Note when SDRAM config (sdram-*.cfg) files are changed, we have to regenerate
|
||||
# the include files (sdram-*.inc). See ../../nyan/bct/Makefile.inc for more
|
||||
|
|
|
|||
16
src/mainboard/google/nyan_big/bct/jtag.cfg
Normal file
16
src/mainboard/google/nyan_big/bct/jtag.cfg
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#
|
||||
# Set JtagCtrl to 1 to reenable Jtag
|
||||
#
|
||||
JtagCtrl = 0;
|
||||
#
|
||||
# Fill in chip unique id
|
||||
#
|
||||
# ChipUid can be found by running tegrarcm in tegra recovery mode
|
||||
# (also hooking up A-A USB cable) and looking for console output
|
||||
# on line starting with "Chip UID:"
|
||||
#
|
||||
# Command example:
|
||||
# $ sudo tegrarcm --bct=/build/nyan/firmware/bct/board.bct --bootloader=/build/nyan/firmware/u-boot.bin --loadaddr=0x80108000
|
||||
# Where board.bct and u-boot.bin do not have to be prebuilt.
|
||||
#
|
||||
ChipUid = 0x00000000000000000000000000000000;
|
||||
|
|
@ -20,6 +20,7 @@
|
|||
bct-cfg-$(CONFIG_NYAN_BLAZE_BCT_CFG_EMMC) += emmc.cfg
|
||||
bct-cfg-$(CONFIG_NYAN_BLAZE_BCT_CFG_SPI) += spi.cfg
|
||||
bct-cfg-y += odmdata.cfg
|
||||
bct-cfg-y += jtag.cfg
|
||||
|
||||
# Note when SDRAM config (sdram-*.cfg) files are changed, we have to regenerate
|
||||
# the include files (sdram-*.inc). See ../../nyan/bct/Makefile.inc for more
|
||||
|
|
|
|||
16
src/mainboard/google/nyan_blaze/bct/jtag.cfg
Normal file
16
src/mainboard/google/nyan_blaze/bct/jtag.cfg
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#
|
||||
# Set JtagCtrl to 1 to reenable Jtag
|
||||
#
|
||||
JtagCtrl = 0;
|
||||
#
|
||||
# Fill in chip unique id
|
||||
#
|
||||
# ChipUid can be found by running tegrarcm in tegra recovery mode
|
||||
# (also hooking up A-A USB cable) and looking for console output
|
||||
# on line starting with "Chip UID:"
|
||||
#
|
||||
# Command example:
|
||||
# $ sudo tegrarcm --bct=/build/nyan/firmware/bct/board.bct --bootloader=/build/nyan/firmware/u-boot.bin --loadaddr=0x80108000
|
||||
# Where board.bct and u-boot.bin do not have to be prebuilt.
|
||||
#
|
||||
ChipUid = 0x00000000000000000000000000000000;
|
||||
Loading…
Add table
Add a link
Reference in a new issue