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
03ea84c3
Commit
03ea84c3
authored
Mar 06, 2020
by
Alexei Fedorov
Committed by
TrustedFirmware Code Review
Mar 06, 2020
Browse files
Merge "driver/arm/css: minor bug fix" into integration
parents
d95f7a72
cc7f89de
Changes
1
Hide whitespace changes
Inline
Side-by-side
drivers/arm/css/scp/css_pm_scmi.c
View file @
03ea84c3
...
@@ -224,8 +224,8 @@ void css_scp_on(u_register_t mpidr)
...
@@ -224,8 +224,8 @@ void css_scp_on(u_register_t mpidr)
SCMI_SET_PWR_STATE_MAX_PWR_LVL
(
scmi_pwr_state
,
lvl
-
1
);
SCMI_SET_PWR_STATE_MAX_PWR_LVL
(
scmi_pwr_state
,
lvl
-
1
);
core_pos
=
plat_core_pos_by_mpidr
(
mpidr
);
core_pos
=
(
unsigned
int
)
plat_core_pos_by_mpidr
(
mpidr
);
assert
(
core_pos
>=
0
&&
(
core_pos
<
PLATFORM_CORE_COUNT
)
)
;
assert
(
core_pos
<
PLATFORM_CORE_COUNT
);
css_scp_core_pos_to_scmi_channel
(
core_pos
,
&
domain_id
,
css_scp_core_pos_to_scmi_channel
(
core_pos
,
&
domain_id
,
&
channel_id
);
&
channel_id
);
...
@@ -256,8 +256,8 @@ int css_scp_get_power_state(u_register_t mpidr, unsigned int power_level)
...
@@ -256,8 +256,8 @@ int css_scp_get_power_state(u_register_t mpidr, unsigned int power_level)
return
PSCI_E_INVALID_PARAMS
;
return
PSCI_E_INVALID_PARAMS
;
}
}
cpu_idx
=
plat_core_pos_by_mpidr
(
mpidr
);
cpu_idx
=
(
unsigned
int
)
plat_core_pos_by_mpidr
(
mpidr
);
assert
(
cpu_idx
>
-
1
);
assert
(
cpu_idx
<
PLATFORM_CORE_COUNT
);
css_scp_core_pos_to_scmi_channel
(
cpu_idx
,
&
domain_id
,
&
channel_id
);
css_scp_core_pos_to_scmi_channel
(
cpu_idx
,
&
domain_id
,
&
channel_id
);
ret
=
scmi_pwr_state_get
(
scmi_handles
[
channel_id
],
ret
=
scmi_pwr_state_get
(
scmi_handles
[
channel_id
],
...
...
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