2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* c 2001 PPC 64 Team, IBM Corp
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
2011-05-11 03:28:52 +08:00
|
|
|
#include <linux/smp.h>
|
2011-07-23 06:24:23 +08:00
|
|
|
#include <linux/export.h>
|
2010-07-12 12:36:09 +08:00
|
|
|
#include <linux/memblock.h>
|
2017-02-04 08:20:53 +08:00
|
|
|
#include <linux/sched/task.h>
|
2019-03-06 07:42:58 +08:00
|
|
|
#include <linux/numa.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <asm/lppaca.h>
|
|
|
|
#include <asm/paca.h>
|
powerpc: Make the 64-bit kernel as a position-independent executable
This implements CONFIG_RELOCATABLE for 64-bit by making the kernel as
a position-independent executable (PIE) when it is set. This involves
processing the dynamic relocations in the image in the early stages of
booting, even if the kernel is being run at the address it is linked at,
since the linker does not necessarily fill in words in the image for
which there are dynamic relocations. (In fact the linker does fill in
such words for 64-bit executables, though not for 32-bit executables,
so in principle we could avoid calling relocate() entirely when we're
running a 64-bit kernel at the linked address.)
The dynamic relocations are processed by a new function relocate(addr),
where the addr parameter is the virtual address where the image will be
run. In fact we call it twice; once before calling prom_init, and again
when starting the main kernel. This means that reloc_offset() returns
0 in prom_init (since it has been relocated to the address it is running
at), which necessitated a few adjustments.
This also changes __va and __pa to use an equivalent definition that is
simpler. With the relocatable kernel, PAGE_OFFSET and MEMORY_START are
constants (for 64-bit) whereas PHYSICAL_START is a variable (and
KERNELBASE ideally should be too, but isn't yet).
With this, relocatable kernels still copy themselves down to physical
address 0 and run there.
Signed-off-by: Paul Mackerras <paulus@samba.org>
2008-08-30 09:43:47 +08:00
|
|
|
#include <asm/sections.h>
|
2009-07-24 07:15:42 +08:00
|
|
|
#include <asm/pgtable.h>
|
2010-05-14 03:40:11 +08:00
|
|
|
#include <asm/kexec.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-12-22 19:17:13 +08:00
|
|
|
#include "setup.h"
|
|
|
|
|
2018-02-13 23:08:20 +08:00
|
|
|
#ifndef CONFIG_SMP
|
|
|
|
#define boot_cpuid 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void *__init alloc_paca_data(unsigned long size, unsigned long align,
|
|
|
|
unsigned long limit, int cpu)
|
|
|
|
{
|
2019-03-08 08:30:48 +08:00
|
|
|
void *ptr;
|
2018-02-13 23:08:20 +08:00
|
|
|
int nid;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* boot_cpuid paca is allocated very early before cpu_to_node is up.
|
|
|
|
* Set bottom-up mode, because the boot CPU should be on node-0,
|
|
|
|
* which will put its paca in the right place.
|
|
|
|
*/
|
|
|
|
if (cpu == boot_cpuid) {
|
2019-03-06 07:42:58 +08:00
|
|
|
nid = NUMA_NO_NODE;
|
2018-02-13 23:08:20 +08:00
|
|
|
memblock_set_bottom_up(true);
|
|
|
|
} else {
|
|
|
|
nid = early_cpu_to_node(cpu);
|
|
|
|
}
|
|
|
|
|
2019-03-08 08:30:48 +08:00
|
|
|
ptr = memblock_alloc_try_nid(size, align, MEMBLOCK_LOW_LIMIT,
|
|
|
|
limit, nid);
|
|
|
|
if (!ptr)
|
|
|
|
panic("cannot allocate paca data");
|
2018-02-13 23:08:20 +08:00
|
|
|
|
|
|
|
if (cpu == boot_cpuid)
|
|
|
|
memblock_set_bottom_up(false);
|
|
|
|
|
2019-03-08 08:30:48 +08:00
|
|
|
return ptr;
|
2018-02-13 23:08:20 +08:00
|
|
|
}
|
|
|
|
|
2018-02-13 23:08:11 +08:00
|
|
|
#ifdef CONFIG_PPC_PSERIES
|
2009-06-03 05:17:41 +08:00
|
|
|
|
2006-01-13 07:26:42 +08:00
|
|
|
/*
|
2018-02-13 23:08:13 +08:00
|
|
|
* See asm/lppaca.h for more detail.
|
|
|
|
*
|
|
|
|
* lppaca structures must must be 1kB in size, L1 cache line aligned,
|
|
|
|
* and not cross 4kB boundary. A 1kB size and 1kB alignment will satisfy
|
|
|
|
* these requirements.
|
2006-01-13 07:26:42 +08:00
|
|
|
*/
|
2018-02-13 23:08:13 +08:00
|
|
|
static inline void init_lppaca(struct lppaca *lppaca)
|
|
|
|
{
|
|
|
|
BUILD_BUG_ON(sizeof(struct lppaca) != 640);
|
|
|
|
|
|
|
|
*lppaca = (struct lppaca) {
|
2013-08-07 00:01:46 +08:00
|
|
|
.desc = cpu_to_be32(0xd397d781), /* "LpPa" */
|
2018-02-13 23:08:13 +08:00
|
|
|
.size = cpu_to_be16(0x400),
|
2006-01-13 07:26:42 +08:00
|
|
|
.fpregs_in_use = 1,
|
2013-08-07 00:01:46 +08:00
|
|
|
.slb_count = cpu_to_be16(64),
|
2006-01-13 07:26:42 +08:00
|
|
|
.vmxregs_in_use = 0,
|
2018-02-13 23:08:13 +08:00
|
|
|
.page_ins = 0, };
|
2006-01-13 07:26:42 +08:00
|
|
|
};
|
|
|
|
|
2018-02-13 23:08:13 +08:00
|
|
|
static struct lppaca * __init new_lppaca(int cpu, unsigned long limit)
|
2010-08-13 04:18:48 +08:00
|
|
|
{
|
|
|
|
struct lppaca *lp;
|
2018-02-13 23:08:13 +08:00
|
|
|
size_t size = 0x400;
|
2010-08-13 04:18:48 +08:00
|
|
|
|
2018-02-13 23:08:13 +08:00
|
|
|
BUILD_BUG_ON(size < sizeof(struct lppaca));
|
2010-08-13 04:18:48 +08:00
|
|
|
|
2018-02-13 23:08:11 +08:00
|
|
|
if (early_cpu_has_feature(CPU_FTR_HVMODE))
|
|
|
|
return NULL;
|
2010-08-13 04:18:48 +08:00
|
|
|
|
2018-02-13 23:08:20 +08:00
|
|
|
lp = alloc_paca_data(size, 0x400, limit, cpu);
|
2018-02-13 23:08:13 +08:00
|
|
|
init_lppaca(lp);
|
2010-08-13 04:18:48 +08:00
|
|
|
|
|
|
|
return lp;
|
|
|
|
}
|
2009-06-03 05:17:41 +08:00
|
|
|
#endif /* CONFIG_PPC_BOOK3S */
|
|
|
|
|
2017-10-19 12:08:43 +08:00
|
|
|
#ifdef CONFIG_PPC_BOOK3S_64
|
2009-06-03 05:17:41 +08:00
|
|
|
|
2006-08-07 14:19:19 +08:00
|
|
|
/*
|
2018-02-13 23:08:14 +08:00
|
|
|
* 3 persistent SLBs are allocated here. The buffer will be zero
|
2006-08-07 14:19:19 +08:00
|
|
|
* initially, hence will all be invaild until we actually write them.
|
2014-05-15 20:38:03 +08:00
|
|
|
*
|
|
|
|
* If you make the number of persistent SLB entries dynamic, please also
|
|
|
|
* update PR KVM to flush and restore them accordingly.
|
2006-08-07 14:19:19 +08:00
|
|
|
*/
|
2018-02-13 23:08:14 +08:00
|
|
|
static struct slb_shadow * __init new_slb_shadow(int cpu, unsigned long limit)
|
2013-12-05 11:42:40 +08:00
|
|
|
{
|
2017-08-13 09:33:43 +08:00
|
|
|
struct slb_shadow *s;
|
|
|
|
|
2018-02-13 23:08:14 +08:00
|
|
|
if (cpu != boot_cpuid) {
|
|
|
|
/*
|
|
|
|
* Boot CPU comes here before early_radix_enabled
|
|
|
|
* is parsed (e.g., for disable_radix). So allocate
|
|
|
|
* always and this will be fixed up in free_unused_pacas.
|
|
|
|
*/
|
|
|
|
if (early_radix_enabled())
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-12-05 11:42:40 +08:00
|
|
|
|
2018-02-13 23:08:20 +08:00
|
|
|
s = alloc_paca_data(sizeof(*s), L1_CACHE_BYTES, limit, cpu);
|
2015-01-08 13:40:51 +08:00
|
|
|
|
2013-12-05 11:42:40 +08:00
|
|
|
s->persistent = cpu_to_be32(SLB_NUM_BOLTED);
|
|
|
|
s->buffer_length = cpu_to_be32(sizeof(*s));
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2017-10-19 12:08:43 +08:00
|
|
|
#endif /* CONFIG_PPC_BOOK3S_64 */
|
2009-06-03 05:17:41 +08:00
|
|
|
|
2005-11-09 10:38:01 +08:00
|
|
|
/* The Paca is an array with one entry per processor. Each contains an
|
2005-04-17 06:20:36 +08:00
|
|
|
* lppaca, which contains the information shared between the
|
2005-11-24 13:34:45 +08:00
|
|
|
* hypervisor and Linux.
|
2005-04-17 06:20:36 +08:00
|
|
|
* On systems with hardware multi-threading, there are two threads
|
|
|
|
* per processor. The Paca array must contain an entry for each thread.
|
|
|
|
* The VPD Areas will give a max logical processors = 2 * max physical
|
|
|
|
* processors. The processor VPD array needs one entry per physical
|
|
|
|
* processor (not thread).
|
|
|
|
*/
|
2018-02-13 23:08:12 +08:00
|
|
|
struct paca_struct **paca_ptrs __read_mostly;
|
|
|
|
EXPORT_SYMBOL(paca_ptrs);
|
2008-04-24 11:43:49 +08:00
|
|
|
|
2010-01-28 21:23:22 +08:00
|
|
|
void __init initialise_paca(struct paca_struct *new_paca, int cpu)
|
|
|
|
{
|
2018-02-13 23:08:11 +08:00
|
|
|
#ifdef CONFIG_PPC_PSERIES
|
2018-02-13 23:08:13 +08:00
|
|
|
new_paca->lppaca_ptr = NULL;
|
2018-02-13 23:08:11 +08:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_PPC_BOOK3E
|
2010-01-28 21:23:22 +08:00
|
|
|
new_paca->kernel_pgd = swapper_pg_dir;
|
2009-06-03 05:17:41 +08:00
|
|
|
#endif
|
2010-01-28 21:23:22 +08:00
|
|
|
new_paca->lock_token = 0x8000;
|
|
|
|
new_paca->paca_index = cpu;
|
2016-03-03 12:26:53 +08:00
|
|
|
new_paca->kernel_toc = kernel_toc_addr();
|
2010-01-28 21:23:22 +08:00
|
|
|
new_paca->kernelbase = (unsigned long) _stext;
|
2014-03-28 10:36:29 +08:00
|
|
|
/* Only set MSR:IR/DR when MMU is initialized */
|
|
|
|
new_paca->kernel_msr = MSR_KERNEL & ~(MSR_IR | MSR_DR);
|
2010-01-28 21:23:22 +08:00
|
|
|
new_paca->hw_cpu_id = 0xffff;
|
2010-05-14 03:40:11 +08:00
|
|
|
new_paca->kexec_state = KEXEC_STATE_NONE;
|
2010-01-28 21:23:22 +08:00
|
|
|
new_paca->__current = &init_task;
|
2012-09-07 23:31:44 +08:00
|
|
|
new_paca->data_offset = 0xfeeeeeeeeeeeeeeeULL;
|
2017-10-19 12:08:43 +08:00
|
|
|
#ifdef CONFIG_PPC_BOOK3S_64
|
2018-02-13 23:08:14 +08:00
|
|
|
new_paca->slb_shadow_ptr = NULL;
|
2017-10-19 12:08:43 +08:00
|
|
|
#endif
|
2013-10-12 08:22:38 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_PPC_BOOK3E
|
|
|
|
/* For now -- if we have threads this will be adjusted later */
|
|
|
|
new_paca->tcd_ptr = &new_paca->tcd;
|
|
|
|
#endif
|
2010-01-28 21:23:22 +08:00
|
|
|
}
|
|
|
|
|
2010-07-08 05:55:37 +08:00
|
|
|
/* Put the paca pointer into r13 and SPRG_PACA */
|
|
|
|
void setup_paca(struct paca_struct *new_paca)
|
|
|
|
{
|
2011-01-20 14:50:21 +08:00
|
|
|
/* Setup r13 */
|
2010-07-08 05:55:37 +08:00
|
|
|
local_paca = new_paca;
|
2011-01-20 14:50:21 +08:00
|
|
|
|
2010-07-08 05:55:37 +08:00
|
|
|
#ifdef CONFIG_PPC_BOOK3E
|
2011-01-20 14:50:21 +08:00
|
|
|
/* On Book3E, initialize the TLB miss exception frames */
|
2010-07-08 05:55:37 +08:00
|
|
|
mtspr(SPRN_SPRG_TLB_EXFRAME, local_paca->extlb);
|
2011-01-20 14:50:21 +08:00
|
|
|
#else
|
|
|
|
/* In HV mode, we setup both HPACA and PACA to avoid problems
|
|
|
|
* if we do a GET_PACA() before the feature fixups have been
|
|
|
|
* applied
|
|
|
|
*/
|
2016-07-23 17:12:35 +08:00
|
|
|
if (early_cpu_has_feature(CPU_FTR_HVMODE))
|
2011-01-20 14:50:21 +08:00
|
|
|
mtspr(SPRN_SPRG_HPACA, local_paca);
|
2010-07-08 05:55:37 +08:00
|
|
|
#endif
|
2011-01-20 14:50:21 +08:00
|
|
|
mtspr(SPRN_SPRG_PACA, local_paca);
|
|
|
|
|
2010-07-08 05:55:37 +08:00
|
|
|
}
|
|
|
|
|
2018-02-13 23:08:12 +08:00
|
|
|
static int __initdata paca_nr_cpu_ids;
|
|
|
|
static int __initdata paca_ptrs_size;
|
2018-02-13 23:08:19 +08:00
|
|
|
static int __initdata paca_struct_size;
|
|
|
|
|
|
|
|
void __init allocate_paca_ptrs(void)
|
|
|
|
{
|
|
|
|
paca_nr_cpu_ids = nr_cpu_ids;
|
|
|
|
|
|
|
|
paca_ptrs_size = sizeof(struct paca_struct *) * nr_cpu_ids;
|
2019-03-12 14:29:00 +08:00
|
|
|
paca_ptrs = memblock_alloc_raw(paca_ptrs_size, SMP_CACHE_BYTES);
|
|
|
|
if (!paca_ptrs)
|
|
|
|
panic("Failed to allocate %d bytes for paca pointers\n",
|
|
|
|
paca_ptrs_size);
|
|
|
|
|
2018-02-13 23:08:19 +08:00
|
|
|
memset(paca_ptrs, 0x88, paca_ptrs_size);
|
|
|
|
}
|
2010-01-28 21:23:22 +08:00
|
|
|
|
2018-02-13 23:08:19 +08:00
|
|
|
void __init allocate_paca(int cpu)
|
2010-01-28 21:23:22 +08:00
|
|
|
{
|
2015-10-07 11:48:17 +08:00
|
|
|
u64 limit;
|
2018-02-13 23:08:19 +08:00
|
|
|
struct paca_struct *paca;
|
|
|
|
|
|
|
|
BUG_ON(cpu >= paca_nr_cpu_ids);
|
2010-01-28 21:23:22 +08:00
|
|
|
|
2015-10-07 11:48:17 +08:00
|
|
|
#ifdef CONFIG_PPC_BOOK3S_64
|
2010-01-28 21:23:22 +08:00
|
|
|
/*
|
2017-12-22 19:17:13 +08:00
|
|
|
* We access pacas in real mode, and cannot take SLB faults
|
|
|
|
* on them when in virtual mode, so allocate them accordingly.
|
2010-01-28 21:23:22 +08:00
|
|
|
*/
|
2017-12-22 19:17:13 +08:00
|
|
|
limit = min(ppc64_bolted_size(), ppc64_rma_size);
|
|
|
|
#else
|
|
|
|
limit = ppc64_rma_size;
|
2015-10-07 11:48:17 +08:00
|
|
|
#endif
|
2010-01-28 21:23:22 +08:00
|
|
|
|
2018-02-13 23:08:20 +08:00
|
|
|
paca = alloc_paca_data(sizeof(struct paca_struct), L1_CACHE_BYTES,
|
|
|
|
limit, cpu);
|
2018-02-13 23:08:19 +08:00
|
|
|
paca_ptrs[cpu] = paca;
|
2013-12-05 11:42:40 +08:00
|
|
|
|
2018-02-13 23:08:19 +08:00
|
|
|
initialise_paca(paca, cpu);
|
2018-02-13 23:08:13 +08:00
|
|
|
#ifdef CONFIG_PPC_PSERIES
|
2018-02-13 23:08:19 +08:00
|
|
|
paca->lppaca_ptr = new_lppaca(cpu, limit);
|
2018-02-13 23:08:14 +08:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_PPC_BOOK3S_64
|
2018-02-13 23:08:19 +08:00
|
|
|
paca->slb_shadow_ptr = new_slb_shadow(cpu, limit);
|
2018-02-13 23:08:13 +08:00
|
|
|
#endif
|
2018-02-13 23:08:19 +08:00
|
|
|
paca_struct_size += sizeof(struct paca_struct);
|
2010-01-28 21:23:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init free_unused_pacas(void)
|
|
|
|
{
|
2018-02-13 23:08:12 +08:00
|
|
|
int new_ptrs_size;
|
2010-01-28 21:23:22 +08:00
|
|
|
|
2018-02-13 23:08:12 +08:00
|
|
|
new_ptrs_size = sizeof(struct paca_struct *) * nr_cpu_ids;
|
2018-02-13 23:08:19 +08:00
|
|
|
if (new_ptrs_size < paca_ptrs_size)
|
2018-02-13 23:08:12 +08:00
|
|
|
memblock_free(__pa(paca_ptrs) + new_ptrs_size,
|
|
|
|
paca_ptrs_size - new_ptrs_size);
|
2010-01-28 21:23:22 +08:00
|
|
|
|
2018-02-13 23:08:12 +08:00
|
|
|
paca_nr_cpu_ids = nr_cpu_ids;
|
|
|
|
paca_ptrs_size = new_ptrs_size;
|
2010-01-28 21:23:22 +08:00
|
|
|
|
2018-02-13 23:08:14 +08:00
|
|
|
#ifdef CONFIG_PPC_BOOK3S_64
|
|
|
|
if (early_radix_enabled()) {
|
|
|
|
/* Ugly fixup, see new_slb_shadow() */
|
|
|
|
memblock_free(__pa(paca_ptrs[boot_cpuid]->slb_shadow_ptr),
|
|
|
|
sizeof(struct slb_shadow));
|
|
|
|
paca_ptrs[boot_cpuid]->slb_shadow_ptr = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2010-08-13 04:18:48 +08:00
|
|
|
|
2018-02-13 23:08:19 +08:00
|
|
|
printk(KERN_DEBUG "Allocated %u bytes for %u pacas\n",
|
|
|
|
paca_ptrs_size + paca_struct_size, nr_cpu_ids);
|
2008-04-24 11:43:49 +08:00
|
|
|
}
|
2017-03-22 11:36:49 +08:00
|
|
|
|
|
|
|
void copy_mm_to_paca(struct mm_struct *mm)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_PPC_BOOK3S
|
|
|
|
mm_context_t *context = &mm->context;
|
|
|
|
|
|
|
|
get_paca()->mm_ctx_id = context->id;
|
|
|
|
#ifdef CONFIG_PPC_MM_SLICES
|
2017-11-10 01:27:40 +08:00
|
|
|
VM_BUG_ON(!mm->context.slb_addr_limit);
|
|
|
|
get_paca()->mm_ctx_slb_addr_limit = mm->context.slb_addr_limit;
|
2018-02-22 22:27:28 +08:00
|
|
|
memcpy(&get_paca()->mm_ctx_low_slices_psize,
|
|
|
|
&context->low_slices_psize, sizeof(context->low_slices_psize));
|
2017-03-22 11:36:49 +08:00
|
|
|
memcpy(&get_paca()->mm_ctx_high_slices_psize,
|
2017-03-22 11:36:58 +08:00
|
|
|
&context->high_slices_psize, TASK_SLICE_ARRAY_SZ(mm));
|
2017-03-22 11:36:49 +08:00
|
|
|
#else /* CONFIG_PPC_MM_SLICES */
|
|
|
|
get_paca()->mm_ctx_user_psize = context->user_psize;
|
|
|
|
get_paca()->mm_ctx_sllp = context->sllp;
|
|
|
|
#endif
|
2017-10-19 12:08:43 +08:00
|
|
|
#else /* !CONFIG_PPC_BOOK3S */
|
2017-03-22 11:36:49 +08:00
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
}
|