
Added initial support Xilinx Embedded Software. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
246 lines
7.4 KiB
C
Executable file
246 lines
7.4 KiB
C
Executable file
/******************************************************************************
|
|
*
|
|
* Copyright (C) 2012 - 2014 Xilinx, Inc. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* Use of the Software is limited solely to applications:
|
|
* (a) running on a Xilinx device, or
|
|
* (b) that interact with a Xilinx device through a bus or interconnect.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* XILINX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
|
* OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
* Except as contained in this notice, the name of the Xilinx shall not be used
|
|
* in advertising or otherwise to promote the sale, use or other dealings in
|
|
* this Software without prior written authorization from Xilinx.
|
|
*
|
|
******************************************************************************/
|
|
/****************************************************************************/
|
|
/**
|
|
*
|
|
* @file xaxipmon_polled_example.c
|
|
*
|
|
* This file contains a design example showing how to use the driver APIs of the
|
|
* AXI Performance Monitor driver in poll mode.
|
|
*
|
|
*
|
|
* @note
|
|
*
|
|
* Global Clock Counter and Metric Counters are enabled. The Application
|
|
* for which Metrics need to be computed should be run and then the Metrics
|
|
* collected.
|
|
*
|
|
*
|
|
* <pre>
|
|
*
|
|
* MODIFICATION HISTORY:
|
|
*
|
|
* Ver Who Date Changes
|
|
* ----- ----- -------- -----------------------------------------------------
|
|
* 1.00a bss 02/29/12 First release
|
|
* 2.00a bss 06/23/12 Updated to support v2_00a version of IP.
|
|
* 3.00a bss 09/03/12 Deleted XAxiPmon_SetAgent API to support
|
|
* v2_01a version of IP.
|
|
* 3.01a bss 10/25/12 Deleted XAxiPmon_EnableCountersData API to support
|
|
* new version of IP.
|
|
* </pre>
|
|
*
|
|
*****************************************************************************/
|
|
|
|
/***************************** Include Files ********************************/
|
|
|
|
#include "xaxipmon.h"
|
|
#include "xparameters.h"
|
|
#include "xstatus.h"
|
|
#include "stdio.h"
|
|
|
|
/************************** Constant Definitions ****************************/
|
|
|
|
/*
|
|
* The following constants map to the XPAR parameters created in the
|
|
* xparameters.h file. They are defined here such that a user can easily
|
|
* change all the needed parameters in one place.
|
|
*/
|
|
#define AXIPMON_DEVICE_ID XPAR_AXIPMON_0_DEVICE_ID
|
|
|
|
|
|
/**************************** Type Definitions ******************************/
|
|
|
|
|
|
/***************** Macros (Inline Functions) Definitions ********************/
|
|
|
|
/************************** Function Prototypes *****************************/
|
|
|
|
int AxiPmonPolledExample(u16 AxiPmonDeviceId, u32 *Metrics, u32 *ClkCntHigh,
|
|
u32 *ClkCntLow);
|
|
|
|
/************************** Variable Definitions ****************************/
|
|
|
|
static XAxiPmon AxiPmonInst; /* System Monitor driver instance */
|
|
|
|
/****************************************************************************/
|
|
/**
|
|
*
|
|
* Main function that invokes the example in this file.
|
|
*
|
|
* @param None.
|
|
*
|
|
* @return
|
|
* - XST_SUCCESS if the example has completed successfully.
|
|
* - XST_FAILURE if the example has failed.
|
|
*
|
|
* @note None.
|
|
*
|
|
*****************************************************************************/
|
|
int main(void)
|
|
{
|
|
|
|
int Status;
|
|
u32 Metrics;
|
|
u32 ClkCntHigh = 0x0;
|
|
u32 ClkCntLow = 0x0;
|
|
|
|
/*
|
|
* Run the AxiPmonitor polled example, specify the Device ID that is
|
|
* generated in xparameters.h .
|
|
*/
|
|
Status = AxiPmonPolledExample(AXIPMON_DEVICE_ID, &Metrics, &ClkCntHigh,
|
|
&ClkCntLow);
|
|
|
|
if (Status != XST_SUCCESS) {
|
|
xil_printf("AXI Performance Monitor Polled example failed\r\n");
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
|
|
xil_printf("AXI Performance Monitor Polled example passed\r\n");
|
|
return XST_SUCCESS;
|
|
}
|
|
|
|
|
|
/****************************************************************************/
|
|
/**
|
|
*
|
|
* This function runs a test on the AXI Performance Monitor device using the
|
|
* driver APIs.
|
|
* This function does the following tasks:
|
|
* - Initiate the AXI Performance Monitor device driver instance
|
|
* - Run self-test on the device
|
|
* - Sets Metric Selector to select Slave Agent Number 1 and first set of
|
|
* Metrics
|
|
* - Enables Global Clock Counter and Metric Counters
|
|
* - Calls Application for which Metrics need to be computed
|
|
* - Disables Global Clock Counter and Metric Counters
|
|
* - Read Global Clock Counter and Metric Counter 0
|
|
*
|
|
* @param AxiPmonDeviceId is the XPAR_<AXIPMON_instance>_DEVICE_ID value
|
|
* from xparameters.h.
|
|
* @param Metrics is an user referece variable in which computed metrics
|
|
* will be filled
|
|
* @param ClkCntHigh is an user referece variable in which Higher 64 bits
|
|
* of Global Clock Counter are filled
|
|
* @param ClkCntLow is an user referece variable in which Lower 64 bits
|
|
* of Global Clock Counter are filled
|
|
*
|
|
* @return
|
|
* - XST_SUCCESS if the example has completed successfully.
|
|
* - XST_FAILURE if the example has failed.
|
|
*
|
|
* @note None
|
|
*
|
|
****************************************************************************/
|
|
int AxiPmonPolledExample(u16 AxiPmonDeviceId, u32 *Metrics, u32 *ClkCntHigh,
|
|
u32 *ClkCntLow)
|
|
{
|
|
int Status;
|
|
XAxiPmon_Config *ConfigPtr;
|
|
u8 SlotId = 0x0;
|
|
u16 Range2 = 0x10; /* Range 2 - 16 */
|
|
u16 Range1 = 0x08; /* Range 1 - 8 */
|
|
XAxiPmon *AxiPmonInstPtr = &AxiPmonInst;
|
|
|
|
/*
|
|
* Initialize the AxiPmon driver.
|
|
*/
|
|
ConfigPtr = XAxiPmon_LookupConfig(AxiPmonDeviceId);
|
|
if (ConfigPtr == NULL) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
XAxiPmon_CfgInitialize(AxiPmonInstPtr, ConfigPtr,
|
|
ConfigPtr->BaseAddress);
|
|
|
|
/*
|
|
* Self Test the System Monitor/ADC device
|
|
*/
|
|
Status = XAxiPmon_SelfTest(AxiPmonInstPtr);
|
|
if (Status != XST_SUCCESS) {
|
|
return XST_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* Select Agent and required set of Metrics for a Counter.
|
|
* We can select another agent,Metrics for another counter by
|
|
* calling below function again.
|
|
*/
|
|
|
|
XAxiPmon_SetMetrics(AxiPmonInstPtr, SlotId, XAPM_METRIC_SET_0,
|
|
XAPM_METRIC_COUNTER_0);
|
|
|
|
/*
|
|
* Set Incrementer Ranges
|
|
*/
|
|
XAxiPmon_SetIncrementerRange(AxiPmonInstPtr, XAPM_INCREMENTER_0,
|
|
Range2, Range1);
|
|
/*
|
|
* Enable Metric Counters.
|
|
*/
|
|
XAxiPmon_EnableMetricsCounter(AxiPmonInstPtr);
|
|
|
|
/*
|
|
* Enable Global Clock Counter Register.
|
|
*/
|
|
XAxiPmon_EnableGlobalClkCounter(AxiPmonInstPtr);
|
|
|
|
/*
|
|
* Application for which Metrics has to be computed should be
|
|
* called here
|
|
*/
|
|
|
|
/*
|
|
* Disable Global Clock Counter Register.
|
|
*/
|
|
|
|
XAxiPmon_DisableGlobalClkCounter(AxiPmonInstPtr);
|
|
|
|
/*
|
|
* Disable Metric Counters.
|
|
*/
|
|
XAxiPmon_DisableMetricsCounter(AxiPmonInstPtr);
|
|
|
|
/* Get Metric Counter 0 */
|
|
*Metrics = XAxiPmon_GetMetricCounter(AxiPmonInstPtr,
|
|
XAPM_METRIC_COUNTER_0);
|
|
|
|
/* Get Global Clock Cycles Count in ClkCntHigh,ClkCntLow */
|
|
XAxiPmon_GetGlobalClkCounter(AxiPmonInstPtr, ClkCntHigh, ClkCntLow);
|
|
|
|
|
|
return XST_SUCCESS;
|
|
|
|
}
|
|
|