blob: 02be56e348163d52bbcfbf9cd9f1b36023cb24bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
* include/asm-arm/procinfo.h
*
* Bamvor Jian Zhang <bjzhang@suse.com>
* Copyright (c) 2013 SUSE
*
* base on linux/arch/arm/include/asm/procinfo.h
* Copyright (C) 1996-1999 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef __ASM_ARM_PROCINFO_H
#define __ASM_ARM_PROCINFO_H
#include <xen/sched.h>
struct processor {
/* Initialize specific processor register for the new VPCU*/
void (*vcpu_initialise)(struct vcpu *v);
};
struct proc_info_list {
unsigned int cpu_val;
unsigned int cpu_mask;
void (*cpu_init)(void);
struct processor *processor;
};
const struct proc_info_list *lookup_processor_type(void);
void processor_setup(void);
void processor_vcpu_initialise(struct vcpu *v);
#endif
|