PIF-NUS

From N64brew Wiki
Revision as of 12:34, 28 March 2022 by Rasky (talk | contribs)
Jump to navigation Jump to search

The PIF-NUS (or PIF, or PIF(P)-NUS on PAL) manages multiple critical functions of the N64 console. It is a physical microchip found on the console's motherboard. It is not clear whether SGI or Nintendo intended this to stand for "Peripheral InterFace" or not. While the naming is unintuitive, the Peripheral (or Parallel) Interface is used to read/write to the game ROM and devices like the 64DD; whereas, the PIF handles the following:

  • Console startup and piracy protections
    • Stores the first 2 stages of the Initial Program Load (IPL) that is executed by the VR4300 CPU
  • Console reset button to avoid corrupting save game data
  • Controller and EEPROM read/write via JoyBus protocol

Console startup

  1. PIF holds all of the console components in reset mode, listening for cartridge CIC
  2. Cartridge sends 4 bits (nibble) including region encoding
  3. Cartridge sends 4 bit encrypted seed value
  4. Cartridge sends 4 bit checksum
  5. PIF checks that these are the expected values
    1. If the values don't match (same scenario if no cartridge is inserted)
      1. The user would generally reset using the button or power off
      2. Remove/Re-insert cartridge (or change games)
      3. Power on (go to step #1)
  6. PIF writes the encrypted seed value to memory address 0xBFC0'07E4
  7. PIF releases the reset pin for the whole console
    1. The PIF (console) and CIC (cartridge) communication continues as long as the console is powered on
    2. If there is ever a failure in the data exchange the console will be reset.
  8. VR4300 requests RAM address 0xBFC0'0000 from the Memory Management Unit inside the RCP
  9. IPL1: The MMU then loads the MIPS code from a storage area of the PIF chip
    1. These instructions are executed directly in this very slow manner.
    2. Thankfully IPL1 is only 52 instructions + some looping
    3. Some really basic hardware initialization
    4. Copy IPL2 to the RSP IMEM address range
  10. IPL 2 is executed by the VR4300 but reading the instructions from the RSP's IMEM
    1. More general hardware initialization
    2. If it's determined to be a 64DD disk it will jump to 0xA600'0000
    3. Load IPL3 from the cartridge into the RSP's DMEM
    4. The IPL3 code is CRC checked
    5. Set 0xBFC0'0000 range to "invisible"
    6. Jump to RSP DMEM to execute IPL3
  11. IPL3 is executed by the VR4300 but reading the instructions from the RSP's DMEM
    1. Initialize RDRAM
    2. Depending on reset type
      1. Power On: Invalidate VR4300 ICache & DCache
      2. Reset : Writeback VR4300 ICache & DCache
    3. Move IPL3 execution from DMEM to RDRAM
    4. DMA 1 MB of Game code to RDRAM
    5. Authenticate 1 MB of Game Program
    6. Reset RSP
    7. Clear Interrupts
    8. Clear IPL3 from DMEM
    9. Clear IPL2 from IMEM
    10. Jump to Game code in RDRAM

Console Reset

The reset process is driven by the PIF, which is connected to the physical reset button. The actual reset is done via a NMI to VR4300 which resets it by starting again the full boot process, but it is important to notice that RCP is not reset in any way. The boot code expects the RCP to be idle when the boot is initiated and is not guaranteed to work if the RCP is active in any way (DMAs in progress, RDP drawing triangles, RSP executing code, etc.), which means that it is up to the VR300 to stop issuing commands to the RCP and putting it in idle state before the reset is executed. To do so, VR4300 is given a forewarn that a reset is incoming via an interrupt (aptly called "pre-NMI") and is given grace time of 500ms before the actual NMI arrives.

This is the full sequence:

  1. User presses Console Reset button
  2. PIF reads the button state
  3. PIF toggles VR4300 Interrupt 2 (INT2) also known as "pre-NMI".
    1. This is the time and opportunity for the game to finish saving game data and stop issuing commands to RCP to avoid graphics/audio corruption and/or a hard freeze.
  4. PIF sends the RESET command to CIC (command 0b11)
  5. CIC waits for 500ms (grace time)
  6. CIC acknowledges the RESET command to PIF by writing a 0 bit.
  7. PIF toggles VR4300 Non-Maskable Interrupt (NMI) which resets it.
    1. PIF also unlocks the internal PIF ROM so that the boot process can start executing IPL1.

Controller and EEPROM communication

In addition to managing the Joybus Protocol for connected hardware like controllers and connected accessory PAKs

Sharp SM5 4-bit Microcontrollers

The PIF and CIC (inside the cartridge) are both custom versions of Sharp branded SM5 4-bit microcontrollers. These microcontrollers were also used in the Game & Watch handheld games, so Nintendo already had developers that were familiar with them. While the core functionality of the PIF and CIC are generally understood, the microcontroller model is custom and therefore not well known.

There has been some effort to reverse engineer the PIF and CIC communication to ease the process for creating compatible flash carts. At least 2 projects went through the time effort and money to decap the chips and view the internals of to better understand what they are doing.

CIC

Disclaimer: All of the CIC actions described below have been done successfully as part of a University project. Some of the details are missing whether it was to avoid encouraging piracy, simply not required for the core of the paper or lost in the language translation (authors live in Germany) is unknown.

CIC decap pins labeled
CIC decap pins labeled
CIC/IPL variants
Variant Used in Real Entrypoint Comment
5101 Aleck 64 titles u32@0x08 - 0x100000
6101 Starfox 64 0x80000480
  • Entrypoint is hard-coded to 0x80000480 whatever the ROM header says.
7102 Lylat wars 0x80000480
  • Identical to 6102 except that it hardcode entrypoint to 0x80000480 whatever the ROM header says.
6102 / 7101 Most titles u32@0x08
  • Identical IPL between NTSC (6102) and PAL (7101)
6103 / 7103 Banjo-Kazooie, Diddy Kong Racing, ... u32@0x08 - 0x100000
  • Identical IPL between NTSC (6103) and PAL (7103)
6105 / 7105 Banjo-Tooie, Perfect Dark, ... u32@0x08
  • Identical IPL between NTSC (6105) and PAL (7105)
  • More complex protection scheme which involves the RSP
6106 / 7106 F-ZeroX, Yoshi's Story, ... u32@0x08 - 0x200000
  • Identical IPL between NTSC (6106) and PAL (7106)
  • Has IPL3_part2 ciphered
  • No junk byte at the end
  • (should have been called 6104, but "4" is the "unlucky" number, so it was renamed to 6106.)
5167 64DD ROM conversion u32@0x08 if u16@0x16 != 0

u32@0x101c if u16@0x16 == 0

8303 64DD IPL Retail (J) u32@0x08
  • Longer game checksum (6xu32)
8401 64DD IPL Dev (J)
8501 ? 64DD IPL Retail (U)
CIC Pinout (16 Pin DIP Package)
N64 Function SM5 Function Number Number SM5 Function N64 Function
VDD VDD Pin 1 Pin 16 VDD VDD
P5:0 Pin 2 Pin 15 P2:0 D_OUT
P5:1 Pin 3 Pin 14 P2:1 D_IN
P5:2 Pin 4 Pin 13 P2:2 GND
P5:3 Pin 5 Pin 12 P2:3
GND TS:0 Pin 6 Pin 11 CLK CLK
GND TS:1 Pin 7 Pin 10 TIO
GND GND Pin 8 Pin 9 Reset !RESET

The test modes of the CIC are available on most (all?) retail cartridges.

To Enable Test Mode(s)

Pulling TS:0 and/or TS:1 high before power on will place the SM5 controller in one of 3 test modes. (Which test modes and which pin states are unknown) It's also unclear if you can change between test modes while the unit is powered on.

The fourth state is standard usage with TS:0 and TS:1 tied to ground.

It's unknown how slowly you can clock the CIC.

In Test Mode

Which mode is still unclear but the following functionality is available.

Arbitrary Code Execution

Instructions can be set 1 nibble at a time on Port 5 pins, most instructions are 1 byte long so they must be entered 1 nibble at a time then toggle the clock line.

Halt Instruction

The Halt instruction is encoded as 0x77 which is nice because it doesn't matter which nibble you send first. This instruction also has a nice benefit of causing a clear external change, the TIO line defaults to the Clock signal but after the Halt instruction it stops outputting a clock signal.

Stop Instruction

The Stop instruction is encoded as 0x76 which will assist in determining if the high or low nibble should be input first. This instruction also stops the TIO clock upon execution, so we have a clear external indication of success.

Output Data

Port 2 of the CIC can be used to output either the AREG register or the Program Counter (PC), it's unclear at this time if the difference is achieved with different test modes or by modifying internal configuration registers.

NOTE: On power up Port 2 is configured for Input, an internal configuration register must be modified to make it output.

Load Constant into Accumulator LDX

The LDX instuction can be used to populate the AREG with a known value that can be checked on Port 2

Dumping the CIC code

This process is very confusing so it may take some experimentation to work out the exact steps and details, the original document tries to explain but it feels like some details are missing.

Jump Instructions are 2 bytes, the first nibble is the instruction and the following 12 bits are the destination address.

Being in test mode seems to have a side effect on this instruction, inputting only the Jump instruction followed by a zero nibble, the second byte is loaded from the ROM, which is an instruction but is treated as data. The Jump instruction is then executed and the PC can be viewed on Port 2, as well

PIF

PIF Decapped with Pins numbered
PIF Decapped with Pins numbered

The PIF handles a lot of very core functions in the console. While the PIF chip is clearly a custom part, it appears to be heavily based on the SM5K (4/5/6) series. The instruction set and features match closely.

PIF Pinout (28 Pin SOP Package)
N64 Function SM5 Function Pin Pin SM5 Fuction N64 Function Direction
PIF Clock Pin 1 Pin 28 VDD VDD Power
RC Cold Pin 2 Pin 27 Reset Button Input
CIC D Out Pin 3 Pin 26 N/C (No Connect)
RC Rand Pin 4 Pin 25 INT 2 VR4300 CPU Output
CIC D In Pin 5 Pin 24 EEPROM Data I/O
/Cold Pin 6 Pin 23 EEPROM Data I/O
NMI VR4300 CPU Pin 7 Pin 22 Player 4 Controller I/O
Power Good Pin 8 Pin 21 Player 4 Enable Output
PIF CLK Input from RSP Pin 9 Pin 20 Player 3 Controller I/O
Input Test 0 ?? Pin 10 Pin 19 Player 3 Enable Output
PIF ADR from RSP Pin 11 Pin 18 Player 2 Controller I/O
Input Test 1 ?? Pin 12 Pin 17 Player 2 Enable Output
PIF DATA from RSP Pin 13 Pin 16 Player 1 Controller I/O
Power GND GND Pin 14 Pin 15 Player 1 Enable Output

References

https://sites.google.com/site/consoleprotocols/home/techinfo/lowlevel/pif12

https://code.google.com/archive/p/mupen64plus/wikis/SoftResetNotes.wiki

https://github.com/jago85/UltraCIC_C/blob/master/cic_c.c

https://github.com/hcs64/pif_rom_dumper