summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halvict/ppc/pxinithl.c
blob: ed0de708bd2bb2cc34bcdc11318283c29a9d553e (plain) (blame)
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
/*++

Copyright (c) 1991-1993  Microsoft Corporation

Copyright (c) 1994 MOTOROLA, INC.  All Rights Reserved.  This file
contains copyrighted material.  Use of this file is restricted
by the provisions of a Motorola Software License Agreement.

Copyright (c) 1993-1996  International Business Machines Corporation

Module Name:

    pxinithl.c

Abstract:


    This module implements the initialization of the system dependent
    functions that define the Hardware Architecture Layer (HAL) for a
    Power PC system.


Author:

    David N. Cutler (davec) 25-Apr-1991

Environment:

    Kernel mode only.

Revision History:

    Jim Wooldridge (jimw@austin.ibm.com) Initial Power PC port

        Removed call to HalpMapFixedTbEntries, the PPC port
        maps all memory via calls to MmMapIoSpace().
        Removed call to HalpInializeInterrupts - 8259 initialized in phase 1
        Removed Cache error handler - 601 has no cache error interrupt
        Removed call to HalpCreateDmaSturctures - it supports internal DMA
        internal DMA contoller.

    Jake Oshins
        Support Victory machines

    Chris Karamatas (ckaramatas@vnet.ibm.com) 2.96
        Unification

--*/

#include "halp.h"
#include "pxmemctl.h"
#include "pxmp.h"
#include "ibmppc.h"

#if _MSC_VER < 1000

#define UNIQUE_PCR      ((KPCR *)__builtin_get_sprg1())

#else

#define UNIQUE_PCR      ((KPCR *)__sregister_get(273))

#endif

extern ADDRESS_USAGE HalpDefaultIoSpace;

extern VOID HalpCopyOEMFontFile();

VOID
HalpSynchronizeExecution(
    VOID
    );

VOID
HalpConnectFixedInterrupts(
    VOID
    );

VOID
HalpMapMpicProcessorRegisters(
    VOID
    );

ULONG
HalpGetPhysicalProcessorNumber(
    VOID
    );

IBM_SYSTEM_TYPE
HalpSetSystemType(
    PLOADER_PARAMETER_BLOCK
    );

//
// Put all code for HAL initialization in the INIT section. It will be
// deallocated by memory management when phase 1 initialization is
// completed.
//

#if defined(ALLOC_PRAGMA)

#pragma alloc_text(INIT, HalpSetSystemType)
#pragma alloc_text(INIT, HalInitSystem)
#pragma alloc_text(INIT, HalInitializeProcessor)

#endif

PVOID HalpIoControlBase = (PVOID) 0;
PVOID HalpIoMemoryBase  = (PVOID) 0;

ULONG HalpInitPhase;
ULONG HalpPhysicalIpiMask[MAXIMUM_PROCESSORS];

IBM_SYSTEM_TYPE HalpSystemType;

VOID
HalpInitBusHandlers (
    VOID
    );

VOID
HalpInitializePciAccess (
    VOID
    );

VOID
HalpRegisterInternalBusHandlers (
    VOID
    );



//
// Define global spin locks used to synchronize various HAL operations.
//

KSPIN_LOCK HalpBeepLock;
KSPIN_LOCK HalpDisplayAdapterLock;
KSPIN_LOCK HalpSystemInterruptLock;


IBM_SYSTEM_TYPE
HalpSetSystemType(
    PLOADER_PARAMETER_BLOCK LoaderBlock
    )

/*++

Routine Description:

    Sets the global variable HalpSystemType according to the type
    of system we are running on.  Also sets pointers to various
    tables accordingly.

Arguments:

    None.

Return Value:

    Returns the value assigned to HalpSystemType.  N.B. A value
    of IBM_UNKNOWN indicates failure.

--*/

