Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KED ARM trusted-firmware Fork
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KED Software Projects
Miscellaneous
KED ARM trusted-firmware Fork
Commits
0a81158f
Commit
0a81158f
authored
4 years ago
by
Manish Pandey
Committed by
TrustedFirmware Code Review
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge "plat/sgm775: Add support for dynamic config using fconf" into integration
parents
e97841eb
ebe1f2cf
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plat/arm/board/sgm775/fdts/sgm775_fw_config.dts
+12
-6
12 additions, 6 deletions
plat/arm/board/sgm775/fdts/sgm775_fw_config.dts
plat/arm/board/sgm775/platform.mk
+6
-1
6 additions, 1 deletion
plat/arm/board/sgm775/platform.mk
with
18 additions
and
7 deletions
plat/arm/board/sgm775/fdts/sgm775_fw_config.dts
+
12
−
6
View file @
0a81158f
...
...
@@ -18,12 +18,6 @@
max-size = <0x200>;
id = <TB_FW_CONFIG_ID>;
};
hw-config {
load-address = <0x0 0x83000000>;
max-size = <0x01000000>;
id = <HW_CONFIG_ID>;
};
};
tb_fw-config {
...
...
@@ -31,5 +25,17 @@
/* Disable authentication for development */
disable_auth = <0x0>;
/*
* The following two entries are placeholders for Mbed TLS
* heap information. The default values don't matter since
* they will be overwritten by BL1.
* In case of having shared Mbed TLS heap between BL1 and BL2,
* BL1 will populate these two properties with the respective
* info about the shared heap. This info will be available for
* BL2 in order to locate and re-use the heap.
*/
mbedtls_heap_addr = <0x0 0x0>;
mbedtls_heap_size = <0x0>;
};
};
This diff is collapsed.
Click to expand it.
plat/arm/board/sgm775/platform.mk
+
6
−
1
View file @
0a81158f
...
...
@@ -8,7 +8,12 @@ include plat/arm/css/sgm/sgm-common.mk
SGM775_BASE
=
plat/arm/board/sgm775
FDT_SOURCES
+=
${
SGM775_BASE
}
/fdts/sgm775_fw_config.dts
# Add the FDT_SOURCES and options for Dynamic Config
FDT_SOURCES
+=
${
SGM775_BASE
}
/fdts/
${
PLAT
}
_fw_config.dts
TB_FW_CONFIG
:=
${
BUILD_PLAT
}
/fdts/
${
PLAT
}
_fw_config.dtb
# Add the TB_FW_CONFIG to FIP and specify the same to certtool
$(
eval
$(
call TOOL_ADD_PAYLOAD,
${
TB_FW_CONFIG
}
,--tb-fw-config
))
PLAT_INCLUDES
+=
-I
${
SGM775_BASE
}
/include/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment