/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved. * Copyright (C) 2013 Imagination Technologies Ltd. */ #ifndef _ASM_VPE_H #define _ASM_VPE_H #include <linux/init.h> #include <linux/list.h> #include <linux/smp.h> #include <linux/spinlock.h> #define VPE_MODULE_NAME "vpe" #define VPE_MODULE_MINOR 1 /* grab the likely amount of memory we will need. */ #ifdef CONFIG_MIPS_VPE_LOADER_TOM #define P_SIZE (2 * 1024 * 1024) #else /* add an overhead to the max kmalloc size for non-striped symbols/etc */ #define P_SIZE (256 * 1024) #endif #define MAX_VPES 16 #define VPE_PATH_MAX 256
static inline int aprp_cpu_index(void) { #ifdef CONFIG_MIPS_CMP return setup_max_cpus; #else extern int tclimit; return tclimit; #endif }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Deng-Cheng Zhu | 26 | 100.00% | 1 | 100.00% |
Total | 26 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Deng-Cheng Zhu | 319 | 82.43% | 1 | 33.33% |
Ralf Bächle | 67 | 17.31% | 1 | 33.33% |
Steven J. Hill | 1 | 0.26% | 1 | 33.33% |
Total | 387 | 100.00% | 3 | 100.00% |