mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Starting with Linux 4.8 the SD/MMC OCR is shown also in /sys, so cache
it if present.
This commit is contained in:
@@ -171,6 +171,19 @@ namespace DiscImageChef.Devices
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if((command == (MmcCommands)SecureDigitalCommands.SendOperatingCondition ||
|
||||||
|
command == MmcCommands.SendOpCond) && cachedOcr != null)
|
||||||
|
{
|
||||||
|
System.DateTime start = System.DateTime.Now;
|
||||||
|
buffer = new byte[cachedOcr.Length];
|
||||||
|
System.Array.Copy(cachedOcr, buffer, buffer.Length);
|
||||||
|
response = new uint[4];
|
||||||
|
sense = false;
|
||||||
|
System.DateTime end = System.DateTime.Now;
|
||||||
|
duration = (end - start).TotalMilliseconds;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
return Command.SendMmcCommand(platformID, fd, command, write, isApplication, flags, argument, blockSize, blocks,
|
return Command.SendMmcCommand(platformID, fd, command, write, isApplication, flags, argument, blockSize, blocks,
|
||||||
ref buffer, out response, out duration, out sense, timeout);
|
ref buffer, out response, out duration, out sense, timeout);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -211,6 +211,12 @@ namespace DiscImageChef.Devices
|
|||||||
if(len == 0)
|
if(len == 0)
|
||||||
cachedScr = null;
|
cachedScr = null;
|
||||||
}
|
}
|
||||||
|
if(System.IO.File.Exists("/sys/block/" + devPath + "/device/ocr"))
|
||||||
|
{
|
||||||
|
int len = ConvertFromHexASCII("/sys/block/" + devPath + "/device/ocr", out cachedOcr);
|
||||||
|
if(len == 0)
|
||||||
|
cachedOcr = null;
|
||||||
|
}
|
||||||
|
|
||||||
if(cachedCid != null)
|
if(cachedCid != null)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -67,6 +67,7 @@ namespace DiscImageChef.Devices
|
|||||||
readonly byte[] cachedCsd;
|
readonly byte[] cachedCsd;
|
||||||
readonly byte[] cachedCid;
|
readonly byte[] cachedCid;
|
||||||
readonly byte[] cachedScr;
|
readonly byte[] cachedScr;
|
||||||
|
readonly byte[] cachedOcr;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the Platform ID for this device
|
/// Gets the Platform ID for this device
|
||||||
|
|||||||
Reference in New Issue
Block a user