blob: c726c47cd2c359f38080ecdb455348a603742ec7 [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>
41#include <linux/syscalls.h>
42#include <linux/moduleloader.h>
43#include <linux/interrupt.h>
44#include <linux/poll.h>
45#include <linux/bootmem.h>
46#include <asm/mipsregs.h>
Ralf Baechle340ee4b2005-08-17 17:44:08 +000047#include <asm/mipsmtregs.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000048#include <asm/cacheflush.h>
49#include <asm/atomic.h>
50#include <asm/cpu.h>
Ralf Baechle27a3bba2007-02-07 13:48:59 +000051#include <asm/mips_mt.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000052#include <asm/processor.h>
53#include <asm/system.h>
Ralf Baechle26009902006-04-05 09:45:45 +010054#include <asm/vpe.h>
55#include <asm/kspd.h>
Ralf Baechle07cc0c92007-07-27 19:31:10 +010056#include <asm/mips_mt.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 Baechlee01402b2005-07-14 15:57:16 +000067static char module_name[] = "vpe";
Ralf Baechle307bd282005-10-31 23:34:52 +000068static int major;
Ralf Baechle27a3bba2007-02-07 13:48:59 +000069static const int minor = 1; /* fixed for now */
Ralf Baechlee01402b2005-07-14 15:57:16 +000070
Ralf Baechle26009902006-04-05 09:45:45 +010071#ifdef CONFIG_MIPS_APSP_KSPD
72 static struct kspd_notifications kspd_events;
73static int kspd_events_reqd = 0;
74#endif
75
Ralf Baechlee01402b2005-07-14 15:57:16 +000076/* grab the likely amount of memory we will need. */
77#ifdef CONFIG_MIPS_VPE_LOADER_TOM
78#define P_SIZE (2 * 1024 * 1024)
79#else
80/* add an overhead to the max kmalloc size for non-striped symbols/etc */
81#define P_SIZE (256 * 1024)
82#endif
83
Ralf Baechle26009902006-04-05 09:45:45 +010084extern unsigned long physical_memsize;
85
Ralf Baechlee01402b2005-07-14 15:57:16 +000086#define MAX_VPES 16
Ralf Baechle26009902006-04-05 09:45:45 +010087#define VPE_PATH_MAX 256
Ralf Baechlee01402b2005-07-14 15:57:16 +000088
89enum vpe_state {
90 VPE_STATE_UNUSED = 0,
91 VPE_STATE_INUSE,
92 VPE_STATE_RUNNING
93};
94
95enum tc_state {
96 TC_STATE_UNUSED = 0,
97 TC_STATE_INUSE,
98 TC_STATE_RUNNING,
99 TC_STATE_DYNAMIC
100};
101
Ralf Baechle307bd282005-10-31 23:34:52 +0000102struct vpe {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000103 enum vpe_state state;
104
105 /* (device) minor associated with this vpe */
106 int minor;
107
108 /* elfloader stuff */
109 void *load_addr;
Ralf Baechle571e0be2005-12-08 00:32:23 +0000110 unsigned long len;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000111 char *pbuffer;
Ralf Baechle571e0be2005-12-08 00:32:23 +0000112 unsigned long plen;
Ralf Baechle26009902006-04-05 09:45:45 +0100113 unsigned int uid, gid;
114 char cwd[VPE_PATH_MAX];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000115
116 unsigned long __start;
117
118 /* tc's associated with this vpe */
119 struct list_head tc;
120
121 /* The list of vpe's */
122 struct list_head list;
123
124 /* shared symbol address */
125 void *shared_ptr;
Ralf Baechle26009902006-04-05 09:45:45 +0100126
127 /* the list of who wants to know when something major happens */
128 struct list_head notify;
Ralf Baechle307bd282005-10-31 23:34:52 +0000129};
130
131struct tc {
132 enum tc_state state;
133 int index;
134
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100135 struct vpe *pvpe; /* parent VPE */
136 struct list_head tc; /* The list of TC's with this VPE */
137 struct list_head list; /* The global list of tc's */
Ralf Baechle307bd282005-10-31 23:34:52 +0000138};
Ralf Baechlee01402b2005-07-14 15:57:16 +0000139
Ralf Baechle9cfdf6f2007-01-24 19:13:08 +0000140struct {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000141 /* Virtual processing elements */
142 struct list_head vpe_list;
143
144 /* Thread contexts */
145 struct list_head tc_list;
Ralf Baechle9cfdf6f2007-01-24 19:13:08 +0000146} vpecontrol = {
147 .vpe_list = LIST_HEAD_INIT(vpecontrol.vpe_list),
148 .tc_list = LIST_HEAD_INIT(vpecontrol.tc_list)
149};
Ralf Baechlee01402b2005-07-14 15:57:16 +0000150
151static void release_progmem(void *ptr);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000152extern void save_gp_address(unsigned int secbase, unsigned int rel);
153
154/* get the vpe associated with this minor */
155struct vpe *get_vpe(int minor)
156{
157 struct vpe *v;
158
Ralf Baechle26009902006-04-05 09:45:45 +0100159 if (!cpu_has_mipsmt)
160 return NULL;
161
Ralf Baechlee01402b2005-07-14 15:57:16 +0000162 list_for_each_entry(v, &vpecontrol.vpe_list, list) {
163 if (v->minor == minor)
164 return v;
165 }
166
Ralf Baechlee01402b2005-07-14 15:57:16 +0000167 return NULL;
168}
169
170/* get the vpe associated with this minor */
171struct tc *get_tc(int index)
172{
173 struct tc *t;
174
175 list_for_each_entry(t, &vpecontrol.tc_list, list) {
176 if (t->index == index)
177 return t;
178 }
179
Ralf Baechlee01402b2005-07-14 15:57:16 +0000180 return NULL;
181}
182
183struct tc *get_tc_unused(void)
184{
185 struct tc *t;
186
187 list_for_each_entry(t, &vpecontrol.tc_list, list) {
188 if (t->state == TC_STATE_UNUSED)
189 return t;
190 }
191
Ralf Baechlee01402b2005-07-14 15:57:16 +0000192 return NULL;
193}
194
195/* allocate a vpe and associate it with this minor (or index) */
196struct vpe *alloc_vpe(int minor)
197{
198 struct vpe *v;
199
Ralf Baechle307bd282005-10-31 23:34:52 +0000200 if ((v = kzalloc(sizeof(struct vpe), GFP_KERNEL)) == NULL) {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000201 return NULL;
202 }
203
Ralf Baechlee01402b2005-07-14 15:57:16 +0000204 INIT_LIST_HEAD(&v->tc);
205 list_add_tail(&v->list, &vpecontrol.vpe_list);
206
Ralf Baechle26009902006-04-05 09:45:45 +0100207 INIT_LIST_HEAD(&v->notify);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000208 v->minor = minor;
209 return v;
210}
211
212/* allocate a tc. At startup only tc0 is running, all other can be halted. */
213struct tc *alloc_tc(int index)
214{
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100215 struct tc *tc;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000216
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100217 if ((tc = kzalloc(sizeof(struct tc), GFP_KERNEL)) == NULL)
218 goto out;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000219
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100220 INIT_LIST_HEAD(&tc->tc);
221 tc->index = index;
222 list_add_tail(&tc->list, &vpecontrol.tc_list);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000223
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100224out:
225 return tc;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000226}
227
228/* clean up and free everything */
229void release_vpe(struct vpe *v)
230{
231 list_del(&v->list);
232 if (v->load_addr)
233 release_progmem(v);
234 kfree(v);
235}
236
237void dump_mtregs(void)
238{
239 unsigned long val;
240
241 val = read_c0_config3();
242 printk("config3 0x%lx MT %ld\n", val,
243 (val & CONFIG3_MT) >> CONFIG3_MT_SHIFT);
244
Ralf Baechlee01402b2005-07-14 15:57:16 +0000245 val = read_c0_mvpcontrol();
246 printk("MVPControl 0x%lx, STLB %ld VPC %ld EVP %ld\n", val,
247 (val & MVPCONTROL_STLB) >> MVPCONTROL_STLB_SHIFT,
248 (val & MVPCONTROL_VPC) >> MVPCONTROL_VPC_SHIFT,
249 (val & MVPCONTROL_EVP));
250
Ralf Baechle26009902006-04-05 09:45:45 +0100251 val = read_c0_mvpconf0();
252 printk("mvpconf0 0x%lx, PVPE %ld PTC %ld M %ld\n", val,
253 (val & MVPCONF0_PVPE) >> MVPCONF0_PVPE_SHIFT,
254 val & MVPCONF0_PTC, (val & MVPCONF0_M) >> MVPCONF0_M_SHIFT);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000255}
256
257/* Find some VPE program space */
Ralf Baechle571e0be2005-12-08 00:32:23 +0000258static void *alloc_progmem(unsigned long len)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000259{
260#ifdef CONFIG_MIPS_VPE_LOADER_TOM
261 /* this means you must tell linux to use less memory than you physically have */
Ralf Baechle571e0be2005-12-08 00:32:23 +0000262 return pfn_to_kaddr(max_pfn);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000263#else
264 // simple grab some mem for now
265 return kmalloc(len, GFP_KERNEL);
266#endif
267}
268
269static void release_progmem(void *ptr)
270{
271#ifndef CONFIG_MIPS_VPE_LOADER_TOM
272 kfree(ptr);
273#endif
274}
275
276/* Update size with this section: return offset. */
277static long get_offset(unsigned long *size, Elf_Shdr * sechdr)
278{
279 long ret;
280
281 ret = ALIGN(*size, sechdr->sh_addralign ? : 1);
282 *size = ret + sechdr->sh_size;
283 return ret;
284}
285
286/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
287 might -- code, read-only data, read-write data, small data. Tally
288 sizes, and place the offsets into sh_entsize fields: high bit means it
289 belongs in init. */
290static void layout_sections(struct module *mod, const Elf_Ehdr * hdr,
291 Elf_Shdr * sechdrs, const char *secstrings)
292{
293 static unsigned long const masks[][2] = {
294 /* NOTE: all executable code must be the first section
295 * in this array; otherwise modify the text_size
296 * finder in the two loops below */
297 {SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL},
298 {SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL},
299 {SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL},
300 {ARCH_SHF_SMALL | SHF_ALLOC, 0}
301 };
302 unsigned int m, i;
303
304 for (i = 0; i < hdr->e_shnum; i++)
305 sechdrs[i].sh_entsize = ~0UL;
306
307 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
308 for (i = 0; i < hdr->e_shnum; ++i) {
309 Elf_Shdr *s = &sechdrs[i];
310
311 // || strncmp(secstrings + s->sh_name, ".init", 5) == 0)
312 if ((s->sh_flags & masks[m][0]) != masks[m][0]
313 || (s->sh_flags & masks[m][1])
314 || s->sh_entsize != ~0UL)
315 continue;
316 s->sh_entsize = get_offset(&mod->core_size, s);
317 }
318
319 if (m == 0)
320 mod->core_text_size = mod->core_size;
321
322 }
323}
324
325
326/* from module-elf32.c, but subverted a little */
327
328struct mips_hi16 {
329 struct mips_hi16 *next;
330 Elf32_Addr *addr;
331 Elf32_Addr value;
332};
333
334static struct mips_hi16 *mips_hi16_list;
335static unsigned int gp_offs, gp_addr;
336
337static int apply_r_mips_none(struct module *me, uint32_t *location,
338 Elf32_Addr v)
339{
340 return 0;
341}
342
343static int apply_r_mips_gprel16(struct module *me, uint32_t *location,
344 Elf32_Addr v)
345{
346 int rel;
347
348 if( !(*location & 0xffff) ) {
349 rel = (int)v - gp_addr;
350 }
351 else {
352 /* .sbss + gp(relative) + offset */
353 /* kludge! */
354 rel = (int)(short)((int)v + gp_offs +
355 (int)(short)(*location & 0xffff) - gp_addr);
356 }
357
358 if( (rel > 32768) || (rel < -32768) ) {
Ralf Baechle26009902006-04-05 09:45:45 +0100359 printk(KERN_DEBUG "VPE loader: apply_r_mips_gprel16: "
360 "relative address 0x%x out of range of gp register\n",
361 rel);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000362 return -ENOEXEC;
363 }
364
365 *location = (*location & 0xffff0000) | (rel & 0xffff);
366
367 return 0;
368}
369
370static int apply_r_mips_pc16(struct module *me, uint32_t *location,
371 Elf32_Addr v)
372{
373 int rel;
374 rel = (((unsigned int)v - (unsigned int)location));
375 rel >>= 2; // because the offset is in _instructions_ not bytes.
376 rel -= 1; // and one instruction less due to the branch delay slot.
377
378 if( (rel > 32768) || (rel < -32768) ) {
Ralf Baechle26009902006-04-05 09:45:45 +0100379 printk(KERN_DEBUG "VPE loader: "
380 "apply_r_mips_pc16: relative address out of range 0x%x\n", rel);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000381 return -ENOEXEC;
382 }
383
384 *location = (*location & 0xffff0000) | (rel & 0xffff);
385
386 return 0;
387}
388
389static int apply_r_mips_32(struct module *me, uint32_t *location,
390 Elf32_Addr v)
391{
392 *location += v;
393
394 return 0;
395}
396
397static int apply_r_mips_26(struct module *me, uint32_t *location,
398 Elf32_Addr v)
399{
400 if (v % 4) {
Ralf Baechle26009902006-04-05 09:45:45 +0100401 printk(KERN_DEBUG "VPE loader: apply_r_mips_26 "
402 " unaligned relocation\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000403 return -ENOEXEC;
404 }
405
Ralf Baechle307bd282005-10-31 23:34:52 +0000406/*
407 * Not desperately convinced this is a good check of an overflow condition
408 * anyway. But it gets in the way of handling undefined weak symbols which
409 * we want to set to zero.
410 * if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
411 * printk(KERN_ERR
412 * "module %s: relocation overflow\n",
413 * me->name);
414 * return -ENOEXEC;
415 * }
416 */
Ralf Baechlee01402b2005-07-14 15:57:16 +0000417
418 *location = (*location & ~0x03ffffff) |
419 ((*location + (v >> 2)) & 0x03ffffff);
420 return 0;
421}
422
423static int apply_r_mips_hi16(struct module *me, uint32_t *location,
424 Elf32_Addr v)
425{
426 struct mips_hi16 *n;
427
428 /*
429 * We cannot relocate this one now because we don't know the value of
430 * the carry we need to add. Save the information, and let LO16 do the
431 * actual relocation.
432 */
433 n = kmalloc(sizeof *n, GFP_KERNEL);
434 if (!n)
435 return -ENOMEM;
436
437 n->addr = location;
438 n->value = v;
439 n->next = mips_hi16_list;
440 mips_hi16_list = n;
441
442 return 0;
443}
444
445static int apply_r_mips_lo16(struct module *me, uint32_t *location,
446 Elf32_Addr v)
447{
448 unsigned long insnlo = *location;
449 Elf32_Addr val, vallo;
450
451 /* Sign extend the addend we extract from the lo insn. */
452 vallo = ((insnlo & 0xffff) ^ 0x8000) - 0x8000;
453
454 if (mips_hi16_list != NULL) {
455 struct mips_hi16 *l;
456
457 l = mips_hi16_list;
458 while (l != NULL) {
459 struct mips_hi16 *next;
460 unsigned long insn;
461
462 /*
463 * The value for the HI16 had best be the same.
464 */
Ralf Baechle26009902006-04-05 09:45:45 +0100465 if (v != l->value) {
466 printk(KERN_DEBUG "VPE loader: "
467 "apply_r_mips_lo16/hi16: "
468 "inconsistent value information\n");
469 return -ENOEXEC;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000470 }
471
Ralf Baechlee01402b2005-07-14 15:57:16 +0000472 /*
473 * Do the HI16 relocation. Note that we actually don't
474 * need to know anything about the LO16 itself, except
475 * where to find the low 16 bits of the addend needed
476 * by the LO16.
477 */
478 insn = *l->addr;
479 val = ((insn & 0xffff) << 16) + vallo;
480 val += v;
481
482 /*
483 * Account for the sign extension that will happen in
484 * the low bits.
485 */
486 val = ((val >> 16) + ((val & 0x8000) != 0)) & 0xffff;
487
488 insn = (insn & ~0xffff) | val;
489 *l->addr = insn;
490
491 next = l->next;
492 kfree(l);
493 l = next;
494 }
495
496 mips_hi16_list = NULL;
497 }
498
499 /*
500 * Ok, we're done with the HI16 relocs. Now deal with the LO16.
501 */
502 val = v + vallo;
503 insnlo = (insnlo & ~0xffff) | (val & 0xffff);
504 *location = insnlo;
505
506 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000507}
508
509static int (*reloc_handlers[]) (struct module *me, uint32_t *location,
510 Elf32_Addr v) = {
511 [R_MIPS_NONE] = apply_r_mips_none,
512 [R_MIPS_32] = apply_r_mips_32,
513 [R_MIPS_26] = apply_r_mips_26,
514 [R_MIPS_HI16] = apply_r_mips_hi16,
515 [R_MIPS_LO16] = apply_r_mips_lo16,
516 [R_MIPS_GPREL16] = apply_r_mips_gprel16,
517 [R_MIPS_PC16] = apply_r_mips_pc16
518};
519
Ralf Baechle26009902006-04-05 09:45:45 +0100520static char *rstrs[] = {
Ralf Baechlee0daad42007-02-05 00:10:11 +0000521 [R_MIPS_NONE] = "MIPS_NONE",
Ralf Baechle26009902006-04-05 09:45:45 +0100522 [R_MIPS_32] = "MIPS_32",
523 [R_MIPS_26] = "MIPS_26",
524 [R_MIPS_HI16] = "MIPS_HI16",
525 [R_MIPS_LO16] = "MIPS_LO16",
526 [R_MIPS_GPREL16] = "MIPS_GPREL16",
527 [R_MIPS_PC16] = "MIPS_PC16"
528};
Ralf Baechlee01402b2005-07-14 15:57:16 +0000529
530int apply_relocations(Elf32_Shdr *sechdrs,
531 const char *strtab,
532 unsigned int symindex,
533 unsigned int relsec,
534 struct module *me)
535{
536 Elf32_Rel *rel = (void *) sechdrs[relsec].sh_addr;
537 Elf32_Sym *sym;
538 uint32_t *location;
539 unsigned int i;
540 Elf32_Addr v;
541 int res;
542
543 for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
544 Elf32_Word r_info = rel[i].r_info;
545
546 /* This is where to make the change */
547 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
548 + rel[i].r_offset;
549 /* This is the symbol it is referring to */
550 sym = (Elf32_Sym *)sechdrs[symindex].sh_addr
551 + ELF32_R_SYM(r_info);
552
553 if (!sym->st_value) {
554 printk(KERN_DEBUG "%s: undefined weak symbol %s\n",
555 me->name, strtab + sym->st_name);
556 /* just print the warning, dont barf */
557 }
558
559 v = sym->st_value;
560
561 res = reloc_handlers[ELF32_R_TYPE(r_info)](me, location, v);
562 if( res ) {
Ralf Baechle26009902006-04-05 09:45:45 +0100563 char *r = rstrs[ELF32_R_TYPE(r_info)];
564 printk(KERN_WARNING "VPE loader: .text+0x%x "
565 "relocation type %s for symbol \"%s\" failed\n",
566 rel[i].r_offset, r ? r : "UNKNOWN",
567 strtab + sym->st_name);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000568 return res;
Ralf Baechle26009902006-04-05 09:45:45 +0100569 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000570 }
571
572 return 0;
573}
574
575void save_gp_address(unsigned int secbase, unsigned int rel)
576{
577 gp_addr = secbase + rel;
578 gp_offs = gp_addr - (secbase & 0xffff0000);
579}
580/* end module-elf32.c */
581
582
583
584/* Change all symbols so that sh_value encodes the pointer directly. */
Ralf Baechle26009902006-04-05 09:45:45 +0100585static void simplify_symbols(Elf_Shdr * sechdrs,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000586 unsigned int symindex,
587 const char *strtab,
588 const char *secstrings,
589 unsigned int nsecs, struct module *mod)
590{
591 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
592 unsigned long secbase, bssbase = 0;
593 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
Ralf Baechle26009902006-04-05 09:45:45 +0100594 int size;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000595
596 /* find the .bss section for COMMON symbols */
597 for (i = 0; i < nsecs; i++) {
Ralf Baechle26009902006-04-05 09:45:45 +0100598 if (strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) == 0) {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000599 bssbase = sechdrs[i].sh_addr;
Ralf Baechle26009902006-04-05 09:45:45 +0100600 break;
601 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000602 }
603
604 for (i = 1; i < n; i++) {
605 switch (sym[i].st_shndx) {
606 case SHN_COMMON:
Ralf Baechle26009902006-04-05 09:45:45 +0100607 /* Allocate space for the symbol in the .bss section.
608 st_value is currently size.
Ralf Baechlee01402b2005-07-14 15:57:16 +0000609 We want it to have the address of the symbol. */
610
611 size = sym[i].st_value;
612 sym[i].st_value = bssbase;
613
614 bssbase += size;
615 break;
616
617 case SHN_ABS:
618 /* Don't need to do anything */
619 break;
620
621 case SHN_UNDEF:
622 /* ret = -ENOENT; */
623 break;
624
625 case SHN_MIPS_SCOMMON:
Ralf Baechle26009902006-04-05 09:45:45 +0100626 printk(KERN_DEBUG "simplify_symbols: ignoring SHN_MIPS_SCOMMON"
627 "symbol <%s> st_shndx %d\n", strtab + sym[i].st_name,
628 sym[i].st_shndx);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000629 // .sbss section
630 break;
631
632 default:
633 secbase = sechdrs[sym[i].st_shndx].sh_addr;
634
635 if (strncmp(strtab + sym[i].st_name, "_gp", 3) == 0) {
636 save_gp_address(secbase, sym[i].st_value);
637 }
638
639 sym[i].st_value += secbase;
640 break;
641 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000642 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000643}
644
645#ifdef DEBUG_ELFLOADER
646static void dump_elfsymbols(Elf_Shdr * sechdrs, unsigned int symindex,
647 const char *strtab, struct module *mod)
648{
649 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
650 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
651
652 printk(KERN_DEBUG "dump_elfsymbols: n %d\n", n);
653 for (i = 1; i < n; i++) {
654 printk(KERN_DEBUG " i %d name <%s> 0x%x\n", i,
655 strtab + sym[i].st_name, sym[i].st_value);
656 }
657}
658#endif
659
Ralf Baechlee01402b2005-07-14 15:57:16 +0000660/* We are prepared so configure and start the VPE... */
Ralf Baechlebe6e1432007-02-06 16:53:17 +0000661static int vpe_run(struct vpe * v)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000662{
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100663 unsigned long flags, val, dmt_flag;
Ralf Baechle26009902006-04-05 09:45:45 +0100664 struct vpe_notifications *n;
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100665 unsigned int vpeflags;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000666 struct tc *t;
667
668 /* check we are the Master VPE */
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100669 local_irq_save(flags);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000670 val = read_c0_vpeconf0();
671 if (!(val & VPECONF0_MVP)) {
672 printk(KERN_WARNING
Ralf Baechle26009902006-04-05 09:45:45 +0100673 "VPE loader: only Master VPE's are allowed to configure MT\n");
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100674 local_irq_restore(flags);
675
Ralf Baechlee01402b2005-07-14 15:57:16 +0000676 return -1;
677 }
678
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100679 dmt_flag = dmt();
680 vpeflags = dvpe();
Ralf Baechlee01402b2005-07-14 15:57:16 +0000681
Ralf Baechle26009902006-04-05 09:45:45 +0100682 if (!list_empty(&v->tc)) {
Ralf Baechlee0daad42007-02-05 00:10:11 +0000683 if ((t = list_entry(v->tc.next, struct tc, tc)) == NULL) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100684 evpe(vpeflags);
685 emt(dmt_flag);
686 local_irq_restore(flags);
687
688 printk(KERN_WARNING
689 "VPE loader: TC %d is already in use.\n",
690 t->index);
Ralf Baechlee0daad42007-02-05 00:10:11 +0000691 return -ENOEXEC;
692 }
693 } else {
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100694 evpe(vpeflags);
695 emt(dmt_flag);
696 local_irq_restore(flags);
697
698 printk(KERN_WARNING
699 "VPE loader: No TC's associated with VPE %d\n",
Ralf Baechlee0daad42007-02-05 00:10:11 +0000700 v->minor);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100701
Ralf Baechlee0daad42007-02-05 00:10:11 +0000702 return -ENOEXEC;
703 }
Ralf Baechle26009902006-04-05 09:45:45 +0100704
Ralf Baechlee01402b2005-07-14 15:57:16 +0000705 /* Put MVPE's into 'configuration state' */
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000706 set_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000707
Ralf Baechlee01402b2005-07-14 15:57:16 +0000708 settc(t->index);
709
Ralf Baechlee01402b2005-07-14 15:57:16 +0000710 /* should check it is halted, and not activated */
711 if ((read_tc_c0_tcstatus() & TCSTATUS_A) || !(read_tc_c0_tchalt() & TCHALT_H)) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100712 evpe(vpeflags);
713 emt(dmt_flag);
714 local_irq_restore(flags);
715
716 printk(KERN_WARNING "VPE loader: TC %d is already active!\n",
Ralf Baechlee01402b2005-07-14 15:57:16 +0000717 t->index);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100718
Ralf Baechlee01402b2005-07-14 15:57:16 +0000719 return -ENOEXEC;
720 }
721
722 /* Write the address we want it to start running from in the TCPC register. */
723 write_tc_c0_tcrestart((unsigned long)v->__start);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000724 write_tc_c0_tccontext((unsigned long)0);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100725
Ralf Baechle26009902006-04-05 09:45:45 +0100726 /*
727 * Mark the TC as activated, not interrupt exempt and not dynamically
728 * allocatable
729 */
Ralf Baechlee01402b2005-07-14 15:57:16 +0000730 val = read_tc_c0_tcstatus();
731 val = (val & ~(TCSTATUS_DA | TCSTATUS_IXMT)) | TCSTATUS_A;
732 write_tc_c0_tcstatus(val);
733
734 write_tc_c0_tchalt(read_tc_c0_tchalt() & ~TCHALT_H);
735
Ralf Baechlee01402b2005-07-14 15:57:16 +0000736 /*
737 * The sde-kit passes 'memsize' to __start in $a3, so set something
Ralf Baechle26009902006-04-05 09:45:45 +0100738 * here... Or set $a3 to zero and define DFLT_STACK_SIZE and
Ralf Baechlee01402b2005-07-14 15:57:16 +0000739 * DFLT_HEAP_SIZE when you compile your program
740 */
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100741 mttgpr(7, physical_memsize);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000742
Ralf Baechle26009902006-04-05 09:45:45 +0100743 /* set up VPE1 */
744 /*
745 * bind the TC to VPE 1 as late as possible so we only have the final
746 * VPE registers to set up, and so an EJTAG probe can trigger on it
747 */
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100748 write_tc_c0_tcbind((read_tc_c0_tcbind() & ~TCBIND_CURVPE) | 1);
Ralf Baechle26009902006-04-05 09:45:45 +0100749
Elizabeth Oldhama94d7022006-08-17 12:39:21 +0100750 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() & ~(VPECONF0_VPA));
751
752 back_to_back_c0_hazard();
753
Ralf Baechlee0daad42007-02-05 00:10:11 +0000754 /* Set up the XTC bit in vpeconf0 to point at our tc */
755 write_vpe_c0_vpeconf0( (read_vpe_c0_vpeconf0() & ~(VPECONF0_XTC))
756 | (t->index << VPECONF0_XTC_SHIFT));
Ralf Baechle26009902006-04-05 09:45:45 +0100757
Elizabeth Oldhama94d7022006-08-17 12:39:21 +0100758 back_to_back_c0_hazard();
759
Ralf Baechlee0daad42007-02-05 00:10:11 +0000760 /* enable this VPE */
761 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() | VPECONF0_VPA);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000762
763 /* clear out any left overs from a previous program */
Ralf Baechle26009902006-04-05 09:45:45 +0100764 write_vpe_c0_status(0);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000765 write_vpe_c0_cause(0);
766
767 /* take system out of configuration state */
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000768 clear_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000769
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100770#ifdef CONFIG_SMP
Ralf Baechlee01402b2005-07-14 15:57:16 +0000771 evpe(EVPE_ENABLE);
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100772#else
773 evpe(vpeflags);
774#endif
775 emt(dmt_flag);
776 local_irq_restore(flags);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000777
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100778 list_for_each_entry(n, &v->notify, list)
779 n->start(minor);
Ralf Baechle26009902006-04-05 09:45:45 +0100780
Ralf Baechlee01402b2005-07-14 15:57:16 +0000781 return 0;
782}
783
Ralf Baechle26009902006-04-05 09:45:45 +0100784static int find_vpe_symbols(struct vpe * v, Elf_Shdr * sechdrs,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000785 unsigned int symindex, const char *strtab,
786 struct module *mod)
787{
788 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
789 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
790
791 for (i = 1; i < n; i++) {
792 if (strcmp(strtab + sym[i].st_name, "__start") == 0) {
793 v->__start = sym[i].st_value;
794 }
795
796 if (strcmp(strtab + sym[i].st_name, "vpe_shared") == 0) {
797 v->shared_ptr = (void *)sym[i].st_value;
798 }
799 }
800
Ralf Baechle26009902006-04-05 09:45:45 +0100801 if ( (v->__start == 0) || (v->shared_ptr == NULL))
802 return -1;
803
Ralf Baechlee01402b2005-07-14 15:57:16 +0000804 return 0;
805}
806
Ralf Baechle307bd282005-10-31 23:34:52 +0000807/*
Ralf Baechle26009902006-04-05 09:45:45 +0100808 * Allocates a VPE with some program code space(the load address), copies the
809 * contents of the program (p)buffer performing relocatations/etc, free's it
810 * when finished.
811 */
Ralf Baechlebe6e1432007-02-06 16:53:17 +0000812static int vpe_elfload(struct vpe * v)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000813{
814 Elf_Ehdr *hdr;
815 Elf_Shdr *sechdrs;
816 long err = 0;
817 char *secstrings, *strtab = NULL;
Ralf Baechle26009902006-04-05 09:45:45 +0100818 unsigned int len, i, symindex = 0, strindex = 0, relocate = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000819 struct module mod; // so we can re-use the relocations code
820
821 memset(&mod, 0, sizeof(struct module));
Ralf Baechle26009902006-04-05 09:45:45 +0100822 strcpy(mod.name, "VPE loader");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000823
824 hdr = (Elf_Ehdr *) v->pbuffer;
825 len = v->plen;
826
827 /* Sanity checks against insmoding binaries or wrong arch,
828 weird elf version */
829 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
Ralf Baechle26009902006-04-05 09:45:45 +0100830 || (hdr->e_type != ET_REL && hdr->e_type != ET_EXEC)
831 || !elf_check_arch(hdr)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000832 || hdr->e_shentsize != sizeof(*sechdrs)) {
833 printk(KERN_WARNING
Ralf Baechle26009902006-04-05 09:45:45 +0100834 "VPE loader: program wrong arch or weird elf version\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000835
836 return -ENOEXEC;
837 }
838
Ralf Baechle26009902006-04-05 09:45:45 +0100839 if (hdr->e_type == ET_REL)
840 relocate = 1;
841
Ralf Baechlee01402b2005-07-14 15:57:16 +0000842 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr)) {
Ralf Baechle26009902006-04-05 09:45:45 +0100843 printk(KERN_ERR "VPE loader: program length %u truncated\n",
844 len);
845
Ralf Baechlee01402b2005-07-14 15:57:16 +0000846 return -ENOEXEC;
847 }
848
849 /* Convenience variables */
850 sechdrs = (void *)hdr + hdr->e_shoff;
851 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
852 sechdrs[0].sh_addr = 0;
853
854 /* And these should exist, but gcc whinges if we don't init them */
855 symindex = strindex = 0;
856
Ralf Baechle26009902006-04-05 09:45:45 +0100857 if (relocate) {
858 for (i = 1; i < hdr->e_shnum; i++) {
859 if (sechdrs[i].sh_type != SHT_NOBITS
860 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size) {
861 printk(KERN_ERR "VPE program length %u truncated\n",
862 len);
863 return -ENOEXEC;
864 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000865
Ralf Baechle26009902006-04-05 09:45:45 +0100866 /* Mark all sections sh_addr with their address in the
867 temporary image. */
868 sechdrs[i].sh_addr = (size_t) hdr + sechdrs[i].sh_offset;
869
870 /* Internal symbols and strings. */
871 if (sechdrs[i].sh_type == SHT_SYMTAB) {
872 symindex = i;
873 strindex = sechdrs[i].sh_link;
874 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
875 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000876 }
Ralf Baechle26009902006-04-05 09:45:45 +0100877 layout_sections(&mod, hdr, sechdrs, secstrings);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000878 }
879
Ralf Baechlee01402b2005-07-14 15:57:16 +0000880 v->load_addr = alloc_progmem(mod.core_size);
881 memset(v->load_addr, 0, mod.core_size);
882
Ralf Baechle26009902006-04-05 09:45:45 +0100883 printk("VPE loader: loading to %p\n", v->load_addr);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000884
Ralf Baechle26009902006-04-05 09:45:45 +0100885 if (relocate) {
886 for (i = 0; i < hdr->e_shnum; i++) {
887 void *dest;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000888
Ralf Baechle26009902006-04-05 09:45:45 +0100889 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
890 continue;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000891
Ralf Baechle26009902006-04-05 09:45:45 +0100892 dest = v->load_addr + sechdrs[i].sh_entsize;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000893
Ralf Baechle26009902006-04-05 09:45:45 +0100894 if (sechdrs[i].sh_type != SHT_NOBITS)
895 memcpy(dest, (void *)sechdrs[i].sh_addr,
896 sechdrs[i].sh_size);
897 /* Update sh_addr to point to copy in image. */
898 sechdrs[i].sh_addr = (unsigned long)dest;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000899
Ralf Baechle26009902006-04-05 09:45:45 +0100900 printk(KERN_DEBUG " section sh_name %s sh_addr 0x%x\n",
901 secstrings + sechdrs[i].sh_name, sechdrs[i].sh_addr);
902 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000903
Ralf Baechle26009902006-04-05 09:45:45 +0100904 /* Fix up syms, so that st_value is a pointer to location. */
905 simplify_symbols(sechdrs, symindex, strtab, secstrings,
906 hdr->e_shnum, &mod);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000907
Ralf Baechle26009902006-04-05 09:45:45 +0100908 /* Now do relocations. */
909 for (i = 1; i < hdr->e_shnum; i++) {
910 const char *strtab = (char *)sechdrs[strindex].sh_addr;
911 unsigned int info = sechdrs[i].sh_info;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000912
Ralf Baechle26009902006-04-05 09:45:45 +0100913 /* Not a valid relocation section? */
914 if (info >= hdr->e_shnum)
915 continue;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000916
Ralf Baechle26009902006-04-05 09:45:45 +0100917 /* Don't bother with non-allocated sections */
918 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
919 continue;
920
921 if (sechdrs[i].sh_type == SHT_REL)
922 err = apply_relocations(sechdrs, strtab, symindex, i,
923 &mod);
924 else if (sechdrs[i].sh_type == SHT_RELA)
925 err = apply_relocate_add(sechdrs, strtab, symindex, i,
926 &mod);
927 if (err < 0)
928 return err;
929
930 }
931 } else {
932 for (i = 0; i < hdr->e_shnum; i++) {
933
934 /* Internal symbols and strings. */
935 if (sechdrs[i].sh_type == SHT_SYMTAB) {
936 symindex = i;
937 strindex = sechdrs[i].sh_link;
938 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
939
940 /* mark the symtab's address for when we try to find the
941 magic symbols */
942 sechdrs[i].sh_addr = (size_t) hdr + sechdrs[i].sh_offset;
943 }
944
945 /* filter sections we dont want in the final image */
946 if (!(sechdrs[i].sh_flags & SHF_ALLOC) ||
947 (sechdrs[i].sh_type == SHT_MIPS_REGINFO)) {
948 printk( KERN_DEBUG " ignoring section, "
949 "name %s type %x address 0x%x \n",
950 secstrings + sechdrs[i].sh_name,
951 sechdrs[i].sh_type, sechdrs[i].sh_addr);
952 continue;
953 }
954
955 if (sechdrs[i].sh_addr < (unsigned int)v->load_addr) {
956 printk( KERN_WARNING "VPE loader: "
957 "fully linked image has invalid section, "
958 "name %s type %x address 0x%x, before load "
959 "address of 0x%x\n",
960 secstrings + sechdrs[i].sh_name,
961 sechdrs[i].sh_type, sechdrs[i].sh_addr,
962 (unsigned int)v->load_addr);
963 return -ENOEXEC;
964 }
965
966 printk(KERN_DEBUG " copying section sh_name %s, sh_addr 0x%x "
967 "size 0x%x0 from x%p\n",
968 secstrings + sechdrs[i].sh_name, sechdrs[i].sh_addr,
969 sechdrs[i].sh_size, hdr + sechdrs[i].sh_offset);
970
971 if (sechdrs[i].sh_type != SHT_NOBITS)
972 memcpy((void *)sechdrs[i].sh_addr,
973 (char *)hdr + sechdrs[i].sh_offset,
974 sechdrs[i].sh_size);
975 else
976 memset((void *)sechdrs[i].sh_addr, 0, sechdrs[i].sh_size);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000977 }
978 }
979
980 /* make sure it's physically written out */
981 flush_icache_range((unsigned long)v->load_addr,
982 (unsigned long)v->load_addr + v->len);
983
984 if ((find_vpe_symbols(v, sechdrs, symindex, strtab, &mod)) < 0) {
Ralf Baechle26009902006-04-05 09:45:45 +0100985 if (v->__start == 0) {
986 printk(KERN_WARNING "VPE loader: program does not contain "
987 "a __start symbol\n");
988 return -ENOEXEC;
989 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000990
Ralf Baechle26009902006-04-05 09:45:45 +0100991 if (v->shared_ptr == NULL)
992 printk(KERN_WARNING "VPE loader: "
993 "program does not contain vpe_shared symbol.\n"
994 " Unable to use AMVP (AP/SP) facilities.\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000995 }
996
997 printk(" elf loaded\n");
Ralf Baechle26009902006-04-05 09:45:45 +0100998 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000999}
1000
Ralf Baechle26009902006-04-05 09:45:45 +01001001static void cleanup_tc(struct tc *tc)
1002{
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001003 unsigned long flags;
1004 unsigned int mtflags, vpflags;
Ralf Baechle26009902006-04-05 09:45:45 +01001005 int tmp;
1006
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001007 local_irq_save(flags);
1008 mtflags = dmt();
1009 vpflags = dvpe();
Ralf Baechle26009902006-04-05 09:45:45 +01001010 /* Put MVPE's into 'configuration state' */
1011 set_c0_mvpcontrol(MVPCONTROL_VPC);
1012
1013 settc(tc->index);
1014 tmp = read_tc_c0_tcstatus();
1015
1016 /* mark not allocated and not dynamically allocatable */
1017 tmp &= ~(TCSTATUS_A | TCSTATUS_DA);
1018 tmp |= TCSTATUS_IXMT; /* interrupt exempt */
1019 write_tc_c0_tcstatus(tmp);
1020
1021 write_tc_c0_tchalt(TCHALT_H);
1022
1023 /* bind it to anything other than VPE1 */
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001024// write_tc_c0_tcbind(read_tc_c0_tcbind() & ~TCBIND_CURVPE); // | TCBIND_CURVPE
Ralf Baechle26009902006-04-05 09:45:45 +01001025
1026 clear_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001027 evpe(vpflags);
1028 emt(mtflags);
1029 local_irq_restore(flags);
Ralf Baechle26009902006-04-05 09:45:45 +01001030}
1031
1032static int getcwd(char *buff, int size)
1033{
1034 mm_segment_t old_fs;
1035 int ret;
1036
1037 old_fs = get_fs();
1038 set_fs(KERNEL_DS);
1039
1040 ret = sys_getcwd(buff,size);
1041
1042 set_fs(old_fs);
1043
1044 return ret;
1045}
1046
1047/* checks VPE is unused and gets ready to load program */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001048static int vpe_open(struct inode *inode, struct file *filp)
1049{
Ralf Baechlec4c40182007-02-23 13:40:45 +00001050 enum vpe_state state;
Ralf Baechle26009902006-04-05 09:45:45 +01001051 struct vpe_notifications *not;
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001052 struct vpe *v;
1053 int ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001054
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001055 if (minor != iminor(inode)) {
1056 /* assume only 1 device at the moment. */
Ralf Baechle26009902006-04-05 09:45:45 +01001057 printk(KERN_WARNING "VPE loader: only vpe1 is supported\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001058 return -ENODEV;
1059 }
1060
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001061 if ((v = get_vpe(tclimit)) == NULL) {
Ralf Baechle26009902006-04-05 09:45:45 +01001062 printk(KERN_WARNING "VPE loader: unable to get vpe\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001063 return -ENODEV;
1064 }
1065
Ralf Baechlec4c40182007-02-23 13:40:45 +00001066 state = xchg(&v->state, VPE_STATE_INUSE);
1067 if (state != VPE_STATE_UNUSED) {
Ralf Baechle26009902006-04-05 09:45:45 +01001068 printk(KERN_DEBUG "VPE loader: tc in use dumping regs\n");
1069
Ralf Baechle26009902006-04-05 09:45:45 +01001070 list_for_each_entry(not, &v->notify, list) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001071 not->stop(tclimit);
Ralf Baechle26009902006-04-05 09:45:45 +01001072 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00001073
1074 release_progmem(v->load_addr);
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001075 cleanup_tc(get_tc(tclimit));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001076 }
1077
Ralf Baechlee01402b2005-07-14 15:57:16 +00001078 /* this of-course trashes what was there before... */
1079 v->pbuffer = vmalloc(P_SIZE);
1080 v->plen = P_SIZE;
1081 v->load_addr = NULL;
1082 v->len = 0;
1083
Ralf Baechle26009902006-04-05 09:45:45 +01001084 v->uid = filp->f_uid;
1085 v->gid = filp->f_gid;
1086
1087#ifdef CONFIG_MIPS_APSP_KSPD
1088 /* get kspd to tell us when a syscall_exit happens */
1089 if (!kspd_events_reqd) {
1090 kspd_notify(&kspd_events);
1091 kspd_events_reqd++;
1092 }
1093#endif
1094
1095 v->cwd[0] = 0;
1096 ret = getcwd(v->cwd, VPE_PATH_MAX);
1097 if (ret < 0)
1098 printk(KERN_WARNING "VPE loader: open, getcwd returned %d\n", ret);
1099
1100 v->shared_ptr = NULL;
1101 v->__start = 0;
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001102
Ralf Baechlee01402b2005-07-14 15:57:16 +00001103 return 0;
1104}
1105
1106static int vpe_release(struct inode *inode, struct file *filp)
1107{
Ralf Baechle307bd282005-10-31 23:34:52 +00001108 struct vpe *v;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001109 Elf_Ehdr *hdr;
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001110 int ret = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001111
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001112 v = get_vpe(tclimit);
1113 if (v == NULL)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001114 return -ENODEV;
1115
Ralf Baechlee01402b2005-07-14 15:57:16 +00001116 hdr = (Elf_Ehdr *) v->pbuffer;
1117 if (memcmp(hdr->e_ident, ELFMAG, 4) == 0) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001118 if (vpe_elfload(v) >= 0) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001119 vpe_run(v);
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001120 } else {
Ralf Baechle26009902006-04-05 09:45:45 +01001121 printk(KERN_WARNING "VPE loader: ELF load failed.\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001122 ret = -ENOEXEC;
1123 }
1124 } else {
Ralf Baechle26009902006-04-05 09:45:45 +01001125 printk(KERN_WARNING "VPE loader: only elf files are supported\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001126 ret = -ENOEXEC;
1127 }
1128
Ralf Baechle26009902006-04-05 09:45:45 +01001129 /* It's good to be able to run the SP and if it chokes have a look at
1130 the /dev/rt?. But if we reset the pointer to the shared struct we
1131 loose what has happened. So perhaps if garbage is sent to the vpe
1132 device, use it as a trigger for the reset. Hopefully a nice
1133 executable will be along shortly. */
1134 if (ret < 0)
1135 v->shared_ptr = NULL;
1136
Ralf Baechlee01402b2005-07-14 15:57:16 +00001137 // cleanup any temp buffers
1138 if (v->pbuffer)
1139 vfree(v->pbuffer);
1140 v->plen = 0;
1141 return ret;
1142}
1143
1144static ssize_t vpe_write(struct file *file, const char __user * buffer,
1145 size_t count, loff_t * ppos)
1146{
Ralf Baechlee01402b2005-07-14 15:57:16 +00001147 size_t ret = count;
Ralf Baechle307bd282005-10-31 23:34:52 +00001148 struct vpe *v;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001149
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001150 if (iminor(file->f_path.dentry->d_inode) != minor)
1151 return -ENODEV;
1152
1153 v = get_vpe(tclimit);
1154 if (v == NULL)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001155 return -ENODEV;
1156
1157 if (v->pbuffer == NULL) {
Ralf Baechle26009902006-04-05 09:45:45 +01001158 printk(KERN_ERR "VPE loader: no buffer for program\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001159 return -ENOMEM;
1160 }
1161
1162 if ((count + v->len) > v->plen) {
1163 printk(KERN_WARNING
Ralf Baechle26009902006-04-05 09:45:45 +01001164 "VPE loader: elf size too big. Perhaps strip uneeded symbols\n");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001165 return -ENOMEM;
1166 }
1167
1168 count -= copy_from_user(v->pbuffer + v->len, buffer, count);
Ralf Baechle26009902006-04-05 09:45:45 +01001169 if (!count)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001170 return -EFAULT;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001171
1172 v->len += count;
1173 return ret;
1174}
1175
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001176static const struct file_operations vpe_fops = {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001177 .owner = THIS_MODULE,
1178 .open = vpe_open,
1179 .release = vpe_release,
1180 .write = vpe_write
1181};
1182
1183/* module wrapper entry points */
1184/* give me a vpe */
1185vpe_handle vpe_alloc(void)
1186{
1187 int i;
1188 struct vpe *v;
1189
1190 /* find a vpe */
1191 for (i = 1; i < MAX_VPES; i++) {
1192 if ((v = get_vpe(i)) != NULL) {
1193 v->state = VPE_STATE_INUSE;
1194 return v;
1195 }
1196 }
1197 return NULL;
1198}
1199
1200EXPORT_SYMBOL(vpe_alloc);
1201
1202/* start running from here */
1203int vpe_start(vpe_handle vpe, unsigned long start)
1204{
1205 struct vpe *v = vpe;
1206
1207 v->__start = start;
1208 return vpe_run(v);
1209}
1210
1211EXPORT_SYMBOL(vpe_start);
1212
1213/* halt it for now */
1214int vpe_stop(vpe_handle vpe)
1215{
1216 struct vpe *v = vpe;
1217 struct tc *t;
1218 unsigned int evpe_flags;
1219
1220 evpe_flags = dvpe();
1221
1222 if ((t = list_entry(v->tc.next, struct tc, tc)) != NULL) {
1223
1224 settc(t->index);
1225 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() & ~VPECONF0_VPA);
1226 }
1227
1228 evpe(evpe_flags);
1229
1230 return 0;
1231}
1232
1233EXPORT_SYMBOL(vpe_stop);
1234
1235/* I've done with it thank you */
1236int vpe_free(vpe_handle vpe)
1237{
1238 struct vpe *v = vpe;
1239 struct tc *t;
1240 unsigned int evpe_flags;
1241
1242 if ((t = list_entry(v->tc.next, struct tc, tc)) == NULL) {
1243 return -ENOEXEC;
1244 }
1245
1246 evpe_flags = dvpe();
1247
1248 /* Put MVPE's into 'configuration state' */
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001249 set_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001250
1251 settc(t->index);
1252 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() & ~VPECONF0_VPA);
1253
1254 /* mark the TC unallocated and halt'ed */
1255 write_tc_c0_tcstatus(read_tc_c0_tcstatus() & ~TCSTATUS_A);
1256 write_tc_c0_tchalt(TCHALT_H);
1257
1258 v->state = VPE_STATE_UNUSED;
1259
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001260 clear_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001261 evpe(evpe_flags);
1262
1263 return 0;
1264}
1265
1266EXPORT_SYMBOL(vpe_free);
1267
1268void *vpe_get_shared(int index)
1269{
1270 struct vpe *v;
1271
Ralf Baechle26009902006-04-05 09:45:45 +01001272 if ((v = get_vpe(index)) == NULL)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001273 return NULL;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001274
1275 return v->shared_ptr;
1276}
1277
1278EXPORT_SYMBOL(vpe_get_shared);
1279
Ralf Baechle26009902006-04-05 09:45:45 +01001280int vpe_getuid(int index)
1281{
1282 struct vpe *v;
1283
1284 if ((v = get_vpe(index)) == NULL)
1285 return -1;
1286
1287 return v->uid;
1288}
1289
1290EXPORT_SYMBOL(vpe_getuid);
1291
1292int vpe_getgid(int index)
1293{
1294 struct vpe *v;
1295
1296 if ((v = get_vpe(index)) == NULL)
1297 return -1;
1298
1299 return v->gid;
1300}
1301
1302EXPORT_SYMBOL(vpe_getgid);
1303
1304int vpe_notify(int index, struct vpe_notifications *notify)
1305{
1306 struct vpe *v;
1307
1308 if ((v = get_vpe(index)) == NULL)
1309 return -1;
1310
1311 list_add(&notify->list, &v->notify);
1312 return 0;
1313}
1314
1315EXPORT_SYMBOL(vpe_notify);
1316
1317char *vpe_getcwd(int index)
1318{
1319 struct vpe *v;
1320
1321 if ((v = get_vpe(index)) == NULL)
1322 return NULL;
1323
1324 return v->cwd;
1325}
1326
1327EXPORT_SYMBOL(vpe_getcwd);
1328
1329#ifdef CONFIG_MIPS_APSP_KSPD
1330static void kspd_sp_exit( int sp_id)
1331{
1332 cleanup_tc(get_tc(sp_id));
1333}
1334#endif
1335
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001336static struct device *vpe_dev;
1337
Ralf Baechlee01402b2005-07-14 15:57:16 +00001338static int __init vpe_module_init(void)
1339{
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001340 unsigned int mtflags, vpflags;
1341 int hw_tcs, hw_vpes, tc, err = 0;
1342 unsigned long flags, val;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001343 struct vpe *v = NULL;
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001344 struct device *dev;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001345 struct tc *t;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001346
1347 if (!cpu_has_mipsmt) {
1348 printk("VPE loader: not a MIPS MT capable processor\n");
1349 return -ENODEV;
1350 }
1351
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001352 if (vpelimit == 0) {
1353 printk(KERN_WARNING "No VPEs reserved for AP/SP, not "
1354 "initializing VPE loader.\nPass maxvpes=<n> argument as "
1355 "kernel argument\n");
1356
1357 return -ENODEV;
1358 }
1359
1360 if (tclimit == 0) {
1361 printk(KERN_WARNING "No TCs reserved for AP/SP, not "
1362 "initializing VPE loader.\nPass maxtcs=<n> argument as "
1363 "kernel argument\n");
1364
1365 return -ENODEV;
1366 }
1367
Alexey Dobriyan682e8522006-01-10 00:09:16 +03001368 major = register_chrdev(0, module_name, &vpe_fops);
1369 if (major < 0) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001370 printk("VPE loader: unable to register character device\n");
Ralf Baechle307bd282005-10-31 23:34:52 +00001371 return major;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001372 }
1373
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001374 dev = device_create(mt_class, NULL, MKDEV(major, minor),
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001375 "vpe%d", minor);
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001376 if (IS_ERR(dev)) {
1377 err = PTR_ERR(dev);
1378 goto out_chrdev;
1379 }
1380 vpe_dev = dev;
1381
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001382 local_irq_save(flags);
1383 mtflags = dmt();
1384 vpflags = dvpe();
Ralf Baechlee01402b2005-07-14 15:57:16 +00001385
1386 /* Put MVPE's into 'configuration state' */
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001387 set_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001388
1389 /* dump_mtregs(); */
1390
Ralf Baechlee01402b2005-07-14 15:57:16 +00001391 val = read_c0_mvpconf0();
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001392 hw_tcs = (val & MVPCONF0_PTC) + 1;
1393 hw_vpes = ((val & MVPCONF0_PVPE) >> MVPCONF0_PVPE_SHIFT) + 1;
1394
1395 for (tc = tclimit; tc < hw_tcs; tc++) {
1396 /*
1397 * Must re-enable multithreading temporarily or in case we
1398 * reschedule send IPIs or similar we might hang.
1399 */
1400 clear_c0_mvpcontrol(MVPCONTROL_VPC);
1401 evpe(vpflags);
1402 emt(mtflags);
1403 local_irq_restore(flags);
1404 t = alloc_tc(tc);
1405 if (!t) {
1406 err = -ENOMEM;
1407 goto out;
1408 }
1409
1410 local_irq_save(flags);
1411 mtflags = dmt();
1412 vpflags = dvpe();
1413 set_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001414
1415 /* VPE's */
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001416 if (tc < hw_tcs) {
1417 settc(tc);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001418
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001419 if ((v = alloc_vpe(tc)) == NULL) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001420 printk(KERN_WARNING "VPE: unable to allocate VPE\n");
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001421
1422 goto out_reenable;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001423 }
1424
Ralf Baechle26009902006-04-05 09:45:45 +01001425 /* add the tc to the list of this vpe's tc's. */
1426 list_add(&t->tc, &v->tc);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001427
1428 /* deactivate all but vpe0 */
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001429 if (tc >= tclimit) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001430 unsigned long tmp = read_vpe_c0_vpeconf0();
1431
1432 tmp &= ~VPECONF0_VPA;
1433
1434 /* master VPE */
1435 tmp |= VPECONF0_MVP;
1436 write_vpe_c0_vpeconf0(tmp);
1437 }
1438
1439 /* disable multi-threading with TC's */
1440 write_vpe_c0_vpecontrol(read_vpe_c0_vpecontrol() & ~VPECONTROL_TE);
1441
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001442 if (tc >= vpelimit) {
Ralf Baechle26009902006-04-05 09:45:45 +01001443 /*
1444 * Set config to be the same as vpe0,
1445 * particularly kseg0 coherency alg
1446 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001447 write_vpe_c0_config(read_c0_config());
1448 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00001449 }
1450
1451 /* TC's */
1452 t->pvpe = v; /* set the parent vpe */
1453
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001454 if (tc >= tclimit) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001455 unsigned long tmp;
1456
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001457 settc(tc);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001458
Ralf Baechle26009902006-04-05 09:45:45 +01001459 /* Any TC that is bound to VPE0 gets left as is - in case
1460 we are running SMTC on VPE0. A TC that is bound to any
1461 other VPE gets bound to VPE0, ideally I'd like to make
1462 it homeless but it doesn't appear to let me bind a TC
1463 to a non-existent VPE. Which is perfectly reasonable.
1464
1465 The (un)bound state is visible to an EJTAG probe so may
1466 notify GDB...
1467 */
1468
1469 if (((tmp = read_tc_c0_tcbind()) & TCBIND_CURVPE)) {
1470 /* tc is bound >vpe0 */
1471 write_tc_c0_tcbind(tmp & ~TCBIND_CURVPE);
1472
1473 t->pvpe = get_vpe(0); /* set the parent vpe */
1474 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00001475
1476 tmp = read_tc_c0_tcstatus();
1477
Ralf Baechle26009902006-04-05 09:45:45 +01001478 /* mark not activated and not dynamically allocatable */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001479 tmp &= ~(TCSTATUS_A | TCSTATUS_DA);
1480 tmp |= TCSTATUS_IXMT; /* interrupt exempt */
1481 write_tc_c0_tcstatus(tmp);
1482
1483 write_tc_c0_tchalt(TCHALT_H);
1484 }
1485 }
1486
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001487out_reenable:
Ralf Baechlee01402b2005-07-14 15:57:16 +00001488 /* release config state */
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001489 clear_c0_mvpcontrol(MVPCONTROL_VPC);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001490
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001491 evpe(vpflags);
1492 emt(mtflags);
1493 local_irq_restore(flags);
1494
Ralf Baechle26009902006-04-05 09:45:45 +01001495#ifdef CONFIG_MIPS_APSP_KSPD
1496 kspd_events.kspd_sp_exit = kspd_sp_exit;
1497#endif
Ralf Baechlee01402b2005-07-14 15:57:16 +00001498 return 0;
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001499
1500out_chrdev:
1501 unregister_chrdev(major, module_name);
1502
Ralf Baechle07cc0c92007-07-27 19:31:10 +01001503out:
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001504 return err;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001505}
1506
1507static void __exit vpe_module_exit(void)
1508{
1509 struct vpe *v, *n;
1510
1511 list_for_each_entry_safe(v, n, &vpecontrol.vpe_list, list) {
1512 if (v->state != VPE_STATE_UNUSED) {
1513 release_vpe(v);
1514 }
1515 }
1516
Ralf Baechle27a3bba2007-02-07 13:48:59 +00001517 device_destroy(mt_class, MKDEV(major, minor));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001518 unregister_chrdev(major, module_name);
1519}
1520
1521module_init(vpe_module_init);
1522module_exit(vpe_module_exit);
1523MODULE_DESCRIPTION("MIPS VPE Loader");
Ralf Baechle26009902006-04-05 09:45:45 +01001524MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001525MODULE_LICENSE("GPL");