In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Changes

Jump to navigation Jump to search
648 bytes added ,  13:50, 21 September 2024
no edit summary
Line 6: Line 6:  
The GameCube and Wii check for these marks on disc boot by checking for null regions. Homebrew discs can therefore identify as Wii discs by nulling out these regions through software, although some software may need modification to avoid warning messages. [[Freeloader]] exploited this to not require a [[drivechip]].
 
The GameCube and Wii check for these marks on disc boot by checking for null regions. Homebrew discs can therefore identify as Wii discs by nulling out these regions through software, although some software may need modification to avoid warning messages. [[Freeloader]] exploited this to not require a [[drivechip]].
   −
XOR Encryption is done using discID and a random seed by the Disc Controller Firmware, Panasonic MN103S
+
XOR Encryption is done using discId and a random seed by the Disc Controller Firmware, Panasonic MN103S and BCA Check by System Controller MN102H
   −
== Random Seed List ==
+
GameCube Disc Format
     0 0x0003
+
 
     8 0x0030
+
Please Note this is a work in progress doc
     1 0x7f00
+
 
     9 0x7001
+
XOR Encryption is done using discID and a randomKey by the Disc Controller Firmware, Panasonic MN103S and is controlled by the System Controller MN102H.
     2 0x0006
+
 
     A 0x0060
+
== Data Frame ==
     3 0x7e00
+
    u32 id; // PSN(Physical Sector Number)
     B 0x6003
+
    u16 ied; // ID Error Detection Code, CRC16
     4 0x000c
+
    u8 userdata[2048]; // Sector Data
     C 0x00c0
+
    u8 cpr_mai[6]; // Copyright Management Information(Not used)
     5 0x7c00
+
    u32 edc; // Error Detection Code, CRC32
     D 0x4007
+
    // 2064B
     6 0x0018
+
 
     E 0x0180
+
== RandomKeys ==
     7 0x7800
+
     0: 3
     F 0x000f
+
    1: 48
 +
    2: 32512
 +
    3: 28673
 +
    4: 6
 +
    5: 69
 +
    6: 32256
 +
    7: 24579
 +
     8: 12
 +
    9: 192
 +
     10: 31744
 +
     11: 16391
 +
     12: 24
 +
     13: 384
 +
     14: 30720
 +
     15: 15
 +
 
 +
== DiscId ==
 +
     char gamecode[4];
 +
     char makercode[2];
 +
     u8 diskNumber;
 +
     u8 version;
 +
     u8 streaming;
 +
     u8 streamingBufferSize;
 +
     u8 pad[16];
 +
     u32 dvdMagic;
    
== Burst Cutting Area ==
 
== Burst Cutting Area ==
     // UserData(64 Bytes)
+
     // UserData(unencrypted), 64B
     u8 optionalInfo[52];
+
     u8 optInfo[52];
     u8 manufacturerCode[2];
+
     u8 manufacturer[2];
     u8 recorderDeviceCode[2];
+
     u8 recorderDevice[2];
     u8 APMRecorderDeviceCode;
+
     u8 bcaSerial;
     u8 discManufactureDate[2];
+
     u8 discDate[2];
     u8 discManufactureTime[2];
+
     u8 discTime[2];
 
     u8 discNumber[3];
 
     u8 discNumber[3];
     // KeyData(16 Bytes)
+
     // SecureData(unencrypted), 12B
     u8 bcakey[8];
+
     u8 key[8];
     u8 bcaSerial[8];
+
     u8 id[4];
     // Encrypted(48 Bytes)
+
     // AuthenticationData(encrypted), 48B
 
     u64 psn[6]; //BCA mark positions
 
     u64 psn[6]; //BCA mark positions
 
     // 188 Total Bytes
 
     // 188 Total Bytes
Line 44: Line 68:  
== Disc Physical Format ==
 
== Disc Physical Format ==
 
     // Leadin Area
 
     // Leadin Area
     PhysicalFormatInfo m_pfi;
+
     PhysicalFormatInfo pfi;
     DiscManufacturingInfo m_dmi;
+
     DiscManufacturingInfo dmi;
    
PhysicalFormatInfo
 
PhysicalFormatInfo
Line 69: Line 93:  
     u8 discStructure; // The value is fixed on 1.
 
     u8 discStructure; // The value is fixed on 1.
 
     u8 recordedDensity; // The value is fixed on 0.
 
     u8 recordedDensity; // The value is fixed on 0.
     DataAreaAllocation m_dataAreaAllocation;
+
     DataAreaAllocation dataAreaAllocation;
 
     u8 bcaDescriptor; // The value is fixed on 128.
 
     u8 bcaDescriptor; // The value is fixed on 128.
 
     u8 reversed2[1983];
 
     u8 reversed2[1983];
29

edits

Navigation menu