Commit 713ab911 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'powerpc-5.16-4' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux

Pull powerpc fixes from Michael Ellerman:
 "Fix a recently introduced oops at boot on 85xx in some configurations.

  Fix crashes when loading some livepatch modules with
  STRICT_MODULE_RWX.

  Thanks to Joe Lawrence, Russell Currey, and Xiaoming Ni"

* tag 'powerpc-5.16-4' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux:
  powerpc/module_64: Fix livepatching for RO modules
  powerpc/85xx: Fix oops when CONFIG_FSL_PMC=n
parents 9273d6cb 8734b41b
...@@ -422,11 +422,17 @@ static inline int create_stub(const Elf64_Shdr *sechdrs, ...@@ -422,11 +422,17 @@ static inline int create_stub(const Elf64_Shdr *sechdrs,
const char *name) const char *name)
{ {
long reladdr; long reladdr;
func_desc_t desc;
int i;
if (is_mprofile_ftrace_call(name)) if (is_mprofile_ftrace_call(name))
return create_ftrace_stub(entry, addr, me); return create_ftrace_stub(entry, addr, me);
memcpy(entry->jump, ppc64_stub_insns, sizeof(ppc64_stub_insns)); for (i = 0; i < sizeof(ppc64_stub_insns) / sizeof(u32); i++) {
if (patch_instruction(&entry->jump[i],
ppc_inst(ppc64_stub_insns[i])))
return 0;
}
/* Stub uses address relative to r2. */ /* Stub uses address relative to r2. */
reladdr = (unsigned long)entry - my_r2(sechdrs, me); reladdr = (unsigned long)entry - my_r2(sechdrs, me);
...@@ -437,10 +443,24 @@ static inline int create_stub(const Elf64_Shdr *sechdrs, ...@@ -437,10 +443,24 @@ static inline int create_stub(const Elf64_Shdr *sechdrs,
} }
pr_debug("Stub %p get data from reladdr %li\n", entry, reladdr); pr_debug("Stub %p get data from reladdr %li\n", entry, reladdr);
entry->jump[0] |= PPC_HA(reladdr); if (patch_instruction(&entry->jump[0],
entry->jump[1] |= PPC_LO(reladdr); ppc_inst(entry->jump[0] | PPC_HA(reladdr))))
entry->funcdata = func_desc(addr); return 0;
entry->magic = STUB_MAGIC;
if (patch_instruction(&entry->jump[1],
ppc_inst(entry->jump[1] | PPC_LO(reladdr))))
return 0;
// func_desc_t is 8 bytes if ABIv2, else 16 bytes
desc = func_desc(addr);
for (i = 0; i < sizeof(func_desc_t) / sizeof(u32); i++) {
if (patch_instruction(((u32 *)&entry->funcdata) + i,
ppc_inst(((u32 *)(&desc))[i])))
return 0;
}
if (patch_instruction(&entry->magic, ppc_inst(STUB_MAGIC)))
return 0;
return 1; return 1;
} }
...@@ -495,8 +515,11 @@ static int restore_r2(const char *name, u32 *instruction, struct module *me) ...@@ -495,8 +515,11 @@ static int restore_r2(const char *name, u32 *instruction, struct module *me)
me->name, *instruction, instruction); me->name, *instruction, instruction);
return 0; return 0;
} }
/* ld r2,R2_STACK_OFFSET(r1) */ /* ld r2,R2_STACK_OFFSET(r1) */
*instruction = PPC_INST_LD_TOC; if (patch_instruction(instruction, ppc_inst(PPC_INST_LD_TOC)))
return 0;
return 1; return 1;
} }
...@@ -636,9 +659,12 @@ int apply_relocate_add(Elf64_Shdr *sechdrs, ...@@ -636,9 +659,12 @@ int apply_relocate_add(Elf64_Shdr *sechdrs,
} }
/* Only replace bits 2 through 26 */ /* Only replace bits 2 through 26 */
*(uint32_t *)location value = (*(uint32_t *)location & ~0x03fffffc)
= (*(uint32_t *)location & ~0x03fffffc)
| (value & 0x03fffffc); | (value & 0x03fffffc);
if (patch_instruction((u32 *)location, ppc_inst(value)))
return -EFAULT;
break; break;
case R_PPC64_REL64: case R_PPC64_REL64:
......
...@@ -220,7 +220,7 @@ static int smp_85xx_start_cpu(int cpu) ...@@ -220,7 +220,7 @@ static int smp_85xx_start_cpu(int cpu)
local_irq_save(flags); local_irq_save(flags);
hard_irq_disable(); hard_irq_disable();
if (qoriq_pm_ops) if (qoriq_pm_ops && qoriq_pm_ops->cpu_up_prepare)
qoriq_pm_ops->cpu_up_prepare(cpu); qoriq_pm_ops->cpu_up_prepare(cpu);
/* if cpu is not spinning, reset it */ /* if cpu is not spinning, reset it */
...@@ -292,7 +292,7 @@ static int smp_85xx_kick_cpu(int nr) ...@@ -292,7 +292,7 @@ static int smp_85xx_kick_cpu(int nr)
booting_thread_hwid = cpu_thread_in_core(nr); booting_thread_hwid = cpu_thread_in_core(nr);
primary = cpu_first_thread_sibling(nr); primary = cpu_first_thread_sibling(nr);
if (qoriq_pm_ops) if (qoriq_pm_ops && qoriq_pm_ops->cpu_up_prepare)
qoriq_pm_ops->cpu_up_prepare(nr); qoriq_pm_ops->cpu_up_prepare(nr);
/* /*
......
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