aboutsummaryrefslogtreecommitdiff
path: root/includes/ia64/processor-platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/ia64/processor-platform.h')
-rw-r--r--includes/ia64/processor-platform.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/includes/ia64/processor-platform.h b/includes/ia64/processor-platform.h
index 1e30c5fc..5d525639 100644
--- a/includes/ia64/processor-platform.h
+++ b/includes/ia64/processor-platform.h
@@ -19,11 +19,22 @@
#ifndef __PROCESSOR_PLATFORM_H__
#define __PROCESSOR_PLATFORM_H__
+#include "cpu_util.h"
+
struct _Processor {
+ gint id;
+ gfloat cpu_mhz; /* for devices.c, identical to cpukhz_max/1000 */
+ cpu_topology_data *cputopo;
+ cpufreq_data *cpufreq;
+
gchar *model_name;
gchar *vendor_id;
- gfloat bogomips, cpu_mhz;
+ gfloat bogomips;
gchar *strmodel;
+
+ gchar *family, *arch, *archrev, *features;
+ gint model, revision;
+ gint cpu_regs;
};
#endif /* __PROCESSOR_PLATFORM_H__ */