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
3705cd47
Commit
3705cd47
authored
Jun 20, 2017
by
davidcunado-arm
Committed by
GitHub
Jun 20, 2017
Browse files
Merge pull request #966 from davidcunado-arm/dc/build_with_gcc6.2
Resolve build errors flagged by GCC 6.2
parents
3465ab60
568ac1f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
plat/mediatek/mt6795/include/mcucfg.h
View file @
3705cd47
/*
* Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2016
-2017
, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
...
...
@@ -104,12 +104,10 @@ struct mt6795_mcucfg_regs {
static
struct
mt6795_mcucfg_regs
*
const
mt6795_mcucfg
=
(
void
*
)
MCUCFG_BASE
;
/* cpu boot mode */
enum
{
MP0_CPUCFG_64BIT_SHIFT
=
12
,
MP1_CPUCFG_64BIT_SHIFT
=
28
,
MP0_CPUCFG_64BIT
=
0xf
<<
MP0_CPUCFG_64BIT_SHIFT
,
MP1_CPUCFG_64BIT
=
0xf
<<
MP1_CPUCFG_64BIT_SHIFT
};
#define MP0_CPUCFG_64BIT_SHIFT 12
#define MP1_CPUCFG_64BIT_SHIFT 28
#define MP0_CPUCFG_64BIT (U(0xf) << MP0_CPUCFG_64BIT_SHIFT)
#define MP1_CPUCFG_64BIT (U(0xf) << MP1_CPUCFG_64BIT_SHIFT)
/* scu related */
enum
{
...
...
plat/mediatek/mt8173/include/mcucfg.h
View file @
3705cd47
/*
* Copyright (c) 2014-201
5
, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2014-201
7
, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
...
...
@@ -103,12 +103,10 @@ struct mt8173_mcucfg_regs {
static
struct
mt8173_mcucfg_regs
*
const
mt8173_mcucfg
=
(
void
*
)
MCUCFG_BASE
;
/* cpu boot mode */
enum
{
MP0_CPUCFG_64BIT_SHIFT
=
12
,
MP1_CPUCFG_64BIT_SHIFT
=
28
,
MP0_CPUCFG_64BIT
=
0xf
<<
MP0_CPUCFG_64BIT_SHIFT
,
MP1_CPUCFG_64BIT
=
0xf
<<
MP1_CPUCFG_64BIT_SHIFT
};
#define MP0_CPUCFG_64BIT_SHIFT 12
#define MP1_CPUCFG_64BIT_SHIFT 28
#define MP0_CPUCFG_64BIT (U(0xf) << MP0_CPUCFG_64BIT_SHIFT)
#define MP1_CPUCFG_64BIT (U(0xf) << MP1_CPUCFG_64BIT_SHIFT)
/* scu related */
enum
{
...
...
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