summaryrefslogtreecommitdiffstats
path: root/private/ntos/boot/lib/mips/xxconout.c
blob: 22a015931f67ba3a70e05daf5c5542285c57b63c (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
/*++

Copyright (c) 1991  Microsoft Corporation

Module Name:

    xxconout.c

Abstract:

    This module implements a stubbed MIPS console out driver that simply
    uses debug print to do its output.

Author:

    David N. Cutler (davec) 28-Aug-1991

Environment:

    Kernel mode.

Revision History:

--*/

//#include "bldr.h"
#include "bootlib.h"
#include "firmware.h"
#include "string.h"

//
// Define prototypes for all routines used by this module.
//

ARC_STATUS
ConsoleOutClose (
    IN ULONG FileId
    );

ARC_STATUS
ConsoleOutMount (
    IN PCHAR MountPath,
    IN MOUNT_OPERATION Operation
    );

ARC_STATUS
ConsoleOutOpen (
    IN PCHAR OpenPath,
    IN OPEN_MODE OpenMode,
    OUT PULONG FileId
    );

ARC_STATUS
ConsoleOutRead (
    IN ULONG FileId,
    IN PVOID Buffer,
    IN ULONG Length,
    OUT PULONG Count
    );

ARC_STATUS
ConsoleOutGetReadStatus (
    IN ULONG FileId
    );

ARC_STATUS
ConsoleOutSeek (
    IN ULONG FileId,
    IN PLARGE_INTEGER Offset,
    IN SEEK_MODE SeekMode
    );

ARC_STATUS
ConsoleOutWrite (
    IN ULONG FileId,
    IN PVOID Buffer,
    IN ULONG Length,
    OUT PULONG Count
    );
//
// Define static data.
//

BL_DEVICE_ENTRY_TABLE ConsoleOutEntryTable;

ARC_STATUS
ConsoleOutClose (
    IN ULONG FileId
    )

/*++

Routine Description:

    This function closes the file table entry specified by the file id.

Arguments:

    FileId - Supplies the file table index.

Return Value:

    ESUCCESS is returned

--*/

{

    BlFileTable[FileId].Flags.Open = 0;
    return ESUCCESS;
}

ARC_STATUS
ConsoleOutMount (
    IN PCHAR MountPath,
    IN MOUNT_OPERATION Operation
    )

/*++

Routine Description:


Arguments:


Return Value:


--*/

{
    return ESUCCESS;
}

ARC_STATUS
ConsoleOutOpen (
    IN PCHAR OpenPath,
    IN OPEN_MODE OpenMode,
    OUT PULONG FileId
    )

/*++

Routine Description:


Arguments:


Return Value:


--*/

{
    return ESUCCESS;
}

ARC_STATUS
ConsoleOutRead (
    IN ULONG FileId,
    IN PVOID Buffer,
    IN ULONG Length,
    OUT PULONG Count
    )

/*++

Routine Description:

    This function is invalid for the console and returns an error.

Arguments:

    FileId - Supplies the file table index.

    Buffer - Supplies a pointer to the buffer that receives the data
        read.

    Length - Supplies the number of bytes to be read.

    Count - Supplies a pointer to a variable that receives the number of
        bytes actually read.

Return Value:

    ENODEV is returned.

--*/

{

    return ENODEV;
}

ARC_STATUS
ConsoleOutGetReadStatus (
    IN ULONG FileId
    )

/*++

Routine Description:


Arguments:


Return Value:


--*/

{
    return ESUCCESS;
}

ARC_STATUS
ConsoleOutSeek (
    IN ULONG FileId,
    IN PLARGE_INTEGER Offset,
    IN SEEK_MODE SeekMode
    )

/*++

Routine Description:

    This function sets the device position to the specified offset for
    the specified file id.

Arguments:

    FileId - Supplies the file table index.

    Offset - Supplies to new device position.

    SeekMode - Supplies the mode for the position.

Return Value:

    ESUCCESS is returned.

--*/

{

    return ESUCCESS;
}

ARC_STATUS
ConsoleOutWrite (
    IN ULONG FileId,
    IN PVOID Buffer,
    IN ULONG Length,
    OUT PULONG Count
    )

/*++

Routine Description:

    This function write information to the console ConsoleOut device.

Arguments:

    FileId - Supplies the file table index.

    Buffer - Supplies a pointer to the buffer that receives the data
        read.

    Length - Supplies the number of bytes to be read.

    Count - Supplies a pointer to a variable that receives the number of
        bytes actually read.

Return Value:

    ESUCCESS is returne as the function value.

--*/

{

    CHAR LocalBuffer[512];

    //
    // Copy the string to the local buffer so it can be zero terminated.
    //

    strncpy(&LocalBuffer[0], (PCHAR)Buffer, Length);
    LocalBuffer[Length] = 0;

    //
    // Output the string using debug print.
    //

    DbgPrint("%s", &LocalBuffer[0]);
    return ESUCCESS;
}

NTSTATUS
ConsoleOutBootInitialize(
    )

/*++

Routine Description:

    This routine is invoked to initialize the console output dirver.

Arguments:

    None.

Return Value:

    None.

--*/

{

    return STATUS_SUCCESS;
}

NTSTATUS
ConsoleOutBootClose(
    )

/*++

Routine Description:

    This routine closes the console output driver.

Arguments:

    None.

Return Value:

    Normal, successful completion status.

--*/

{

    return STATUS_SUCCESS;
}

NTSTATUS
ConsoleOutBootOpen (
    IN ULONG FileId
    )

/*++

Routine Description:

    This routine opens the console driver and initializes the device entry
    table in the specified file table entry.

Arguments:

    FileId - Supplies the file id for the file table entry.

Return Value:

    STATUS_SUCCESS.

--*/

{

    //
    // Initialize the ConsoleOut disk device entry table.
    //

    ConsoleOutEntryTable.Close = ConsoleOutClose;
    ConsoleOutEntryTable.Mount = ConsoleOutMount;
    ConsoleOutEntryTable.Open = ConsoleOutOpen;
    ConsoleOutEntryTable.Read = ConsoleOutRead;
    ConsoleOutEntryTable.GetReadStatus = ConsoleOutGetReadStatus;
    ConsoleOutEntryTable.Seek = ConsoleOutSeek;
    ConsoleOutEntryTable.Write = ConsoleOutWrite;

    //
    // Initialize the file table entry for the specified file id.
    //

    BlFileTable[FileId].Flags.Open = 1;
    BlFileTable[FileId].Flags.Write = 1;
    BlFileTable[FileId].DeviceId = 0;
    BlFileTable[FileId].Position.LowPart = 0;
    BlFileTable[FileId].Position.HighPart = 0;
    BlFileTable[FileId].DeviceEntryTable = &ConsoleOutEntryTable;
    return STATUS_SUCCESS;
}