- Build FreeLdr the same way other modules are built, by using gcc -Wl.
[reactos.git] / reactos / boot / freeldr / freeldr / disk / disk.c
1 /*
2 * FreeLoader
3 * Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <freeldr.h>
21 #include <debug.h>
22
23 #undef UNIMPLEMENTED
24 #define UNIMPLEMENTED BugCheck((DPRINT_WARNING, "Unimplemented\n"));
25
26 static BOOLEAN bReportError = TRUE;
27
28 /////////////////////////////////////////////////////////////////////////////////////////////
29 // FUNCTIONS
30 /////////////////////////////////////////////////////////////////////////////////////////////
31
32 VOID DiskReportError (BOOLEAN bError)
33 {
34 bReportError = bError;
35 }
36
37 VOID DiskError(PCSTR ErrorString, ULONG ErrorCode)
38 {
39 CHAR ErrorCodeString[200];
40
41 if (bReportError == FALSE)
42 return;
43
44 sprintf(ErrorCodeString, "%s\n\nError Code: 0x%lx\nError: %s", ErrorString, ErrorCode, DiskGetErrorCodeString(ErrorCode));
45
46 DbgPrint((DPRINT_DISK, "%s\n", ErrorCodeString));
47
48 UiMessageBox(ErrorCodeString);
49 }
50
51 PCSTR DiskGetErrorCodeString(ULONG ErrorCode)
52 {
53 switch (ErrorCode)
54 {
55 case 0x00: return "no error";
56 case 0x01: return "bad command passed to driver";
57 case 0x02: return "address mark not found or bad sector";
58 case 0x03: return "diskette write protect error";
59 case 0x04: return "sector not found";
60 case 0x05: return "fixed disk reset failed";
61 case 0x06: return "diskette changed or removed";
62 case 0x07: return "bad fixed disk parameter table";
63 case 0x08: return "DMA overrun";
64 case 0x09: return "DMA access across 64k boundary";
65 case 0x0A: return "bad fixed disk sector flag";
66 case 0x0B: return "bad fixed disk cylinder";
67 case 0x0C: return "unsupported track/invalid media";
68 case 0x0D: return "invalid number of sectors on fixed disk format";
69 case 0x0E: return "fixed disk controlled data address mark detected";
70 case 0x0F: return "fixed disk DMA arbitration level out of range";
71 case 0x10: return "ECC/CRC error on disk read";
72 case 0x11: return "recoverable fixed disk data error, data fixed by ECC";
73 case 0x20: return "controller error (NEC for floppies)";
74 case 0x40: return "seek failure";
75 case 0x80: return "time out, drive not ready";
76 case 0xAA: return "fixed disk drive not ready";
77 case 0xBB: return "fixed disk undefined error";
78 case 0xCC: return "fixed disk write fault on selected drive";
79 case 0xE0: return "fixed disk status error/Error reg = 0";
80 case 0xFF: return "sense operation failed";
81
82 default: return "unknown error code";
83 }
84 }
85
86 // This function is in arch/i386/i386disk.c
87 //BOOLEAN DiskReadLogicalSectors(ULONG DriveNumber, U64 SectorNumber, ULONG SectorCount, PVOID Buffer)
88
89 BOOLEAN DiskIsDriveRemovable(ULONG DriveNumber)
90 {
91 // Hard disks use drive numbers >= 0x80
92 // So if the drive number indicates a hard disk
93 // then return FALSE
94 if (DriveNumber >= 0x80)
95 {
96 return FALSE;
97 }
98
99 // Drive is a floppy diskette so return TRUE
100 return TRUE;
101 }
102
103 // This function is in arch/i386/i386disk.c
104 //VOID DiskStopFloppyMotor(VOID)
105
106 // This function is in arch/i386/i386disk.c
107 //ULONG DiskGetCacheableBlockCount(ULONG DriveNumber)