summaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authorJimmy Zhang <jimmzhang@nvidia.com>2015-03-20 17:20:19 -0700
committerStephen Warren <swarren@nvidia.com>2015-03-25 08:21:16 -0600
commit623a1ad096ec4a39e4cbd6dcff9bef8ce74359e6 (patch)
treef95c65aabd57683b562149aa82bf681e420022fb /src/parse.c
parent2065a9d21994bf8e90cfc7dd7a6b7ce556df5448 (diff)
downloadnvidia-cbootimage-623a1ad096ec4a39e4cbd6dcff9bef8ce74359e6.tar.gz
Add support for Tegra210
This patch adds support for Tegra210. The command option is --soc tegra210 or -s tegra210 T210 specific files are added under src/t210 directory. Main changes from earlier soc are many new fileds are added to structure nvboot_sdram_params and the number of boot devices that can be defined within bct is reduced from 4 to 1. Signed-off-by: Jimmy Zhang <jimmzhang@nvidia.com> Tested-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse.c b/src/parse.c
index f866ad5..8c98244 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -115,6 +115,7 @@ static parse_item s_top_level_items[] = {
{ "OdmData=", token_odm_data, parse_value_u32 },
{ "ChipUid=", token_unique_chip_id, parse_value_chipuid },
{ "JtagCtrl=", token_secure_jtag_control, parse_value_u32 },
+ { "DebugCtrl=", token_secure_debug_control, parse_value_u32 },
{ NULL, 0, NULL } /* Must be last */
};