Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
9445bc2d
Commit
9445bc2d
authored
5 years ago
by
Manish Pandey
Committed by
TrustedFirmware Code Review
5 years ago
Browse files
Options
Download
Plain Diff
Merge "intel: Change all global sip function to static" into integration
parents
351ab9f5
e5ebe87b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plat/intel/soc/common/socfpga_sip_svc.c
+5
-5
plat/intel/soc/common/socfpga_sip_svc.c
with
5 additions
and
5 deletions
+5
-5
plat/intel/soc/common/socfpga_sip_svc.c
View file @
9445bc2d
...
...
@@ -42,7 +42,7 @@ DEFINE_SVC_UUID2(intl_svc_uid,
0xa85273b0
,
0xe85a
,
0x4862
,
0xa6
,
0x2a
,
0xfa
,
0x88
,
0x88
,
0x17
,
0x68
,
0x81
);
uint64_t
socfpga_sip_handler
(
uint32_t
smc_fid
,
static
uint64_t
socfpga_sip_handler
(
uint32_t
smc_fid
,
uint64_t
x1
,
uint64_t
x2
,
uint64_t
x3
,
...
...
@@ -93,7 +93,7 @@ static int intel_fpga_sdm_write_all(void)
return
0
;
}
uint32_t
intel_mailbox_fpga_config_isdone
(
void
)
static
uint32_t
intel_mailbox_fpga_config_isdone
(
void
)
{
uint32_t
ret
=
intel_mailbox_get_config_status
(
MBOX_RECONFIG_STATUS
);
...
...
@@ -129,7 +129,7 @@ static int mark_last_buffer_xfer_completed(uint32_t *buffer_addr_completed)
return
-
1
;
}
int
intel_fpga_config_completed_write
(
uint32_t
*
completed_addr
,
static
int
intel_fpga_config_completed_write
(
uint32_t
*
completed_addr
,
uint32_t
*
count
)
{
uint32_t
status
=
INTEL_SIP_SMC_STATUS_OK
;
...
...
@@ -186,7 +186,7 @@ int intel_fpga_config_completed_write(uint32_t *completed_addr,
return
status
;
}
int
intel_fpga_config_start
(
uint32_t
config_type
)
static
int
intel_fpga_config_start
(
uint32_t
config_type
)
{
uint32_t
response
[
3
];
int
status
=
0
;
...
...
@@ -239,7 +239,7 @@ static bool is_address_in_ddr_range(uint64_t addr)
return
false
;
}
uint32_t
intel_fpga_config_write
(
uint64_t
mem
,
uint64_t
size
)
static
uint32_t
intel_fpga_config_write
(
uint64_t
mem
,
uint64_t
size
)
{
int
i
;
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help