Re: [PATCH V7 2/6] arm64/perf: Add BRBE registers and fields

From: Mark Rutland
Date: Thu Jan 12 2023 - 08:24:29 EST


Hi Anshuman,

On Thu, Jan 05, 2023 at 08:40:35AM +0530, Anshuman Khandual wrote:
> This adds BRBE related register definitions and various other related field
> macros there in. These will be used subsequently in a BRBE driver which is
> being added later on.

I haven't verified the specific values, but this looks good to me aside from
one minor nit below.

[...]

> +# This is just a dummy register declaration to get all common field masks and
> +# shifts for accessing given BRBINF contents.
> +Sysreg BRBINF_EL1 2 1 8 0 0

We don't need a dummy declaration, as we have 'SysregFields' that can be used
for this, e.g.

SysregFields BRBINFx_EL1
...
EndSysregFields

... which will avoid accidental usage of the register encoding. Note that I've
also added an 'x' there in place of the index, which we do for other registers,
e.g. TTBRx_EL1.

Could you please update to that?

With that:

Acked-by: Mark Rutland <mark.rutland@xxxxxxx>

Mark.