// ============================================================== // File generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC // Version: 2015.3 // Copyright (C) 2015 Xilinx Inc. All rights reserved. // // ============================================================== #ifndef __linux__ #include "xstatus.h" #include "xparameters.h" #include "xv_tpg.h" #ifndef XPAR_XV_TPG_NUM_INSTANCES #define XPAR_XV_TPG_NUM_INSTANCES 0 #endif extern XV_tpg_Config XV_tpg_ConfigTable[]; XV_tpg_Config *XV_tpg_LookupConfig(u16 DeviceId) { XV_tpg_Config *ConfigPtr = NULL; int Index; for (Index = 0; Index < XPAR_XV_TPG_NUM_INSTANCES; Index++) { if (XV_tpg_ConfigTable[Index].DeviceId == DeviceId) { ConfigPtr = &XV_tpg_ConfigTable[Index]; break; } } return ConfigPtr; } int XV_tpg_Initialize(XV_tpg *InstancePtr, u16 DeviceId) { XV_tpg_Config *ConfigPtr; Xil_AssertNonvoid(InstancePtr != NULL); ConfigPtr = XV_tpg_LookupConfig(DeviceId); if (ConfigPtr == NULL) { InstancePtr->IsReady = 0; return (XST_DEVICE_NOT_FOUND); } return XV_tpg_CfgInitialize(InstancePtr, ConfigPtr, ConfigPtr->BaseAddress); } #endif