Commit 85dc2d4d authored by Rajan Vaja's avatar Rajan Vaja Committed by Siva Durga Prasad Paladugu
Browse files

zynqmp: pm_service: Make PMU IPI-1 channel unsecure



PMU IPI-1 is used for callbacks from PMU to master. Unsecure
master can also receive callbacks from PMU, so make PMU IPI-1
as non-secure.

All requests from master(s) to PMU would still go on PMU IPI-1
secure channel.
Signed-off-by: default avatarRajan Vaja <rajanv@xilinx.com>
parent 88d02c4a
...@@ -84,7 +84,7 @@ const static struct zynqmp_ipi_config zynqmp_ipi_table[] = { ...@@ -84,7 +84,7 @@ const static struct zynqmp_ipi_config zynqmp_ipi_table[] = {
{ {
.ipi_bit_mask = 0x20000, .ipi_bit_mask = 0x20000,
.ipi_reg_base = 0xFF331000, .ipi_reg_base = 0xFF331000,
.secure_only = IPI_SECURE_MASK, .secure_only = 0,
}, },
/* PMU2 IPI */ /* PMU2 IPI */
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment