Commit f4dd5bd3 authored by Pawel Moll's avatar Pawel Moll Committed by Kamal Mostafa

bus: arm-ccn: Fix node->XP config conversion

commit a18f8e97 upstream.

Events defined as watchpoints on nodes must have their config values
converted so that they apply to the respective node's XP. The
function setting new values was using wrong mask for the "port" field,
resulting in corrupted value. Fixed now.
Signed-off-by: default avatarPawel Moll <pawel.moll@arm.com>
Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
parent e3a8c726
...@@ -212,7 +212,7 @@ static int arm_ccn_node_to_xp_port(int node) ...@@ -212,7 +212,7 @@ static int arm_ccn_node_to_xp_port(int node)
static void arm_ccn_pmu_config_set(u64 *config, u32 node_xp, u32 type, u32 port) static void arm_ccn_pmu_config_set(u64 *config, u32 node_xp, u32 type, u32 port)
{ {
*config &= ~((0xff << 0) | (0xff << 8) | (0xff << 24)); *config &= ~((0xff << 0) | (0xff << 8) | (0x3 << 24));
*config |= (node_xp << 0) | (type << 8) | (port << 24); *config |= (node_xp << 0) | (type << 8) | (port << 24);
} }
......
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