-
Notifications
You must be signed in to change notification settings - Fork 0
/
bldcfg.c
159 lines (125 loc) · 5.43 KB
/
bldcfg.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* BLDCFG.C (C) Copyright Roger Bowler, 1999-2012 */
/* (C) Copyright Jan Jaeger, 1999-2012 */
/* (C) Copyright TurboHercules, SAS 2010-2011 */
/* ESA/390 Configuration Builder */
/* Interpretive Execution - (C) Copyright Jan Jaeger, 1999-2012 */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
/* z/Architecture support - (C) Copyright Jan Jaeger, 1999-2012 */
/*-------------------------------------------------------------------*/
/* This module builds the configuration tables for the Hercules */
/* ESA/390 emulator. It reads information about the processors */
/* and I/O devices from a configuration file. It allocates */
/* main storage and expanded storage, initializes control blocks, */
/* and creates detached threads to handle console attention */
/* requests and to maintain the TOD clock and CPU timers. */
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/* Additional credits: */
/* TOD clock offset contributed by Jay Maynard */
/* Dynamic device attach/detach by Jan Jaeger */
/* OSTAILOR parameter by Jay Maynard */
/* PANRATE parameter by Reed H. Petty */
/* CPUPRIO parameter by Jan Jaeger */
/* HERCPRIO, TODPRIO, DEVPRIO parameters by Mark L. Gaubatz */
/* $(DEFSYM) symbol substitution support by Ivan Warren */
/* Patch for ${var=def} symbol substitution (hax #26), */
/* and INCLUDE <filename> support (modified hax #27), */
/* contributed by Enrico Sorichetti based on */
/* original patches by "Hackules" */
/*-------------------------------------------------------------------*/
#include "hstdinc.h"
#define _BLDCFG_C_
#define _HENGINE_DLL_
#include "hercules.h"
#include "devtype.h"
#include "opcode.h"
#include "hostinfo.h"
#include "tapedev.h"
#if !defined(_GEN_ARCH)
#if defined(_ARCH_NUM_2)
#define _GEN_ARCH _ARCH_NUM_2
#include "bldcfg.c"
#undef _GEN_ARCH
#endif
#if defined(_ARCH_NUM_1)
#define _GEN_ARCH _ARCH_NUM_1
#include "bldcfg.c"
#undef _GEN_ARCH
#endif
/*-------------------------------------------------------------------*/
/* Function to build system configuration */
/*-------------------------------------------------------------------*/
int build_config( const char* hercules_cnf )
{
int i;
/* From impl.c, using system defaults of:
*
* LPARNUM 1 # LPAR 1 with LPAR ID 01
* CPUIDFMT 0 # CPU ID format 0
* XPNDSIZE 0 # Expanded storage size
*/
sysblk.xpndsize = 0;
/* Set sysblk.maxcpu to our preferred default value, if possible */
#if (PREF_DEF_MAXCPU <= MAX_CPU_ENGINES)
sysblk.maxcpu = PREF_DEF_MAXCPU;
#else
WARNING( "sysblk.maxcpu reduced from " QSTR( PREF_DEF_MAXCPU ) " to " QSTR( MAX_CPU_ENGINES ))
sysblk.maxcpu = MAX_CPU_ENGINES;
#endif
#if defined( _FEATURE_S370_S390_VECTOR_FACILITY )
sysblk.numvec = sysblk.maxcpu;
#else
sysblk.numvec = 0;
#endif
init_default_archmode();
if (!init_facilities_lists())
return -1; // (error message already issued)
ptt_trace_init( 0, TRUE );
/* Set max number device threads */
sysblk.devtmax = MAX_DEVICE_THREADS;
sysblk.devtwait = sysblk.devtnbr =
sysblk.devthwm = sysblk.devtunavail = 0;
/* Default the licence setting */
losc_set( PGM_PRD_OS_RESTRICTED );
/* Reset the clock steering registers */
csr_reset();
/* Default CPU type CP */
for (i=0; i < sysblk.maxcpu; i++)
sysblk.ptyp[i] = SCCB_PTYP_CP;
/* Default main storage to 2M with one CPU */
configure_storage( DEF_MAINSIZE_PAGES );
configure_numcpu( 1 );
if (hercules_cnf && (process_config( hercules_cnf )))
return -1; // (error message already issued)
/* Connect each channel set to its home cpu */
for (i=0; i < sysblk.maxcpu; i++)
if (IS_CPU_ONLINE(i))
sysblk.regs[i]->chanset = i < FEATURE_LCSS_MAX ? i : 0xFFFF;
/* Initialize Crypto Wrapping Keys */
#if defined( _FEATURE_076_MSA_EXTENSION_FACILITY_3 ) // (underscore!)
renew_wrapping_keys();
#endif
return 0;
} /* end function build_config */
/*-------------------------------------------------------------------*/
/* Function to initialize the default network device */
/*-------------------------------------------------------------------*/
DLL_EXPORT const char* init_sysblk_netdev()
{
if (!sysblk.netdev)
{
/* Initialize default NETDEV */
#if defined( __APPLE__ ) || defined( __FreeBSD__ )
sysblk.netdev = strdup( "/dev/tun" );
#elif !defined( OPTION_W32_CTCI )
sysblk.netdev = strdup( "/dev/net/tun" );
#else // defined( OPTION_W32_CTCI )
sysblk.netdev = strdup( are_elevated() ? tt32_get_default_iface() : "" );
#endif
}
return sysblk.netdev;
}
#endif /*!defined(_GEN_ARCH)*/