Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * S390 version |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 3 | * Copyright IBM Corp. 1999, 2010 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #ifndef _ASM_S390_SETUP_H |
| 6 | #define _ASM_S390_SETUP_H |
| 7 | |
David Howells | 9807f75 | 2012-10-09 09:47:31 +0100 | [diff] [blame] | 8 | #include <uapi/asm/setup.h> |
Hendrik Brueckner | a0443fb | 2008-07-14 09:59:09 +0200 | [diff] [blame] | 9 | |
Heiko Carstens | 0defa3c | 2006-02-11 17:56:03 -0800 | [diff] [blame] | 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #define PARMAREA 0x10400 |
Heiko Carstens | 23d1742 | 2008-07-14 09:59:21 +0200 | [diff] [blame] | 12 | #define MEMORY_CHUNKS 256 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | #ifndef __ASSEMBLY__ |
| 15 | |
Heiko Carstens | cbb870c | 2010-02-26 22:37:43 +0100 | [diff] [blame] | 16 | #include <asm/lowcore.h> |
| 17 | #include <asm/types.h> |
| 18 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 19 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define IPL_DEVICE (*(unsigned long *) (0x10404)) |
| 21 | #define INITRD_START (*(unsigned long *) (0x1040C)) |
| 22 | #define INITRD_SIZE (*(unsigned long *) (0x10414)) |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 23 | #define OLDMEM_BASE (*(unsigned long *) (0x1041C)) |
| 24 | #define OLDMEM_SIZE (*(unsigned long *) (0x10424)) |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 25 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #define IPL_DEVICE (*(unsigned long *) (0x10400)) |
| 27 | #define INITRD_START (*(unsigned long *) (0x10408)) |
| 28 | #define INITRD_SIZE (*(unsigned long *) (0x10410)) |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 29 | #define OLDMEM_BASE (*(unsigned long *) (0x10418)) |
| 30 | #define OLDMEM_SIZE (*(unsigned long *) (0x10420)) |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 31 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #define COMMAND_LINE ((char *) (0x10480)) |
| 33 | |
Heiko Carstens | 36a2bd4 | 2006-12-04 15:40:38 +0100 | [diff] [blame] | 34 | #define CHUNK_READ_WRITE 0 |
| 35 | #define CHUNK_READ_ONLY 1 |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 36 | #define CHUNK_OLDMEM 4 |
| 37 | #define CHUNK_CRASHK 5 |
Heiko Carstens | 36a2bd4 | 2006-12-04 15:40:38 +0100 | [diff] [blame] | 38 | |
| 39 | struct mem_chunk { |
| 40 | unsigned long addr; |
| 41 | unsigned long size; |
Heiko Carstens | 23d1742 | 2008-07-14 09:59:21 +0200 | [diff] [blame] | 42 | int type; |
Heiko Carstens | 36a2bd4 | 2006-12-04 15:40:38 +0100 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | extern struct mem_chunk memory_chunk[]; |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 46 | extern unsigned long real_memory_size; |
Heiko Carstens | 23d75d9 | 2009-02-19 15:19:01 +0100 | [diff] [blame] | 47 | extern int memory_end_set; |
| 48 | extern unsigned long memory_end; |
Heiko Carstens | 36a2bd4 | 2006-12-04 15:40:38 +0100 | [diff] [blame] | 49 | |
Heiko Carstens | 23d1742 | 2008-07-14 09:59:21 +0200 | [diff] [blame] | 50 | void detect_memory_layout(struct mem_chunk chunk[]); |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 51 | void create_mem_hole(struct mem_chunk memory_chunk[], unsigned long addr, |
| 52 | unsigned long size, int type); |
Heiko Carstens | 23d1742 | 2008-07-14 09:59:21 +0200 | [diff] [blame] | 53 | |
Martin Schwidefsky | b11b533 | 2009-12-07 12:51:43 +0100 | [diff] [blame] | 54 | #define PRIMARY_SPACE_MODE 0 |
| 55 | #define ACCESS_REGISTER_MODE 1 |
| 56 | #define SECONDARY_SPACE_MODE 2 |
| 57 | #define HOME_SPACE_MODE 3 |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 58 | |
Heiko Carstens | d1b0d84 | 2012-09-02 11:02:23 +0200 | [diff] [blame] | 59 | extern unsigned int s390_user_mode; |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | /* |
| 62 | * Machine features detected in head.S |
| 63 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 65 | #define MACHINE_FLAG_VM (1UL << 0) |
| 66 | #define MACHINE_FLAG_IEEE (1UL << 1) |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 67 | #define MACHINE_FLAG_CSP (1UL << 3) |
| 68 | #define MACHINE_FLAG_MVPG (1UL << 4) |
| 69 | #define MACHINE_FLAG_DIAG44 (1UL << 5) |
| 70 | #define MACHINE_FLAG_IDTE (1UL << 6) |
| 71 | #define MACHINE_FLAG_DIAG9C (1UL << 7) |
| 72 | #define MACHINE_FLAG_MVCOS (1UL << 8) |
| 73 | #define MACHINE_FLAG_KVM (1UL << 9) |
Heiko Carstens | 3c7ef08 | 2012-09-28 15:06:41 +0200 | [diff] [blame] | 74 | #define MACHINE_FLAG_EDAT1 (1UL << 10) |
Heiko Carstens | 85e9d0e | 2012-09-27 10:45:06 +0200 | [diff] [blame] | 75 | #define MACHINE_FLAG_EDAT2 (1UL << 11) |
Martin Schwidefsky | 27d7160 | 2010-02-26 22:37:38 +0100 | [diff] [blame] | 76 | #define MACHINE_FLAG_LPAR (1UL << 12) |
Carsten Otte | cd3b70f | 2010-05-17 10:00:04 +0200 | [diff] [blame] | 77 | #define MACHINE_FLAG_SPP (1UL << 13) |
Heiko Carstens | 9186d7a | 2010-10-25 16:10:52 +0200 | [diff] [blame] | 78 | #define MACHINE_FLAG_TOPOLOGY (1UL << 14) |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 79 | #define MACHINE_FLAG_TE (1UL << 15) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 80 | #define MACHINE_FLAG_RRBM (1UL << 16) |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 81 | |
Christian Ehrhardt | 25097bf | 2009-04-14 15:36:16 +0200 | [diff] [blame] | 82 | #define MACHINE_IS_VM (S390_lowcore.machine_flags & MACHINE_FLAG_VM) |
| 83 | #define MACHINE_IS_KVM (S390_lowcore.machine_flags & MACHINE_FLAG_KVM) |
Martin Schwidefsky | 27d7160 | 2010-02-26 22:37:38 +0100 | [diff] [blame] | 84 | #define MACHINE_IS_LPAR (S390_lowcore.machine_flags & MACHINE_FLAG_LPAR) |
| 85 | |
Christian Ehrhardt | 25097bf | 2009-04-14 15:36:16 +0200 | [diff] [blame] | 86 | #define MACHINE_HAS_DIAG9C (S390_lowcore.machine_flags & MACHINE_FLAG_DIAG9C) |
Heiko Carstens | 3c7ef08 | 2012-09-28 15:06:41 +0200 | [diff] [blame] | 87 | #define MACHINE_HAS_PFMF MACHINE_HAS_EDAT1 |
| 88 | #define MACHINE_HAS_HPAGE MACHINE_HAS_EDAT1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 90 | #ifndef CONFIG_64BIT |
Christian Ehrhardt | 25097bf | 2009-04-14 15:36:16 +0200 | [diff] [blame] | 91 | #define MACHINE_HAS_IEEE (S390_lowcore.machine_flags & MACHINE_FLAG_IEEE) |
| 92 | #define MACHINE_HAS_CSP (S390_lowcore.machine_flags & MACHINE_FLAG_CSP) |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 93 | #define MACHINE_HAS_IDTE (0) |
Heiko Carstens | abdba61 | 2006-07-12 16:39:58 +0200 | [diff] [blame] | 94 | #define MACHINE_HAS_DIAG44 (1) |
Christian Ehrhardt | 25097bf | 2009-04-14 15:36:16 +0200 | [diff] [blame] | 95 | #define MACHINE_HAS_MVPG (S390_lowcore.machine_flags & MACHINE_FLAG_MVPG) |
Gerald Schaefer | 6c2a9e6 | 2006-09-20 15:59:44 +0200 | [diff] [blame] | 96 | #define MACHINE_HAS_MVCOS (0) |
Heiko Carstens | 3c7ef08 | 2012-09-28 15:06:41 +0200 | [diff] [blame] | 97 | #define MACHINE_HAS_EDAT1 (0) |
Heiko Carstens | 85e9d0e | 2012-09-27 10:45:06 +0200 | [diff] [blame] | 98 | #define MACHINE_HAS_EDAT2 (0) |
Carsten Otte | cd3b70f | 2010-05-17 10:00:04 +0200 | [diff] [blame] | 99 | #define MACHINE_HAS_SPP (0) |
Heiko Carstens | 9186d7a | 2010-10-25 16:10:52 +0200 | [diff] [blame] | 100 | #define MACHINE_HAS_TOPOLOGY (0) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 101 | #define MACHINE_HAS_TE (0) |
| 102 | #define MACHINE_HAS_RRBM (0) |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 103 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | #define MACHINE_HAS_IEEE (1) |
| 105 | #define MACHINE_HAS_CSP (1) |
Christian Ehrhardt | 25097bf | 2009-04-14 15:36:16 +0200 | [diff] [blame] | 106 | #define MACHINE_HAS_IDTE (S390_lowcore.machine_flags & MACHINE_FLAG_IDTE) |
| 107 | #define MACHINE_HAS_DIAG44 (S390_lowcore.machine_flags & MACHINE_FLAG_DIAG44) |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 108 | #define MACHINE_HAS_MVPG (1) |
Christian Ehrhardt | 25097bf | 2009-04-14 15:36:16 +0200 | [diff] [blame] | 109 | #define MACHINE_HAS_MVCOS (S390_lowcore.machine_flags & MACHINE_FLAG_MVCOS) |
Heiko Carstens | 3c7ef08 | 2012-09-28 15:06:41 +0200 | [diff] [blame] | 110 | #define MACHINE_HAS_EDAT1 (S390_lowcore.machine_flags & MACHINE_FLAG_EDAT1) |
Heiko Carstens | 85e9d0e | 2012-09-27 10:45:06 +0200 | [diff] [blame] | 111 | #define MACHINE_HAS_EDAT2 (S390_lowcore.machine_flags & MACHINE_FLAG_EDAT2) |
Carsten Otte | cd3b70f | 2010-05-17 10:00:04 +0200 | [diff] [blame] | 112 | #define MACHINE_HAS_SPP (S390_lowcore.machine_flags & MACHINE_FLAG_SPP) |
Heiko Carstens | 9186d7a | 2010-10-25 16:10:52 +0200 | [diff] [blame] | 113 | #define MACHINE_HAS_TOPOLOGY (S390_lowcore.machine_flags & MACHINE_FLAG_TOPOLOGY) |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 114 | #define MACHINE_HAS_TE (S390_lowcore.machine_flags & MACHINE_FLAG_TE) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 115 | #define MACHINE_HAS_RRBM (S390_lowcore.machine_flags & MACHINE_FLAG_RRBM) |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 116 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 118 | #define ZFCPDUMP_HSA_SIZE (32UL<<20) |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 119 | #define ZFCPDUMP_HSA_SIZE_MAX (64UL<<20) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | /* |
| 122 | * Console mode. Override with conmode= |
| 123 | */ |
| 124 | extern unsigned int console_mode; |
| 125 | extern unsigned int console_devno; |
| 126 | extern unsigned int console_irq; |
| 127 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 128 | extern char vmhalt_cmd[]; |
| 129 | extern char vmpoff_cmd[]; |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | #define CONSOLE_IS_UNDEFINED (console_mode == 0) |
| 132 | #define CONSOLE_IS_SCLP (console_mode == 1) |
| 133 | #define CONSOLE_IS_3215 (console_mode == 2) |
| 134 | #define CONSOLE_IS_3270 (console_mode == 3) |
| 135 | #define SET_CONSOLE_SCLP do { console_mode = 1; } while (0) |
| 136 | #define SET_CONSOLE_3215 do { console_mode = 2; } while (0) |
| 137 | #define SET_CONSOLE_3270 do { console_mode = 3; } while (0) |
| 138 | |
Hongjie Yang | fe355b7 | 2007-02-05 21:18:24 +0100 | [diff] [blame] | 139 | #define NSS_NAME_SIZE 8 |
Hongjie Yang | fe355b7 | 2007-02-05 21:18:24 +0100 | [diff] [blame] | 140 | extern char kernel_nss_name[]; |
| 141 | |
David Howells | a0616cd | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 142 | #ifdef CONFIG_PFAULT |
| 143 | extern int pfault_init(void); |
| 144 | extern void pfault_fini(void); |
| 145 | #else /* CONFIG_PFAULT */ |
| 146 | #define pfault_init() ({-1;}) |
| 147 | #define pfault_fini() do { } while (0) |
| 148 | #endif /* CONFIG_PFAULT */ |
| 149 | |
| 150 | extern void cmma_init(void); |
| 151 | |
| 152 | extern void (*_machine_restart)(char *command); |
| 153 | extern void (*_machine_halt)(void); |
| 154 | extern void (*_machine_power_off)(void); |
| 155 | |
Heiko Carstens | 0defa3c | 2006-02-11 17:56:03 -0800 | [diff] [blame] | 156 | #else /* __ASSEMBLY__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 158 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | #define IPL_DEVICE 0x10404 |
| 160 | #define INITRD_START 0x1040C |
| 161 | #define INITRD_SIZE 0x10414 |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 162 | #define OLDMEM_BASE 0x1041C |
| 163 | #define OLDMEM_SIZE 0x10424 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 164 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | #define IPL_DEVICE 0x10400 |
| 166 | #define INITRD_START 0x10408 |
| 167 | #define INITRD_SIZE 0x10410 |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 168 | #define OLDMEM_BASE 0x10418 |
| 169 | #define OLDMEM_SIZE 0x10420 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 170 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | #define COMMAND_LINE 0x10480 |
| 172 | |
Heiko Carstens | 0defa3c | 2006-02-11 17:56:03 -0800 | [diff] [blame] | 173 | #endif /* __ASSEMBLY__ */ |
Heiko Carstens | 0defa3c | 2006-02-11 17:56:03 -0800 | [diff] [blame] | 174 | #endif /* _ASM_S390_SETUP_H */ |