{
    PCONFIGURATION_COMPONENT_DATA ConfigurationEntry;
    ULONG       MatchKey;
    UCHAR       *ptr;

#define SYSTEM_IS(x)                                                    \
        (!strcmp(ConfigurationEntry->ComponentEntry.Identifier,(x)))

#define SYSTEM_ID_STARTS(x)                                             \
        (!strncmp(ConfigurationEntry->ComponentEntry.Identifier,        \
                  (x),                                                  \
                  strlen(x)))

    MatchKey = 0;
    ConfigurationEntry=KeFindConfigurationEntry(LoaderBlock->ConfigurationRoot,
					        SystemClass,
					        ArcSystem,
					        &MatchKey);

    HalpSystemType = IBM_UNKNOWN;

    if (ConfigurationEntry != NULL) {

#if DBG

        DbgPrint("HAL: System configuration = %s\n",
                 ConfigurationEntry->ComponentEntry.Identifier);

#endif

        if ( SYSTEM_IS(SID_IBM_TIGER) ) {
            HalpSystemType = IBM_TIGER;
        } else if ( SYSTEM_IS(SID_IBM_VICTORY) ) {
            HalpSystemType = IBM_VICTORY;
        } else if ( SYSTEM_IS(SID_IBM_DORAL) ||
                    SYSTEM_IS(SID_IBM_TERLINGUA) ||
                    SYSTEM_ID_STARTS(SID_IBM_DORAL_START) ||
                    SYSTEM_ID_STARTS(SID_IBM_TERLINGUA_START) ) {
            HalpSystemType = IBM_DORAL;
        } else {
            DbgPrint("HAL: UNKNOWN SYSTEM:  %s\n", ConfigurationEntry->ComponentEntry.Identifier);
        }
    } else {
        DbgPrint("HAL: No SYSTEM Entry in Loader Block\n");
    }
    return HalpSystemType;

#undef SYSTEM_IS
}

BOOLEAN
HalInitSystem (
    IN ULONG Phase,
    IN PLOADER_PARAMETER_BLOCK LoaderBlock
    )

/*++

Routine Description:

    This function initializes the Hardware Architecture Layer (HAL) for a
    Power PC system.

Arguments:

    Phase - Supplies the initialization phase (zero or one).

    LoaderBlock - Supplies a pointer to a loader parameter block.

Return Value:

    A value of TRUE is returned is the initialization was successfully
    complete. Otherwise a value of FALSE is returend.

--*/

