Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
cdb8f1c8
Commit
cdb8f1c8
authored
Sep 28, 2015
by
Achin Gupta
Browse files
Merge pull request #398 from achingupta/vk/fix_bakery_lock_size
Fix relocation of __PERCPU_BAKERY_LOCK_SIZE__ in PR #390
parents
a6ef882c
7173f5f6
Changes
2
Hide whitespace changes
Inline
Side-by-side
bl31/bl31.ld.S
View file @
cdb8f1c8
...
...
@@ -124,7 +124,7 @@ SECTIONS
__BAKERY_LOCK_START__
=
.
;
*(
bakery_lock
)
.
=
ALIGN
(
CACHE_WRITEBACK_GRANULE
)
;
__PERCPU_BAKERY_LOCK_SIZE__
=
.
-
__BAKERY_LOCK_START__
;
__PERCPU_BAKERY_LOCK_SIZE__
=
ABSOLUTE
(
.
-
__BAKERY_LOCK_START__
)
;
.
=
.
+
(
__PERCPU_BAKERY_LOCK_SIZE__
*
(
PLATFORM_CORE_COUNT
-
1
))
;
__BAKERY_LOCK_END__
=
.
;
#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
...
...
docs/porting-guide.md
View file @
cdb8f1c8
...
...
@@ -1153,11 +1153,23 @@ of the system counter, which is retrieved from the first entry in the frequency
modes table.
*
**#define : PLAT_PERCPU_BAKERY_LOCK_SIZE**
[optional]
It is used if the bakery locks are using normal memory. It defines the memory
(in bytes) to be allocated for the bakery locks and needs to be a multiple of
cache line size.
### #define : PLAT_PERCPU_BAKERY_LOCK_SIZE [optional]
When
`USE_COHERENT_MEM = 0`
, this constant defines the total memory (in
bytes) aligned to the cache line boundary that should be allocated per-cpu to
accommodate all the bakery locks.
If this constant is not defined when
`USE_COHERENT_MEM = 0`
, the linker
calculates the size of the
`bakery_lock`
input section, aligns it to the
nearest
`CACHE_WRITEBACK_GRANULE`
, multiplies it with
`PLATFORM_CORE_COUNT`
and stores the result in a linker symbol. This constant prevents a platform
from relying on the linker and provide a more efficient mechanism for
accessing per-cpu bakery lock information.
If this constant is defined and its value is not equal to the value
calculated by the linker then a link time assertion is raised. A compile time
assertion is raised if the value of the constant is not aligned to the cache
line boundary.
3.
3 Power State Coordination Interface (in BL3-1)
------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment