blob: 55b98c3dc47a73602d3fca6b46d9543a40e56970 [file] [log] [blame]
Michael Ellerman19657462006-02-10 15:47:36 +11001/*
2 * pSeries firmware setup code.
3 *
4 * Portions from arch/powerpc/platforms/pseries/setup.c:
5 * Copyright (C) 1995 Linus Torvalds
6 * Adapted from 'alpha' version by Gary Thomas
7 * Modified by Cort Dougan (cort@cs.nmt.edu)
8 * Modified by PPC64 Team, IBM Corp
9 *
10 * Portions from arch/powerpc/kernel/firmware.c
11 * Copyright (C) 2001 Ben. Herrenschmidt (benh@kernel.crashing.org)
12 * Modifications for ppc64:
13 * Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com>
14 * Copyright (C) 2005 Stephen Rothwell, IBM Corporation
15 *
16 * Copyright 2006 IBM Corporation.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 */
23
Michael Ellerman19657462006-02-10 15:47:36 +110024
25#include <asm/firmware.h>
26#include <asm/prom.h>
will schmidtaa39be02007-10-30 06:24:19 +110027#include <asm/udbg.h>
Michael Ellerman19657462006-02-10 15:47:36 +110028
Michael Ellerman3ff19992008-05-08 14:27:21 +100029#include "pseries.h"
Michael Ellerman19657462006-02-10 15:47:36 +110030
31typedef struct {
32 unsigned long val;
33 char * name;
34} firmware_feature_t;
35
Michael Neuling2f1d4ea2012-11-06 14:49:15 +000036/*
37 * The names in this table match names in rtas/ibm,hypertas-functions. If the
38 * entry ends in a '*', only upto the '*' is matched. Otherwise the entire
39 * string must match.
40 */
Michael Ellerman19657462006-02-10 15:47:36 +110041static __initdata firmware_feature_t
42firmware_features_table[FIRMWARE_MAX_FEATURES] = {
43 {FW_FEATURE_PFT, "hcall-pft"},
44 {FW_FEATURE_TCE, "hcall-tce"},
45 {FW_FEATURE_SPRG0, "hcall-sprg0"},
46 {FW_FEATURE_DABR, "hcall-dabr"},
47 {FW_FEATURE_COPY, "hcall-copy"},
48 {FW_FEATURE_ASR, "hcall-asr"},
49 {FW_FEATURE_DEBUG, "hcall-debug"},
50 {FW_FEATURE_PERF, "hcall-perf"},
51 {FW_FEATURE_DUMP, "hcall-dump"},
52 {FW_FEATURE_INTERRUPT, "hcall-interrupt"},
53 {FW_FEATURE_MIGRATE, "hcall-migrate"},
54 {FW_FEATURE_PERFMON, "hcall-perfmon"},
55 {FW_FEATURE_CRQ, "hcall-crq"},
56 {FW_FEATURE_VIO, "hcall-vio"},
57 {FW_FEATURE_RDMA, "hcall-rdma"},
58 {FW_FEATURE_LLAN, "hcall-lLAN"},
Anton Blanchardb6dcde52009-10-11 21:47:34 +000059 {FW_FEATURE_BULK_REMOVE, "hcall-bulk"},
Michael Ellerman19657462006-02-10 15:47:36 +110060 {FW_FEATURE_XDABR, "hcall-xdabr"},
61 {FW_FEATURE_MULTITCE, "hcall-multi-tce"},
62 {FW_FEATURE_SPLPAR, "hcall-splpar"},
Jesse Larrew36f567b2010-11-09 13:24:48 +000063 {FW_FEATURE_VPHN, "hcall-vphn"},
Ian Munsied8f48ec2012-11-06 16:15:17 +110064 {FW_FEATURE_SET_MODE, "hcall-set-mode"},
Michael Ellerman19657462006-02-10 15:47:36 +110065};
66
67/* Build up the firmware features bitmask using the contents of
68 * device-tree/ibm,hypertas-functions. Ultimately this functionality may
69 * be moved into prom.c prom_init().
70 */
Michael Neulingca8ffc92007-07-19 07:56:32 +100071void __init fw_feature_init(const char *hypertas, unsigned long len)
Michael Ellerman19657462006-02-10 15:47:36 +110072{
Michael Neulingca8ffc92007-07-19 07:56:32 +100073 const char *s;
74 int i;
Michael Ellerman19657462006-02-10 15:47:36 +110075
Michael Ellermanf7ebf352008-04-24 15:13:19 +100076 pr_debug(" -> fw_feature_init()\n");
Michael Ellerman19657462006-02-10 15:47:36 +110077
Michael Ellerman19657462006-02-10 15:47:36 +110078 for (s = hypertas; s < hypertas + len; s += strlen(s) + 1) {
79 for (i = 0; i < FIRMWARE_MAX_FEATURES; i++) {
Michael Neuling2f1d4ea2012-11-06 14:49:15 +000080 const char *name = firmware_features_table[i].name;
81 size_t size;
Michael Ellerman19657462006-02-10 15:47:36 +110082 /* check value against table of strings */
Michael Neuling2f1d4ea2012-11-06 14:49:15 +000083 if (!name)
84 continue;
85 /*
86 * If there is a '*' at the end of name, only check
87 * upto there
88 */
89 size = strlen(name);
90 if (size && name[size - 1] == '*') {
91 if (strncmp(name, s, size - 1))
92 continue;
93 } else if (strcmp(name, s))
Michael Ellerman19657462006-02-10 15:47:36 +110094 continue;
95
96 /* we have a match */
Michael Ellermand0160bf2006-03-27 14:26:25 +110097 powerpc_firmware_features |=
Michael Ellerman19657462006-02-10 15:47:36 +110098 firmware_features_table[i].val;
99 break;
100 }
101 }
102
Michael Ellermanf7ebf352008-04-24 15:13:19 +1000103 pr_debug(" <- fw_feature_init()\n");
Michael Ellerman19657462006-02-10 15:47:36 +1100104}