paca.c 5.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
/*
 * 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.
 */

10
#include <linux/smp.h>
11
#include <linux/export.h>
Y
Yinghai Lu 已提交
12
#include <linux/memblock.h>
L
Linus Torvalds 已提交
13 14 15

#include <asm/lppaca.h>
#include <asm/paca.h>
16
#include <asm/sections.h>
17
#include <asm/pgtable.h>
18
#include <asm/kexec.h>
L
Linus Torvalds 已提交
19 20 21 22 23

/* This symbol is provided by the linker - let it fill in the paca
 * field correctly */
extern unsigned long __toc_start;

24 25
#ifdef CONFIG_PPC_BOOK3S

26
/*
27
 * The structure which the hypervisor knows about - this structure
28 29
 * should not cross a page boundary.  The vpa_init/register_vpa call
 * is now known to fail if the lppaca structure crosses a page
30 31
 * boundary.  The lppaca is also used on POWER5 pSeries boxes.
 * The lppaca is 640 bytes long, and cannot readily
32 33
 * change since the hypervisor knows its layout, so a 1kB alignment
 * will suffice to ensure that it doesn't cross a page boundary.
34 35
 */
struct lppaca lppaca[] = {
36
	[0 ... (NR_LPPACAS-1)] = {
37 38
		.desc = cpu_to_be32(0xd397d781),	/* "LpPa" */
		.size = cpu_to_be16(sizeof(struct lppaca)),
39
		.fpregs_in_use = 1,
40
		.slb_count = cpu_to_be16(64),
41
		.vmxregs_in_use = 0,
42
		.page_ins = 0,
43 44 45
	},
};

46 47 48
static struct lppaca *extra_lppacas;
static long __initdata lppaca_size;

49
static void __init allocate_lppacas(int nr_cpus, unsigned long limit)
50 51 52 53 54 55 56 57 58 59
{
	if (nr_cpus <= NR_LPPACAS)
		return;

	lppaca_size = PAGE_ALIGN(sizeof(struct lppaca) *
				 (nr_cpus - NR_LPPACAS));
	extra_lppacas = __va(memblock_alloc_base(lppaca_size,
						 PAGE_SIZE, limit));
}

60
static struct lppaca * __init new_lppaca(int cpu)
61 62 63 64 65 66 67 68 69 70 71 72
{
	struct lppaca *lp;

	if (cpu < NR_LPPACAS)
		return &lppaca[cpu];

	lp = extra_lppacas + (cpu - NR_LPPACAS);
	*lp = lppaca[0];

	return lp;
}

73
static void __init free_lppacas(void)
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
{
	long new_size = 0, nr;

	if (!lppaca_size)
		return;
	nr = num_possible_cpus() - NR_LPPACAS;
	if (nr > 0)
		new_size = PAGE_ALIGN(nr * sizeof(struct lppaca));
	if (new_size >= lppaca_size)
		return;

	memblock_free(__pa(extra_lppacas) + new_size, lppaca_size - new_size);
	lppaca_size = new_size;
}

#else

91
static inline void allocate_lppacas(int nr_cpus, unsigned long limit) { }
92 93
static inline void free_lppacas(void) { }

94 95 96 97
#endif /* CONFIG_PPC_BOOK3S */

#ifdef CONFIG_PPC_STD_MMU_64

98 99 100 101
/*
 * 3 persistent SLBs are registered here.  The buffer will be zero
 * initially, hence will all be invaild until we actually write them.
 */
J
Jeremy Kerr 已提交
102
static struct slb_shadow slb_shadow[] __cacheline_aligned = {
103
	[0 ... (NR_CPUS-1)] = {
104 105
		.persistent = cpu_to_be32(SLB_NUM_BOLTED),
		.buffer_length = cpu_to_be32(sizeof(struct slb_shadow)),
106 107 108
	},
};

109 110
#endif /* CONFIG_PPC_STD_MMU_64 */

111
/* The Paca is an array with one entry per processor.  Each contains an
L
Linus Torvalds 已提交
112
 * lppaca, which contains the information shared between the
113
 * hypervisor and Linux.
L
Linus Torvalds 已提交
114 115 116 117 118 119
 * 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).
 */
