summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halsgi/mips/sxflshbf.s
blob: 3a9a711724a15f2fe1439d10f263f2aa25511acb (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
//      TITLE("Miscellaneous Kernel Functions")
//++
//
// Copyright (c) 1991  Microsoft Corporation
// Copyright (c) 1992  Silicon Graphics, Inc.
//
// Module Name:
//
//    s3flshbf.s
//
// Abstract:
//
//    This module implements the system dependent kernel function to flush
//    the write buffer on the SGI Indigo system.
//
// Author:
//
//    David N. Cutler (davec) 24-Apr-1991
//
// Environment:
//
//    Kernel mode only.
//
// Revision History:
//
//--

#include "sgidef.h"
#include "ksmips.h"

        SBTTL("Flush Write Buffer")
//++
//
// NTSTATUS
// KeFlushWriteBuffer (
//    VOID
//    )
//
// Routine Description:
//
//    This function flushes the write buffer on the current processor.
//
// Arguments:
//
//    None.
//
// Return Value:
//
//    None.
//
//--

        LEAF_ENTRY(KeFlushWriteBuffer)


        .set    noreorder
        .set    noat

#if	defined(R3000)
        li      t0,SGI_CPUCTRL_BASE
        j       ra
        lw      zero,0(t0)
#else
        lui     t0,SGI_CPUCTRL_BASE>>16
        or      t0,SGI_CPUCTRL_BASE&0xffff
	lw	t0,0(t0)
	nop
	nop
	nop
        j       ra
	nop
#endif
        .set    at
        .set    reorder

        .end    KeFlushWritebuffer