{

    PKPRCB Prcb;
    ULONG  BuildType = 0;
    ULONG  ProcessorNumber;


    //
    // Initialize the HAL components based on the phase of initialization
    // and the processor number.
    //

    HalpInitPhase = Phase;

    Prcb = PCR->Prcb;
    if ((Phase == 0) || (Prcb->Number != 0)) {

        //
        // Phase 0 initialization.
        //
        // N.B. Phase 0 initialization is executed on all processors.
        //
        //
        // Get access to I/O space, check if I/O space has already been
        // mapped by debbuger initialization.
        //


        if (HalpIoControlBase == NULL) {

            HalpIoControlBase = (PVOID)KePhase0MapIo(IO_CONTROL_PHYSICAL_BASE,
                                                     0x20000
                                                     );
            if ( !HalpIoControlBase ) {
                return FALSE;
            }
        }

        // Verify that the processor block major version number conform
        // to the system that is being loaded.
        //

        if (Prcb->MajorVersion != PRCB_MAJOR_VERSION) {
            KeBugCheck(MISMATCHED_HAL);
        }

        //
        // Every processor needs to determine its PHYSICAL processor
        // number (Prcb->Number is a logical s/w concept) and record
        // it in the PER Cpu data (HAL reserved space in the PCR).
        //
        // Get the physical number from the processor's PIR register
        // (Processor Id Register).
        //

        ProcessorNumber = HalpGetPhysicalProcessorNumber();
        HALPCR->PhysicalProcessor = ProcessorNumber;
        HalpPhysicalIpiMask[Prcb->Number] = 1 << ProcessorNumber;

        //
        // If processor 0 is being initialized, then initialize various
        // variables, spin locks, and the display adapter.
        //

        if (Prcb->Number == 0) {

            if ( !HalpSetSystemType(LoaderBlock) ) {
               KeBugCheck(BAD_SYSTEM_CONFIG_INFO);
            }

            //
            // Get access to PCI Configuration Address and Data
            // registers.
            //

            HalpInitializePciAccess();

            //
            // Do very early planar initialization, for example,
            // get access to the memory controller error status
            // registers.
            //

            HalpInitPlanar();

            //
            // Set the interval clock increment value.
            //

            HalpCurrentTimeIncrement = MAXIMUM_INCREMENT;
            HalpNewTimeIncrement =  MAXIMUM_INCREMENT;
            KeSetTimeIncrement(MAXIMUM_INCREMENT, MINIMUM_INCREMENT);

            //
            // Initialize all spin locks.
            //

            KeInitializeSpinLock(&HalpBeepLock);
            KeInitializeSpinLock(&HalpDisplayAdapterLock);
            KeInitializeSpinLock(&HalpSystemInterruptLock);

#ifdef POWER_MANAGEMENT
            //
            // Fill in handlers for APIs which this hal supports
            //

            HalSuspendHibernateSystem = HaliSuspendHibernateSystem;
            HalQuerySystemInformation = HaliQuerySystemInformation;
            HalSetSystemInformation = HaliSetSystemInformation;
            HalRegisterBusHandler = HaliRegisterBusHandler;
            HalHandlerForBus = HaliHandlerForBus;
            HalHandlerForConfigSpace = HaliHandlerForConfigSpace;
            HalQueryBusSlots = HaliQueryBusSlots;
            HalSlotControl = HaliSlotControl;
            HalCompleteSlotControl = HaliCompleteSlotControl;
#endif // POWER_MANAGEMENT

            HalpRegisterAddressUsage (&HalpDefaultIoSpace);

            //
            // initialize HalpPciMaxBuses (not really used YET)
            //

            HalpPhase0DiscoverPciBuses(LoaderBlock->ConfigurationRoot);

            //
            // Initialize the display adapter.
            //

            if (!HalpInitializeDisplay(LoaderBlock)) {
               return FALSE;
            }

            //
            // Initialize per Machine (as opposed to per Processor)
            // Interrupt Hardware.
            //

            if (!HalpInitializeInterrupts()) {
                return FALSE;
            }
        } else {

            //
            // Processor is not 0.
            //

            HalpMapMpicProcessorRegisters();
            HalpConnectFixedInterrupts();
        }

        //
        // Calibrate execution stall
        //

        HalpCalibrateStall();

        //
        // return success
        //

        return TRUE;


    } else {

        if (Phase != 1)
           return(FALSE);


        //
        // Phase 1 initialization.
        //
        // N.B. Phase 1 initialization is only executed on processor 0.
        //


        HalpRegisterInternalBusHandlers ();


        if (!HalpAllocateMapBuffer()) {
           return FALSE;
        }


        //
        // Map I/O space and create ISA data structures.
        //

        if (!HalpMapIoSpace()) {
           return FALSE;
        }

        if (!HalpCreateSioStructures()) {
           return FALSE;
        }

        //
        // retain the OEM Font File for later use
        //

        HalpCopyOEMFontFile();
        HalpCopyBiosShadow();

        return TRUE;

    }
}

VOID
HalInitializeProcessor (
    IN ULONG Number
    )

/*++

Routine Description:

    This function is called early in the initialization of the kernel
    to perform platform dependent initialization for each processor
    before the HAL Is fully functional.

    N.B. When this routine is called, the PCR is present but is not
         fully initialized.

Arguments:

    Number - Supplies the number of the processor to initialize.

Return Value:

    None.

--*/

{
   //
   // Define a static structure that KeRaise/LowerIrql can use
   // until access to the MPIC is initialized.
   //
   static MPIC_PER_PROCESSOR_REGS DummyMpicRegs;

   //
   // If this is the first processor to do so, initialize the cache
   // sweeping routines depending on type of processor.
   //

   if ( Number == 0 ) {
       if ( HalpCacheSweepSetup() ) {
           KeBugCheck(MISMATCHED_HAL);
       }
   }

   //
   // Set HAL per processor data MpicProcessorBase pointing
   // to the above structure.  This pointer will be overwritten
   // once access to the MPIC itself is available.
   // Note: We don't have real access to the PCR yet.
   //

   ((PPER_PROCESSOR_DATA)&UNIQUE_PCR->HalReserved)->MpicProcessorBase = &DummyMpicRegs;

    return;
}