mirror of https://github.com/acidanthera/audk.git
ArmPlatformPkg/ArmVExpress-FVP-AArch64: Fixed number of cores and cluster for Base and Foundation models
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15430 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
79480c8d7c
commit
cddd490b23
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (c) 2011-2013, ARM Limited. All rights reserved.
|
||||
# Copyright (c) 2011-2014, ARM Limited. All rights reserved.
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
|
@ -80,8 +80,14 @@
|
|||
gArmPlatformTokenSpaceGuid.PcdFirmwareVendor|"ARM Fixed Virtual Platform"
|
||||
gEmbeddedTokenSpaceGuid.PcdEmbeddedPrompt|"ARM-FVP"
|
||||
|
||||
!ifndef ARM_FOUNDATION_FVP
|
||||
# Up to 8 cores on Base models. This works fine if model happens to have less.
|
||||
gArmPlatformTokenSpaceGuid.PcdCoreCount|8
|
||||
gArmPlatformTokenSpaceGuid.PcdClusterCount|2
|
||||
!else
|
||||
# Up to 4 cores on Foundation models. This works fine if model happens to have less.
|
||||
gArmPlatformTokenSpaceGuid.PcdCoreCount|4
|
||||
!endif
|
||||
|
||||
#
|
||||
# NV Storage PCDs. Use base of 0x0C000000 for NOR1
|
||||
|
|
Loading…
Reference in New Issue