Difference between revisions of "FMSS"
(→Other devices / SoCs) |
|||
Line 59: | Line 59: | ||
The bytecode is documented at [https://github.com/lemonjesus/S5L8702-FMISS-Tools lemonjesus/S5L8702-FMISS-Tools]. | The bytecode is documented at [https://github.com/lemonjesus/S5L8702-FMISS-Tools lemonjesus/S5L8702-FMISS-Tools]. | ||
+ | |||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | ! Offset !! Register Name !! Description | ||
+ | |- | ||
+ | | 0xC08 || CS_STATUS || | ||
+ | |- | ||
+ | | 0xC60 || CS_BUF_RST || | ||
+ | |- | ||
+ | | 0xC64 || CS_BUF_RST_OK || | ||
+ | |- | ||
+ | | 0xC6C || CS_BUF_START || | ||
+ | |} | ||
== Other devices / SoCs == | == Other devices / SoCs == |
Revision as of 02:53, 11 October 2023
FMSS is seemingly the name of the flash memory controller on the S5L8702, S5L8710, S5L8720 and S5L8730.
There is no publicly available information about it, and the following has been gathered from reverse engineering RetailOS and iOS builds for the S5L8720 (iPod touch). A very similar controller is present in the S5L8700X datasheet.
Contents
Subsystems
FMC (Flash Memory Controller)
This is the component responsible for the actual bus transfers on the NAND bus.
Offset | Register Name | Description |
---|---|---|
0x000 | FMCTRL0 | General control register.
|
0x004 | FMCTRL1 | Transfer control register.
|
0x008 | FMCMD | NAND command number. Eg. 0x90: read NAND ID. Documented in JEDEC docs and NAND chip datasheets. |
0x00C | FMADDR0 | Lower bits of address to be written in NAND address transfer. See JEDEC docs and NAND chip datasheets. |
0x010 | FMADDR1 | Higher bits of address to be written in NAND address transfer. See JEDEC docs and NAND chip datasheets. |
0x02C | FMANUM | Number of bytes to transfer during address transfer minus one (ie. countdown counter). |
0x030 | FMDNUM | Number of bytes to transfer during data transfer minus one (ie. countdown counter). |
0x048 | FMSTAT | Controller status.
|
To be documented fully.
ECC (Error Correction Code)
To be documented.
CS (Code Sequencer)
A little custom core that executes a custom bytecode. 9 32-bit general purpose registers. Controlled by the host CPU. It has access to the host memory and the rest of the FMSS peripherals, and operates by performing accesses to the FMC and ECC subsystems.
The bytecode is documented at lemonjesus/S5L8702-FMISS-Tools.
Offset | Register Name | Description |
---|---|---|
0xC08 | CS_STATUS | |
0xC60 | CS_BUF_RST | |
0xC64 | CS_BUF_RST_OK | |
0xC6C | CS_BUF_START |
Other devices / SoCs
S5L8700X (non-Apple) and S5L8900
A similar controller is present, called simply the FMC. It has no code sequencing functionality.
On the S5L8900 the built-in CalmRISC16e core that's part of the ADM (Audio DSP Module) is used as a code sequencer in iOS.