git-svn-id: https://spexeah.com:8443/svn/Asuro@418 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
parent
df6faec9e0
commit
5a30d73a8c
@ -23,28 +23,49 @@ uses
|
|||||||
type
|
type
|
||||||
|
|
||||||
TControllerType = (ControllerIDE, ControllerUSB, ControllerAHCI, ControllerNET);
|
TControllerType = (ControllerIDE, ControllerUSB, ControllerAHCI, ControllerNET);
|
||||||
TFilesystem = (FAT32);
|
PStorage_volume = ^TStorage_Volume;
|
||||||
|
PPIOHook = procedure(volume : PStorage_volume; directory : pchar; byteCount : uint32; buffer : puint32);
|
||||||
|
|
||||||
|
TFilesystem = record
|
||||||
|
idx : uint8;
|
||||||
|
sName : pchar;
|
||||||
|
writeCallback : PPIOHook;
|
||||||
|
readCallback : PPIOHook;
|
||||||
|
end;
|
||||||
|
|
||||||
|
TStorage_Volume = record
|
||||||
|
idx : uint8;
|
||||||
|
sectorStart : uint32;
|
||||||
|
sectorSize : uint32;
|
||||||
|
filesystem : TFilesystem;
|
||||||
|
end;
|
||||||
|
|
||||||
PStorage_device = ^TStorage_Device;
|
|
||||||
APStorage_Device = array[0..256] of PStorage_device;
|
|
||||||
TStorage_Device = record
|
TStorage_Device = record
|
||||||
|
idx : uint8;
|
||||||
controller : TControllerType;
|
controller : TControllerType;
|
||||||
controllerId0 : uint32;
|
controllerId0 : uint32;
|
||||||
maxSectorCount : uint32;
|
maxSectorCount : uint32;
|
||||||
sectorSize : uint32;
|
sectorSize : uint32;
|
||||||
writable : boolean;
|
writable : boolean;
|
||||||
|
volumes : array[0..255] of TStorage_Volume
|
||||||
end;
|
end;
|
||||||
|
PStorage_device = ^TStorage_Device;
|
||||||
|
APStorage_Device = array[0..255] of PStorage_device;
|
||||||
|
|
||||||
|
|
||||||
var
|
var
|
||||||
storageDevices : array[0..255] of TStorage_Device; //index in this array is global drive id
|
storageDevices : array[0..255] of TStorage_Device; //index in this array is global drive id
|
||||||
|
fileSystems : array[0..31] of TFilesystem;
|
||||||
|
|
||||||
//TODO need callback things for when new devices are connected
|
//TODO need callback things for when new devices are connected
|
||||||
procedure init();
|
procedure init();
|
||||||
|
|
||||||
procedure register_device(device : TStorage_Device);
|
procedure register_device(device : TStorage_Device);
|
||||||
//function get_all_devices() : APStorage_Device;
|
function get_all_devices() : APStorage_Device;
|
||||||
//function read(device : uint16; address : uint32; byteCount : uint32) : PuInt32;
|
|
||||||
//procedure write(device : uint16; address : uint32; byteCount : uint32; data : PuInt32);
|
//procedure register_filesystem(filesystem : TFilesystem);
|
||||||
|
|
||||||
|
//procedure register_volume(volume : TStorage_Volume);
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
@ -80,9 +101,23 @@ begin
|
|||||||
for i:=0 to 255 do begin
|
for i:=0 to 255 do begin
|
||||||
if storageDevices[i].maxSectorCount = 0 then begin
|
if storageDevices[i].maxSectorCount = 0 then begin
|
||||||
storageDevices[i]:= device;
|
storageDevices[i]:= device;
|
||||||
|
storageDevices[i].idx:= i;
|
||||||
break;
|
break;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function get_all_devices() : APStorage_Device;
|
||||||
|
var
|
||||||
|
devices : APStorage_Device;
|
||||||
|
i : uint8;
|
||||||
|
begin
|
||||||
|
for i:= 0 to 255 do begin
|
||||||
|
if storageDevices[i].maxSectorCount <> 0 then begin
|
||||||
|
devices[i]:= @storageDevices[i];
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
get_all_devices:= devices;
|
||||||
|
end;
|
||||||
|
|
||||||
end.
|
end.
|
@ -1,35 +0,0 @@
|
|||||||
{ ************************************************
|
|
||||||
* Asuro
|
|
||||||
* Unit: Drivers/storage/storagemanagement
|
|
||||||
* Description: manages logical volumes on disks
|
|
||||||
*
|
|
||||||
************************************************
|
|
||||||
* Author: Aaron Hance
|
|
||||||
* Contributors:
|
|
||||||
************************************************ }
|
|
||||||
unit volumemanagement;
|
|
||||||
|
|
||||||
interface
|
|
||||||
|
|
||||||
uses
|
|
||||||
util,
|
|
||||||
drivertypes,
|
|
||||||
console,
|
|
||||||
terminal,
|
|
||||||
drivermanagement,
|
|
||||||
storagemanagement,
|
|
||||||
vmemorymanager,
|
|
||||||
lmemorymanager;
|
|
||||||
|
|
||||||
type
|
|
||||||
|
|
||||||
TStorage_Volume = record
|
|
||||||
device : TStorage_Device;
|
|
||||||
sectorStart : uint32;
|
|
||||||
sectorSize : uint32;
|
|
||||||
filesystem : uint32;
|
|
||||||
end;
|
|
||||||
|
|
||||||
var
|
|
||||||
|
|
||||||
implementation
|
|
Loading…
x
Reference in New Issue
Block a user