blob: 6cbeb2a54527050f02392d8dc26668cd7eb75208 [file] [log] [blame]
Ralf Baechlee01402b2005-07-14 15:57:16 +00001/*
2 * Copyright (C) 2004, 2005 MIPS Technologies, Inc. All rights reserved.
3 *
4 * This program is free software; you can distribute it and/or modify it
5 * under the terms of the GNU General Public License (Version 2) as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 * for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
Ralf Baechlee01402b2005-07-14 15:57:16 +000016 */
17
18/*
19 * VPE support module
20 *
21 * Provides support for loading a MIPS SP program on VPE1.
22 * The SP enviroment is rather simple, no tlb's. It needs to be relocatable
23 * (or partially linked). You should initialise your stack in the startup
24 * code. This loader looks for the symbol __start and sets up
25 * execution to resume from there. The MIPS SDE kit contains suitable examples.
26 *
27 * To load and run, simply cat a SP 'program file' to /dev/vpe1.
28 * i.e cat spapp >/dev/vpe1.
Ralf Baechlee01402b2005-07-14 15:57:16 +000029 */
Ralf Baechlee01402b2005-07-14 15:57:16 +000030#include <linux/kernel.h>
Ralf Baechle27a3bba2007-02-07 13:48:59 +000031#include <linux/device.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000032#include <linux/module.h>
33#include <linux/fs.h>
34#include <linux/init.h>
35#include <asm/uaccess.h>
36#include <linux/slab.h>
37#include <linux/list.h>
38#include <linux/vmalloc.h>
39#include <linux/elf.h>
40#include <linux/seq_file.h>
Jonathan Corbet7558da92008-05-15 09:10:50 -060041#include <linux/smp_lock.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000042#include <linux/syscalls.h>
43#include <linux/moduleloader.h>
44#include <linux/interrupt.h>
45#include <linux/poll.h>
46#include <linux/bootmem.h>
47#include <asm/mipsregs.h>
Ralf Baechle340ee4b2005-08-17 17:44:08 +000048#include <asm/mipsmtregs.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000049#include <asm/cacheflush.h>
50#include <asm/atomic.h>
51#include <asm/cpu.h>
Ralf Baechle27a3bba2007-02-07 13:48:59 +000052#include <asm/mips_mt.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000053#include <asm/processor.h>
54#include <asm/system.h>
Ralf Baechle26009902006-04-05 09:45:45 +010055#include <asm/vpe.h>
56#include <asm/kspd.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000057
58typedef void *vpe_handle;
59
Ralf Baechlee01402b2005-07-14 15:57:16 +000060#ifndef ARCH_SHF_SMALL
61#define ARCH_SHF_SMALL 0
62#endif
63
64/* If this is set, the section belongs in the init part of the module */
65#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
66
Ralf Baechle41790e02007-07-27 19:33:18 +010067/*
68 * The number of TCs and VPEs physically available on the core
69 */
70static int hw_tcs, hw_vpes;
Ralf Baechlee01402b2005-07-14 15:57:16 +000071static char module_name[] = "vpe";
Ralf Baechle307bd282005-10-31 23:34:52 +000072static int major;
Ralf Baechle27a3bba2007-02-07 13:48:59 +000073static const int minor = 1; /* fixed for now */
Ralf Baechlee01402b2005-07-14 15:57:16 +000074
Ralf Baechle26009902006-04-05 09:45:45 +010075#ifdef CONFIG_MIPS_APSP_KSPD
76 static struct kspd_notifications kspd_events;
77static int kspd_events_reqd = 0;
78#endif
79
Ralf Baechlee01402b2005-07-14 15:57:16 +000080/* grab the likely amount of memory we will need. */
81#ifdef CONFIG_MIPS_VPE_LOADER_TOM
82#define P_SIZE (2 * 1024 * 1024)
83#else
84/* add an overhead to the max kmalloc size for non-striped symbols/etc */
85#define P_SIZE (256 * 1024)
86#endif
87
Ralf Baechle26009902006-04-05 09:45:45 +010088extern unsigned long physical_memsize;
89
Ralf Baechlee01402b2005-07-14 15:57:16 +000090#define MAX_VPES 16
Ralf Baechle26009902006-04-05 09:45:45 +010091#define VPE_PATH_MAX 256
Ralf Baechlee01402b2005-07-14 15:57:16 +000092
93enum vpe_state {
94 VPE_STATE_UNUSED = 0,
95 VPE_STATE_INUSE,
96 VPE_STATE_RUNNING
97};
98
99enum tc_state {
100 TC_STATE_UNUSED = 0,
101 TC_STATE_INUSE,
102 TC_STATE_RUNNING,
103 TC_STATE_DYNAMIC
104};
105
Ralf Baechle307bd282005-10-31 23:34:52 +0000106struct vpe {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000107 enum vpe_state state;
108
109 /* (device) minor associated with this vpe */
110 int minor;
111
112 /* elfloader stuff */
113 void *load_addr;
Ralf Baechle571e0be2005-12-08 00:32:23 +0000114 unsigned long len;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000115 char *pbuffer;
Ralf Baechle571e0be2005-12-08 00:32:23 +0000116 unsigned long plen;
Ralf Baechle26009902006-04-05 09:45:45 +0100117 unsigned int uid, gid;
118 char cwd[VPE_PATH_MAX];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000119
120 unsigned long __start;
121
122 /* tc's associated with this vpe */
123 struct list_head tc;
124
125 /* The list of vpe's */
126 struct list_head list;
127
128 /* shared symbol address */
129 void *shared_ptr;
Ralf Baechle26009902006-04-05 09:45:45 +0100130
131 /* the list of who wants to know when something major happens */
132 struct list_head notify;
Ralf Baechle41790e02007-07-27 19:33:18 +0100133
134 unsigned int ntcs;
Ralf Baechle307bd282005-10-31 23:34:52 +0000135};
136
137struct tc {
138 enum tc_state state;
139 int index;
140
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100141 struct vpe *pvpe; /* parent VPE */
142 struct list_head tc; /* The list of TC's with this VPE */
143 struct list_head list; /* The global list of tc's */
Ralf Baechle307bd282005-10-31 23:34:52 +0000144};
Ralf Baechlee01402b2005-07-14 15:57:16 +0000145
Ralf Baechle9cfdf6f2007-01-24 19:13:08 +0000146struct {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000147 /* Virtual processing elements */
148 struct list_head vpe_list;
149
150 /* Thread contexts */
151 struct list_head tc_list;
Ralf Baechle9cfdf6f2007-01-24 19:13:08 +0000152} vpecontrol = {
153 .vpe_list = LIST_HEAD_INIT(vpecontrol.vpe_list),
154 .tc_list = LIST_HEAD_INIT(vpecontrol.tc_list)
155};
Ralf Baechlee01402b2005-07-14 15:57:16 +0000156
157static void release_progmem(void *ptr);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000158
159/* get the vpe associated with this minor */
Ralf Baechlef18b51c2009-08-03 12:54:35 +0100160static struct vpe *get_vpe(int minor)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000161{
162 struct vpe *v;
163
Ralf Baechle26009902006-04-05 09:45:45 +0100164 if (!cpu_has_mipsmt)
165 return NULL;
166
Ralf Baechlee01402b2005-07-14 15:57:16 +0000167 list_for_each_entry(v, &vpecontrol.vpe_list, list) {
168 if (v->minor == minor)
169 return v;
170 }
171
Ralf Baechlee01402b2005-07-14 15:57:16 +0000172 return NULL;
173}
174
175/* get the vpe associated with this minor */
Ralf Baechlef18b51c2009-08-03 12:54:35 +0100176static struct tc *get_tc(int index)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000177{
178 struct tc *t;
179
180 list_for_each_entry(t, &vpecontrol.tc_list, list) {
181 if (t->index == index)
182 return t;
183 }
184
Ralf Baechlee01402b2005-07-14 15:57:16 +0000185 return NULL;
186}
187
188struct tc *get_tc_unused(void)
189{
190 struct tc *t;
191
192 list_for_each_entry(t, &vpecontrol.tc_list, list) {
193 if (t->state == TC_STATE_UNUSED)
194 return t;
195 }
196
Ralf Baechlee01402b2005-07-14 15:57:16 +0000197 return NULL;
198}
199
200/* allocate a vpe and associate it with this minor (or index) */
Ralf Baechlef18b51c2009-08-03 12:54:35 +0100201static struct vpe *alloc_vpe(int minor)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000202{
203 struct vpe *v;
204
Ralf Baechle307bd282005-10-31 23:34:52 +0000205 if ((v = kzalloc(sizeof(struct vpe), GFP_KERNEL)) == NULL) {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000206 return NULL;
207 }
208
Ralf Baechlee01402b2005-07-14 15:57:16 +0000209 INIT_LIST_HEAD(&v->tc);
210 list_add_tail(&v->list, &vpecontrol.vpe_list);
211
Ralf Baechle26009902006-04-05 09:45:45 +0100212 INIT_LIST_HEAD(&v->notify);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000213 v->minor = minor;
214 return v;
215}
216
217/* allocate a tc. At startup only tc0 is running, all other can be halted. */
Ralf Baechlef18b51c2009-08-03 12:54:35 +0100218static struct tc *alloc_tc(int index)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000219{
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100220 struct tc *tc;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000221
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100222 if ((tc = kzalloc(sizeof(struct tc), GFP_KERNEL)) == NULL)
223 goto out;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000224
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100225 INIT_LIST_HEAD(&tc->tc);
226 tc->index = index;
227 list_add_tail(&tc->list, &vpecontrol.tc_list);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000228
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100229out:
230 return tc;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000231}
232
233/* clean up and free everything */
Ralf Baechlef18b51c2009-08-03 12:54:35 +0100234static void release_vpe(struct vpe *v)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000235{
236 list_del(&v->list);
237 if (v->load_addr)
238 release_progmem(v);
239 kfree(v);
240}
241
Ralf Baechlef18b51c2009-08-03 12:54:35 +0100242static void dump_mtregs(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000243{
244 unsigned long val;
245
246 val = read_c0_config3();
247 printk("config3 0x%lx MT %ld\n", val,
248 (val & CONFIG3_MT) >> CONFIG3_MT_SHIFT);
249
Ralf Baechlee01402b2005-07-14 15:57:16 +0000250 val = read_c0_mvpcontrol();
251 printk("MVPControl 0x%lx, STLB %ld VPC %ld EVP %ld\n", val,
252 (val & MVPCONTROL_STLB) >> MVPCONTROL_STLB_SHIFT,
253 (val & MVPCONTROL_VPC) >> MVPCONTROL_VPC_SHIFT,
254 (val & MVPCONTROL_EVP));
255
Ralf Baechle26009902006-04-05 09:45:45 +0100256 val = read_c0_mvpconf0();
257 printk("mvpconf0 0x%lx, PVPE %ld PTC %ld M %ld\n", val,
258 (val & MVPCONF0_PVPE) >> MVPCONF0_PVPE_SHIFT,
259 val & MVPCONF0_PTC, (val & MVPCONF0_M) >> MVPCONF0_M_SHIFT);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000260}
261
262/* Find some VPE program space */
Ralf Baechle571e0be2005-12-08 00:32:23 +0000263static void *alloc_progmem(unsigned long len)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000264{
Ralf Baechle5408c492008-03-13 15:16:53 +0000265 void *addr;
266
Ralf Baechlee01402b2005-07-14 15:57:16 +0000267#ifdef CONFIG_MIPS_VPE_LOADER_TOM
Ralf Baechle5408c492008-03-13 15:16:53 +0000268 /*
269 * This means you must tell Linux to use less memory than you
270 * physically have, for example by passing a mem= boot argument.
271 */
Ralf Baechle9f2546a2008-04-17 13:42:50 +0100272 addr = pfn_to_kaddr(max_low_pfn);
Ralf Baechle5408c492008-03-13 15:16:53 +0000273 memset(addr, 0, len);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000274#else
Ralf Baechle5408c492008-03-13 15:16:53 +0000275 /* simple grab some mem for now */
276 addr = kzalloc(len, GFP_KERNEL);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000277#endif
Ralf Baechle5408c492008-03-13 15:16:53 +0000278
279 return addr;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000280}
281
282static void release_progmem(void *ptr)
283{
284#ifndef CONFIG_MIPS_VPE_LOADER_TOM
285 kfree(ptr);
286#endif
287}
288
289/* Update size with this section: return offset. */
290static long get_offset(unsigned long *size, Elf_Shdr * sechdr)
291{
292 long ret;
293
294 ret = ALIGN(*size, sechdr->sh_addralign ? : 1);
295 *size = ret + sechdr->sh_size;
296 return ret;
297}
298
299/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
300 might -- code, read-only data, read-write data, small data. Tally
301 sizes, and place the offsets into sh_entsize fields: high bit means it
302 belongs in init. */
303static void layout_sections(struct module *mod, const Elf_Ehdr * hdr,
304 Elf_Shdr * sechdrs, const char *secstrings)
305{
306 static unsigned long const masks[][2] = {
307 /* NOTE: all executable code must be the first section
308 * in this array; otherwise modify the text_size
309 * finder in the two loops below */
310 {SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL},
311 {SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL},
312 {SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL},
313 {ARCH_SHF_SMALL | SHF_ALLOC, 0}
314 };
315 unsigned int m, i;
316
317 for (i = 0; i < hdr->e_shnum; i++)
318 sechdrs[i].sh_entsize = ~0UL;
319
320 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
321 for (i = 0; i < hdr->e_shnum; ++i) {
322 Elf_Shdr *s = &sechdrs[i];
323
324 // || strncmp(secstrings + s->sh_name, ".init", 5) == 0)
325 if ((s->sh_flags & masks[m][0]) != masks[m][0]
326 || (s->sh_flags & masks[m][1])
327 || s->sh_entsize != ~0UL)
328 continue;
Raghu Gandhame2a9cf92009-07-10 02:01:32 -0700329 s->sh_entsize =
330 get_offset((unsigned long *)&mod->core_size, s);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000331 }
332
333 if (m == 0)
334 mod->core_text_size = mod->core_size;
335
336 }
337}
338
339
340/* from module-elf32.c, but subverted a little */
341
342struct mips_hi16 {
343 struct mips_hi16 *next;
344 Elf32_Addr *addr;
345 Elf32_Addr value;
346};
347
348static struct mips_hi16 *mips_hi16_list;
349static unsigned int gp_offs, gp_addr;
350
351static int apply_r_mips_none(struct module *me, uint32_t *location,
352 Elf32_Addr v)
353{
354 return 0;
355}
356
357static int apply_r_mips_gprel16(struct module *me, uint32_t *location,
358 Elf32_Addr v)
359{
360 int rel;
361
362 if( !(*location & 0xffff) ) {
363 rel = (int)v - gp_addr;
364 }
365 else {
366 /* .sbss + gp(relative) + offset */
367 /* kludge! */
368 rel = (int)(short)((int)v + gp_offs +
369 (int)(short)(*location & 0xffff) - gp_addr);
370 }
371
372 if( (rel > 32768) || (rel < -32768) ) {
Ralf Baechle26009902006-04-05 09:45:45 +0100373 printk(KERN_DEBUG "VPE loader: apply_r_mips_gprel16: "
374 "relative address 0x%x out of range of gp register\n",
375 rel);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000376 return -ENOEXEC;
377 }
378
379 *location = (*location & 0xffff0000) | (rel & 0xffff);
380
381 return 0;
382}
383
384static int apply_r_mips_pc16(struct module *me, uint32_t *location,
385 Elf32_Addr v)
386{
387 int rel;
388 rel = (((unsigned int)v - (unsigned int)location));
389 rel >>= 2; // because the offset is in _instructions_ not bytes.
390 rel -= 1; // and one instruction less due to the branch delay slot.
391
392 if( (rel > 32768) || (rel < -32768) ) {
Ralf Baechle26009902006-04-05 09:45:45 +0100393 printk(KERN_DEBUG "VPE loader: "
394 "apply_r_mips_pc16: relative address out of range 0x%x\n", rel);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000395 return -ENOEXEC;
396 }
397
398 *location = (*location & 0xffff0000) | (rel & 0xffff);
399
400 return 0;
401}
402
403static int apply_r_mips_32(struct module *me, uint32_t *location,
404 Elf32_Addr v)
405{
406 *location += v;
407
408 return 0;
409}
410
411static int apply_r_mips_26(struct module *me, uint32_t *location,
412 Elf32_Addr v)
413{
414 if (v % 4) {
Ralf Baechle26009902006-04-05 09:45:45 +0100415 printk(KERN_DEBUG "VPE loader: apply_r_mips_26 "
416 " unaligned relocation\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000417 return -ENOEXEC;
418 }
419
Ralf Baechle307bd282005-10-31 23:34:52 +0000420/*
421 * Not desperately convinced this is a good check of an overflow condition
422 * anyway. But it gets in the way of handling undefined weak symbols which
423 * we want to set to zero.
424 * if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
425 * printk(KERN_ERR
426 * "module %s: relocation overflow\n",
427 * me->name);
428 * return -ENOEXEC;
429 * }
430 */
Ralf Baechlee01402b2005-07-14 15:57:16 +0000431
432 *location = (*location & ~0x03ffffff) |
433 ((*location + (v >> 2)) & 0x03ffffff);
434 return 0;
435}
436
437static int apply_r_mips_hi16(struct module *me, uint32_t *location,
438 Elf32_Addr v)
439{
440 struct mips_hi16 *n;
441
442 /*
443 * We cannot relocate this one now because we don't know the value of
444 * the carry we need to add. Save the information, and let LO16 do the
445 * actual relocation.
446 */
447 n = kmalloc(sizeof *n, GFP_KERNEL);
448 if (!n)
449 return -ENOMEM;
450
451 n->addr = location;
452 n->value = v;
453 n->next = mips_hi16_list;
454 mips_hi16_list = n;
455
456 return 0;
457}
458
459static int apply_r_mips_lo16(struct module *me, uint32_t *location,
460 Elf32_Addr v)
461{
462 unsigned long insnlo = *location;
463 Elf32_Addr val, vallo;
Ralf Baechle477c4b02009-08-03 12:26:40 +0100464 struct mips_hi16 *l, *next;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000465
466 /* Sign extend the addend we extract from the lo insn. */
467 vallo = ((insnlo & 0xffff) ^ 0x8000) - 0x8000;
468
469 if (mips_hi16_list != NULL) {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000470
471 l = mips_hi16_list;
472 while (l != NULL) {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000473 unsigned long insn;
474
475 /*
476 * The value for the HI16 had best be the same.
477 */
Ralf Baechle26009902006-04-05 09:45:45 +0100478 if (v != l->value) {
479 printk(KERN_DEBUG "VPE loader: "
Joe Perchesb1e3afa2007-11-19 17:47:54 -0800480 "apply_r_mips_lo16/hi16: \t"
Ralf Baechle26009902006-04-05 09:45:45 +0100481 "inconsistent value information\n");
Ralf Baechle477c4b02009-08-03 12:26:40 +0100482 goto out_free;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000483 }
484
Ralf Baechlee01402b2005-07-14 15:57:16 +0000485 /*
486 * Do the HI16 relocation. Note that we actually don't
487 * need to know anything about the LO16 itself, except
488 * where to find the low 16 bits of the addend needed
489 * by the LO16.
490 */
491 insn = *l->addr;
492 val = ((insn & 0xffff) << 16) + vallo;
493 val += v;
494
495 /*
496 * Account for the sign extension that will happen in
497 * the low bits.
498 */
499 val = ((val >> 16) + ((val & 0x8000) != 0)) & 0xffff;
500
501 insn = (insn & ~0xffff) | val;
502 *l->addr = insn;
503
504 next = l->next;
505 kfree(l);
506 l = next;
507 }
508
509 mips_hi16_list = NULL;
510 }
511
512 /*
513 * Ok, we're done with the HI16 relocs. Now deal with the LO16.
514 */
515 val = v + vallo;
516 insnlo = (insnlo & ~0xffff) | (val & 0xffff);
517 *location = insnlo;
518
519 return 0;
Ralf Baechle477c4b02009-08-03 12:26:40 +0100520
521out_free:
522 while (l != NULL) {
523 next = l->next;
524 kfree(l);
525 l = next;
526 }
527 mips_hi16_list = NULL;
528
529 return -ENOEXEC;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000530}
531
532static int (*reloc_handlers[]) (struct module *me, uint32_t *location,
533 Elf32_Addr v) = {
534 [R_MIPS_NONE] = apply_r_mips_none,
535 [R_MIPS_32] = apply_r_mips_32,
536 [R_MIPS_26] = apply_r_mips_26,
537 [R_MIPS_HI16] = apply_r_mips_hi16,
538 [R_MIPS_LO16] = apply_r_mips_lo16,
539 [R_MIPS_GPREL16] = apply_r_mips_gprel16,
540 [R_MIPS_PC16] = apply_r_mips_pc16
541};
542
Ralf Baechle26009902006-04-05 09:45:45 +0100543static char *rstrs[] = {
Ralf Baechlee0daad42007-02-05 00:10:11 +0000544 [R_MIPS_NONE] = "MIPS_NONE",
Ralf Baechle26009902006-04-05 09:45:45 +0100545 [R_MIPS_32] = "MIPS_32",
546 [R_MIPS_26] = "MIPS_26",
547 [R_MIPS_HI16] = "MIPS_HI16",
548 [R_MIPS_LO16] = "MIPS_LO16",
549 [R_MIPS_GPREL16] = "MIPS_GPREL16",
550 [R_MIPS_PC16] = "MIPS_PC16"
551};
Ralf Baechlee01402b2005-07-14 15:57:16 +0000552
Ralf Baechlef18b51c2009-08-03 12:54:35 +0100553static int apply_relocations(Elf32_Shdr *sechdrs,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000554 const char *strtab,
555 unsigned int symindex,
556 unsigned int relsec,
557 struct module *me)
558{
559 Elf32_Rel *rel = (void *) sechdrs[relsec].sh_addr;
560 Elf32_Sym *sym;
561 uint32_t *location;
562 unsigned int i;
563 Elf32_Addr v;
564 int res;
565
566 for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
567 Elf32_Word r_info = rel[i].r_info;
568
569 /* This is where to make the change */
570 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
571 + rel[i].r_offset;
572 /* This is the symbol it is referring to */
573 sym = (Elf32_Sym *)sechdrs[symindex].sh_addr
574 + ELF32_R_SYM(r_info);
575
576 if (!sym->st_value) {
577 printk(KERN_DEBUG "%s: undefined weak symbol %s\n",
578 me->name, strtab + sym->st_name);
579 /* just print the warning, dont barf */
580 }
581
582 v = sym->st_value;
583
584 res = reloc_handlers[ELF32_R_TYPE(r_info)](me, location, v);
585 if( res ) {
Ralf Baechle26009902006-04-05 09:45:45 +0100586 char *r = rstrs[ELF32_R_TYPE(r_info)];
587 printk(KERN_WARNING "VPE loader: .text+0x%x "
588 "relocation type %s for symbol \"%s\" failed\n",
589 rel[i].r_offset, r ? r : "UNKNOWN",
590 strtab + sym->st_name);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000591 return res;
Ralf Baechle26009902006-04-05 09:45:45 +0100592 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000593 }
594
595 return 0;
596}
597
Ralf Baechlef18b51c2009-08-03 12:54:35 +0100598static inline void save_gp_address(unsigned int secbase, unsigned int rel)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000599{
600 gp_addr = secbase + rel;
601 gp_offs = gp_addr - (secbase & 0xffff0000);
602}
603/* end module-elf32.c */
604
605
606
607/* Change all symbols so that sh_value encodes the pointer directly. */
Ralf Baechle26009902006-04-05 09:45:45 +0100608static void simplify_symbols(Elf_Shdr * sechdrs,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000609 unsigned int symindex,
610 const char *strtab,
611 const char *secstrings,
612 unsigned int nsecs, struct module *mod)
613{
614 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
615 unsigned long secbase, bssbase = 0;
616 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
Ralf Baechle26009902006-04-05 09:45:45 +0100617 int size;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000618
619 /* find the .bss section for COMMON symbols */
620 for (i = 0; i < nsecs; i++) {
Ralf Baechle26009902006-04-05 09:45:45 +0100621 if (strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) == 0) {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000622 bssbase = sechdrs[i].sh_addr;
Ralf Baechle26009902006-04-05 09:45:45 +0100623 break;
624 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000625 }
626
627 for (i = 1; i < n; i++) {
628 switch (sym[i].st_shndx) {
629 case SHN_COMMON:
Ralf Baechle26009902006-04-05 09:45:45 +0100630 /* Allocate space for the symbol in the .bss section.
631 st_value is currently size.
Ralf Baechlee01402b2005-07-14 15:57:16 +0000632 We want it to have the address of the symbol. */
633
634 size = sym[i].st_value;
635 sym[i].st_value = bssbase;
636
637 bssbase += size;
638 break;
639
640 case SHN_ABS:
641 /* Don't need to do anything */
642 break;
643
644 case SHN_UNDEF:
645 /* ret = -ENOENT; */
646 break;
647
648 case SHN_MIPS_SCOMMON:
Joe Perchesb1e3afa2007-11-19 17:47:54 -0800649 printk(KERN_DEBUG "simplify_symbols: ignoring SHN_MIPS_SCOMMON "
Ralf Baechle26009902006-04-05 09:45:45 +0100650 "symbol <%s> st_shndx %d\n", strtab + sym[i].st_name,
651 sym[i].st_shndx);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000652 // .sbss section
653 break;
654
655 default:
656 secbase = sechdrs[sym[i].st_shndx].sh_addr;
657
658 if (strncmp(strtab + sym[i].st_name, "_gp", 3) == 0) {
659 save_gp_address(secbase, sym[i].st_value);
660 }
661
662 sym[i].st_value += secbase;
663 break;
664 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000665 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000666}
667
668#ifdef DEBUG_ELFLOADER
669static void dump_elfsymbols(Elf_Shdr * sechdrs, unsigned int symindex,
670 const char *strtab, struct module *mod)
671{
672 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
673 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
674
675 printk(KERN_DEBUG "dump_elfsymbols: n %d\n", n);
676 for (i = 1; i < n; i++) {
677 printk(KERN_DEBUG " i %d name <%s> 0x%x\n", i,
678 strtab + sym[i].st_name, sym[i].st_value);
679 }
680}
681#endif
682
Ralf Baechlee01402b2005-07-14 15:57:16 +0000683/* We are prepared so configure and start the VPE... */
Ralf Baechlebe6e1432007-02-06 16:53:17 +0000684static int vpe_run(struct vpe * v)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000685{
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100686 unsigned long flags, val, dmt_flag;
Ralf Baechle26009902006-04-05 09:45:45 +0100687 struct vpe_notifications *n;
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100688 unsigned int vpeflags;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000689 struct tc *t;
690
691 /* check we are the Master VPE */
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100692 local_irq_save(flags);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000693 val = read_c0_vpeconf0();
694 if (!(val & VPECONF0_MVP)) {
695 printk(KERN_WARNING
Ralf Baechle26009902006-04-05 09:45:45 +0100696 "VPE loader: only Master VPE's are allowed to configure MT\n");
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100697 local_irq_restore(flags);
698
Ralf Baechlee01402b2005-07-14 15:57:16 +0000699 return -1;
700 }
701
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100702 dmt_flag = dmt();
703 vpeflags = dvpe();
Ralf Baechlee01402b2005-07-14 15:57:16 +0000704
Ralf Baechle26009902006-04-05 09:45:45 +0100705 if (!list_empty(&v->tc)) {
Ralf Baechlee0daad42007-02-05 00:10:11 +0000706 if ((t = list_entry(v->tc.next, struct tc, tc)) == NULL) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100707 evpe(vpeflags);
708 emt(dmt_flag);
709 local_irq_restore(flags);
710
711 printk(KERN_WARNING
712 "VPE loader: TC %d is already in use.\n",
713 t->index);
Ralf Baechlee0daad42007-02-05 00:10:11 +0000714 return -ENOEXEC;
715 }
716 } else {
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100717 evpe(vpeflags);
718 emt(dmt_flag);
719 local_irq_restore(flags);
720
721 printk(KERN_WARNING
722 "VPE loader: No TC's associated with VPE %d\n",
Ralf Baechlee0daad42007-02-05 00:10:11 +0000723 v->minor);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100724
Ralf Baechlee0daad42007-02-05 00:10:11 +0000725 return -ENOEXEC;
726 }
Ralf Baechle26009902006-04-05 09:45:45 +0100727
Ralf Baechlee01402b2005-07-14 15:57:16 +0000728 /* Put MVPE's into 'configuration state' */
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000729 set_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000730
Ralf Baechlee01402b2005-07-14 15:57:16 +0000731 settc(t->index);
732
Ralf Baechlee01402b2005-07-14 15:57:16 +0000733 /* should check it is halted, and not activated */
734 if ((read_tc_c0_tcstatus() & TCSTATUS_A) || !(read_tc_c0_tchalt() & TCHALT_H)) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100735 evpe(vpeflags);
736 emt(dmt_flag);
737 local_irq_restore(flags);
738
739 printk(KERN_WARNING "VPE loader: TC %d is already active!\n",
Ralf Baechlee01402b2005-07-14 15:57:16 +0000740 t->index);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100741
Ralf Baechlee01402b2005-07-14 15:57:16 +0000742 return -ENOEXEC;
743 }
744
745 /* Write the address we want it to start running from in the TCPC register. */
746 write_tc_c0_tcrestart((unsigned long)v->__start);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000747 write_tc_c0_tccontext((unsigned long)0);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100748
Ralf Baechle26009902006-04-05 09:45:45 +0100749 /*
750 * Mark the TC as activated, not interrupt exempt and not dynamically
751 * allocatable
752 */
Ralf Baechlee01402b2005-07-14 15:57:16 +0000753 val = read_tc_c0_tcstatus();
754 val = (val & ~(TCSTATUS_DA | TCSTATUS_IXMT)) | TCSTATUS_A;
755 write_tc_c0_tcstatus(val);
756
757 write_tc_c0_tchalt(read_tc_c0_tchalt() & ~TCHALT_H);
758
Ralf Baechlee01402b2005-07-14 15:57:16 +0000759 /*
760 * The sde-kit passes 'memsize' to __start in $a3, so set something
Ralf Baechle26009902006-04-05 09:45:45 +0100761 * here... Or set $a3 to zero and define DFLT_STACK_SIZE and
Ralf Baechlee01402b2005-07-14 15:57:16 +0000762 * DFLT_HEAP_SIZE when you compile your program
763 */
Ralf Baechle41790e02007-07-27 19:33:18 +0100764 mttgpr(6, v->ntcs);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100765 mttgpr(7, physical_memsize);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000766
Ralf Baechle26009902006-04-05 09:45:45 +0100767 /* set up VPE1 */
768 /*
769 * bind the TC to VPE 1 as late as possible so we only have the final
770 * VPE registers to set up, and so an EJTAG probe can trigger on it
771 */
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100772 write_tc_c0_tcbind((read_tc_c0_tcbind() & ~TCBIND_CURVPE) | 1);
Ralf Baechle26009902006-04-05 09:45:45 +0100773
Elizabeth Oldhama94d7022006-08-17 12:39:21 +0100774 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() & ~(VPECONF0_VPA));
775
776 back_to_back_c0_hazard();
777
Ralf Baechlee0daad42007-02-05 00:10:11 +0000778 /* Set up the XTC bit in vpeconf0 to point at our tc */
779 write_vpe_c0_vpeconf0( (read_vpe_c0_vpeconf0() & ~(VPECONF0_XTC))
780 | (t->index << VPECONF0_XTC_SHIFT));
Ralf Baechle26009902006-04-05 09:45:45 +0100781
Elizabeth Oldhama94d7022006-08-17 12:39:21 +0100782 back_to_back_c0_hazard();
783
Ralf Baechlee0daad42007-02-05 00:10:11 +0000784 /* enable this VPE */
785 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() | VPECONF0_VPA);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000786
787 /* clear out any left overs from a previous program */
Ralf Baechle26009902006-04-05 09:45:45 +0100788 write_vpe_c0_status(0);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000789 write_vpe_c0_cause(0);
790
791 /* take system out of configuration state */
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000792 clear_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000793
Kevin D. Kissellb6183362008-04-16 15:32:22 +0200794 /*
795 * SMTC/SMVP kernels manage VPE enable independently,
796 * but uniprocessor kernels need to turn it on, even
797 * if that wasn't the pre-dvpe() state.
798 */
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100799#ifdef CONFIG_SMP
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100800 evpe(vpeflags);
Kevin D. Kissellb6183362008-04-16 15:32:22 +0200801#else
802 evpe(EVPE_ENABLE);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100803#endif
804 emt(dmt_flag);
805 local_irq_restore(flags);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000806
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100807 list_for_each_entry(n, &v->notify, list)
808 n->start(minor);
Ralf Baechle26009902006-04-05 09:45:45 +0100809
Ralf Baechlee01402b2005-07-14 15:57:16 +0000810 return 0;
811}
812
Ralf Baechle26009902006-04-05 09:45:45 +0100813static int find_vpe_symbols(struct vpe * v, Elf_Shdr * sechdrs,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000814 unsigned int symindex, const char *strtab,
815 struct module *mod)
816{
817 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
818 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
819
820 for (i = 1; i < n; i++) {
821 if (strcmp(strtab + sym[i].st_name, "__start") == 0) {
822 v->__start = sym[i].st_value;
823 }
824
825 if (strcmp(strtab + sym[i].st_name, "vpe_shared") == 0) {
826 v->shared_ptr = (void *)sym[i].st_value;
827 }
828 }
829
Ralf Baechle26009902006-04-05 09:45:45 +0100830 if ( (v->__start == 0) || (v->shared_ptr == NULL))
831 return -1;
832
Ralf Baechlee01402b2005-07-14 15:57:16 +0000833 return 0;
834}
835
Ralf Baechle307bd282005-10-31 23:34:52 +0000836/*
Ralf Baechle26009902006-04-05 09:45:45 +0100837 * Allocates a VPE with some program code space(the load address), copies the
838 * contents of the program (p)buffer performing relocatations/etc, free's it
839 * when finished.
840 */
Ralf Baechlebe6e1432007-02-06 16:53:17 +0000841static int vpe_elfload(struct vpe * v)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000842{
843 Elf_Ehdr *hdr;
844 Elf_Shdr *sechdrs;
845 long err = 0;
846 char *secstrings, *strtab = NULL;
Ralf Baechle26009902006-04-05 09:45:45 +0100847 unsigned int len, i, symindex = 0, strindex = 0, relocate = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000848 struct module mod; // so we can re-use the relocations code
849
850 memset(&mod, 0, sizeof(struct module));
Ralf Baechle26009902006-04-05 09:45:45 +0100851 strcpy(mod.name, "VPE loader");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000852
853 hdr = (Elf_Ehdr *) v->pbuffer;
854 len = v->plen;
855
856 /* Sanity checks against insmoding binaries or wrong arch,
857 weird elf version */
Cyrill Gorcunovd303f4a2008-05-04 17:50:02 +0100858 if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
Ralf Baechle26009902006-04-05 09:45:45 +0100859 || (hdr->e_type != ET_REL && hdr->e_type != ET_EXEC)
860 || !elf_check_arch(hdr)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000861 || hdr->e_shentsize != sizeof(*sechdrs)) {
862 printk(KERN_WARNING
Ralf Baechle26009902006-04-05 09:45:45 +0100863 "VPE loader: program wrong arch or weird elf version\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000864
865 return -ENOEXEC;
866 }
867
Ralf Baechle26009902006-04-05 09:45:45 +0100868 if (hdr->e_type == ET_REL)
869 relocate = 1;
870
Ralf Baechlee01402b2005-07-14 15:57:16 +0000871 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr)) {
Ralf Baechle26009902006-04-05 09:45:45 +0100872 printk(KERN_ERR "VPE loader: program length %u truncated\n",
873 len);
874
Ralf Baechlee01402b2005-07-14 15:57:16 +0000875 return -ENOEXEC;
876 }
877
878 /* Convenience variables */
879 sechdrs = (void *)hdr + hdr->e_shoff;
880 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
881 sechdrs[0].sh_addr = 0;
882
883 /* And these should exist, but gcc whinges if we don't init them */
884 symindex = strindex = 0;
885
Ralf Baechle26009902006-04-05 09:45:45 +0100886 if (relocate) {
887 for (i = 1; i < hdr->e_shnum; i++) {
888 if (sechdrs[i].sh_type != SHT_NOBITS
889 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size) {
890 printk(KERN_ERR "VPE program length %u truncated\n",
891 len);
892 return -ENOEXEC;
893 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000894
Ralf Baechle26009902006-04-05 09:45:45 +0100895 /* Mark all sections sh_addr with their address in the
896 temporary image. */
897 sechdrs[i].sh_addr = (size_t) hdr + sechdrs[i].sh_offset;
898
899 /* Internal symbols and strings. */
900 if (sechdrs[i].sh_type == SHT_SYMTAB) {
901 symindex = i;
902 strindex = sechdrs[i].sh_link;
903 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
904 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000905 }
Ralf Baechle26009902006-04-05 09:45:45 +0100906 layout_sections(&mod, hdr, sechdrs, secstrings);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000907 }
908
Ralf Baechlee01402b2005-07-14 15:57:16 +0000909 v->load_addr = alloc_progmem(mod.core_size);
Ralf Baechle5408c492008-03-13 15:16:53 +0000910 if (!v->load_addr)
911 return -ENOMEM;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000912
Ralf Baechle5408c492008-03-13 15:16:53 +0000913 pr_info("VPE loader: loading to %p\n", v->load_addr);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000914
Ralf Baechle26009902006-04-05 09:45:45 +0100915 if (relocate) {
916 for (i = 0; i < hdr->e_shnum; i++) {
917 void *dest;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000918
Ralf Baechle26009902006-04-05 09:45:45 +0100919 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
920 continue;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000921
Ralf Baechle26009902006-04-05 09:45:45 +0100922 dest = v->load_addr + sechdrs[i].sh_entsize;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000923
Ralf Baechle26009902006-04-05 09:45:45 +0100924 if (sechdrs[i].sh_type != SHT_NOBITS)
925 memcpy(dest, (void *)sechdrs[i].sh_addr,
926 sechdrs[i].sh_size);
927 /* Update sh_addr to point to copy in image. */
928 sechdrs[i].sh_addr = (unsigned long)dest;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000929
Ralf Baechle26009902006-04-05 09:45:45 +0100930 printk(KERN_DEBUG " section sh_name %s sh_addr 0x%x\n",
931 secstrings + sechdrs[i].sh_name, sechdrs[i].sh_addr);
932 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000933
Ralf Baechle26009902006-04-05 09:45:45 +0100934 /* Fix up syms, so that st_value is a pointer to location. */
935 simplify_symbols(sechdrs, symindex, strtab, secstrings,
936 hdr->e_shnum, &mod);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000937
Ralf Baechle26009902006-04-05 09:45:45 +0100938 /* Now do relocations. */
939 for (i = 1; i < hdr->e_shnum; i++) {
940 const char *strtab = (char *)sechdrs[strindex].sh_addr;
941 unsigned int info = sechdrs[i].sh_info;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000942
Ralf Baechle26009902006-04-05 09:45:45 +0100943 /* Not a valid relocation section? */
944 if (info >= hdr->e_shnum)
945 continue;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000946
Ralf Baechle26009902006-04-05 09:45:45 +0100947 /* Don't bother with non-allocated sections */
948 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
949 continue;
950
951 if (sechdrs[i].sh_type == SHT_REL)
952 err = apply_relocations(sechdrs, strtab, symindex, i,
953 &mod);
954 else if (sechdrs[i].sh_type == SHT_RELA)
955 err = apply_relocate_add(sechdrs, strtab, symindex, i,
956 &mod);
957 if (err < 0)
958 return err;
959
960 }
961 } else {
Ralf Baechlebdf5d422007-10-10 13:33:03 +0100962 struct elf_phdr *phdr = (struct elf_phdr *) ((char *)hdr + hdr->e_phoff);
Ralf Baechle26009902006-04-05 09:45:45 +0100963
Ralf Baechlebdf5d422007-10-10 13:33:03 +0100964 for (i = 0; i < hdr->e_phnum; i++) {
Kevin D. Kissellb6183362008-04-16 15:32:22 +0200965 if (phdr->p_type == PT_LOAD) {
966 memcpy((void *)phdr->p_paddr,
967 (char *)hdr + phdr->p_offset,
968 phdr->p_filesz);
969 memset((void *)phdr->p_paddr + phdr->p_filesz,
970 0, phdr->p_memsz - phdr->p_filesz);
971 }
972 phdr++;
Ralf Baechlebdf5d422007-10-10 13:33:03 +0100973 }
974
975 for (i = 0; i < hdr->e_shnum; i++) {
Ralf Baechle26009902006-04-05 09:45:45 +0100976 /* Internal symbols and strings. */
977 if (sechdrs[i].sh_type == SHT_SYMTAB) {
978 symindex = i;
979 strindex = sechdrs[i].sh_link;
980 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
981
982 /* mark the symtab's address for when we try to find the
983 magic symbols */
984 sechdrs[i].sh_addr = (size_t) hdr + sechdrs[i].sh_offset;
985 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000986 }
987 }
988
989 /* make sure it's physically written out */
990 flush_icache_range((unsigned long)v->load_addr,
991 (unsigned long)v->load_addr + v->len);
992
993 if ((find_vpe_symbols(v, sechdrs, symindex, strtab, &mod)) < 0) {
Ralf Baechle26009902006-04-05 09:45:45 +0100994 if (v->__start == 0) {
995 printk(KERN_WARNING "VPE loader: program does not contain "
996 "a __start symbol\n");
997 return -ENOEXEC;
998 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000999
Ralf Baechle26009902006-04-05 09:45:45 +01001000 if (v->shared_ptr == NULL)
1001 printk(KERN_WARNING "VPE loader: "
1002 "program does not contain vpe_shared symbol.\n"
1003 " Unable to use AMVP (AP/SP) facilities.\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001004 }
1005
1006 printk(" elf loaded\n");
Ralf Baechle26009902006-04-05 09:45:45 +01001007 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001008}
1009
Ralf Baechle26009902006-04-05 09:45:45 +01001010static void cleanup_tc(struct tc *tc)
1011{
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001012 unsigned long flags;
1013 unsigned int mtflags, vpflags;
Ralf Baechle26009902006-04-05 09:45:45 +01001014 int tmp;
1015
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001016 local_irq_save(flags);
1017 mtflags = dmt();
1018 vpflags = dvpe();
Ralf Baechle26009902006-04-05 09:45:45 +01001019 /* Put MVPE's into 'configuration state' */
1020 set_c0_mvpcontrol(MVPCONTROL_VPC);
1021
1022 settc(tc->index);
1023 tmp = read_tc_c0_tcstatus();
1024
1025 /* mark not allocated and not dynamically allocatable */
1026 tmp &= ~(TCSTATUS_A | TCSTATUS_DA);
1027 tmp |= TCSTATUS_IXMT; /* interrupt exempt */
1028 write_tc_c0_tcstatus(tmp);
1029
1030 write_tc_c0_tchalt(TCHALT_H);
Nigel Stephens7c3a6222007-11-08 13:25:51 +00001031 mips_ihb();
Ralf Baechle26009902006-04-05 09:45:45 +01001032
1033 /* bind it to anything other than VPE1 */
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001034// write_tc_c0_tcbind(read_tc_c0_tcbind() & ~TCBIND_CURVPE); // | TCBIND_CURVPE
Ralf Baechle26009902006-04-05 09:45:45 +01001035
1036 clear_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001037 evpe(vpflags);
1038 emt(mtflags);
1039 local_irq_restore(flags);
Ralf Baechle26009902006-04-05 09:45:45 +01001040}
1041
1042static int getcwd(char *buff, int size)
1043{
1044 mm_segment_t old_fs;
1045 int ret;
1046
1047 old_fs = get_fs();
1048 set_fs(KERNEL_DS);
1049
Ralf Baechle21a151d2007-10-11 23:46:15 +01001050 ret = sys_getcwd(buff, size);
Ralf Baechle26009902006-04-05 09:45:45 +01001051
1052 set_fs(old_fs);
1053
1054 return ret;
1055}
1056
1057/* checks VPE is unused and gets ready to load program */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001058static int vpe_open(struct inode *inode, struct file *filp)
1059{
Ralf Baechlec4c40182007-02-23 13:40:45 +00001060 enum vpe_state state;
Ralf Baechle26009902006-04-05 09:45:45 +01001061 struct vpe_notifications *not;
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001062 struct vpe *v;
Jonathan Corbet7558da92008-05-15 09:10:50 -06001063 int ret, err = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001064
Jonathan Corbet7558da92008-05-15 09:10:50 -06001065 lock_kernel();
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001066 if (minor != iminor(inode)) {
1067 /* assume only 1 device at the moment. */
Ralf Baechle26009902006-04-05 09:45:45 +01001068 printk(KERN_WARNING "VPE loader: only vpe1 is supported\n");
Jonathan Corbet7558da92008-05-15 09:10:50 -06001069 err = -ENODEV;
1070 goto out;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001071 }
1072
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001073 if ((v = get_vpe(tclimit)) == NULL) {
Ralf Baechle26009902006-04-05 09:45:45 +01001074 printk(KERN_WARNING "VPE loader: unable to get vpe\n");
Jonathan Corbet7558da92008-05-15 09:10:50 -06001075 err = -ENODEV;
1076 goto out;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001077 }
1078
Ralf Baechlec4c40182007-02-23 13:40:45 +00001079 state = xchg(&v->state, VPE_STATE_INUSE);
1080 if (state != VPE_STATE_UNUSED) {
Ralf Baechle26009902006-04-05 09:45:45 +01001081 printk(KERN_DEBUG "VPE loader: tc in use dumping regs\n");
1082
Ralf Baechle26009902006-04-05 09:45:45 +01001083 list_for_each_entry(not, &v->notify, list) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001084 not->stop(tclimit);
Ralf Baechle26009902006-04-05 09:45:45 +01001085 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00001086
1087 release_progmem(v->load_addr);
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001088 cleanup_tc(get_tc(tclimit));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001089 }
1090
Ralf Baechlee01402b2005-07-14 15:57:16 +00001091 /* this of-course trashes what was there before... */
1092 v->pbuffer = vmalloc(P_SIZE);
1093 v->plen = P_SIZE;
1094 v->load_addr = NULL;
1095 v->len = 0;
1096
David Howellsd76b0d92008-11-14 10:39:25 +11001097 v->uid = filp->f_cred->fsuid;
1098 v->gid = filp->f_cred->fsgid;
Ralf Baechle26009902006-04-05 09:45:45 +01001099
1100#ifdef CONFIG_MIPS_APSP_KSPD
1101 /* get kspd to tell us when a syscall_exit happens */
1102 if (!kspd_events_reqd) {
1103 kspd_notify(&kspd_events);
1104 kspd_events_reqd++;
1105 }
1106#endif
1107
1108 v->cwd[0] = 0;
1109 ret = getcwd(v->cwd, VPE_PATH_MAX);
1110 if (ret < 0)
1111 printk(KERN_WARNING "VPE loader: open, getcwd returned %d\n", ret);
1112
1113 v->shared_ptr = NULL;
1114 v->__start = 0;
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001115
Jonathan Corbet7558da92008-05-15 09:10:50 -06001116out:
1117 unlock_kernel();
Ralf Baechlee01402b2005-07-14 15:57:16 +00001118 return 0;
1119}
1120
1121static int vpe_release(struct inode *inode, struct file *filp)
1122{
Ralf Baechle307bd282005-10-31 23:34:52 +00001123 struct vpe *v;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001124 Elf_Ehdr *hdr;
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001125 int ret = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001126
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001127 v = get_vpe(tclimit);
1128 if (v == NULL)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001129 return -ENODEV;
1130
Ralf Baechlee01402b2005-07-14 15:57:16 +00001131 hdr = (Elf_Ehdr *) v->pbuffer;
Cyrill Gorcunovd303f4a2008-05-04 17:50:02 +01001132 if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) == 0) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001133 if (vpe_elfload(v) >= 0) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001134 vpe_run(v);
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001135 } else {
Ralf Baechle26009902006-04-05 09:45:45 +01001136 printk(KERN_WARNING "VPE loader: ELF load failed.\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001137 ret = -ENOEXEC;
1138 }
1139 } else {
Ralf Baechle26009902006-04-05 09:45:45 +01001140 printk(KERN_WARNING "VPE loader: only elf files are supported\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001141 ret = -ENOEXEC;
1142 }
1143
Ralf Baechle26009902006-04-05 09:45:45 +01001144 /* It's good to be able to run the SP and if it chokes have a look at
1145 the /dev/rt?. But if we reset the pointer to the shared struct we
Nick Andrew8ebcfc82008-12-05 11:36:54 +11001146 lose what has happened. So perhaps if garbage is sent to the vpe
Ralf Baechle26009902006-04-05 09:45:45 +01001147 device, use it as a trigger for the reset. Hopefully a nice
1148 executable will be along shortly. */
1149 if (ret < 0)
1150 v->shared_ptr = NULL;
1151
Ralf Baechlee01402b2005-07-14 15:57:16 +00001152 // cleanup any temp buffers
1153 if (v->pbuffer)
1154 vfree(v->pbuffer);
1155 v->plen = 0;
1156 return ret;
1157}
1158
1159static ssize_t vpe_write(struct file *file, const char __user * buffer,
1160 size_t count, loff_t * ppos)
1161{
Ralf Baechlee01402b2005-07-14 15:57:16 +00001162 size_t ret = count;
Ralf Baechle307bd282005-10-31 23:34:52 +00001163 struct vpe *v;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001164
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001165 if (iminor(file->f_path.dentry->d_inode) != minor)
1166 return -ENODEV;
1167
1168 v = get_vpe(tclimit);
1169 if (v == NULL)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001170 return -ENODEV;
1171
1172 if (v->pbuffer == NULL) {
Ralf Baechle26009902006-04-05 09:45:45 +01001173 printk(KERN_ERR "VPE loader: no buffer for program\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001174 return -ENOMEM;
1175 }
1176
1177 if ((count + v->len) > v->plen) {
1178 printk(KERN_WARNING
Ralf Baechle26009902006-04-05 09:45:45 +01001179 "VPE loader: elf size too big. Perhaps strip uneeded symbols\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001180 return -ENOMEM;
1181 }
1182
1183 count -= copy_from_user(v->pbuffer + v->len, buffer, count);
Ralf Baechle26009902006-04-05 09:45:45 +01001184 if (!count)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001185 return -EFAULT;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001186
1187 v->len += count;
1188 return ret;
1189}
1190
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001191static const struct file_operations vpe_fops = {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001192 .owner = THIS_MODULE,
1193 .open = vpe_open,
1194 .release = vpe_release,
1195 .write = vpe_write
1196};
1197
1198/* module wrapper entry points */
1199/* give me a vpe */
1200vpe_handle vpe_alloc(void)
1201{
1202 int i;
1203 struct vpe *v;
1204
1205 /* find a vpe */
1206 for (i = 1; i < MAX_VPES; i++) {
1207 if ((v = get_vpe(i)) != NULL) {
1208 v->state = VPE_STATE_INUSE;
1209 return v;
1210 }
1211 }
1212 return NULL;
1213}
1214
1215EXPORT_SYMBOL(vpe_alloc);
1216
1217/* start running from here */
1218int vpe_start(vpe_handle vpe, unsigned long start)
1219{
1220 struct vpe *v = vpe;
1221
1222 v->__start = start;
1223 return vpe_run(v);
1224}
1225
1226EXPORT_SYMBOL(vpe_start);
1227
1228/* halt it for now */
1229int vpe_stop(vpe_handle vpe)
1230{
1231 struct vpe *v = vpe;
1232 struct tc *t;
1233 unsigned int evpe_flags;
1234
1235 evpe_flags = dvpe();
1236
1237 if ((t = list_entry(v->tc.next, struct tc, tc)) != NULL) {
1238
1239 settc(t->index);
1240 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() & ~VPECONF0_VPA);
1241 }
1242
1243 evpe(evpe_flags);
1244
1245 return 0;
1246}
1247
1248EXPORT_SYMBOL(vpe_stop);
1249
1250/* I've done with it thank you */
1251int vpe_free(vpe_handle vpe)
1252{
1253 struct vpe *v = vpe;
1254 struct tc *t;
1255 unsigned int evpe_flags;
1256
1257 if ((t = list_entry(v->tc.next, struct tc, tc)) == NULL) {
1258 return -ENOEXEC;
1259 }
1260
1261 evpe_flags = dvpe();
1262
1263 /* Put MVPE's into 'configuration state' */
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001264 set_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001265
1266 settc(t->index);
1267 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() & ~VPECONF0_VPA);
1268
Nigel Stephens7c3a6222007-11-08 13:25:51 +00001269 /* halt the TC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001270 write_tc_c0_tchalt(TCHALT_H);
Nigel Stephens7c3a6222007-11-08 13:25:51 +00001271 mips_ihb();
1272
1273 /* mark the TC unallocated */
1274 write_tc_c0_tcstatus(read_tc_c0_tcstatus() & ~TCSTATUS_A);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001275
1276 v->state = VPE_STATE_UNUSED;
1277
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001278 clear_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001279 evpe(evpe_flags);
1280
1281 return 0;
1282}
1283
1284EXPORT_SYMBOL(vpe_free);
1285
1286void *vpe_get_shared(int index)
1287{
1288 struct vpe *v;
1289
Ralf Baechle26009902006-04-05 09:45:45 +01001290 if ((v = get_vpe(index)) == NULL)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001291 return NULL;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001292
1293 return v->shared_ptr;
1294}
1295
1296EXPORT_SYMBOL(vpe_get_shared);
1297
Ralf Baechle26009902006-04-05 09:45:45 +01001298int vpe_getuid(int index)
1299{
1300 struct vpe *v;
1301
1302 if ((v = get_vpe(index)) == NULL)
1303 return -1;
1304
1305 return v->uid;
1306}
1307
1308EXPORT_SYMBOL(vpe_getuid);
1309
1310int vpe_getgid(int index)
1311{
1312 struct vpe *v;
1313
1314 if ((v = get_vpe(index)) == NULL)
1315 return -1;
1316
1317 return v->gid;
1318}
1319
1320EXPORT_SYMBOL(vpe_getgid);
1321
1322int vpe_notify(int index, struct vpe_notifications *notify)
1323{
1324 struct vpe *v;
1325
1326 if ((v = get_vpe(index)) == NULL)
1327 return -1;
1328
1329 list_add(&notify->list, &v->notify);
1330 return 0;
1331}
1332
1333EXPORT_SYMBOL(vpe_notify);
1334
1335char *vpe_getcwd(int index)
1336{
1337 struct vpe *v;
1338
1339 if ((v = get_vpe(index)) == NULL)
1340 return NULL;
1341
1342 return v->cwd;
1343}
1344
1345EXPORT_SYMBOL(vpe_getcwd);
1346
1347#ifdef CONFIG_MIPS_APSP_KSPD
1348static void kspd_sp_exit( int sp_id)
1349{
1350 cleanup_tc(get_tc(sp_id));
1351}
1352#endif
1353
Kay Sievers736fad12007-10-15 13:42:35 +02001354static ssize_t store_kill(struct device *dev, struct device_attribute *attr,
1355 const char *buf, size_t len)
Ralf Baechle0f5d0df2007-07-27 19:37:51 +01001356{
1357 struct vpe *vpe = get_vpe(tclimit);
1358 struct vpe_notifications *not;
1359
1360 list_for_each_entry(not, &vpe->notify, list) {
1361 not->stop(tclimit);
1362 }
1363
1364 release_progmem(vpe->load_addr);
1365 cleanup_tc(get_tc(tclimit));
1366 vpe_stop(vpe);
1367 vpe_free(vpe);
1368
1369 return len;
1370}
1371
Kay Sievers736fad12007-10-15 13:42:35 +02001372static ssize_t show_ntcs(struct device *cd, struct device_attribute *attr,
1373 char *buf)
Ralf Baechle41790e02007-07-27 19:33:18 +01001374{
1375 struct vpe *vpe = get_vpe(tclimit);
1376
1377 return sprintf(buf, "%d\n", vpe->ntcs);
1378}
1379
Kay Sievers736fad12007-10-15 13:42:35 +02001380static ssize_t store_ntcs(struct device *dev, struct device_attribute *attr,
1381 const char *buf, size_t len)
Ralf Baechle41790e02007-07-27 19:33:18 +01001382{
1383 struct vpe *vpe = get_vpe(tclimit);
1384 unsigned long new;
1385 char *endp;
1386
1387 new = simple_strtoul(buf, &endp, 0);
1388 if (endp == buf)
1389 goto out_einval;
1390
1391 if (new == 0 || new > (hw_tcs - tclimit))
1392 goto out_einval;
1393
1394 vpe->ntcs = new;
1395
1396 return len;
1397
1398out_einval:
Joe Perches52a7a272009-06-28 09:26:09 -07001399 return -EINVAL;
Ralf Baechle41790e02007-07-27 19:33:18 +01001400}
1401
Kay Sievers736fad12007-10-15 13:42:35 +02001402static struct device_attribute vpe_class_attributes[] = {
Ralf Baechle0f5d0df2007-07-27 19:37:51 +01001403 __ATTR(kill, S_IWUSR, NULL, store_kill),
Ralf Baechle41790e02007-07-27 19:33:18 +01001404 __ATTR(ntcs, S_IRUGO | S_IWUSR, show_ntcs, store_ntcs),
1405 {}
1406};
1407
Kay Sievers736fad12007-10-15 13:42:35 +02001408static void vpe_device_release(struct device *cd)
Ralf Baechle41790e02007-07-27 19:33:18 +01001409{
1410 kfree(cd);
1411}
1412
1413struct class vpe_class = {
1414 .name = "vpe",
1415 .owner = THIS_MODULE,
Kay Sievers736fad12007-10-15 13:42:35 +02001416 .dev_release = vpe_device_release,
1417 .dev_attrs = vpe_class_attributes,
Ralf Baechle41790e02007-07-27 19:33:18 +01001418};
1419
Kay Sievers736fad12007-10-15 13:42:35 +02001420struct device vpe_device;
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001421
Ralf Baechlee01402b2005-07-14 15:57:16 +00001422static int __init vpe_module_init(void)
1423{
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001424 unsigned int mtflags, vpflags;
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001425 unsigned long flags, val;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001426 struct vpe *v = NULL;
1427 struct tc *t;
Ralf Baechle41790e02007-07-27 19:33:18 +01001428 int tc, err;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001429
1430 if (!cpu_has_mipsmt) {
1431 printk("VPE loader: not a MIPS MT capable processor\n");
1432 return -ENODEV;
1433 }
1434
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001435 if (vpelimit == 0) {
1436 printk(KERN_WARNING "No VPEs reserved for AP/SP, not "
1437 "initializing VPE loader.\nPass maxvpes=<n> argument as "
1438 "kernel argument\n");
1439
1440 return -ENODEV;
1441 }
1442
1443 if (tclimit == 0) {
1444 printk(KERN_WARNING "No TCs reserved for AP/SP, not "
1445 "initializing VPE loader.\nPass maxtcs=<n> argument as "
1446 "kernel argument\n");
1447
1448 return -ENODEV;
1449 }
1450
Alexey Dobriyan682e8522006-01-10 00:09:16 +03001451 major = register_chrdev(0, module_name, &vpe_fops);
1452 if (major < 0) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001453 printk("VPE loader: unable to register character device\n");
Ralf Baechle307bd282005-10-31 23:34:52 +00001454 return major;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001455 }
1456
Ralf Baechle41790e02007-07-27 19:33:18 +01001457 err = class_register(&vpe_class);
1458 if (err) {
1459 printk(KERN_ERR "vpe_class registration failed\n");
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001460 goto out_chrdev;
1461 }
Ralf Baechle41790e02007-07-27 19:33:18 +01001462
Kay Sievers736fad12007-10-15 13:42:35 +02001463 device_initialize(&vpe_device);
Ralf Baechle41790e02007-07-27 19:33:18 +01001464 vpe_device.class = &vpe_class,
1465 vpe_device.parent = NULL,
Kay Sievers1bb5beb2009-01-06 10:44:38 -08001466 dev_set_name(&vpe_device, "vpe1");
Ralf Baechle41790e02007-07-27 19:33:18 +01001467 vpe_device.devt = MKDEV(major, minor);
Kay Sievers736fad12007-10-15 13:42:35 +02001468 err = device_add(&vpe_device);
Ralf Baechle41790e02007-07-27 19:33:18 +01001469 if (err) {
1470 printk(KERN_ERR "Adding vpe_device failed\n");
1471 goto out_class;
1472 }
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001473
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001474 local_irq_save(flags);
1475 mtflags = dmt();
1476 vpflags = dvpe();
Ralf Baechlee01402b2005-07-14 15:57:16 +00001477
1478 /* Put MVPE's into 'configuration state' */
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001479 set_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001480
1481 /* dump_mtregs(); */
1482
Ralf Baechlee01402b2005-07-14 15:57:16 +00001483 val = read_c0_mvpconf0();
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001484 hw_tcs = (val & MVPCONF0_PTC) + 1;
1485 hw_vpes = ((val & MVPCONF0_PVPE) >> MVPCONF0_PVPE_SHIFT) + 1;
1486
1487 for (tc = tclimit; tc < hw_tcs; tc++) {
1488 /*
1489 * Must re-enable multithreading temporarily or in case we
1490 * reschedule send IPIs or similar we might hang.
1491 */
1492 clear_c0_mvpcontrol(MVPCONTROL_VPC);
1493 evpe(vpflags);
1494 emt(mtflags);
1495 local_irq_restore(flags);
1496 t = alloc_tc(tc);
1497 if (!t) {
1498 err = -ENOMEM;
1499 goto out;
1500 }
1501
1502 local_irq_save(flags);
1503 mtflags = dmt();
1504 vpflags = dvpe();
1505 set_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001506
1507 /* VPE's */
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001508 if (tc < hw_tcs) {
1509 settc(tc);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001510
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001511 if ((v = alloc_vpe(tc)) == NULL) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001512 printk(KERN_WARNING "VPE: unable to allocate VPE\n");
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001513
1514 goto out_reenable;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001515 }
1516
Ralf Baechle41790e02007-07-27 19:33:18 +01001517 v->ntcs = hw_tcs - tclimit;
1518
Ralf Baechle26009902006-04-05 09:45:45 +01001519 /* add the tc to the list of this vpe's tc's. */
1520 list_add(&t->tc, &v->tc);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001521
1522 /* deactivate all but vpe0 */
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001523 if (tc >= tclimit) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001524 unsigned long tmp = read_vpe_c0_vpeconf0();
1525
1526 tmp &= ~VPECONF0_VPA;
1527
1528 /* master VPE */
1529 tmp |= VPECONF0_MVP;
1530 write_vpe_c0_vpeconf0(tmp);
1531 }
1532
1533 /* disable multi-threading with TC's */
1534 write_vpe_c0_vpecontrol(read_vpe_c0_vpecontrol() & ~VPECONTROL_TE);
1535
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001536 if (tc >= vpelimit) {
Ralf Baechle26009902006-04-05 09:45:45 +01001537 /*
1538 * Set config to be the same as vpe0,
1539 * particularly kseg0 coherency alg
1540 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001541 write_vpe_c0_config(read_c0_config());
1542 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00001543 }
1544
1545 /* TC's */
1546 t->pvpe = v; /* set the parent vpe */
1547
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001548 if (tc >= tclimit) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001549 unsigned long tmp;
1550
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001551 settc(tc);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001552
Ralf Baechle26009902006-04-05 09:45:45 +01001553 /* Any TC that is bound to VPE0 gets left as is - in case
1554 we are running SMTC on VPE0. A TC that is bound to any
1555 other VPE gets bound to VPE0, ideally I'd like to make
1556 it homeless but it doesn't appear to let me bind a TC
1557 to a non-existent VPE. Which is perfectly reasonable.
1558
1559 The (un)bound state is visible to an EJTAG probe so may
1560 notify GDB...
1561 */
1562
1563 if (((tmp = read_tc_c0_tcbind()) & TCBIND_CURVPE)) {
1564 /* tc is bound >vpe0 */
1565 write_tc_c0_tcbind(tmp & ~TCBIND_CURVPE);
1566
1567 t->pvpe = get_vpe(0); /* set the parent vpe */
1568 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00001569
Nigel Stephens7c3a6222007-11-08 13:25:51 +00001570 /* halt the TC */
1571 write_tc_c0_tchalt(TCHALT_H);
1572 mips_ihb();
1573
Ralf Baechlee01402b2005-07-14 15:57:16 +00001574 tmp = read_tc_c0_tcstatus();
1575
Ralf Baechle26009902006-04-05 09:45:45 +01001576 /* mark not activated and not dynamically allocatable */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001577 tmp &= ~(TCSTATUS_A | TCSTATUS_DA);
1578 tmp |= TCSTATUS_IXMT; /* interrupt exempt */
1579 write_tc_c0_tcstatus(tmp);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001580 }
1581 }
1582
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001583out_reenable:
Ralf Baechlee01402b2005-07-14 15:57:16 +00001584 /* release config state */
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001585 clear_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001586
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001587 evpe(vpflags);
1588 emt(mtflags);
1589 local_irq_restore(flags);
1590
Ralf Baechle26009902006-04-05 09:45:45 +01001591#ifdef CONFIG_MIPS_APSP_KSPD
1592 kspd_events.kspd_sp_exit = kspd_sp_exit;
1593#endif
Ralf Baechlee01402b2005-07-14 15:57:16 +00001594 return 0;
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001595
Ralf Baechle41790e02007-07-27 19:33:18 +01001596out_class:
1597 class_unregister(&vpe_class);
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001598out_chrdev:
1599 unregister_chrdev(major, module_name);
1600
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001601out:
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001602 return err;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001603}
1604
1605static void __exit vpe_module_exit(void)
1606{
1607 struct vpe *v, *n;
1608
1609 list_for_each_entry_safe(v, n, &vpecontrol.vpe_list, list) {
1610 if (v->state != VPE_STATE_UNUSED) {
1611 release_vpe(v);
1612 }
1613 }
1614
Kay Sievers736fad12007-10-15 13:42:35 +02001615 device_del(&vpe_device);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001616 unregister_chrdev(major, module_name);
1617}
1618
1619module_init(vpe_module_init);
1620module_exit(vpe_module_exit);
1621MODULE_DESCRIPTION("MIPS VPE Loader");
Ralf Baechle26009902006-04-05 09:45:45 +01001622MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001623MODULE_LICENSE("GPL");