Changes

25,755 bytes added ,  05:48, 22 February 2022
section on input structure and possible explanation for 6-24 error
Line 3: Line 3:  
'''/dev/di''' is the [[IOS]] driver used to control the disc drive.  This documentation is mostly based on the most recent version (dated Jun  3 2009 07:49:09 and included in [[IOS58]] and [[IOS80]]).  Names are based on function names found in Nintendo titles (which print an error message including the name if the Ioctl or Ioctlv fails).  DVDLowRequestAudioStatus and DVDLowAudioStream are not found in Wii titles, but the names can be found in [https://wiki.dolphin-emu.org/index.php?title=Ships_with_Debugging_Symbols debug symbols included in various Gamecube games].
 
'''/dev/di''' is the [[IOS]] driver used to control the disc drive.  This documentation is mostly based on the most recent version (dated Jun  3 2009 07:49:09 and included in [[IOS58]] and [[IOS80]]).  Names are based on function names found in Nintendo titles (which print an error message including the name if the Ioctl or Ioctlv fails).  DVDLowRequestAudioStatus and DVDLowAudioStream are not found in Wii titles, but the names can be found in [https://wiki.dolphin-emu.org/index.php?title=Ships_with_Debugging_Symbols debug symbols included in various Gamecube games].
    +
== Input structure ==
 
The input to all /dev/di commands (other than enable DVD video) is the following struct, which must be sized 0x20 and aligned 4:
 
The input to all /dev/di commands (other than enable DVD video) is the following struct, which must be sized 0x20 and aligned 4:
   Line 23: Line 24:  
(DiIoctl) Note: This is normal for DVD software before 6-24
 
(DiIoctl) Note: This is normal for DVD software before 6-24
 
</pre></blockquote>
 
</pre></blockquote>
 +
 +
This probably means IOCTL numbers were created on June 24th of some year.
    
== Return values ==
 
== Return values ==
Line 76: Line 79:  
== Version history ==
 
== Version history ==
   −
There are '''10''' known versions of the DI driver found in various [[IOS History|IOS versions]], based on the IOS versions still present on NUS.  These are generalized into 5 version families, based on observable behavior (this is not strictly chronological, presumably as Nintendo was working on multiple versions with the same features at the same time).  It is quite likely that there are additional changes not noted here.
+
There are '''14''' known normal versions (along with '''9''' [[#vWii note|matching vWii versions]]) of the DI driver found in various [[IOS History|IOS versions]], based on the IOS versions present on NUS and those found on various game discs.  These are generalized into 5 version families, based on observable behavior (this is not strictly chronological, presumably as Nintendo was working on multiple versions with the same features at the same time).  It is quite likely that there are additional changes not noted here.
    
The DI driver includes a full set of [[:/dev/es|ES]] IoctlV wrappers, although it only uses ES_DiVerify and ES_DiVerifyWithTicketView.  It also includes instructions for all [[syscalls]], even though most are not used.  Both of those change across versions, even though those differences do not actually show up in practice.
 
The DI driver includes a full set of [[:/dev/es|ES]] IoctlV wrappers, although it only uses ES_DiVerify and ES_DiVerifyWithTicketView.  It also includes instructions for all [[syscalls]], even though most are not used.  Both of those change across versions, even though those differences do not actually show up in practice.
   −
{| class="wikitable"
+
{| class="wikitable sortable"
 
  |+ Overview
 
  |+ Overview
 
  ! Group
 
  ! Group
 
  ! Version
 
  ! Version
 +
! <abbr title="Issues 0xE0 when the error interrupt is set before running another command, in addition to clearing the interrupt">0xE0 on<br>error</abbr>
 +
!class="unsortable"| <abbr title="Attempts to write 0xDEADBEEF to kernel memory (0xFFFF0000) on diFatalError, in addition to calling CancelThread and entering an infinite loop.  Error message is also '(diFatalError) *** DI FATAL ERROR: %s\nExiting\n' instead of '(diFatalError) Fatal error in DI driver: %s\nExiting\n' to on these versions.">DEADBEEF<br>fatal error</abbr>
 
  ! <abbr title="Out of bounds">OoB</abbr> [[#0x8D DVDLowUnencryptedRead|0x8D]]
 
  ! <abbr title="Out of bounds">OoB</abbr> [[#0x8D DVDLowUnencryptedRead|0x8D]]
! <abbr title="Issues 0xE0 when the error interrupt is set before running another command, in addition to clearing the interrupt">0xE0 on<br>error</abbr>
  −
! <abbr title="Attempts to write 0xDEADBEEF to kernel memory (0xFFFF0000) on diFatalError, in addition to calling CancelThread and entering an infinite loop.  Error message is also '(diFatalError) *** DI FATAL ERROR: %s\nExiting\n' instead of '(diFatalError) Fatal error in DI driver: %s\nExiting\n' to on these versions.">DEADBEEF<br>fatal error</abbr>
   
  ! [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90]]
 
  ! [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90]]
  ! [[#0x91 DVDLowNoDiscOpenPartition|0x91]]
+
  !class="unsortable"| [[#0x91 DVDLowNoDiscOpenPartition|0x91]]
  ! [[#0x92 DVDLowGetNoDiscBufferSizes|0x92]]
+
  !class="unsortable"| [[#0x92 DVDLowGetNoDiscBufferSizes|0x92]]
 
  ! [[#0x93 DVDLowOpenPartitionWithTmdAndTicket|0x93]]
 
  ! [[#0x93 DVDLowOpenPartitionWithTmdAndTicket|0x93]]
  ! [[#0x94 DVDLowOpenPartitionWithTmdAndTicketView|0x94]]
+
  !class="unsortable"| [[#0x94 DVDLowOpenPartitionWithTmdAndTicketView|0x94]]
  ! [[#0x95 DVDLowGetStatusRegister|0x95]]
+
  !class="unsortable"| [[#0x95 DVDLowGetStatusRegister|0x95]]
 
  ! [[#0x96 DVDLowGetControlRegister|0x96]]
 
  ! [[#0x96 DVDLowGetControlRegister|0x96]]
  ! Syscall
+
  ! <abbr title="Uses IOSC_CheckDiHashes instead of verifying in DI itself">IOSC</abbr>
  ! ES
+
! <abbr title="Highest IOS Syscall number">Syscall</abbr>
 +
  ! <abbr title="Highest /dev/es IoctlV number">ES</abbr>
 +
! <abbr title="Present in the latest version of at least one IOS version">Live</abbr>
 
  |-
 
  |-
  | [[#Group A|A]]
+
  |rowspan="4"| [[#Group A|A]]
  | [[#Oct  5 2006 17:41:21|Oct  5 2006 17:41:21]]
+
  |data-sort-value="1155209090"| [[#Aug 10 2006 11:24:50|Aug 10 2006 11:24:50]]
  | {{No}}
+
  |rowspan="2" {{Yes2}} Yes
  | {{Yes}}
+
  |rowspan="4" {{No}}
 
  | {{No}}
 
  | {{No}}
 +
|rowspan="4" {{No}}
 +
|rowspan="4" {{No}}
 +
|rowspan="4" {{No}}
 +
|rowspan="4" {{No}}
 +
|rowspan="4" {{No}}
 +
|rowspan="4" {{No}}
 +
|rowspan="4" {{No}}
 +
|rowspan="4" {{No}}
 +
|data-sort-value="115"| 0x73
 +
|data-sort-value="47" | 0x2f
 
  | {{No}}
 
  | {{No}}
 +
|-
 +
|data-sort-value="1155490424"| [[#Aug 13 2006 17:33:44|Aug 13 2006 17:33:44]]
 +
|rowspan="3" {{No2}} No
 +
|rowspan="3" data-sort-value="116"| 0x74
 +
|rowspan="3" data-sort-value="49" | 0x31
 
  | {{No}}
 
  | {{No}}
| {{No}}
  −
| {{No}}
  −
| {{No}}
  −
| {{No}}
  −
| {{No}}
  −
| {{Not tested}}
  −
| {{Not tested}}
   
  |-
 
  |-
  | [[#Group B|B]]
+
  |data-sort-value="1160070081"| [[#Oct 5 2006 17:41:21|Oct 5 2006 17:41:21]]
| [[#Jun 8 2007 18:17:09|Jun 8 2007 18:17:09]]
+
|rowspan="2" {{Yes}}
 
  | {{Yes}}
 
  | {{Yes}}
| {{Yes}}
  −
| {{No}}
  −
| {{Yes}}
  −
| {{Yes}}
  −
| {{Yes}}
  −
| {{Yes}}
  −
| {{Yes}}
  −
| {{Yes}}
  −
| {{No}}
  −
| {{Not tested}}
  −
| {{Not tested}}
  −
|-
  −
|rowspan="3" | [[#Group C|C]]
  −
| [[#Jul 14 2008 19:25:32|Jul 14 2008 19:25:32]]
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{No}}
  −
|rowspan="3" {{Partial}}
  −
|rowspan="3" {{Partial}}
  −
|rowspan="3" {{Partial}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{No}}
  −
|rowspan="3" {{Not tested}}
  −
|rowspan="3" {{Not tested}}
  −
|-
  −
| [[#Jul 14 2008 19:32:38|Jul 14 2008 19:32:38]] <!-- Matches Jul 14 -->
  −
|-
  −
| [[#Jul 24 2008 20:08:45|Jul 24 2008 20:08:45]] <!-- Matches Jul 14 -->
   
  |-
 
  |-
  |rowspan="3" | [[#Group D|D]]
+
  |data-sort-value="1333453975"| [[#Apr 3 2012 11:52:55|Apr  3 2012 11:52:55]]
  | [[#Jul 11 2008 14:34:27|Jul 11 2008 14:34:27]]
+
  |data-sort-value="z" {{Partial|vWii}}
  |rowspan="3" {{Yes}}
  −
|rowspan="3" {{No}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{Partial}}
  −
|rowspan="3" {{Partial}}
  −
|rowspan="3" {{Partial}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{Yes}}
  −
|rowspan="3" {{Not tested}}
  −
|rowspan="3" {{Not tested}}
   
  |-
 
  |-
  | [[#Jul 24 2008 00:30:13|Jul 24 2008 00:30:13]] <!-- Matches Jul 11 -->
+
  |rowspan="2"| [[#Group B|B]]
|-
+
  |data-sort-value="1181326629"| [[#Jun 8 2007 18:17:09|Jun  8 2007 18:17:09]]
  | [[#Dec 24 2008 13:51:06|Dec 24 2008 13:51:06]] <!-- Matches Jul 11 -->
  −
|-
  −
|rowspan="2" | [[#Group E|E]]
  −
  | [[#Nov 24 2008 15:39:09|Nov 24 2008 15:39:09]]
   
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{No}}
 
  |rowspan="2" {{No}}
 
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
|rowspan="2" {{Partial}}
  −
|rowspan="2" {{Partial}}
  −
|rowspan="2" {{Partial}}
   
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
 
  |rowspan="2" {{Yes}}
  | 0x79
+
  |rowspan="2" {{Yes}}
  | 0x42
+
  |rowspan="2" {{Yes}}
  |-
+
  |rowspan="2" {{No}}
  | [[#Jun  3 2009 07:49:09|Jun  3 2009 07:49:09]]
+
  |rowspan="2" {{No}}
| 0x79
+
  |rowspan="2" data-sort-value="118"| 0x76
| 0x45
+
  |rowspan="2" data-sort-value="61" | 0x3d
  |}
+
  | {{No}}
 
  −
=== Group A ===
  −
 
  −
==== Oct  5 2006 17:41:21 ====
  −
 
  −
Used in monolithic IOS versions (those prior to IOS28, obviously excluding stubbed IOS versions).  As these versions have only a single ELF file for all modules, there is no single hash for the DI driver.
  −
 
  −
In this version, [[#0x8D DVDLowUnencryptedRead|0x8D DVDLowUnencryptedRead]] only accepted the start and end being between 0 and 0x14000, and IOCtls [[#0x95 DVDLowGetStatusRegister|0x95 DVDLowGetStatusRegister]] and [[#0x96 DVDLowGetControlRegister|0x96 DVDLowGetControlRegister]] and all IOCtlVs other than [[#0x8B DVDLowOpenPartition|0x8B DVDLowOpenPartition]] did not exist.  [[#0x87|0x87]] and [[#0x7F DVDLowSetSpinupFlag|0x7F DVDLowSetSpinupFlag]] did exist as the current stubs.
  −
 
  −
This version will issues command 0xE0 to the drive if the error interrupt is set before a command runs (in addition to clearing the interrupt). It prints a message before it issues the command, but not if the issued command fails.
  −
 
  −
{| class="wikitable"
  −
! MD5
  −
  | colspan="3" {{Not tested|Varies}}
   
  |-
 
  |-
  ! Thing
+
  |data-sort-value="1181326810"| [[#Jun 8 2007 18:20:10|Jun 8 2007 18:20:10]]
  ! Virtual address
+
  | {{No}}
  ! Physical address
  −
  ! Size
   
  |-
 
  |-
  | Code (and entry point)
+
  |rowspan="6" | [[#Group C|C]]
  | 20200000
+
|data-sort-value="1216063532"| [[#Jul 14 2008 19:25:32|Jul 14 2008 19:25:32]]
  | 13580000
+
|rowspan="6" {{Yes}}
  | 0x6704
+
|rowspan="6" {{No}}
 +
|rowspan="6" {{Yes}}
 +
|rowspan="6" {{Partial}}
 +
|rowspan="6" {{Partial}}
 +
|rowspan="6" {{Partial}}
 +
  |rowspan="6" {{Yes}}
 +
  |rowspan="6" {{Yes}}
 +
|rowspan="6" {{Yes}}
 +
|rowspan="6" {{No}}
 +
|rowspan="6" {{No}}
 +
|rowspan="6" data-sort-value="118"| 0x76
 +
|rowspan="6" data-sort-value="61" | 0x3d
 +
  | {{Yes}}
 
  |-
 
  |-
  | Data (ES vars)
+
  |data-sort-value="1216063958"| [[#Jul 14 2008 19:32:38|Jul 14 2008 19:32:38]]
  | 20207000
+
| {{Yes}}
  | 13587000
+
|-
  | 0x140
+
|data-sort-value="1216930125"| [[#Jul 24 2008 20:08:45|Jul 24 2008 20:08:45]]
 +
  | {{Yes}}
 +
  |-
 +
  |data-sort-value="1333454416.1"| [[#Apr  3 2012 12:00:16 1|Apr  3 2012 12:00:16<sub>1</sub>]]
 +
|data-sort-value="z" {{Partial|vWii}}
 +
|-
 +
|data-sort-value="1333454416.2"| [[#Apr  3 2012 12:00:16 2|Apr  3 2012 12:00:16<sub>2</sub>]]
 +
|data-sort-value="z" {{Partial|vWii}}
 
  |-
 
  |-
  | BSS (zero'd)
+
  |data-sort-value="1333458700"| [[#Apr 3 2012 13:11:40|Apr  3 2012 13:11:40]]
  | 20208000
+
  |data-sort-value="z" {{Partial|vWii}}
  | 13588000
  −
| 0x2BE08
   
  |-
 
  |-
  | Stack
+
  |rowspan="5" | [[#Group D|D]]
  | 2022bd40
+
|data-sort-value="1215786867"| [[#Jul 11 2008 14:34:27|Jul 11 2008 14:34:27]]
  | ?
+
|rowspan="5" {{No}}
  | 0x8000
+
|rowspan="5" {{Yes}}
 +
|rowspan="5" {{Yes}}
 +
|rowspan="5" {{Partial}}
 +
|rowspan="5" {{Partial}}
 +
|rowspan="5" {{Partial}}
 +
  |rowspan="5" {{Yes}}
 +
  |rowspan="5" {{Yes}}
 +
|rowspan="5" {{Yes}}
 +
|rowspan="5" {{Yes}}
 +
|rowspan="5" {{No}}
 +
|rowspan="5" data-sort-value="118"| 0x76
 +
|rowspan="5" data-sort-value="64"| 0x40
 +
  | {{Yes}}
 
  |-
 
  |-
  | Protected heap
+
  |data-sort-value="1216859413"| [[#Jul 24 2008 00:30:13|Jul 24 2008 00:30:13]]
| 20208020
+
  | {{Yes}}
| ?
  −
  | 0x4000
   
  |-
 
  |-
  | Open heap
+
  |data-sort-value="1230126666"| [[#Dec 24 2008 13:51:06|Dec 24 2008 13:51:06]]
  | 13400000
+
  | {{Yes}}
  | ?
+
  |-
  | 0x18000
+
  |data-sort-value="1333455694"| [[#Apr  3 2012 12:21:34|Apr  3 2012 12:21:34]]
  |}
+
  |data-sort-value="z" {{Partial|vWii}}
 
+
|-
=== Group B ===
+
|data-sort-value="1333456261"| [[#Apr  3 2012 12:31:01|Apr  3 2012 12:31:01]]
 +
|data-sort-value="z" {{Partial|vWii}}
 +
|-
 +
|rowspan="7" | [[#Group E|E]]
 +
|data-sort-value="1227541149"| [[#Nov 24 2008 15:39:09|Nov 24 2008 15:39:09]]
 +
|rowspan="7" {{No}}
 +
|rowspan="7" {{Yes}}
 +
|rowspan="7" {{Yes}}
 +
|rowspan="7" {{Partial}}
 +
|rowspan="7" {{Partial}}
 +
|rowspan="7" {{Partial}}
 +
|rowspan="7" {{Yes}}
 +
|rowspan="7" {{Yes}}
 +
|rowspan="7" {{Yes}}
 +
|rowspan="7" {{Yes}}
 +
|rowspan="7" {{Yes}}
 +
|rowspan="7" data-sort-value="121"| 0x79
 +
|data-sort-value="66"| 0x42
 +
| {{No}}
 +
|-
 +
|data-sort-value="1239037807"| [[#Apr  6 2009 17:10:07|Apr  6 2009 17:10:07]]
 +
|data-sort-value="68"| 0x44
 +
| {{No}}
 +
|-
 +
|data-sort-value="1244015349"| [[#Jun  3 2009 07:49:09|Jun  3 2009 07:49:09]]
 +
|data-sort-value="69"| 0x45
 +
| {{Yes}}
 +
|-
 +
|data-sort-value="1330353596"| [[#Feb 27 2012 14:39:56|Feb 27 2012 14:39:56]]
 +
|rowspan="4" data-sort-value="69.1"| 0x45<abbr title="Has change to IoctlVs 0x41 and 0x42>*</abbr>
 +
| {{Yes}}
 +
|-
 +
|data-sort-value="1333375434"| [[#Apr  2 2012 14:03:54|Apr  2 2012 14:03:54]]
 +
|data-sort-value="z" {{Partial|vWii}}
 +
|-
 +
|data-sort-value="1333457403"| [[#Apr  3 2012 12:50:03|Apr  3 2012 12:50:03]]
 +
|data-sort-value="z" {{Partial|vWii}}
 +
|-
 +
|data-sort-value="1333458048"| [[#Apr  3 2012 13:00:48|Apr  3 2012 13:00:48]]
 +
|data-sort-value="z" {{Partial|vWii}}
 +
|}
 +
 
 +
=== vWii note ===
 +
 
 +
vWii IOS versions are also listed here.  See [https://wiiubrew.org/wiki/Title_database#00000007_and_000700xx:_Virtual_Wii_titles WiiUBrew's title database] for a list of vWii IOS versions.  There is one vWii version of the DI module for each live regular version.  Every vWii version has 2 differences from the corresponding regular version: they time out after 35000000µs instead of 15000000µs (perhaps due to Starlet/Starbuck clock rate differences?{{check}}), and they check for a disc ID of <code>401A</code> in the post-DVDLowReadDiskID read code (treating such a disc as an unencrypted "GAMECUBE or other" disc, instead of a disc that needs to have encryption information read).
   −
==== Jun  8 2007 18:17:09 ====
+
=== Group A ===
   −
Used by early builds of certain IOS versionsNo current version of IOS uses this build.
+
In this version, [[#0x8D DVDLowUnencryptedRead|0x8D DVDLowUnencryptedRead]] only accepted the start and end being between 0 and 0x14000, and IOCtls [[#0x95 DVDLowGetStatusRegister|0x95 DVDLowGetStatusRegister]] and [[#0x96 DVDLowGetControlRegister|0x96 DVDLowGetControlRegister]] and all IOCtlVs other than [[#0x8B DVDLowOpenPartition|0x8B DVDLowOpenPartition]] did not exist[[#0x87|0x87]] and [[#0x7F DVDLowSetSpinupFlag|0x7F DVDLowSetSpinupFlag]] did exist as the current stubs.
   −
* [[IOS30]] prior to v2816 (stubbing)
+
This version will issue command 0xE0 to the drive if the error interrupt is set before a command runs (in addition to clearing the interrupt).  It prints a message before it issues the command, but not if the issued command fails.
* [[IOS31]] prior to v3088
  −
* [[IOS33]] prior to v2832 (v1040 only)
  −
* [[IOS34]] prior to v3087 (v1039 only)
  −
* [[IOS35]] prior to v3088 (v1040 only)
  −
* [[IOS36]] prior to v3090 (v1042 only)
  −
* [[IOS37]] prior to v3609 (v2070 only)
     −
This version adds [[#0x95 DVDLowGetStatusRegister|0x95 DVDLowGetStatusRegister]], but [[#0x96 DVDLowGetControlRegister|0x96 DVDLowGetControlRegister]] is still missingIt also allows all 3 ranges in [[#0x8D DVDLowUnencryptedRead|0x8D DVDLowUnencryptedRead]].  Finally, it adds <em>all</em> of the IOCtlVs (which are also exposed as IOCtls): [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90 DVDLowGetNoDiscOpenPartitionParams]], [[#0x91 DVDLowNoDiscOpenPartition|0x91 DVDLowNoDiscOpenPartition]], [[#0x92 DVDLowGetNoDiscBufferSizes|0x92 DVDLowGetNoDiscBufferSizes]], [[#0x93 DVDLowOpenPartitionWithTmdAndTicket|0x93 DVDLowOpenPartitionWithTmdAndTicket]], and [[#0x94 DVDLowOpenPartitionWithTmdAndTicketView|0x94 DVDLowOpenPartitionWithTmdAndTicketView]].
+
Furthermore, the IOSC [[syscalls]] seem to have weird IDs shifted up by 2; IOSC_Decrypt (used by AESdecryptHW) is 0x69 instead of 0x6b, IOSC_GenerateHash is 0x65 instead of 0x67, and IOSC_DeleteObject is 0x5a instead of 0x5cPresumably, later versions added two syscalls before these{{check}} (and after 0x52, as that syscall has the same ID in later versions).
   −
This version will issues command 0xE0 to the drive if the error interrupt is set before a command runs, and additionally prints a asecond message if that fails in DiIoctl (which exists in all subsequent versions, even those that do not actually issue a command so it cannot ever fail).
+
For the sake of organization, prelaunch versions are also listed here, although they have slight differences.
   −
{| class="wikitable"
+
==== Aug 10 2006 11:24:50 ====
  ! MD5
+
 
  | colspan="3"| c808d8b90a74a4ee808b199a1b1e8d53
+
Found in [[IOS4]] v3 in the [[Prelaunch System Menu|insert startup disc]] Wii's NAND.  Not available on NUS.
 +
 
 +
[[#0x8D DVDLowUnencryptedRead|0x8D]] can only be used with start and end offsets between 0x10000 and 0x14001 or bytes 0x40000 through 0x50003.  The size alignment check means this doesn't actually allow reading more bytes past the end.  This means that the PPC would only have access to the [[Wii Disc]]'s partitions information and such, and not header bytes beyond 0x20 (the first 0x20 bytes are accessible through [[#0x70 DVDLowReadDiskID|0x70 DVDLowReadDiskID]]), i.e. the game title and encryption information cannot be accessed.
 +
 
 +
{| class="wikitable"
 +
  ! SHA-1
 +
  | colspan="3"| 5032764e723e0db7e6d7f434219c9d50289a1cab
 
  |-
 
  |-
 
  ! Thing
 
  ! Thing
Line 264: Line 283:  
  | Code (and entry point)
 
  | Code (and entry point)
 
  | 20200000
 
  | 20200000
  | 139B0000
+
  | 13540000
  | 0x80E0
+
  | 0x6540
 
  |-
 
  |-
 
  | Data (ES vars)
 
  | Data (ES vars)
  | 20209000
+
  | 20207000
  | 139B9000
+
  | 13547000
 
  | 0x140
 
  | 0x140
 
  |-
 
  |-
 
  | BSS (zero'd)
 
  | BSS (zero'd)
  | 2020A000
+
  | 20208000
  | 139BA000
+
  | 13548000
  | 0x2BDC4
+
  | 0x2BE08
 
  |-
 
  |-
 
  | Stack
 
  | Stack
  | 2022ddc4
+
  | 2022bd40
 
  | ?
 
  | ?
 
  | 0x8000
 
  | 0x8000
 
  |-
 
  |-
 
  | Protected heap
 
  | Protected heap
  | 2020a020
+
  | 20208020
 
  | ?
 
  | ?
 
  | 0x4000
 
  | 0x4000
 
  |-
 
  |-
 
  | Open heap
 
  | Open heap
  | 13600000
+
  | 13400000
 
  | ?
 
  | ?
 
  | 0x18000
 
  | 0x18000
 
  |}
 
  |}
   −
=== Group C ===
+
==== Aug 13 2006 17:33:44 ====
   −
==== Jul 14 2008 19:25:32 ====
+
Found in [[IOS9]] v1 in the [[Prelaunch System Menu|insert startup disc]] Wii's NAND.  Not available on NUS.
   −
Replaces the Jun 8 build for IOS versions other than IOS37:
+
A hash error in doBlockRead ("Data failed to verify against H0 Hash"/"H0 Hashes failed to verify"/"H1 Hashes failed to verify"/"H2 Hashes failed to verify") or openPartition ("Verifying H3 hashes against H4 hash failed") results in diFatalError being called, while the Aug 10 build simply returns a security error.
   −
* [[IOS31]] starting with v3088
+
[[#0x8D DVDLowUnencryptedRead|0x8D]] now is able to access data between 0 and 0x14000.
* [[IOS33]] starting with v2832
  −
* [[IOS34]] starting with v3087
  −
* [[IOS35]] starting with v3088
  −
* [[IOS36]] starting with v3090
     −
Does not have [[#0x96 DVDLowGetControlRegister|0x96 DVDLowGetControlRegister]].  Also removes IOCtlVs [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90]], [[#0x91 DVDLowNoDiscOpenPartition|0x91]], and [[#0x92 DVDLowGetNoDiscBufferSizes|0x92]].
+
In this version only, [[#0x71 DVDLowRead|0x71 DVDLowRead]] can be used with non-secure discs, simply calling doRawDiskReadIn versions both before and after, attempting to do this returns a security error.
 +
 
 +
Added ES wrappers:
 +
* ES_Sign (0x30, at 202045e0)
 +
* ES_VerifySign (0x31, at 20204650)
    
{| class="wikitable"
 
{| class="wikitable"
  ! MD5
+
  ! SHA-1
  | colspan="3"| 366021c440e6377044f8ca8c94e2e6bc
+
  | colspan="3"| 9dce75d14e01f6efc8d56821c139490792b8b3f9
 
  |-
 
  |-
 
  ! Thing
 
  ! Thing
Line 318: Line 337:  
  | Code (and entry point)
 
  | Code (and entry point)
 
  | 20200000
 
  | 20200000
  | 139B0000
+
  | 13580000
  | 0x7D74
+
  | 0x670C
 
  |-
 
  |-
 
  | Data (ES vars)
 
  | Data (ES vars)
  | 20208000
+
  | 20207000
  | 139B8000
+
  | 13587000
 
  | 0x140
 
  | 0x140
 
  |-
 
  |-
 
  | BSS (zero'd)
 
  | BSS (zero'd)
  | 20209000
+
  | 20208000
  | 139B9000
+
  | 13588000
  | 0x2BDC4
+
  | 0x2BE08
 
  |-
 
  |-
 
  | Stack
 
  | Stack
  | 2022cdc4
+
  | 2022bd40
 
  | ?
 
  | ?
 
  | 0x8000
 
  | 0x8000
 
  |-
 
  |-
 
  | Protected heap
 
  | Protected heap
  | 20209020
+
  | 20208020
 
  | ?
 
  | ?
 
  | 0x4000
 
  | 0x4000
 
  |-
 
  |-
 
  | Open heap
 
  | Open heap
  | 13600000
+
  | 13400000
 
  | ?
 
  | ?
 
  | 0x18000
 
  | 0x18000
 
  |}
 
  |}
   −
==== Jul 14 2008 19:32:38 ====
+
==== Oct  5 2006 17:41:21 ====
 +
 
 +
Used in monolithic IOS versions (those prior to IOS28, obviously excluding stubbed IOS versions).  As these versions have only a single ELF file for all modules, there is no single hash for the DI driver.
 +
 
 +
The main thread's priority is now 0x54 instead of 0x50.  DVDLowReset now also skips the check for clearing the drive error (in addition to DVDLowRequestError).
   −
Only found in [[IOS28]] (which is the first build that split things into modules).  The only difference between the build from 7 minutes earlier is that the open heap is at address 0x13800000 (0x9c << 0x15) instead of address 0x13600000 (0x9b << 0x15).  This is a 1-byte difference at offset 920 in the file or at address 202007fc.  (There are technically 2 other differences between the versions, for the build date strings.)
+
openPartition now allocates and reads 0x2c0 bytes for the [[Wii Disc#Partition|partition]] (instead of 0x2bc bytes), meaning the "Data size >> 2" field was not read before.
    
{| class="wikitable"
 
{| class="wikitable"
  ! MD5
+
  ! SHA-1
  | colspan="3"| 49f714dd1a0985fbd4c44ee9fe4f945a
+
  | colspan="3" {{Not tested|Varies}}
 
  |-
 
  |-
 
  ! Thing
 
  ! Thing
Line 362: Line 385:  
  | Code (and entry point)
 
  | Code (and entry point)
 
  | 20200000
 
  | 20200000
  | 139B0000
+
  | 13580000
  | 0x7D74
+
  | 0x6704
 
  |-
 
  |-
 
  | Data (ES vars)
 
  | Data (ES vars)
  | 20208000
+
  | 20207000
  | 139B8000
+
  | 13587000
 
  | 0x140
 
  | 0x140
 
  |-
 
  |-
 
  | BSS (zero'd)
 
  | BSS (zero'd)
  | 20209000
+
  | 20208000
  | 139B9000
+
  | 13588000
  | 0x2BDC4
+
  | 0x2BE08
 
  |-
 
  |-
 
  | Stack
 
  | Stack
  | 2022cdc4
+
  | 2022bd40
 
  | ?
 
  | ?
 
  | 0x8000
 
  | 0x8000
 
  |-
 
  |-
 
  | Protected heap
 
  | Protected heap
  | 20209020
+
  | 20208020
 
  | ?
 
  | ?
 
  | 0x4000
 
  | 0x4000
 
  |-
 
  |-
 
  | Open heap
 
  | Open heap
  | 13800000
+
  | 13400000
 
  | ?
 
  | ?
 
  | 0x18000
 
  | 0x18000
 
  |}
 
  |}
   −
==== Jul 24 2008 20:08:45 ====
+
==== Apr  3 2012 11:52:55 ====
   −
Only found in [[IOS38]].  Has [[#0x95 DVDLowGetStatusRegister|0x95]] but not [[#0x96 DVDLowGetControlRegister|0x96]]; also does not have [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90]], [[#0x91 DVDLowNoDiscOpenPartition|0x91]], and [[#0x92 DVDLowGetNoDiscBufferSizes|0x92]].
+
Wii U vWii variant of [[#Oct  5 2006 17:41:21|Oct  5 2006 17:41:21]].  Used in monolithic IOS versions (prior to IOS28).  Has the normal [[#vWii note|vWii changes]], and additionally, the string constant <code>/dev/es</code> is located in a mutable location (at 20207020) instead of at a constant location with the other string constants (as in all other versions).
 
  −
Identical to the Jul 14 2008 19:25:32 build apart from the priority of the main thread being set to 0x1b instead of 0x54 (all versions other than this and Jul 24 2008 00:30:13 use 0x54).  This results in byte differences at address 20207c2c (file offset 7d54), as well as in some ELF header area (file offset 114), and the timestamps.
      
{| class="wikitable"
 
{| class="wikitable"
  ! MD5
+
  ! SHA-1
  | colspan="3"| ef1a8c1270f82e0993f504f1e17a5152
+
  | colspan="3" {{Not tested|Varies}}
 
  |-
 
  |-
 
  ! Thing
 
  ! Thing
Line 408: Line 429:  
  | Code (and entry point)
 
  | Code (and entry point)
 
  | 20200000
 
  | 20200000
  | 139B0000
+
  | 13580000
  | 0x7D74
+
  | 0x6718
 
  |-
 
  |-
 
  | Data (ES vars)
 
  | Data (ES vars)
  | 20208000
+
  | 20207000
  | 139B8000
+
  | 13587000
 
  | 0x140
 
  | 0x140
 
  |-
 
  |-
 
  | BSS (zero'd)
 
  | BSS (zero'd)
  | 20209000
+
  | 20208000
  | 139B9000
+
  | 13588000
  | 0x2BDC4
+
  | 0x2BE08
 
  |-
 
  |-
 
  | Stack
 
  | Stack
  | 2022cdc4
+
  | 2022bd40
 
  | ?
 
  | ?
 
  | 0x8000
 
  | 0x8000
 
  |-
 
  |-
 
  | Protected heap
 
  | Protected heap
  | 20209020
+
  | 20208020
 
  | ?
 
  | ?
 
  | 0x4000
 
  | 0x4000
 
  |-
 
  |-
 
  | Open heap
 
  | Open heap
  | 13600000
+
  | 13400000
 
  | ?
 
  | ?
 
  | 0x18000
 
  | 0x18000
 
  |}
 
  |}
   −
=== Group D ===
+
=== Group B ===
 +
 
 +
Adds [[#0x95 DVDLowGetStatusRegister|0x95 DVDLowGetStatusRegister]], and adds <em>all</em> of the IOCtlVs (which are also exposed as IOCtls): [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90 DVDLowGetNoDiscOpenPartitionParams]], [[#0x91 DVDLowNoDiscOpenPartition|0x91 DVDLowNoDiscOpenPartition]], [[#0x92 DVDLowGetNoDiscBufferSizes|0x92 DVDLowGetNoDiscBufferSizes]], [[#0x93 DVDLowOpenPartitionWithTmdAndTicket|0x93 DVDLowOpenPartitionWithTmdAndTicket]], and [[#0x94 DVDLowOpenPartitionWithTmdAndTicketView|0x94 DVDLowOpenPartitionWithTmdAndTicketView]].  It also allows all 3 ranges in [[#0x8D DVDLowUnencryptedRead|0x8D DVDLowUnencryptedRead]].
 +
 
 +
The various allocation functions were tweaked; rather than having separate functions for different alignments, they just take an alignment parameter.  They also no longer return a bool and modify a parameter, instead just returning a pointer.
 +
 
 +
Added a warning if the call to clearDriveErrorInterupt fails.  In this version, it can theoretically fail (as it sends an actual 0xE0 command), but later versinos keep that message even after they stop sending a command.
   −
==== Jul 11 2008 14:34:27 ====
+
Added 5 unused debug functions (starting at 20201a6c) that print out various messages, after the (also unused) functions that print info relating to stack usage.  All of these functions continue to exist for the rest of the versions.  Removed some other unused debug methods (dumpDiskInfo, a hex dump method, and a method that printed info about a partion, previously starting at 20202510, 20202540, and 202025f4).  Removed printIOS_OpenError (20201f28), which was used if /dev/es failed to open.  Removed initBytes (20202590) which filled memory with 0xDEADBEEFCAFEBABE.
   −
Used by several IOS builds:
+
The function that a hash of some data (located at 20202478 in this version and 20201778 before, and also is the only function that calls IOSC_GenerateHash) changed its fatal error messages for invalid input: "Hash array address is not 64 byte aligned" became "Address of array to be hashed is not 64 byte aligned" and "Hash array length must be >= 64" became "Number of bytes to be hashed must be >= 64".  The function was also changed to copy the computed hash to a parameter (always returning true if computation was successful) instead of comparing the computed hash with the parameter (returning false if computation fails or there was a mismatch).  New functions were added using this function that verify one (20202554) or multiple hashes (20202584).
   −
* [[IOS37]] starting with v2816
+
doBlockRead prints "(doBlockRead) Data subblock %d failed to verify against H0 Hash" instead of "(doBlockRead) Data failed to verify against H0 Hash" if a hash fails.  Note that the subsequent call to diFatalError still uses the old message.  Additionally, the coutner for the loop changed direction since it can show up in that message (presumably a compiler optimisation no longer being possible, instead of an actual change).
* [[IOS50]] v4889 (v5120 is a stub)
  −
* [[IOS51]] v4633 (v4864 is a stub)
  −
* [[IOS52]] v5661 (v5888 is a stub)
  −
* [[IOS53]] (all versions)
  −
* [[IOS55]] (all versions)
     −
Adds [[#0x96 DVDLowGetControlRegister|0x96 DVDLowGetControlRegister]]Removes IOCtlVs [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90 DVDLowGetNoDiscOpenPartitionParams]], [[#0x91 DVDLowNoDiscOpenPartition|0x91 DVDLowNoDiscOpenPartition]], and [[#0x92 DVDLowGetNoDiscBufferSizes|0x92 DVDLowGetNoDiscBufferSizes]].
+
Partition-related code was split into several functions (and fewer functions are now inlined), due to the addition of functions for the new IoctlVsActual behavior seems to be identical, apart from log messages using new function names.
   −
{| class="wikitable"
+
Removed a variable that stored the H3 hashes offset that was never read (previously located at 20233df4).  However, they didn't remove an even more useless H3 hashes size variable right after it (previously at 20233df8, now at 2022ddb4), for some reason.
  ! MD5
+
 
  | colspan="3"| 382d4a5cafdb1e28ba039d25db7c4c1f
+
ES_DiVerifyWrapper now supports ticket views in addition to tickets.
 +
 
 +
Added several ES wrappers, most unused:
 +
* ES_GetStoredContent (0x32 and 0x33, at 20204f34)
 +
* ES_GetStoredTmd (0x34 and 0x35, at 20205120)
 +
* ES_GetSharedContents (0x36 and 0x37, at 20204fe4)
 +
* ES_DeleteSharedContent (0x38, at 20205308)
 +
* ES_DiGetTmd (0x39 and 0x3a, at 202055dc)
 +
* ES_DiVerify_TicketView (0x3b, at 202057f0); this function actually is used.
 +
* ES_SetupStreamKey (0x3c, at 20205b58)
 +
* ES_DeleteStreamKey (0x3d, at 20205c18)
 +
 
 +
Also:
 +
 
 +
* ES_DiGetTmdView (0x1a, at 20205668) now uses 0x19 if the size is not specified.
 +
* ES_DiGetTicketView (0x1b, at 20205578 and previously 20204104) now allows the first parameter to be null.  This function still is not used.
 +
 
 +
==== Jun  8 2007 18:17:09 ====
 +
 
 +
Used by early builds of certain IOS versions.  No current version of IOS uses this build.
 +
 
 +
* [[IOS30]] prior to v2816 (stubbing)
 +
* [[IOS31]] prior to v3088
 +
* [[IOS33]] prior to v2832 (v1040 only)
 +
* [[IOS34]] prior to v3087 (v1039 only)
 +
* [[IOS35]] prior to v3088 (v1040 only)
 +
* [[IOS36]] prior to v3090 (v1042 only)
 +
* [[IOS37]] prior to v3609 (v2070 only)
 +
 
 +
This version will issue command 0xE0 to the drive if the error interrupt is set before a command runs, and additionally prints a a second message if that fails in DiIoctl (which exists in all subsequent versions, even those that do not actually issue a command so it cannot ever fail).
 +
 
 +
{| class="wikitable"
 +
  ! SHA-1
 +
  | colspan="3"| 260be947a08f57f6ef51086427fe222fd4040399
 
  |-
 
  |-
 
  ! Thing
 
  ! Thing
Line 464: Line 519:  
  | 20200000
 
  | 20200000
 
  | 139B0000
 
  | 139B0000
  | 0x8088
+
  | 0x80E0
 
  |-
 
  |-
 
  | Data (ES vars)
 
  | Data (ES vars)
Line 492: Line 547:  
  |}
 
  |}
   −
==== Jul 24 2008 00:30:13 ====
+
==== Jun  8 2007 18:20:10 ====
 
  −
Only found in [[IOS48]].  Has both [[#0x95 DVDLowGetStatusRegister|0x95]] and [[#0x96 DVDLowGetControlRegister|0x96]]; does not have [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90]], [[#0x91 DVDLowNoDiscOpenPartition|0x91]], and [[#0x92 DVDLowGetNoDiscBufferSizes|0x92]].
     −
Identical to the Jul 11 2008 14:34:27 build apart from the priority of the main thread being set to 0x1b instead of 0x54 (all versions other than this and Jul 24 2008 20:08:45 use 0x54).  This results in byte differences at address 20207f40 (file offset 8068), as well as in some ELF header area (file offset 114), and the timestamps.
+
Only found in [[IOS28]] version 1288 (which is the first build that split things into modules).  This version is not present on NUS, but can be found on the update partition of some discs, such as ''LEGO Star Wars: The Complete Saga'' and ''Marble Saga: Kororinpa''.  The only difference between the build from the earlier build is that the open heap is at address 0x13800000 (0x9c << 0x15) instead of address 0x13600000 (0x9b << 0x15).  This is a 1-byte difference at offset bfc in the file or at address 20200ad4.  (There are also differences for the build dates).
    
{| class="wikitable"
 
{| class="wikitable"
  ! MD5
+
  ! SHA-1
  | colspan="3"| 108011e89e557d4e8adf1a02f87cb8ea
+
  | colspan="3"| fb308a9a1d9341df9517db155f4383162325dcc0
 
  |-
 
  |-
 
  ! Thing
 
  ! Thing
Line 510: Line 563:  
  | 20200000
 
  | 20200000
 
  | 139B0000
 
  | 139B0000
  | 0x8088
+
  | 0x80E0
 
  |-
 
  |-
 
  | Data (ES vars)
 
  | Data (ES vars)
Line 528: Line 581:  
  |-
 
  |-
 
  | Protected heap
 
  | Protected heap
  | 2020a020
+
  | 2020A020
 
  | ?
 
  | ?
 
  | 0x4000
 
  | 0x4000
 
  |-
 
  |-
 
  | Open heap
 
  | Open heap
  | 13600000
+
  | 13800000
 
  | ?
 
  | ?
 
  | 0x18000
 
  | 0x18000
 
  |}
 
  |}
   −
==== Dec 24 2008 13:51:06 ====
+
=== Group C ===
 +
 
 +
Removes IOCtlVs [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90]], [[#0x91 DVDLowNoDiscOpenPartition|0x91]], and [[#0x92 DVDLowGetNoDiscBufferSizes|0x92]] (but they are still accessible as IOCtls).  ([[#0x93 DVDLowOpenPartitionWithTmdAndTicket|0x93]] and [[#0x94 DVDLowOpenPartitionWithTmdAndTicketView|0x94]] remain available as IOCtlVs.)
 +
 
 +
The thunk function for memcpy are now located between thunks for IOS_FlushDCache and IOSC_GenerateHash (at 20205b80) instead of request_di_interrupt and time_now (at 20205dc0) in group B.
 +
 
 +
==== Jul 14 2008 19:25:32 ====
   −
Used in all versions of [[IOS41]], [[IOS43]], [[IOS45]], and [[IOS46]].  Has both [[#0x95 DVDLowGetStatusRegister|0x95]] and [[#0x96 DVDLowGetControlRegister|0x96]]; does not have [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90]], [[#0x91 DVDLowNoDiscOpenPartition|0x91]], and [[#0x92 DVDLowGetNoDiscBufferSizes|0x92]].
+
Replaces the Jun 8 build for IOS versions other than IOS37:
   −
Rebuild with no changes (other than the timestamps) of Jul 11 2008 14:34:27.
+
* [[IOS31]] starting with v3088
 +
* [[IOS33]] starting with v2832
 +
* [[IOS34]] starting with v3087
 +
* [[IOS35]] starting with v3088
 +
* [[IOS36]] starting with v3090
    
{| class="wikitable"
 
{| class="wikitable"
  ! MD5
+
  ! SHA-1
  | colspan="3"| 72122c88cdcd4279cc09e197d3079624
+
  | colspan="3"| 57667279972205462da427535a75a913574f2798
 
  |-
 
  |-
 
  ! Thing
 
  ! Thing
Line 556: Line 619:  
  | 20200000
 
  | 20200000
 
  | 139B0000
 
  | 139B0000
  | 0x8088
+
  | 0x7D74
 
  |-
 
  |-
 
  | Data (ES vars)
 
  | Data (ES vars)
  | 20209000
+
  | 20208000
  | 139B9000
+
  | 139B8000
 
  | 0x140
 
  | 0x140
 
  |-
 
  |-
 
  | BSS (zero'd)
 
  | BSS (zero'd)
  | 2020A000
+
  | 20209000
  | 139BA000
+
  | 139B9000
 
  | 0x2BDC4
 
  | 0x2BDC4
 
  |-
 
  |-
 
  | Stack
 
  | Stack
  | 2022ddc4
+
  | 2022cdc4
 
  | ?
 
  | ?
 
  | 0x8000
 
  | 0x8000
 
  |-
 
  |-
 
  | Protected heap
 
  | Protected heap
  | 2020a020
+
  | 20209020
 
  | ?
 
  | ?
 
  | 0x4000
 
  | 0x4000
Line 584: Line 647:  
  |}
 
  |}
   −
=== Group E ===
+
==== Jul 14 2008 19:32:38 ====
 
  −
==== Nov 24 2008 15:39:09 ====
     −
Used in the first builds of a few IOS versions:
+
Only found in [[IOS28]] (which is the first build that split things into modules).  The only difference between the build from 7 minutes earlier is that the open heap is at address 0x13800000 (0x9c << 0x15) instead of address 0x13600000 (0x9b << 0x15).  This is a 1-byte difference at offset 924 in the file or at address 202007fc.  (There are technically 2 other differences between the versions, for the build date strings.)
 
  −
* [[IOS56]] v4890 only
  −
* [[IOS57]] v5404 only
  −
* [[IOS60]] v6174 only (other version is a stub)
  −
* [[IOS61]] v4890 only
  −
 
  −
Has both [[#0x95 DVDLowGetStatusRegister|0x95]] and [[#0x96 DVDLowGetControlRegister|0x96]]; does not have [[#0x90 DVDLowGetNoDiscOpenPartitionParams|0x90]], [[#0x91 DVDLowNoDiscOpenPartition|0x91]], and [[#0x92 DVDLowGetNoDiscBufferSizes|0x92]].
      
{| class="wikitable"
 
{| class="wikitable"
  ! MD5
+
  ! SHA-1
  | colspan="3"| 48e1be8f767feb59cbc51aa4329d735a
+
  | colspan="3"| 92b9a637383729b25fbcb663f2895f66c6d9c987
 
  |-
 
  |-
 
  ! Thing
 
  ! Thing
Line 609: Line 663:  
  | 20200000
 
  | 20200000
 
  | 139B0000
 
  | 139B0000
  | 0x7F00
+
  | 0x7D74
 
  |-
 
  |-
 
  | Data (ES vars)
 
  | Data (ES vars)
Line 632: Line 686:  
  |-
 
  |-
 
  | Open heap
 
  | Open heap
  | 13600000
+
  | 13800000
 
  | ?
 
  | ?
 
  | 0x18000
 
  | 0x18000
 
  |}
 
  |}
   −
==== Jun  3 2009 07:49:09 ====
+
==== Jul 24 2008 20:08:45 ====
   −
Used in several IOS versions, and also updated versions of builds that used the Nov 24 2008 version.
+
Only found in [[IOS38]].  Note that this also has a version string of <code>$IOSVersion: DIP: 07/24/08 20:08:<mark>44</mark> 64M $</code>, probably just due to the two timestamps being determined at separate instants.
   −
* [[IOS56]] starting with v5405
+
Identical to the Jul 14 2008 19:25:32 build apart from the priority of the main thread being set to 0x1b instead of 0x54 (all versions other than this and Jul 24 2008 00:30:13 use 0x54).  This results in byte differences at address 20207c2c (file offset 7d54), as well as in some ELF header area (file offset 114), and the timestamps.
* [[IOS57]] starting with v5661
  −
* [[IOS61]] starting with v5405
  −
* [[IOS70]] v6687 (v6912 is a stub)
  −
* [[IOS80]] in all versions
     −
No changes to the actual driver code from the Nov 24 2008 version, but a lot of the ES wrapper code changed (note that there are wrappers for far more [[:/dev/es|ES]] Ioctlvs than are used in practice, similar to the way code for all syscalls exists even if they aren't used).  These also cause string constants to shift, which makes byte comparisons slightly annoying.  The changes:
+
{| class="wikitable"
 
+
! SHA-1
* ES_AddTicket (20204514, Ioctlv 0x01) no longer always uses a size of 0x2a4, but will instead use 0x2a4 plus a 32-bit size at offset 0x2a8 if the byte at offset 0x1bc is nonzero.
+
| colspan="3"| b4cdc54a5912d64f9ef1e516931ab32d64677a9c
* ES_GetTicketFromView (20204fc0, Ioctlvs 0x43 and 0x44) was added
+
|-
* Ioctlv 0x45 (20205cb8) was added
+
! Thing
 
+
! Virtual address
{| class="wikitable"
+
! Physical address
  ! MD5
+
! Size
  | colspan="3"| 89f7dc21f07e2cae97c3a571b23d8abd
+
|-
  |-
+
| Code (and entry point)
  ! Thing
+
| 20200000
  ! Virtual address
+
| 139B0000
  ! Physical address
+
| 0x7D74
  ! Size
+
|-
  |-
+
| Data (ES vars)
  | Code (and entry point)
+
| 20208000
  | 20200000
+
| 139B8000
  | 139B0000
+
| 0x140
  | 0x7FF0
+
|-
  |-
+
| BSS (zero'd)
  | Data (ES vars)
+
| 20209000
  | 20208000
+
| 139B9000
  | 139B8000
+
| 0x2BDC4
  | 0x140
+
|-
  |-
+
| Stack
  | BSS (zero'd)
+
| 2022cdc4
  | 20209000
+
| ?
  | 139B9000
+
| 0x8000
  | 0x2BDC4
+
|-
  |-
+
| Protected heap
  | Stack
+
| 20209020
  | 2022cdc4
+
| ?
  | ?
+
| 0x4000
  | 0x8000
+
|-
  |-
+
| Open heap
  | Protected heap
+
| 13600000
  | 20209020
+
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  3 2012 12:00:16 1 ====
 +
 
 +
Wii U vWii variant of [[#Jul 14 2008 19:25:32|Jul 14 2008 19:25:32]], with the normal [[#vWii note|vWii changes]].  Used by [[IOS31]], [[IOS33]], [[IOS34]], [[IOS35]], and [[IOS36]].
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| e04f3abe93ca9b9a2518c2ddc3d273e43caed1f8
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x7D90
 +
|-
 +
| Data (ES vars)
 +
| 20208000
 +
| 139B8000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 20209000
 +
| 139B9000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022cdc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 20209020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  3 2012 12:00:16 2 ====
 +
 
 +
Wii U vWii variant of [[#Jul 24 2008 20:08:45|Jul 24 2008 20:08:45]], with the normal [[#vWii note|vWii changes]].  Used by [[IOS38]] exclusively.  The only difference from the other build with the same timestamp is the main thread's priority (which was changed to 0x1b from 0x54).  This difference appears in memory at address 20207c48 (offset 7d70) and in the ELF header at file offset 114.  It's rather odd that the timestamp was not updated despite that change.
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| b62ad5ea5a2e03d2fb73e93dad1d34c102ec357a
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x7D90
 +
|-
 +
| Data (ES vars)
 +
| 20208000
 +
| 139B8000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 20209000
 +
| 139B9000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022cdc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 20209020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  3 2012 13:11:40 ====
 +
 
 +
Wii U vWii variant of [[#Jul 14 2008 19:32:38|Jul 14 2008 19:32:38]], with the normal [[#vWii note|vWii changes]].  Used by [[IOS28]] exclusively.  The open heap is at 0x13800000 instead of 0x13600000, due to a 1-byte change at address 202007fc or offset 924.
 +
 
 +
{| class="wikitable"
 +
! MD5
 +
| colspan="3"| 1d1723825d53b5389ec80c89c8a3aa06701ae07d
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x7D90
 +
|-
 +
| Data (ES vars)
 +
| 20208000
 +
| 139B8000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 20209000
 +
| 139B9000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022cdc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 20209020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 0x13800000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
=== Group D ===
 +
 
 +
Adds [[#0x96 DVDLowGetControlRegister|0x96 DVDLowGetControlRegister]].  Note that although these versions are earlier than group C, they have more features.
 +
 
 +
diFatalError attempts to write 0xdeadbeef to 0xffff0000 before it calls CancelThread and enters an infinite loop.  The message was also changed from "(diFatalError) Fatal error in DI driver: %s\nExiting\n" to "(diFatalError) *** DI FATAL ERROR: %s\nExiting\n".  Something about this changed compiler or decompiler behavior, changing the way uses of that function affect code flow which makes some changes harder to spot and creates a lot of changes that aren't actually changes.
 +
 
 +
clearDriveErrorInterupt and doWaitForCoverClose were moved to be before handleDiCommand instead of after (group C has them at 2020146c/2020149c, and now they are at 20200b80/20200b98).  Furthermore, clearDriveErrorInterupt no longer issues a 0xE0 command to the drive, and always returns success (however, the rest of the code still assumes it can fail, printing a warning in that case).
 +
 
 +
Improved error messages in doBlockRead.  The debug messages for when a hash failed now also print the first parameter as a pointer (e.g. "(doBlockRead) Data subblock %d failed to verify against H0 Hash (%08x)").  The fatal error message for the first case was changed from "Data failed to verify against H0 Hash" to "Data subblock failed to verify against H0 Hash" (the other messages of the form "H0 Hashes failed to verify" were not changed).  Additionally, if the call to doRawDiskRead fails, the message "(doBlockRead) doRawDiskRead failed, rc=%d\n" is printed (previously nothing was printed); the return value is still that of doRawDiskRead in that case.  Lastly, when a hash fails, the parameter is memset with value 0xA5 prior to calling diFatalError.
 +
 
 +
The implementation of DVDLowRead no longer calls doReadHashEncryptedState if it hasn't been called before (before it checks if the disc is a secure disc).  It never needed to anyways, as it is called after DVDLowReadDiskID, which *must* be called first.  It was also moved to be before doNonConfirmingDiscRead and doReadHashEncryptedState (at 202029e8) instead of after them (at 20202950).
 +
 
 +
doReadHashEncryptedState only considers a disc as secure (and only enables hashing) if both disable hashing (byte 0x60 of the [[Wii Disc]]) and disable encryption (byte 0x61) are false (and also acts as if hashing were disabled if encryption is disabled).  Previously, only the hashing byte controlled whether the disc was secure and hashing was enabled. <!-- This function is a bit of a mess to read due to compiler/decompiler behavior, but this *looks* like an actual change -->
 +
 
 +
The 0x18000-byte H3 hashes buffer is cleared by commonOpenPartition with value 0xA5 if a non-encrypted disc is used (disc encryption at byte 0x61 on the [[Wii Disc]] is 0 and the partition's H3 offset is also 0; disabling encryption but having an H3 offset set will result in a fatal error in both this version and earlier versions).
 +
 
 +
Some more ES wrappers were added:
 +
* 0x3E (at 2020525c)
 +
* ES_GetV0TicketFromView (0x40, at 20205068)
 +
 
 +
==== Jul 11 2008 14:34:27 ====
 +
 
 +
Used by several IOS builds:
 +
 
 +
* [[IOS37]] starting with v2816
 +
* [[IOS50]] v4889 (v5120 is a stub)
 +
* [[IOS51]] v4633 (v4864 is a stub)
 +
* [[IOS52]] v5661 (v5888 is a stub)
 +
* [[IOS53]] (all versions)
 +
* [[IOS55]] (all versions)
 +
 
 +
Note that this also has a version string of <code>$IOSVersion: DIP: 07/11/08 14:34:<mark>26</mark> 64M $</code>, probably just due to the two timestamps being determined at separate instants.
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| bff35f53a0ed9f69b15a224552fcc73372308099
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x8088
 +
|-
 +
| Data (ES vars)
 +
| 20209000
 +
| 139B9000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 2020A000
 +
| 139BA000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022ddc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 2020a020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Jul 24 2008 00:30:13 ====
 +
 
 +
Only found in [[IOS48]].
 +
 
 +
Identical to the Jul 11 2008 14:34:27 build apart from the priority of the main thread being set to 0x1b instead of 0x54 (all versions other than this and Jul 24 2008 20:08:45 use 0x54).  This results in byte differences at address 20207f40 (file offset 8068), as well as in some ELF header area (file offset 114), and the timestamps.
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| 0fc5a88a327ee2b5c4ce3dc05faf8c7ef3bbcc1b
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x8088
 +
|-
 +
| Data (ES vars)
 +
| 20209000
 +
| 139B9000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 2020A000
 +
| 139BA000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022ddc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 2020a020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Dec 24 2008 13:51:06 ====
 +
 
 +
Used in all versions of [[IOS41]], [[IOS43]], [[IOS45]], and [[IOS46]].
 +
 
 +
Rebuild with no changes (other than the timestamps) of Jul 11 2008 14:34:27.
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| d254a265d25d96723a566e6f877f5df05a645699
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x8088
 +
|-
 +
| Data (ES vars)
 +
| 20209000
 +
| 139B9000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 2020A000
 +
| 139BA000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022ddc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 2020a020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  3 2012 12:21:34 ====
 +
 
 +
Wii U vWii variant of [[#Jul 14 2008 19:32:38|Jul 14 2008 19:32:38]], with the normal [[#vWii note|vWii changes]].  Used by [[IOS37]], [[IOS53]], and [[IOS55]].
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| e7a0824785268df455d56c1803620eff180d6556
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x80A4
 +
|-
 +
| Data (ES vars)
 +
| 20209000
 +
| 139B9000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 2020A000
 +
| 139BA000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022ddc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 2020a020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  3 2012 12:31:01 ====
 +
 
 +
Wii U vWii variant of [[#Jul 14 2008 19:32:38|Jul 14 2008 19:32:38]], with the normal [[#vWii note|vWii changes]].  Used by [[IOS41]], [[IOS43]], [[IOS45]], [[IOS46]], and [[IOS48]] (the original version was only used by IOS48, with the rest using [[#Dec 24 2008 13:51:06|Dec 24 2008 13:51:06]]).  The main thread has priority 0x1b instead of 0x54, resulting in byte differences at address 20207f5c (offset 8084) and in the ELF header (offset 114), as well as the timestamps.  Was the priority change for versions other than IOS48 intentional, with the other modules being updated to compensate{{check}}?
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| 8835422c143de4b359fea4a0a56aef9386caa53d
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x80A4
 +
|-
 +
| Data (ES vars)
 +
| 20209000
 +
| 139B9000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 2020A000
 +
| 139BA000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022ddc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 2020a020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
=== Group E ===
 +
 
 +
The code that checks H0/H1/H2 hashes was moved into the kernel, using [[IOS/Syscalls|syscall]] 0x77 (IOSC_CheckDiHashes).  H3 hashes are still present.  It's not clear if the actual hashing behavior changed{{check}}.
 +
 
 +
Wrappers for ES IoctlVs 0x41 (at 20205ba4 in 2008 and 20205c58 in 2009 and 2012) and 0x42 (at 20205b44 in 2008 and 20205bf8 in 2009 and 2012) were added.
 +
 
 +
Instructions for syscalls 0x77, 0x78, and 0x79 were added, though only 0x77 is used.  Note that these are out of order; 0x77 is at the end of the list at 202042d0 while 0x78 and 0x79 are wedged between 0x5a and 0x5b at 202041e0 for some reason.
 +
 
 +
==== Nov 24 2008 15:39:09 ====
 +
 
 +
Used in the first builds of a few IOS versions:
 +
 
 +
* [[IOS56]] v4890 only
 +
* [[IOS57]] v5404 only
 +
* [[IOS60]] v6174 only (other version is a stub)
 +
* [[IOS61]] v4890 only
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| 96b035dafcfaf826d1772abd07b8014aed15035f
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x7F00
 +
|-
 +
| Data (ES vars)
 +
| 20208000
 +
| 139B8000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 20209000
 +
| 139B9000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022cdc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 20209020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  6 2009 17:10:07 ====
 +
 
 +
Used exclusively by [[IOS56]] v5146, which is not found on NUS (but can be found on e.g. Guitar Hero 5).
 +
 
 +
No changes to the actual driver code from the Nov 24 2008 version, but some of the ES wrapper code changed.  These also cause string constants to shift, which makes byte comparisons slightly annoying.  The changes:
 +
 
 +
* ES_AddTicket (20204514, Ioctlv 0x01) no longer always uses a size of 0x2a4, but will instead use 0x2a4 plus a 32-bit size at offset 0x2a8 if the byte at offset 0x1bc is nonzero.
 +
* ES_GetTicketFromView (20204fc0, Ioctlvs 0x43 and 0x44) was added
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| 9a915fd77389a79c7fa516e4aac4e30e4e1174ad
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x7FB4
 +
|-
 +
| Data (ES vars)
 +
| 20208000
 +
| 139B8000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 20209000
 +
| 139B9000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022cdc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 20209020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Jun  3 2009 07:49:09 ====
 +
 
 +
Used in several IOS versions, and also updated versions of builds that used the Nov 24 2008 version.
 +
 
 +
* [[IOS56]] starting with v5405
 +
* [[IOS57]] starting with v5661
 +
* [[IOS58]] in all versions
 +
* [[IOS59]] in all versions
 +
* [[IOS61]] starting with v5405
 +
* [[IOS70]] v6687 (v6912 is a stub)
 +
* [[IOS80]] in all versions
 +
 
 +
No changes to the actual driver code from the Nov 24 2008 version, but some of the ES wrapper code changed.  These also cause string constants to shift, which makes byte comparisons slightly annoying.  The changes:
 +
 
 +
* Ioctlv 0x45 (20205cb8) was added
 +
 
 +
{| class="wikitable"
 +
  ! SHA-1
 +
| colspan="3"| 4e04e88ec7250de84a1e788ae69fdad9351330a8
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x7FF0
 +
|-
 +
| Data (ES vars)
 +
| 20208000
 +
| 139B8000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 20209000
 +
| 139B9000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022cdc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 20209020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Feb 27 2012 14:39:56 ====
 +
 
 +
Used exclusively by [[IOS62]].  The wrappers for ES IoctlVs 0x41 and 0x42 were changed slightly, both requiring that the second parameter is not greater than 0x14 instead of 0x13.  This results in differences at addresses 20205c16 (0x42) and 20205c76 (0x41) (file offsets 5d30 and 5d9e), in addition to the timestamp change.
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
  | colspan="3"| d5dfeb42909a20453c0f574e9a8c41f50792bf8f
 +
  |-
 +
  ! Thing
 +
  ! Virtual address
 +
  ! Physical address
 +
  ! Size
 +
  |-
 +
  | Code (and entry point)
 +
  | 20200000
 +
  | 139B0000
 +
  | 0x7FF0
 +
  |-
 +
  | Data (ES vars)
 +
  | 20208000
 +
  | 139B8000
 +
  | 0x140
 +
  |-
 +
  | BSS (zero'd)
 +
  | 20209000
 +
  | 139B9000
 +
  | 0x2BDC4
 +
  |-
 +
  | Stack
 +
  | 2022cdc4
 +
  | ?
 +
  | 0x8000
 +
  |-
 +
  | Protected heap
 +
  | 20209020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  2 2012 14:03:54 ====
 +
 
 +
Wii U vWii variant of [[#Jun  3 2009 07:49:09|Jun  3 2009 07:49:09]], with the normal [[#vWii note|vWii changes]].  Also has the changes to 0x41 and 0x42 from [[#Feb 27 2012 14:39:56|Feb 27 2012 14:39:56]].  Used by [[IOS56]], [[IOS57]], [[IOS58]], and [[IOS80]].
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| 43cbc9d451df6296214347f8a33349b2dda843f0
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x800C
 +
|-
 +
| Data (ES vars)
 +
| 20209000
 +
| 139B9000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 2020A000
 +
| 139BA000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022ddc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 2020a020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  3 2012 12:50:03 ====
 +
 
 +
A second Wii U vWii variant of [[#Jun  3 2009 07:49:09|Jun  3 2009 07:49:09]], with the normal [[#vWii note|vWii changes]] (and no other changes other than the timestamp).  Also has the changes to 0x41 and 0x42 from [[#Feb 27 2012 14:39:56|Feb 27 2012 14:39:56]].  Used exclusively by the three versions of [[IOS59]].
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| e961f817c53ad3d87af96635df99bc6ee70ed056
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x800C
 +
|-
 +
| Data (ES vars)
 +
| 20209000
 +
| 139B9000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 2020A000
 +
| 139BA000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022ddc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 2020a020
 +
| ?
 +
| 0x4000
 +
|-
 +
| Open heap
 +
| 13600000
 +
| ?
 +
| 0x18000
 +
|}
 +
 
 +
==== Apr  3 2012 13:00:48 ====
 +
 
 +
Wii U vWii variant of [[#Feb 27 2012 14:39:56|Feb 27 2012 14:39:56]], with the normal [[#vWii note|vWii changes]] (and no other changes other than the timestamp, though to be clear it does have the changed 0x41 and 0x42).  Used exclusively by the three versions of [[IOS62]].
 +
 
 +
{| class="wikitable"
 +
! SHA-1
 +
| colspan="3"| 86bec5ad6815c2bf1f154690f2abd0e6141f0f8b
 +
|-
 +
! Thing
 +
! Virtual address
 +
! Physical address
 +
! Size
 +
|-
 +
| Code (and entry point)
 +
| 20200000
 +
| 139B0000
 +
| 0x800C
 +
|-
 +
| Data (ES vars)
 +
| 20209000
 +
| 139B9000
 +
| 0x140
 +
|-
 +
| BSS (zero'd)
 +
| 2020A000
 +
| 139BA000
 +
| 0x2BDC4
 +
|-
 +
| Stack
 +
| 2022ddc4
 +
| ?
 +
| 0x8000
 +
|-
 +
| Protected heap
 +
| 2020a020
 
  | ?
 
  | ?
 
  | 0x4000
 
  | 0x4000
Line 783: Line 1,550:  
=== <s>0x90 DVDLowGetNoDiscOpenPartitionParams</s> ===
 
=== <s>0x90 DVDLowGetNoDiscOpenPartitionParams</s> ===
   −
<strong>Dummied out on all current IOS versions</strong>; always returns 0x80.  However, still usable as an Ioctl (which is probably unintended).  System menu 4.3U (among other titles) still has a PPC-side implementation (815504c4) but this is not used (the higher-level function that calls it is gone due to not being referenced).
+
<strong>Dummied out on all current IOS versions</strong>; always returns 0x80.  However, still usable as an Ioctl (which is probably unintended).  System menu 4.3U (among other titles) still has a PPC-side implementation (815504c4) but this is not used (the higher-level function that calls it is gone due to not being referenced).  The only version that has an implementation of it is [[#Jun 8 2007 18:17:09|Jun 8 2007 18:17:09]], which is no longer used by any IOS version.
    
{| class="wikitable"
 
{| class="wikitable"
Line 891: Line 1,658:  
=== <s>0x91 DVDLowNoDiscOpenPartition</s> ===
 
=== <s>0x91 DVDLowNoDiscOpenPartition</s> ===
   −
<strong>Dummied out on all current IOS versions</strong>; always returns 0x80.  However, still usable as an Ioctl (which is probably unintended).
+
<strong>Dummied out on all current IOS versions</strong>; always returns 0x80.  However, still usable as an Ioctl (which is probably unintended). No PPC-side code exists for this command in any known title (it was never called, even in an unreachable in practice way, so the function was optimized out).  The only version that has an implementation of it is [[#Jun 8 2007 18:17:09|Jun 8 2007 18:17:09]], which is no longer used by any IOS version.
 
  −
Presumably, the ioctlv would have validated size and alignment, and then filled in additional parameters on the command before passing it on to the shared logic that it is still accessible via the ioctlv.  However, no PPC-side code exists so the exact ioctlv arguments are unknown.
      
{| class="wikitable"
 
{| class="wikitable"
Line 980: Line 1,745:  
=== <s>0x92 DVDLowGetNoDiscBufferSizes</s> ===
 
=== <s>0x92 DVDLowGetNoDiscBufferSizes</s> ===
   −
<strong>Dummied out on all current IOS versions</strong>; always returns 0x80.  However, still usable as an Ioctl (which is probably unintended).  System menu 4.3U (among other titles) still has a PPC-side implementation (815502b8) but this is not used (the higher-level function that calls it is gone due to not being referenced).  This does allow determination of the inputs, though:
+
<strong>Dummied out on all current IOS versions</strong>; always returns 0x80.  However, still usable as an Ioctl (which is probably unintended).  System menu 4.3U (among other titles) still has a PPC-side implementation (815502b8) but this is not used (the higher-level function that calls it is gone due to not being referenced).  The only version that has an implementation of it is [[#Jun 8 2007 18:17:09|Jun 8 2007 18:17:09]], which is no longer used by any IOS version.
    
{| class="wikitable"
 
{| class="wikitable"
Line 1,198: Line 1,963:  
<li>0x83 DVDLowGetLength</li>
 
<li>0x83 DVDLowGetLength</li>
 
<li>0x84 Get DIIMMBUF</li>
 
<li>0x84 Get DIIMMBUF</li>
<li>0x85 DVDLowUnmaskCoverInterrupt</li>
+
<li>0x85 DVDLowMaskCoverInterrupt</li>
 
<li>0x86 DVDLowClearCoverInterrupt</li>
 
<li>0x86 DVDLowClearCoverInterrupt</li>
<li>0x87</li>
+
<li>0x87 DVDLowUnmaskStatusInterrupts</li>
 
<li>0x88 DVDLowGetCoverStatus</li>
 
<li>0x88 DVDLowGetCoverStatus</li>
<li>0x89 Enable Cover Interrupt</li>
+
<li>0x89 DVDLowUnmaskCoverInterrupt</li>
 
<li>0x8B DVDLowOpenPartition ioctl</li>
 
<li>0x8B DVDLowOpenPartition ioctl</li>
 
<li>0x8E DVDLowEnableDvdVideo</li>
 
<li>0x8E DVDLowEnableDvdVideo</li>
Line 1,476: Line 2,241:  
  |}
 
  |}
   −
=== 0x85 DVDLowUnmaskCoverInterrupt ===
+
=== 0x85 DVDLowMaskCoverInterrupt ===
   −
Disables the cover interrupt by clearing bit 1 of DICVR (leaving bit zero unchanged).  Does not clear the cover interrupt if it is currently asserted (does not write bit 2).
+
Disables the cover interrupt by clearing bit 1 of DICVR (leaving bit zero unchanged).  Does not clear the cover interrupt if it is currently asserted (does not write bit 2).  Actual code is <code>DICVR = (DICVR & ~4 & ~2)</code>.
 +
 
 +
Titles have a DVDLowMaskCoverInterrupt function that is dummied out to always return 1; this function is used by DVDInit in the exact same place that gamecube titles write <code>DICVR = 0</code> (which should be equivalent, as writes to bit 0 which indicates the cover status presumably do nothing{{check}}).  However, since it is stubbed out, there is no way of being sure that 0x85 was actually used by that function.
    
The output buffer is not used, and it may be null.  Its size is not checked.
 
The output buffer is not used, and it may be null.  Its size is not checked.
Line 1,510: Line 2,277:  
  |}
 
  |}
   −
=== <s>0x87</s> ===
+
=== <s>0x87 DVDLowUnmaskStatusInterrupts</s> ===
 +
 
 +
Dummied out; does nothing (and always returns 1).
   −
Dummied out; does nothing (and always returns 1).  Possibly an ID reserved for a PPC-only command (DVDLowBreak?), as is also done with DVDLowSetSpinupFlag?
+
Titles have a DVDLowUnmaskStatusInterrupts function that is dummied out to always return 1; this function is used by DVDInit in the exact same place that gamecube titles write <code>DISR = 0x2a</code> (which enables DEINTMASK, TCINTMASK, and BRKINTMASK, and does not clear any asserted interrupts).  However, since it is stubbed out, there is no way of being sure that 0x87 was actually used by that function.
    
The output buffer is not used, and it may be null.  Its size is not checked.
 
The output buffer is not used, and it may be null.  Its size is not checked.
Line 1,544: Line 2,313:  
  |}
 
  |}
   −
=== 0x89 Enable Cover Interrupt ===
+
=== 0x89 DVDLowUnmaskCoverInterrupt ===
 +
 
 +
Enables the cover interrupt by setting bit 1 of DICVR (leaving bit zero unchanged).  Does not clear the cover interrupt if it is currently asserted (does not write bit 2).  Actual code is <code>DICVR = ((DICVR & ~4) | 2)</code>.
   −
Enables the cover interrupt by setting bit 1 of DICVR (leaving bit zero unchanged).  Does not clear the cover interrupt if it is currently asserted (does not write bit 2).
+
Debug symbols list a function called DVDLowUnmaskCoverInterrupt, but no actual function remains as it was removed as unused (and even if it did still exist, it presumably would be dummied out to just return 1 as it is only 8 bytes).  Therefore, there is no way to be certain that 0x89 actually was called DVDLowUnmaskCoverInterrupt, but it seems very likely based on DVDLowMaskCoverInterrupt.
    
The output buffer is not used, and it may be null.  Its size is not checked.
 
The output buffer is not used, and it may be null.  Its size is not checked.
Line 1,563: Line 2,334:  
=== 0x8A DVDLowReset ===
 
=== 0x8A DVDLowReset ===
   −
Resets the drive, using [[IOS/Syscalls|syscalls]] 0x44, 0x45, and 0x46.  If a reset is already in progress (syscall_check_di_reset returns true), then it immediately calls syscall_deassert_di_reset; otherwise, it calls syscall_assert_di_reset, waits 12&micro;s, and then calls syscall_deassert_di_reset.  Afterwards, registers are reset in the same way as DVDLowNotifyReset other than the cover interrupt.  The cover interrupt is temporarilly disabled during this process, but is reenabled afterwards if it was enabled before.
+
Resets the drive, using [[IOS/Syscalls|syscalls]] 0x44, 0x45, and 0x46.  If a reset is already in progress (check_di_reset returns true), then it immediately calls deassert_di_reset; otherwise, it calls assert_di_reset, waits 12&micro;s, and then calls deassert_di_reset.  Afterwards, registers are reset in the same way as DVDLowNotifyReset other than the cover interrupt.  The cover interrupt is temporarilly disabled during this process, but is reenabled afterwards if it was enabled before.
    
Enable spinup is passed to syscall 0x4e, which activates the DI_SPIN [[Hardware/Hollywood_GPIOs|GPIO]] if it is 0 and disables it otherwise.
 
Enable spinup is passed to syscall 0x4e, which activates the DI_SPIN [[Hardware/Hollywood_GPIOs|GPIO]] if it is 0 and disables it otherwise.
Line 1,664: Line 2,435:  
  DICR = TSTART|DMA
 
  DICR = TSTART|DMA
   −
Versions of IOS prior to IOS30 only permitted reads in the first range{{check}}.  Nintendo titles check on startup if they are running an IOS &ge; 30 (and &le; 253) and if so, perform some DI checks; specifically, they attempt to read 0x20 bytes from 0x460a0000 (or from 0x7ed40000 if the byte at 0x8000319c is 0x81 &mdash; possibly related to dual-layer discs?).  If this read attempt returns anything other than 2, the game will refuse to start with the message "An error has occurred. Press the Eject Button, remove the Game Disc, and turn off the power to the console. Please read the Wii Operations Manual for further instructions."  If the drive error is anything other than 0x0052100 (OK/Logical block address out of range), the game will refuse to start with the message "Error #001, unauthorized device has been detected."
+
Versions of IOS prior to [[IOS28]] only permitted reads in the first range.  The [[#Aug 10 2006 11:24:50|prelaunch august 10 build]] further restricts it to only allow reads starting at offset 0x10000 (byte 0x40000), along with a 1-higher upper bound (likely due to use of &le; instead of just less than) which does not matter in practice due the length alignment requirement.  This means that the PPC would only have access to the [[Wii Disc]]'s partitions information and such, and not header bytes beyond 0x20 (the first 0x20 bytes are accessible through [[#0x70 DVDLowReadDiskID|0x70 DVDLowReadDiskID]]), i.e. the game title and encryption information cannot be accessed.
 +
 
 +
Nintendo titles check on startup if they are running an IOS &ge; 30 (and &le; 253) and if so, perform some DI checks; specifically, they attempt to read 0x20 bytes from 0x460a0000 (or from 0x7ed40000 if the byte at 0x8000319c is 0x81 &mdash; possibly related to dual-layer discs?).  If this read attempt returns anything other than 2, the game will refuse to start with the message "An error has occurred. Press the Eject Button, remove the Game Disc, and turn off the power to the console. Please read the Wii Operations Manual for further instructions."  If the drive error is anything other than 0x0052100 (OK/Logical block address out of range), the game will refuse to start with the message "Error #001, unauthorized device has been detected."
    
{| class="wikitable"
 
{| class="wikitable"
5,579

edits