2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* include/asm-s390/setup.h
|
|
|
|
*
|
|
|
|
* S390 version
|
2010-05-17 10:00:04 +02:00
|
|
|
* Copyright IBM Corp. 1999,2010
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_S390_SETUP_H
|
|
|
|
#define _ASM_S390_SETUP_H
|
|
|
|
|
2009-09-11 10:28:40 +02:00
|
|
|
#define COMMAND_LINE_SIZE 4096
|
2008-07-14 09:59:09 +02:00
|
|
|
|
|
|
|
#define ARCH_COMMAND_LINE_SIZE 896
|
2006-12-07 05:40:38 +01:00
|
|
|
|
2006-02-12 02:56:03 +01:00
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#define PARMAREA 0x10400
|
2008-07-14 09:59:21 +02:00
|
|
|
#define MEMORY_CHUNKS 256
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2010-02-26 22:37:43 +01:00
|
|
|
#include <asm/lowcore.h>
|
|
|
|
#include <asm/types.h>
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#ifndef __s390x__
|
|
|
|
#define IPL_DEVICE (*(unsigned long *) (0x10404))
|
|
|
|
#define INITRD_START (*(unsigned long *) (0x1040C))
|
|
|
|
#define INITRD_SIZE (*(unsigned long *) (0x10414))
|
2011-10-30 15:16:40 +01:00
|
|
|
#define OLDMEM_BASE (*(unsigned long *) (0x1041C))
|
|
|
|
#define OLDMEM_SIZE (*(unsigned long *) (0x10424))
|
2005-04-17 00:20:36 +02:00
|
|
|
#else /* __s390x__ */
|
|
|
|
#define IPL_DEVICE (*(unsigned long *) (0x10400))
|
|
|
|
#define INITRD_START (*(unsigned long *) (0x10408))
|
|
|
|
#define INITRD_SIZE (*(unsigned long *) (0x10410))
|
2011-10-30 15:16:40 +01:00
|
|
|
#define OLDMEM_BASE (*(unsigned long *) (0x10418))
|
|
|
|
#define OLDMEM_SIZE (*(unsigned long *) (0x10420))
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* __s390x__ */
|
|
|
|
#define COMMAND_LINE ((char *) (0x10480))
|
|
|
|
|
2006-12-04 15:40:38 +01:00
|
|
|
#define CHUNK_READ_WRITE 0
|
|
|
|
#define CHUNK_READ_ONLY 1
|
2011-10-30 15:16:40 +01:00
|
|
|
#define CHUNK_OLDMEM 4
|
|
|
|
#define CHUNK_CRASHK 5
|
2006-12-04 15:40:38 +01:00
|
|
|
|
|
|
|
struct mem_chunk {
|
|
|
|
unsigned long addr;
|
|
|
|
unsigned long size;
|
2008-07-14 09:59:21 +02:00
|
|
|
int type;
|
2006-12-04 15:40:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct mem_chunk memory_chunk[];
|
2007-04-27 16:01:49 +02:00
|
|
|
extern unsigned long real_memory_size;
|
2009-02-19 15:19:01 +01:00
|
|
|
extern int memory_end_set;
|
|
|
|
extern unsigned long memory_end;
|
2006-12-04 15:40:38 +01:00
|
|
|
|
2008-07-14 09:59:21 +02:00
|
|
|
void detect_memory_layout(struct mem_chunk chunk[]);
|
2011-10-30 15:16:40 +01:00
|
|
|
void create_mem_hole(struct mem_chunk memory_chunk[], unsigned long addr,
|
|
|
|
unsigned long size, int type);
|
2008-07-14 09:59:21 +02:00
|
|
|
|
2009-12-07 12:51:43 +01:00
|
|
|
#define PRIMARY_SPACE_MODE 0
|
|
|
|
#define ACCESS_REGISTER_MODE 1
|
|
|
|
#define SECONDARY_SPACE_MODE 2
|
|
|
|
#define HOME_SPACE_MODE 3
|
|
|
|
|
|
|
|
extern unsigned int user_mode;
|
2007-02-05 21:18:17 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Machine features detected in head.S
|
|
|
|
*/
|
|
|
|
|
2008-04-30 13:38:45 +02:00
|
|
|
#define MACHINE_FLAG_VM (1UL << 0)
|
|
|
|
#define MACHINE_FLAG_IEEE (1UL << 1)
|
|
|
|
#define MACHINE_FLAG_CSP (1UL << 3)
|
|
|
|
#define MACHINE_FLAG_MVPG (1UL << 4)
|
|
|
|
#define MACHINE_FLAG_DIAG44 (1UL << 5)
|
|
|
|
#define MACHINE_FLAG_IDTE (1UL << 6)
|
|
|
|
#define MACHINE_FLAG_DIAG9C (1UL << 7)
|
|
|
|
#define MACHINE_FLAG_MVCOS (1UL << 8)
|
|
|
|
#define MACHINE_FLAG_KVM (1UL << 9)
|
2008-04-30 13:38:46 +02:00
|
|
|
#define MACHINE_FLAG_HPAGE (1UL << 10)
|
|
|
|
#define MACHINE_FLAG_PFMF (1UL << 11)
|
2010-02-26 22:37:38 +01:00
|
|
|
#define MACHINE_FLAG_LPAR (1UL << 12)
|
2010-05-17 10:00:04 +02:00
|
|
|
#define MACHINE_FLAG_SPP (1UL << 13)
|
2010-10-25 16:10:52 +02:00
|
|
|
#define MACHINE_FLAG_TOPOLOGY (1UL << 14)
|
2011-11-14 11:19:06 +01:00
|
|
|
#define MACHINE_FLAG_STCKF (1UL << 15)
|
2008-04-30 13:38:45 +02:00
|
|
|
|
2009-04-14 15:36:16 +02:00
|
|
|
#define MACHINE_IS_VM (S390_lowcore.machine_flags & MACHINE_FLAG_VM)
|
|
|
|
#define MACHINE_IS_KVM (S390_lowcore.machine_flags & MACHINE_FLAG_KVM)
|
2010-02-26 22:37:38 +01:00
|
|
|
#define MACHINE_IS_LPAR (S390_lowcore.machine_flags & MACHINE_FLAG_LPAR)
|
|
|
|
|
2009-04-14 15:36:16 +02:00
|
|
|
#define MACHINE_HAS_DIAG9C (S390_lowcore.machine_flags & MACHINE_FLAG_DIAG9C)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifndef __s390x__
|
2009-04-14 15:36:16 +02:00
|
|
|
#define MACHINE_HAS_IEEE (S390_lowcore.machine_flags & MACHINE_FLAG_IEEE)
|
|
|
|
#define MACHINE_HAS_CSP (S390_lowcore.machine_flags & MACHINE_FLAG_CSP)
|
2008-04-30 13:38:45 +02:00
|
|
|
#define MACHINE_HAS_IDTE (0)
|
2006-07-12 16:39:58 +02:00
|
|
|
#define MACHINE_HAS_DIAG44 (1)
|
2009-04-14 15:36:16 +02:00
|
|
|
#define MACHINE_HAS_MVPG (S390_lowcore.machine_flags & MACHINE_FLAG_MVPG)
|
2006-09-20 15:59:44 +02:00
|
|
|
#define MACHINE_HAS_MVCOS (0)
|
2008-04-30 13:38:46 +02:00
|
|
|
#define MACHINE_HAS_HPAGE (0)
|
|
|
|
#define MACHINE_HAS_PFMF (0)
|
2010-05-17 10:00:04 +02:00
|
|
|
#define MACHINE_HAS_SPP (0)
|
2010-10-25 16:10:52 +02:00
|
|
|
#define MACHINE_HAS_TOPOLOGY (0)
|
2011-11-14 11:19:06 +01:00
|
|
|
#define MACHINE_HAS_STCKF (0)
|
2005-04-17 00:20:36 +02:00
|
|
|
#else /* __s390x__ */
|
|
|
|
#define MACHINE_HAS_IEEE (1)
|
|
|
|
#define MACHINE_HAS_CSP (1)
|
2009-04-14 15:36:16 +02:00
|
|
|
#define MACHINE_HAS_IDTE (S390_lowcore.machine_flags & MACHINE_FLAG_IDTE)
|
|
|
|
#define MACHINE_HAS_DIAG44 (S390_lowcore.machine_flags & MACHINE_FLAG_DIAG44)
|
2008-04-30 13:38:45 +02:00
|
|
|
#define MACHINE_HAS_MVPG (1)
|
2009-04-14 15:36:16 +02:00
|
|
|
#define MACHINE_HAS_MVCOS (S390_lowcore.machine_flags & MACHINE_FLAG_MVCOS)
|
|
|
|
#define MACHINE_HAS_HPAGE (S390_lowcore.machine_flags & MACHINE_FLAG_HPAGE)
|
|
|
|
#define MACHINE_HAS_PFMF (S390_lowcore.machine_flags & MACHINE_FLAG_PFMF)
|
2010-05-17 10:00:04 +02:00
|
|
|
#define MACHINE_HAS_SPP (S390_lowcore.machine_flags & MACHINE_FLAG_SPP)
|
2010-10-25 16:10:52 +02:00
|
|
|
#define MACHINE_HAS_TOPOLOGY (S390_lowcore.machine_flags & MACHINE_FLAG_TOPOLOGY)
|
2011-11-14 11:19:06 +01:00
|
|
|
#define MACHINE_HAS_STCKF (S390_lowcore.machine_flags & MACHINE_FLAG_STCKF)
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* __s390x__ */
|
|
|
|
|
2007-04-27 16:01:49 +02:00
|
|
|
#define ZFCPDUMP_HSA_SIZE (32UL<<20)
|
2011-10-30 15:16:40 +01:00
|
|
|
#define ZFCPDUMP_HSA_SIZE_MAX (64UL<<20)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Console mode. Override with conmode=
|
|
|
|
*/
|
|
|
|
extern unsigned int console_mode;
|
|
|
|
extern unsigned int console_devno;
|
|
|
|
extern unsigned int console_irq;
|
|
|
|
|
2007-02-05 21:16:47 +01:00
|
|
|
extern char vmhalt_cmd[];
|
|
|
|
extern char vmpoff_cmd[];
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#define CONSOLE_IS_UNDEFINED (console_mode == 0)
|
|
|
|
#define CONSOLE_IS_SCLP (console_mode == 1)
|
|
|
|
#define CONSOLE_IS_3215 (console_mode == 2)
|
|
|
|
#define CONSOLE_IS_3270 (console_mode == 3)
|
|
|
|
#define SET_CONSOLE_SCLP do { console_mode = 1; } while (0)
|
|
|
|
#define SET_CONSOLE_3215 do { console_mode = 2; } while (0)
|
|
|
|
#define SET_CONSOLE_3270 do { console_mode = 3; } while (0)
|
|
|
|
|
2007-02-05 21:18:24 +01:00
|
|
|
#define NSS_NAME_SIZE 8
|
|
|
|
extern char kernel_nss_name[];
|
|
|
|
|
2012-03-28 19:30:02 +02:00
|
|
|
#ifdef CONFIG_PFAULT
|
|
|
|
extern int pfault_init(void);
|
|
|
|
extern void pfault_fini(void);
|
|
|
|
#else /* CONFIG_PFAULT */
|
|
|
|
#define pfault_init() ({-1;})
|
|
|
|
#define pfault_fini() do { } while (0)
|
|
|
|
#endif /* CONFIG_PFAULT */
|
|
|
|
|
|
|
|
extern void cmma_init(void);
|
|
|
|
|
|
|
|
extern void (*_machine_restart)(char *command);
|
|
|
|
extern void (*_machine_halt)(void);
|
|
|
|
extern void (*_machine_power_off)(void);
|
|
|
|
|
2006-02-12 02:56:03 +01:00
|
|
|
#else /* __ASSEMBLY__ */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifndef __s390x__
|
|
|
|
#define IPL_DEVICE 0x10404
|
|
|
|
#define INITRD_START 0x1040C
|
|
|
|
#define INITRD_SIZE 0x10414
|
2011-10-30 15:16:40 +01:00
|
|
|
#define OLDMEM_BASE 0x1041C
|
|
|
|
#define OLDMEM_SIZE 0x10424
|
2005-04-17 00:20:36 +02:00
|
|
|
#else /* __s390x__ */
|
|
|
|
#define IPL_DEVICE 0x10400
|
|
|
|
#define INITRD_START 0x10408
|
|
|
|
#define INITRD_SIZE 0x10410
|
2011-10-30 15:16:40 +01:00
|
|
|
#define OLDMEM_BASE 0x10418
|
|
|
|
#define OLDMEM_SIZE 0x10420
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* __s390x__ */
|
|
|
|
#define COMMAND_LINE 0x10480
|
|
|
|
|
2006-02-12 02:56:03 +01:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _ASM_S390_SETUP_H */
|