
In preparation for an instruction data type that can not be directly used with the '==' operator use functions for checking equality. Signed-off-by: Jordan Niethe <jniethe5@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Reviewed-by: Balamuruhan S <bala24@linux.ibm.com> Link: https://lore.kernel.org/r/20200506034050.24806-11-jniethe5@gmail.com
32 lines
501 B
C
32 lines
501 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef _ASM_POWERPC_INST_H
|
|
#define _ASM_POWERPC_INST_H
|
|
|
|
/*
|
|
* Instruction data type for POWER
|
|
*/
|
|
|
|
#define ppc_inst(x) (x)
|
|
|
|
static inline u32 ppc_inst_val(u32 x)
|
|
{
|
|
return x;
|
|
}
|
|
|
|
static inline int ppc_inst_primary_opcode(u32 x)
|
|
{
|
|
return ppc_inst_val(x) >> 26;
|
|
}
|
|
|
|
static inline u32 ppc_inst_swab(u32 x)
|
|
{
|
|
return ppc_inst(swab32(ppc_inst_val(x)));
|
|
}
|
|
|
|
static inline bool ppc_inst_equal(u32 x, u32 y)
|
|
{
|
|
return x == y;
|
|
}
|
|
|
|
#endif /* _ASM_POWERPC_INST_H */
|