Initial Program Loader
From PSPWiki
There are two separate ipl's, the pre-ipl and the ipl. The pre-ipl is on the main CPU and cannot be reflashed. The pre-ipl loads the ipl off the nand chip or the memory stick (see Pandora's Battery).
Contents |
Pre-Ipl
The pre-ipl loads and decrypts the encrypted IPL by sending it to the psp's hardware decryption chip (kirk).
Part 1 (the loader)
Part1 copies the Part2 of the pre-ipl to the CPU's scratchpad RAM. This is mapped to physical address 0x00010000. After the part1 pre-ipl copy's the second part of the pre-ipl to 0x00010000 it jumps to this address.
Part 2 (the payload)
This part of the pre-ipl inits the nand hardware and reads the IPL nand-block-table or the memory stick if the battery's serial number is set to 0xFFFFFFFF. This table is located at the 4th physical block of the nand.
To be finished.

