summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halfire/ppc/pxnatsup.c
blob: 94452fcdc71fa10caf5d55437b918066693eff4b (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

/*++

Copyright (c) 1990  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.

Module Name:

    pxnatsup.c

Abstract:

    The module provides the National SuperIO (PC87311) support for Power PC.

Author:

    Jim Wooldridge (jimw@austin.vnet.ibm.com)


Revision History:



--*/

/*
 * Copyright (c) 1995 FirePower Systems, Inc.
 * DO NOT DISTRIBUTE without permission
 *
 * $RCSfile: pxnatsup.c $
 * $Revision: 1.5 $
 * $Date: 1996/01/11 07:11:59 $
 * $Locker:  $
 */

#include "halp.h"
#include "pxnatsup.h"



BOOLEAN
HalpInitSuperIo (
    VOID
    )


{

    //
    // Initialize the National SuperIO chip
    //

    WRITE_REGISTER_UCHAR(
             &((PNAT_SUPERIO_CONTROL)HalpIoControlBase)->SuperIoIndexRegister,
             FER_ACCESS);

    WRITE_REGISTER_UCHAR(
              &((PNAT_SUPERIO_CONTROL)HalpIoControlBase)->SuperIoDataRegister,
              FER_PARALLEL_PORT_ENABLE |
              FER_UART1_ENABLE |
              FER_UART2_ENABLE |
              FER_FDC_ENABLE   |
              FER_IDE);

    WRITE_REGISTER_UCHAR(
              &((PNAT_SUPERIO_CONTROL)HalpIoControlBase)->SuperIoIndexRegister,
              FAR_ACCESS);

    //
    // LPT2 - irq5, uart1-com1, UART2-com2,
    //

    WRITE_REGISTER_UCHAR(
               &((PNAT_SUPERIO_CONTROL)HalpIoControlBase)->SuperIoDataRegister,
               0x10);

    WRITE_REGISTER_UCHAR(
              &((PNAT_SUPERIO_CONTROL)HalpIoControlBase)->SuperIoIndexRegister,
              PTR_ACCESS);

    WRITE_REGISTER_UCHAR(
               &((PNAT_SUPERIO_CONTROL)HalpIoControlBase)->SuperIoDataRegister,
               0x04);

    return TRUE;

}