powerpc: Use a macro for creating instructions from u32s
In preparation for instructions having a more complex data type start using a macro, ppc_inst(), for making an instruction out of a u32. A macro is used so that instructions can be used as initializer elements. Currently this does nothing, but it will allow for creating a data type that can represent prefixed instructions. Signed-off-by: Jordan Niethe <jniethe5@gmail.com> [mpe: Change include guard to _ASM_POWERPC_INST_H] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Reviewed-by: Alistair Popple <alistair@popple.id.au> Link: https://lore.kernel.org/r/20200506034050.24806-7-jniethe5@gmail.com
This commit is contained in:

committed by
Michael Ellerman

parent
7c95d8893f
commit
7534625128
@@ -20,6 +20,7 @@
|
||||
#include <linux/sort.h>
|
||||
#include <asm/setup.h>
|
||||
#include <asm/sections.h>
|
||||
#include <asm/inst.h>
|
||||
|
||||
/* FIXME: We don't do .init separately. To do this, we'd need to have
|
||||
a separate r2 value in the init and core section, and stub between
|
||||
@@ -491,7 +492,7 @@ static int restore_r2(const char *name, u32 *instruction, struct module *me)
|
||||
* "link" branches and they don't return, so they don't need the r2
|
||||
* restore afterwards.
|
||||
*/
|
||||
if (!instr_is_relative_link_branch(*prev_insn))
|
||||
if (!instr_is_relative_link_branch(ppc_inst(*prev_insn)))
|
||||
return 1;
|
||||
|
||||
if (*instruction != PPC_INST_NOP) {
|
||||
|
Reference in New Issue
Block a user