Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Assorted minor fixes to the transactional memory code
[palacios.git] / palacios / src / extensions / Kconfig
1 menu "Extensions"
2
3 config EXT_MTRRS
4         bool "Support virtualized MTTRs"
5         default n
6         help
7            Provides a virtualized set of MTTR registers
8
9 config EXT_MACH_CHECK
10         bool "Support machine-check functionality"
11         default n
12         help 
13            Provides a virtualized machine-check architecture
14
15 config DEBUG_EXT_MACH_CHECK
16     bool "Debug machine-check functionality"
17     default n
18     depends on EXT_MACH_CHECK
19     help
20         Enable virtual machine-check architecture debugging
21
22 config EXT_INSPECTOR
23         bool "VM Inspector"
24         default n
25         help
26           Provides the inspection extension
27
28 config EXT_VMWARE
29         bool "VMWare Persona"
30         default n
31         help
32           Provides a VMWare persona to allow TSC calibration
33
34 config EXT_SCHED_EDF
35         bool "EDF Real-time Scheduler"
36         default n
37         help
38           Provides a full real-time EDF scheduler for VM cores
39
40 config DEBUG_EXT_SCHED_EDF
41         bool "Debugging for EDF Real-time Scheduler"
42         default n
43         depends on DEBUG_ON && EXT_SCHED_EDF
44
45 config EXT_CPU_MAPPER_EDF
46         bool "CPU Mapper for EDF Scheduler"
47         default n
48         help
49           Provides an CPU Mapper for EDF scheduler
50
51 config DEBUG_EXT_CPU_MAPPER_EDF
52         bool "Debugging for EDF CPU Mapper"
53         default n
54         depends on DEBUG_ON && EXT_CPU_MAPPER_EDF
55
56 config TM_FUNC
57         bool "Enable Intel Transactional Memory Emulation"
58         default n
59         depends on SVM && QUIX86 && EXPERIMENTAL
60         help
61           Enable Palacios to emulate Intel's hardware
62           transactional memory extensions. This is the
63           Restricted Transactional Memory (RTM) featureset,
64           part of Intel's TSX extensions.  
65
66           Ironically, this feature is only implemented for AMD (SVM)
67
68 config DEBUG_TM_FUNC
69     bool "Enable transactional memory emulation debugging output"
70     depends on DEBUG_ON && TM_FUNC
71     default n
72     help
73         Enable Transactional Memory debugging output
74
75 endmenu