Updated IOS Overview (markdown)

Léo Lam 2018-04-04 12:55:14 +02:00
parent 24eeb219cc
commit 597c5816af

@ -13,39 +13,41 @@ Differences between IOS versions are typically not emulated, since they are most
## Modules ## Modules
| Module | Status | | Module | Status |
| --- | --- | | --- | --- |
| Kernel | Cannot be implemented with HLE in a way that makes sense. | | Kernel | N/A |
| ES | Mostly complete. Does not support consumption tracking and two ioctls that expose kernel internals directly (thread priorities). The latter cannot be implemented with HLE in a way that makes sense. | | ES | **Mostly complete.** Does not support consumption tracking and two ioctls that expose kernel internals directly (thread priorities). The latter cannot be implemented with HLE in a way that makes sense. |
| FFS / FFSP | Partially implemented. Does not support filesystem metadata, boot2 or direct flash access. | | FFS / FFSP | **Partial**. Does not support filesystem metadata, boot2 or direct flash access. |
| --- | --- | | --- | --- |
| DIP | Implemented as a thin wrapper around Dolphin's DVDInterface. | | DIP | **Mostly complete.** Implemented as a thin wrapper around Dolphin's DVDInterface. |
| STM | Mostly complete. Screen dimming is not supported. | | STM | **Mostly complete.** Screen dimming is not supported. |
| --- | --- | | --- | --- |
| SDI | Implemented. Handles SDv2 cards. | | SDI | **Complete.** Handles SDv2 cards. |
| --- | --- | | --- | --- |
| EHCI | Not implemented (internal). | | EHCI | Internal, not implemented. |
| KBD | Not implemented, except on Windows where it uses the host keyboard input. | | KBD | **Not implemented**, except on Windows where it uses the host keyboard input. |
| OH0 | Mostly complete | | OH0 | **Mostly complete.** |
| OH1 | Complete | | OH1 | **Complete.** |
| USB | Not implemented (internal). | | USB | Internal, not implemented. |
| USB_HID (v4) | Complete | | USB_HID (v4) | **Complete.** |
| USB_HID (v5) | Mostly complete | | USB_HID (v5) | **Mostly complete.** |
| USB_HUB | Not implemented (internal?) | | USB_HUB | Internal (?), not implemented. |
| USB_MSC | Not implemented (internal) | | USB_MSC | Internal, not implemented. |
| USB_SHARED | Not implemented (internal) | | USB_SHARED | Internal, not implemented. |
| USB_VEN | Mostly complete | | USB_VEN | **Mostly complete.** |
| --- | --- | | --- | --- |
| WFSI | Implemented, enough to make DQX fully work | | WFSI | **Implemented**, enough to make DQX fully work |
| WFSKRN | Implemented, enough to make DQX fully work | | WFSKRN | **Implemented**, enough to make DQX fully work |
| --- | --- | | --- | --- |
| ETH | Not implemented (internal). | | ETH | Internal, not implemented. |
| KD | Mostly a stub. | | KD | **Partial**. Mostly a stub. |
| NCD | Implemented (?) | | NCD | **Partial**. |
| SO | Implemented (uses the host network stack directly). | | SO | **Implemented** (uses the host network stack directly). |
| SSL | Implemented. However, Dolphin is unable to use certificates that are built-in to the module. | | SSL | **Implemented** However, Dolphin is unable to use certificates that are built-in to the module. |
| WD | Mostly a stub. Can return fake AP info. No Wi-Fi hardware emulation or DS communication. | | WD | **Partial**. Mostly a stub. Can return fake AP info. No Wi-Fi hardware emulation or DS communication. |
| WL | Not implemented (low-level WLAN driver). | | WL | **Not implemented** (low-level WLAN driver). |
## General TODO ## General TODO
* [ ] Implement filesystem metadata. Some games rely on it (DQX, Bolt)
* [ ] Implement the remaining functionality. * [ ] Implement the remaining functionality.
* [ ] Threading. * [ ] Threading.