Skip to content

Commit 05d6f6d

Browse files
ilkka-koskinenwilldeacon
authored andcommitted
perf/arm-cmn: Add more bits to child node address offset field
CMN-600 uses bits [27:0] for child node address offset while bits [30:28] are required to be zero. For CMN-650, the child node address offset field has been increased to include bits [29:0] while leaving only bit 30 set to zero. Let's include the missing two bits and assume older implementations comply with the spec and set bits [29:28] to 0. Signed-off-by: Ilkka Koskinen <ilkka@os.amperecomputing.com> Fixes: 60d1504 ("perf/arm-cmn: Support new IP features") Reviewed-by: Robin Murphy <robin.murphy@arm.com> Link: https://lore.kernel.org/r/20220808195455.79277-1-ilkka@os.amperecomputing.com Signed-off-by: Will Deacon <will@kernel.org>
1 parent d4955c0 commit 05d6f6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/perf/arm-cmn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#define CMN_CI_CHILD_COUNT GENMASK_ULL(15, 0)
3737
#define CMN_CI_CHILD_PTR_OFFSET GENMASK_ULL(31, 16)
3838

39-
#define CMN_CHILD_NODE_ADDR GENMASK(27, 0)
39+
#define CMN_CHILD_NODE_ADDR GENMASK(29, 0)
4040
#define CMN_CHILD_NODE_EXTERNAL BIT(31)
4141

4242
#define CMN_MAX_DIMENSION 12

0 commit comments

Comments
 (0)