diff options
author | danh-arm <dan.handley@arm.com> | 2016-03-09 08:44:47 +0000 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2016-03-09 08:44:47 +0000 |
commit | 5e3120d152444137a8289249f506e1971859e493 (patch) | |
tree | b0f55e769de67f65d2fca41bf14f5594d797cd75 /docs | |
parent | 0476ea63ec226d15bf16ef1674ee95d781cd8e6b (diff) | |
parent | e5846732e36272a7a387f088092becd0d46461b5 (diff) |
Merge pull request #540 from antonio-nino-diaz-arm/an/porting_guide
Porting guide: Clarify API that don't follow AAPCS
Diffstat (limited to 'docs')
-rw-r--r-- | docs/porting-guide.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/porting-guide.md b/docs/porting-guide.md index 004f70d6..741ee207 100644 --- a/docs/porting-guide.md +++ b/docs/porting-guide.md @@ -654,7 +654,8 @@ CPU-specific linear index into blocks of memory (for example while allocating per-CPU stacks). This function will be invoked very early in the initialization sequence which mandates that this function should be implemented in assembly and should not rely on the avalability of a C -runtime environment. +runtime environment. This function can clobber x0 - x8 and must preserve +x9 - x29. This function plays a crucial role in the power domain topology framework in PSCI and details of this can be found in [Power Domain Topology Design]. |