aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/kernel/cputable.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc64/kernel/cputable.c')
-rw-r--r--arch/ppc64/kernel/cputable.c27
1 files changed, 1 insertions, 26 deletions
diff --git a/arch/ppc64/kernel/cputable.c b/arch/ppc64/kernel/cputable.c
index 6294fc7bd442..4847f2ac8c9f 100644
--- a/arch/ppc64/kernel/cputable.c
+++ b/arch/ppc64/kernel/cputable.c
@@ -5,7 +5,7 @@
5 * 5 *
6 * Modifications for ppc64: 6 * Modifications for ppc64:
7 * Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com> 7 * Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com>
8 * 8 *
9 * This program is free software; you can redistribute it and/or 9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License 10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 11 * as published by the Free Software Foundation; either version
@@ -20,11 +20,9 @@
20#include <linux/module.h> 20#include <linux/module.h>
21 21
22#include <asm/cputable.h> 22#include <asm/cputable.h>
23#include <asm/firmware.h>
24 23
25struct cpu_spec* cur_cpu_spec = NULL; 24struct cpu_spec* cur_cpu_spec = NULL;
26EXPORT_SYMBOL(cur_cpu_spec); 25EXPORT_SYMBOL(cur_cpu_spec);
27unsigned long ppc64_firmware_features;
28 26
29/* NOTE: 27/* NOTE:
30 * Unlike ppc32, ppc64 will only call this once for the boot CPU, it's 28 * Unlike ppc32, ppc64 will only call this once for the boot CPU, it's
@@ -244,26 +242,3 @@ struct cpu_spec cpu_specs[] = {
244 .cpu_setup = __setup_cpu_power4, 242 .cpu_setup = __setup_cpu_power4,
245 } 243 }
246}; 244};
247
248firmware_feature_t firmware_features_table[FIRMWARE_MAX_FEATURES] = {
249 {FW_FEATURE_PFT, "hcall-pft"},
250 {FW_FEATURE_TCE, "hcall-tce"},
251 {FW_FEATURE_SPRG0, "hcall-sprg0"},
252 {FW_FEATURE_DABR, "hcall-dabr"},
253 {FW_FEATURE_COPY, "hcall-copy"},
254 {FW_FEATURE_ASR, "hcall-asr"},
255 {FW_FEATURE_DEBUG, "hcall-debug"},
256 {FW_FEATURE_PERF, "hcall-perf"},
257 {FW_FEATURE_DUMP, "hcall-dump"},
258 {FW_FEATURE_INTERRUPT, "hcall-interrupt"},
259 {FW_FEATURE_MIGRATE, "hcall-migrate"},
260 {FW_FEATURE_PERFMON, "hcall-perfmon"},
261 {FW_FEATURE_CRQ, "hcall-crq"},
262 {FW_FEATURE_VIO, "hcall-vio"},
263 {FW_FEATURE_RDMA, "hcall-rdma"},
264 {FW_FEATURE_LLAN, "hcall-lLAN"},
265 {FW_FEATURE_BULK, "hcall-bulk"},
266 {FW_FEATURE_XDABR, "hcall-xdabr"},
267 {FW_FEATURE_MULTITCE, "hcall-multi-tce"},
268 {FW_FEATURE_SPLPAR, "hcall-splpar"},
269};