120
struct paca_struct *paca;
L
Linus Torvalds 已提交
121
EXPORT_SYMBOL(paca);
122

123 124 125 126 127
void __init initialise_paca(struct paca_struct *new_paca, int cpu)
{
       /* The TOC register (GPR2) points 32kB into the TOC, so that 64kB
	* of the TOC can be addressed using a single machine instruction.
	*/
128 129
	unsigned long kernel_toc = (unsigned long)(&__toc_start) + 0x8000UL;

130
#ifdef CONFIG_PPC_BOOK3S
131
	new_paca->lppaca_ptr = new_lppaca(cpu);
132
#else
133
	new_paca->kernel_pgd = swapper_pg_dir;
134
#endif
135 136 137 138 139 140
	new_paca->lock_token = 0x8000;
	new_paca->paca_index = cpu;
	new_paca->kernel_toc = kernel_toc;
	new_paca->kernelbase = (unsigned long) _stext;
	new_paca->kernel_msr = MSR_KERNEL;
	new_paca->hw_cpu_id = 0xffff;
141
	new_paca->kexec_state = KEXEC_STATE_NONE;
142
	new_paca->__current = &init_task;
143
	new_paca->data_offset = 0xfeeeeeeeeeeeeeeeULL;
144
#ifdef CONFIG_PPC_STD_MMU_64
145
	new_paca->slb_shadow_ptr = &slb_shadow[cpu];
146
#endif /* CONFIG_PPC_STD_MMU_64 */
147 148
}

149 150 151
/* Put the paca pointer into r13 and SPRG_PACA */
void setup_paca(struct paca_struct *new_paca)
{
152
	/* Setup r13 */
153
	local_paca = new_paca;
154

155
#ifdef CONFIG_PPC_BOOK3E
156
	/* On Book3E, initialize the TLB miss exception frames */
157
	mtspr(SPRN_SPRG_TLB_EXFRAME, local_paca->extlb);
158 159 160 161 162
#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
	 */
163
	if (cpu_has_feature(CPU_FTR_HVMODE))
164
		mtspr(SPRN_SPRG_HPACA, local_paca);
165
#endif
166 167
	mtspr(SPRN_SPRG_PACA, local_paca);

168 169
}

170 171 172 173
static int __initdata paca_size;

void __init allocate_pacas(void)
{
174
	int cpu, limit;
175 176 177 178

	/*
	 * We can't take SLB misses on the paca, and we want to access them
	 * in real mode, so allocate them within the RMA and also within
179
	 * the first segment.
180
	 */
181
	limit = min(0x10000000ULL, ppc64_rma_size);
182

183
	paca_size = PAGE_ALIGN(sizeof(struct paca_struct) * nr_cpu_ids);
184

Y
Yinghai Lu 已提交
185
	paca = __va(memblock_alloc_base(paca_size, PAGE_SIZE, limit));
186 187 188
	memset(paca, 0, paca_size);

	printk(KERN_DEBUG "Allocated %u bytes for %d pacas at %p\n",
189
		paca_size, nr_cpu_ids, paca);
190

191
	allocate_lppacas(nr_cpu_ids, limit);
192

193
	/* Can't use for_each_*_cpu, as they aren't functional yet */
194
	for (cpu = 0; cpu < nr_cpu_ids; cpu++)
195 196 197 198 199 200 201
		initialise_paca(&paca[cpu], cpu);
}

void __init free_unused_pacas(void)
{
	int new_size;

202
	new_size = PAGE_ALIGN(sizeof(struct paca_struct) * nr_cpu_ids);
203 204 205 206

	if (new_size >= paca_size)
		return;

Y
Yinghai Lu 已提交
207
	memblock_free(__pa(paca) + new_size, paca_size - new_size);
208 209 210

	printk(KERN_DEBUG "Freed %u bytes for unused pacas\n",
		paca_size - new_size);
211

212
	paca_size = new_size;
213 214

	free_lppacas();
215
}