blob: e05808a328db24ec39a8eb144e423cb7015f31a8 [file] [log] [blame]
Stephen Rothwell1ababe12005-08-03 14:35:25 +10001/*
Stephen Rothwell1ababe12005-08-03 14:35:25 +10002 * Copyright (C) 2001 Ben. Herrenschmidt (benh@kernel.crashing.org)
3 *
4 * Modifications for ppc64:
5 * Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
Michael Ellerman21f35f22005-10-24 15:07:29 +100012#ifndef __ASM_POWERPC_FIRMWARE_H
13#define __ASM_POWERPC_FIRMWARE_H
Stephen Rothwell1ababe12005-08-03 14:35:25 +100014
15#ifdef __KERNEL__
16
Stephen Rothwell3f639ee2006-09-25 18:19:00 +100017#include <asm/asm-compat.h>
Michael Ellermanc5157e52008-06-24 11:32:39 +100018#include <asm/feature-fixups.h>
Stephen Rothwell1ababe12005-08-03 14:35:25 +100019
20/* firmware feature bitmask values */
Stephen Rothwell1ababe12005-08-03 14:35:25 +100021
Stephen Rothwell3f639ee2006-09-25 18:19:00 +100022#define FW_FEATURE_PFT ASM_CONST(0x0000000000000001)
23#define FW_FEATURE_TCE ASM_CONST(0x0000000000000002)
24#define FW_FEATURE_SPRG0 ASM_CONST(0x0000000000000004)
25#define FW_FEATURE_DABR ASM_CONST(0x0000000000000008)
26#define FW_FEATURE_COPY ASM_CONST(0x0000000000000010)
27#define FW_FEATURE_ASR ASM_CONST(0x0000000000000020)
28#define FW_FEATURE_DEBUG ASM_CONST(0x0000000000000040)
29#define FW_FEATURE_TERM ASM_CONST(0x0000000000000080)
30#define FW_FEATURE_PERF ASM_CONST(0x0000000000000100)
31#define FW_FEATURE_DUMP ASM_CONST(0x0000000000000200)
32#define FW_FEATURE_INTERRUPT ASM_CONST(0x0000000000000400)
33#define FW_FEATURE_MIGRATE ASM_CONST(0x0000000000000800)
34#define FW_FEATURE_PERFMON ASM_CONST(0x0000000000001000)
35#define FW_FEATURE_CRQ ASM_CONST(0x0000000000002000)
36#define FW_FEATURE_VIO ASM_CONST(0x0000000000004000)
37#define FW_FEATURE_RDMA ASM_CONST(0x0000000000008000)
38#define FW_FEATURE_LLAN ASM_CONST(0x0000000000010000)
Anton Blanchardb6dcde52009-10-11 21:47:34 +000039#define FW_FEATURE_BULK_REMOVE ASM_CONST(0x0000000000020000)
Stephen Rothwell3f639ee2006-09-25 18:19:00 +100040#define FW_FEATURE_XDABR ASM_CONST(0x0000000000040000)
41#define FW_FEATURE_MULTITCE ASM_CONST(0x0000000000080000)
42#define FW_FEATURE_SPLPAR ASM_CONST(0x0000000000100000)
Stephen Rothwell3f639ee2006-09-25 18:19:00 +100043#define FW_FEATURE_LPAR ASM_CONST(0x0000000000400000)
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +010044#define FW_FEATURE_PS3_LV1 ASM_CONST(0x0000000000800000)
Michael Ellermanbf4981a2015-03-19 15:15:20 +110045/* Free ASM_CONST(0x0000000001000000) */
Anton Blanchardb6dcde52009-10-11 21:47:34 +000046#define FW_FEATURE_CMO ASM_CONST(0x0000000002000000)
Jesse Larrew36f567b2010-11-09 13:24:48 +000047#define FW_FEATURE_VPHN ASM_CONST(0x0000000004000000)
Brian King9ee820f2011-05-04 16:01:20 +100048#define FW_FEATURE_XCMO ASM_CONST(0x0000000008000000)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000049#define FW_FEATURE_OPAL ASM_CONST(0x0000000010000000)
50#define FW_FEATURE_OPALv2 ASM_CONST(0x0000000020000000)
Ian Munsied8f48ec2012-11-06 16:15:17 +110051#define FW_FEATURE_SET_MODE ASM_CONST(0x0000000040000000)
Michael Neuling0388c792012-11-06 14:49:16 +000052#define FW_FEATURE_BEST_ENERGY ASM_CONST(0x0000000080000000)
Nathan Fontenotf0ff7eb2013-04-24 05:57:18 +000053#define FW_FEATURE_TYPE1_AFFINITY ASM_CONST(0x0000000100000000)
Jesse Larrew5d88aa82013-04-24 06:00:35 +000054#define FW_FEATURE_PRRN ASM_CONST(0x0000000200000000)
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +100055#define FW_FEATURE_OPALv3 ASM_CONST(0x0000000400000000)
Stephen Rothwell3f639ee2006-09-25 18:19:00 +100056
57#ifndef __ASSEMBLY__
Stephen Rothwell1ababe12005-08-03 14:35:25 +100058
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +100059enum {
Paul Mackerras799d6042005-11-10 13:37:51 +110060#ifdef CONFIG_PPC64
Stephen Rothwellaed31352005-08-03 14:43:21 +100061 FW_FEATURE_PSERIES_POSSIBLE = FW_FEATURE_PFT | FW_FEATURE_TCE |
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +100062 FW_FEATURE_SPRG0 | FW_FEATURE_DABR | FW_FEATURE_COPY |
63 FW_FEATURE_ASR | FW_FEATURE_DEBUG | FW_FEATURE_TERM |
64 FW_FEATURE_PERF | FW_FEATURE_DUMP | FW_FEATURE_INTERRUPT |
65 FW_FEATURE_MIGRATE | FW_FEATURE_PERFMON | FW_FEATURE_CRQ |
66 FW_FEATURE_VIO | FW_FEATURE_RDMA | FW_FEATURE_LLAN |
Anton Blanchardb6dcde52009-10-11 21:47:34 +000067 FW_FEATURE_BULK_REMOVE | FW_FEATURE_XDABR |
68 FW_FEATURE_MULTITCE | FW_FEATURE_SPLPAR | FW_FEATURE_LPAR |
Ian Munsied8f48ec2012-11-06 16:15:17 +110069 FW_FEATURE_CMO | FW_FEATURE_VPHN | FW_FEATURE_XCMO |
Nathan Fontenotf0ff7eb2013-04-24 05:57:18 +000070 FW_FEATURE_SET_MODE | FW_FEATURE_BEST_ENERGY |
Jesse Larrew5d88aa82013-04-24 06:00:35 +000071 FW_FEATURE_TYPE1_AFFINITY | FW_FEATURE_PRRN,
Stephen Rothwellaed31352005-08-03 14:43:21 +100072 FW_FEATURE_PSERIES_ALWAYS = 0,
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +100073 FW_FEATURE_POWERNV_POSSIBLE = FW_FEATURE_OPAL | FW_FEATURE_OPALv2 |
74 FW_FEATURE_OPALv3,
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000075 FW_FEATURE_POWERNV_ALWAYS = 0,
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +010076 FW_FEATURE_PS3_POSSIBLE = FW_FEATURE_LPAR | FW_FEATURE_PS3_LV1,
77 FW_FEATURE_PS3_ALWAYS = FW_FEATURE_LPAR | FW_FEATURE_PS3_LV1,
78 FW_FEATURE_NATIVE_POSSIBLE = 0,
79 FW_FEATURE_NATIVE_ALWAYS = 0,
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +100080 FW_FEATURE_POSSIBLE =
81#ifdef CONFIG_PPC_PSERIES
Stephen Rothwellaed31352005-08-03 14:43:21 +100082 FW_FEATURE_PSERIES_POSSIBLE |
83#endif
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000084#ifdef CONFIG_PPC_POWERNV
85 FW_FEATURE_POWERNV_POSSIBLE |
86#endif
Geert Uytterhoeveneb30c722006-11-27 19:18:56 +010087#ifdef CONFIG_PPC_PS3
Geoff Levand82a527f02006-11-23 00:46:53 +010088 FW_FEATURE_PS3_POSSIBLE |
89#endif
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +010090#ifdef CONFIG_PPC_NATIVE
91 FW_FEATURE_NATIVE_ALWAYS |
92#endif
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +100093 0,
Stephen Rothwellaed31352005-08-03 14:43:21 +100094 FW_FEATURE_ALWAYS =
95#ifdef CONFIG_PPC_PSERIES
96 FW_FEATURE_PSERIES_ALWAYS &
97#endif
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000098#ifdef CONFIG_PPC_POWERNV
99 FW_FEATURE_POWERNV_ALWAYS &
100#endif
Geert Uytterhoeveneb30c722006-11-27 19:18:56 +0100101#ifdef CONFIG_PPC_PS3
Geoff Levand82a527f02006-11-23 00:46:53 +0100102 FW_FEATURE_PS3_ALWAYS &
103#endif
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100104#ifdef CONFIG_PPC_NATIVE
105 FW_FEATURE_NATIVE_ALWAYS &
106#endif
Stephen Rothwellaed31352005-08-03 14:43:21 +1000107 FW_FEATURE_POSSIBLE,
Paul Mackerras799d6042005-11-10 13:37:51 +1100108
109#else /* CONFIG_PPC64 */
110 FW_FEATURE_POSSIBLE = 0,
111 FW_FEATURE_ALWAYS = 0,
112#endif
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +1000113};
114
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000115/* This is used to identify firmware features which are available
116 * to the kernel.
117 */
Michael Ellermand0160bf2006-03-27 14:26:25 +1100118extern unsigned long powerpc_firmware_features;
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000119
Michael Ellermandd4d7bf2006-03-23 23:33:03 +1100120#define firmware_has_feature(feature) \
121 ((FW_FEATURE_ALWAYS & (feature)) || \
Michael Ellermand0160bf2006-03-27 14:26:25 +1100122 (FW_FEATURE_POSSIBLE & powerpc_firmware_features & (feature)))
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000123
Michael Ellerman8c4f1f22005-12-04 18:39:33 +1100124extern void system_reset_fwnmi(void);
125extern void machine_check_fwnmi(void);
126
127/* This is true if we are using the firmware NMI handler (typically LPAR) */
128extern int fwnmi_active;
129
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +1000130extern unsigned int __start___fw_ftr_fixup, __stop___fw_ftr_fixup;
131
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000132#endif /* __ASSEMBLY__ */
133#endif /* __KERNEL__ */
Michael Ellerman21f35f22005-10-24 15:07:29 +1000134#endif /* __ASM_POWERPC_FIRMWARE_H */