PIC32MX Memory Organization Overview

Last modified by Microchip on 2023/11/09 09:00

memory overview v2 diagramThe PIC32MX family of microcontrollers provides 4 GB of unified, virtual memory address space. There are several features of this memory system that are distinct, as compared to other PIC® microcontrollers (MCUs):

  • Unified Address Space: Instructions and data share the same memory space.
    • "C-programming friendly" - no need for special rom or psv pointer declarations.
    • Although the address space is unified, PIC32MX MCUs contain multiple bus interfaces to allow concurrent instruction and data access, thus, implementing a Harvard style hardware bus architecture, similar to existing 8-bit and16-bit PIC MCUs.
  • Virtual Memory Addressing
    • All MIPS-based CPUs implement two address spaces: a virtual address space, consisting of all the addresses that can be used in a program and a physical address space, consisting of all the addresses that can be sent out on the address bus. Virtual addresses are mapped (translated) to physical addresses by the Memory Management Unit (MMU).
  • Multi-Layer System Bus

To Summarize, addresses in the PIC32MX are:

  • issued as virtual addresses by the MIPS® core, then
  • mapped into physical addresses by the MIPS MMU, then
  • mapped into a bus address via the system bus matrix, and finally
  • used to select the appropriate peripheral or location in data SRAM.

Other key features of PIC32MX memory organization include the following:

  • 32-bit native data width
  • Separate User and Kernel mode address spaces
  • Flexible program Flash memory partitioning
  • Flexible data RAM partitioning for data and program space
  • Separate boot Flash memory for protected code
  • Robust bus-exception handling to intercept runaway code
  • Simple memory mapping with Fixed Mapping Translation (FMT) unit
  • Cacheable and non-cacheable address regions

Please refer to Section 3. Memory Organization for detailed coverage of the memory organization and configuration.