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
1122e246
Commit
1122e246
authored
Jun 27, 2014
by
Andrew Thoelke
Browse files
Merge pull request #155 from athoelke/at/support-foundation-v2.1
Support later revisions of the Foundation FVP
parents
5e0f9bde
90e31479
Changes
2
Show whitespace changes
Inline
Side-by-side
plat/fvp/aarch64/fvp_common.c
View file @
1122e246
...
@@ -131,8 +131,10 @@ int fvp_config_setup(void)
...
@@ -131,8 +131,10 @@ int fvp_config_setup(void)
bld
=
(
sys_id
>>
SYS_ID_BLD_SHIFT
)
&
SYS_ID_BLD_MASK
;
bld
=
(
sys_id
>>
SYS_ID_BLD_SHIFT
)
&
SYS_ID_BLD_MASK
;
arch
=
(
sys_id
>>
SYS_ID_ARCH_SHIFT
)
&
SYS_ID_ARCH_MASK
;
arch
=
(
sys_id
>>
SYS_ID_ARCH_SHIFT
)
&
SYS_ID_ARCH_MASK
;
if
((
rev
!=
REV_FVP
)
||
(
arch
!=
ARCH_MODEL
))
if
(
arch
!=
ARCH_MODEL
)
{
ERROR
(
"This firmware is for FVP models
\n
"
);
panic
();
panic
();
}
/*
/*
* The build field in the SYS_ID tells which variant of the GIC
* The build field in the SYS_ID tells which variant of the GIC
...
@@ -152,7 +154,8 @@ int fvp_config_setup(void)
...
@@ -152,7 +154,8 @@ int fvp_config_setup(void)
fvp_config
[
CONFIG_GICV_ADDR
]
=
BASE_GICV_BASE
;
fvp_config
[
CONFIG_GICV_ADDR
]
=
BASE_GICV_BASE
;
break
;
break
;
default:
default:
assert
(
0
);
ERROR
(
"Unsupported board build %x
\n
"
,
bld
);
panic
();
}
}
/*
/*
...
@@ -167,6 +170,19 @@ int fvp_config_setup(void)
...
@@ -167,6 +170,19 @@ int fvp_config_setup(void)
fvp_config
[
CONFIG_BASE_MMAP
]
=
0
;
fvp_config
[
CONFIG_BASE_MMAP
]
=
0
;
fvp_config
[
CONFIG_HAS_CCI
]
=
0
;
fvp_config
[
CONFIG_HAS_CCI
]
=
0
;
fvp_config
[
CONFIG_HAS_TZC
]
=
0
;
fvp_config
[
CONFIG_HAS_TZC
]
=
0
;
/*
* Check for supported revisions of Foundation FVP
* Allow future revisions to run but emit warning diagnostic
*/
switch
(
rev
)
{
case
REV_FOUNDATION_V2_0
:
case
REV_FOUNDATION_V2_1
:
break
;
default:
WARN
(
"Unrecognized Foundation FVP revision %x
\n
"
,
rev
);
break
;
}
break
;
break
;
case
HBI_FVP_BASE
:
case
HBI_FVP_BASE
:
midr_pn
=
(
read_midr
()
>>
MIDR_PN_SHIFT
)
&
MIDR_PN_MASK
;
midr_pn
=
(
read_midr
()
>>
MIDR_PN_SHIFT
)
&
MIDR_PN_MASK
;
...
@@ -180,9 +196,22 @@ int fvp_config_setup(void)
...
@@ -180,9 +196,22 @@ int fvp_config_setup(void)
fvp_config
[
CONFIG_BASE_MMAP
]
=
1
;
fvp_config
[
CONFIG_BASE_MMAP
]
=
1
;
fvp_config
[
CONFIG_HAS_CCI
]
=
1
;
fvp_config
[
CONFIG_HAS_CCI
]
=
1
;
fvp_config
[
CONFIG_HAS_TZC
]
=
1
;
fvp_config
[
CONFIG_HAS_TZC
]
=
1
;
/*
* Check for supported revisions
* Allow future revisions to run but emit warning diagnostic
*/
switch
(
rev
)
{
case
REV_FVP_BASE_V0
:
break
;
default:
WARN
(
"Unrecognized Base FVP revision %x
\n
"
,
rev
);
break
;
}
break
;
break
;
default:
default:
assert
(
0
);
ERROR
(
"Unsupported board HBI number 0x%x
\n
"
,
hbi
);
panic
();
}
}
return
0
;
return
0
;
...
...
plat/fvp/fvp_def.h
View file @
1122e246
/*
#
/*
* Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
*
*
* Redistribution and use in source and binary forms, with or without
* Redistribution and use in source and binary forms, with or without
...
@@ -151,9 +151,12 @@
...
@@ -151,9 +151,12 @@
#define SYS_ID_BLD_LENGTH 4
#define SYS_ID_BLD_LENGTH 4
#define REV_FVP 0x0
#define HBI_FVP_BASE 0x020
#define HBI_FVP_BASE 0x020
#define REV_FVP_BASE_V0 0x0
#define HBI_FOUNDATION 0x010
#define HBI_FOUNDATION 0x010
#define REV_FOUNDATION_V2_0 0x0
#define REV_FOUNDATION_V2_1 0x1
#define BLD_GIC_VE_MMAP 0x0
#define BLD_GIC_VE_MMAP 0x0
#define BLD_GIC_A53A57_MMAP 0x1
#define BLD_GIC_A53A57_MMAP 0x1
...
...
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