35.5.8 Bus Monitor, Performance Monitor
The MPDDRC embeds a bus monitor which collects bus transaction information from 8 MPDDRC ports. This information, such as accumulated latency (MPDDRC_MINFOx (TOTAL_LATENCY)) or number of transfers (MPDDRC_MINFOx (NB_TRANSFERS)), can be used to calculate the latency and bandwidth for each port by using a metric counter.
- Total number of write transfers
- Total number of read transfers
- Total number of read/write transfers
- Total read latencies
- Total write latencies
- Total write/read latencies
- Maximum latencies per port
The Monitor Configuration (MPDDRC_MCFGR) and Monitor Address High/Low Port x (MPDDRC_MADDRx) registers define the type of transaction collected (read, write or read/write) and the address range to monitor.
MPDDRC address mapping is from 0x3000_0000 to 0x3FFF_FFFF. To define the address range analyzed by the monitor, the address bits [28:13] are used to configure the lower and upper bounds. The lower bound can be modified by writing the field MPDDRC_MADDRx.ADDR_LOW_PORTx. The upper bound can be modified by writing the field MPDDRC_MADDRx.ADDR_HIGH_PORTx. The minimum range that can be analyzed is 8 Kbytes.
Before enabling the monitor, the address range must be defined. This space will be monitored. To enable the monitor, set MPDDRC_MCFGR.EN_MONI and MPDDRC_MCFGR.RUN to 1.
Monitor use example:
- Clear the configuration register: write 0x00000000 in MPDDRRC_MCFGR.
- Enable the monitor: write 0x00000001 in MPDDRRC_MCFGR.
- Reset the monitor: write 0x00000003 in MPDDRRC_MCFGR.
- Enable the monitor: write 0x00000001 in MPDDRRC_MCFGR.
- Define the address range in MPDDRC_MADDRx or use the default value.
- Start monitoring: write 0x00000011 in MPDDRRC_MCFGR.
- Monitoring is launched. An event can be used to stop monitoring.
- Stop profiling: write 0x00000001 in MPDDRRC_MCFGR.
- To know the number of tranfers per port, write 0x00000801 in MPDDRRC_MCFGR and read MPDDRC_MINFOx (NB_TRANSFERS).
- Latency:
(Px_TOTAL_LATENCY/(Px_TOTAL_LATENCY+Px_NB_TRANSFERS)) *100
- Bandwidth:
(Px_TOTAL_TRANSFERS/(Px_TOTAL_LATENCY+Px_NB_TRANSFERS)) *100