102 lines
3.5 KiB
C
102 lines
3.5 KiB
C
![]() |
/******************************************************************************
|
||
|
*
|
||
|
* 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 pcap.h
|
||
|
*
|
||
|
* This file contains the interface for intiializing and accessing the PCAP
|
||
|
*
|
||
|
*
|
||
|
* <pre>
|
||
|
* MODIFICATION HISTORY:
|
||
|
*
|
||
|
* Ver Who Date Changes
|
||
|
* ----- ---- -------- -------------------------------------------------------
|
||
|
* 1.00a ecm 02/10/10 Initial release
|
||
|
* 2.00a mb 16/08/12 Added the macros and function prototypes
|
||
|
* </pre>
|
||
|
*
|
||
|
* @note
|
||
|
*
|
||
|
******************************************************************************/
|
||
|
#ifndef ___PCAP_H___
|
||
|
#define ___PCAP_H___
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/***************************** Include Files *********************************/
|
||
|
#include "xdevcfg.h"
|
||
|
|
||
|
/************************** Function Prototypes ******************************/
|
||
|
|
||
|
|
||
|
/* Multiboot register offset mask */
|
||
|
#define PCAP_MBOOT_REG_REBOOT_OFFSET_MASK 0x1FFF
|
||
|
#define PCAP_CTRL_PCFG_AES_FUSE_EFUSE_MASK 0x1000
|
||
|
|
||
|
#define PCAP_LAST_TRANSFER 1
|
||
|
#define MAX_COUNT 1000000000
|
||
|
#define LVL_PL_PS 0x0000000F
|
||
|
#define LVL_PS_PL 0x0000000A
|
||
|
|
||
|
/* Fix for #672779 */
|
||
|
#define FSBL_XDCFG_IXR_ERROR_FLAGS_MASK (XDCFG_IXR_AXI_WERR_MASK | \
|
||
|
XDCFG_IXR_AXI_RTO_MASK | \
|
||
|
XDCFG_IXR_AXI_RERR_MASK | \
|
||
|
XDCFG_IXR_RX_FIFO_OV_MASK | \
|
||
|
XDCFG_IXR_DMA_CMD_ERR_MASK |\
|
||
|
XDCFG_IXR_DMA_Q_OV_MASK | \
|
||
|
XDCFG_IXR_P2D_LEN_ERR_MASK |\
|
||
|
XDCFG_IXR_PCFG_HMAC_ERR_MASK)
|
||
|
|
||
|
int InitPcap(void);
|
||
|
void PcapDumpRegisters(void);
|
||
|
u32 ClearPcapStatus(void);
|
||
|
void FabricInit(void);
|
||
|
int XDcfgPollDone(u32 MaskValue, u32 MaxCount);
|
||
|
u32 PcapLoadPartition(u32 *SourceData, u32 *DestinationData, u32 SourceLength,
|
||
|
u32 DestinationLength, u32 Flags);
|
||
|
u32 PcapDataTransfer(u32 *SourceData, u32 *DestinationData, u32 SourceLength,
|
||
|
u32 DestinationLength, u32 Flags);
|
||
|
/************************** Variable Definitions *****************************/
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif /* ___PCAP_H___ */
|
||
|
|