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
01460492
Unverified
Commit
01460492
authored
Jun 21, 2018
by
Dimitris Papastamos
Committed by
GitHub
Jun 21, 2018
Browse files
Merge pull request #1433 from sivadur/integration
xilinx: fix zynqmp build when tsp is enabled
parents
3caa841d
0435ba64
Changes
2
Hide whitespace changes
Inline
Side-by-side
plat/xilinx/zynqmp/aarch64/zynqmp_common.c
View file @
01460492
...
@@ -205,12 +205,21 @@ static char *zynqmp_get_silicon_idcode_name(void)
...
@@ -205,12 +205,21 @@ static char *zynqmp_get_silicon_idcode_name(void)
{
{
uint32_t
id
,
ver
,
chipid
[
2
];
uint32_t
id
,
ver
,
chipid
[
2
];
size_t
i
,
j
,
len
;
size_t
i
,
j
,
len
;
enum
pm_ret_status
ret
;
const
char
*
name
=
"EG/EV"
;
const
char
*
name
=
"EG/EV"
;
ret
=
pm_get_chipid
(
chipid
);
#ifdef IMAGE_BL32
if
(
ret
)
/*
* For BL32, get the chip id info directly by reading corresponding
* registers instead of making pm call. This has limitation
* that these registers should be configured to have access
* from APU which is default case.
*/
chipid
[
0
]
=
mmio_read_32
(
ZYNQMP_CSU_BASEADDR
+
ZYNQMP_CSU_IDCODE_OFFSET
);
chipid
[
1
]
=
mmio_read_32
(
EFUSE_BASEADDR
+
EFUSE_IPDISABLE_OFFSET
);
#else
if
(
pm_get_chipid
(
chipid
)
!=
PM_RET_SUCCESS
)
return
"UNKN"
;
return
"UNKN"
;
#endif
id
=
chipid
[
0
]
&
(
ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK
|
id
=
chipid
[
0
]
&
(
ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK
|
ZYNQMP_CSU_IDCODE_SVD_MASK
);
ZYNQMP_CSU_IDCODE_SVD_MASK
);
...
...
plat/xilinx/zynqmp/include/platform_def.h
View file @
01460492
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
* little space for growth.
* little space for growth.
*/
*/
#ifndef ZYNQMP_ATF_MEM_BASE
#ifndef ZYNQMP_ATF_MEM_BASE
#if !DEBUG
#if !DEBUG
&& defined(SPD_none)
# define BL31_BASE 0xfffea000
# define BL31_BASE 0xfffea000
# define BL31_LIMIT 0xffffffff
# define BL31_LIMIT 0xffffffff
#else
#else
...
...
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