
Added initial support Xilinx Embedded Software. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
134 lines
4.9 KiB
C
Executable file
134 lines
4.9 KiB
C
Executable file
/******************************************************************************
|
|
*
|
|
* Copyright (C) 2002 - 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 xuartns550_i.h
|
|
*
|
|
* This header file contains internal identifiers, which are those shared
|
|
* between the files of the driver. It is intended for internal use only.
|
|
*
|
|
* <pre>
|
|
* MODIFICATION HISTORY:
|
|
*
|
|
* Ver Who Date Changes
|
|
* ----- ---- -------- -----------------------------------------------
|
|
* 1.00a ecm 08/16/01 First release
|
|
* 1.00b jhl 03/11/02 Repartitioned driver for smaller files.
|
|
* 1.11a sv 03/20/07 Updated to use the new coding guidelines.
|
|
* 2.00a ktn 10/20/09 Converted all register accesses to 32 bit access.
|
|
* Updated to use HAL Processor APIs. _m is removed from the
|
|
* name of all the macro definitions. XUartNs550_mClearStats
|
|
* macro is removed, XUartNs550_ClearStats function should be
|
|
* used in its place.
|
|
* </pre>
|
|
*
|
|
******************************************************************************/
|
|
|
|
#ifndef XUARTNS550_I_H /* prevent circular inclusions */
|
|
#define XUARTNS550_I_H /* by using protection macros */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/***************************** Include Files *********************************/
|
|
|
|
#include "xuartns550.h"
|
|
|
|
/************************** Constant Definitions *****************************/
|
|
|
|
|
|
/************************** Constant Definitions *****************************/
|
|
|
|
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
|
|
/***************** Macros (Inline Functions) Definitions *********************/
|
|
|
|
|
|
/****************************************************************************
|
|
*
|
|
* This macro updates the status based upon a specified line status register
|
|
* value. The stats that are updated are based upon bits in this register. It
|
|
* also keeps the last errors instance variable updated. The purpose of this
|
|
* macro is to allow common processing between the modules of the component
|
|
* with less overhead than a function in the required module.
|
|
*
|
|
* @param InstancePtr is a pointer to the XUartNs550 instance .
|
|
* @param CurrentLsr contains the Line Status Register value to
|
|
* be used for the update.
|
|
*
|
|
* @return None.
|
|
*
|
|
* @note C-Style signature:
|
|
*
|
|
* void XUartNs550_UpdateStats(XUartNs550 *InstancePtr, u8 CurrentLsr)
|
|
*
|
|
*****************************************************************************/
|
|
#define XUartNs550_UpdateStats(InstancePtr, CurrentLsr) \
|
|
{ \
|
|
InstancePtr->LastErrors |= CurrentLsr; \
|
|
\
|
|
if (CurrentLsr & XUN_LSR_OVERRUN_ERROR) { \
|
|
InstancePtr->Stats.ReceiveOverrunErrors++; \
|
|
} \
|
|
if (CurrentLsr & XUN_LSR_PARITY_ERROR) { \
|
|
InstancePtr->Stats.ReceiveParityErrors++; \
|
|
} \
|
|
if (CurrentLsr & XUN_LSR_FRAMING_ERROR) { \
|
|
InstancePtr->Stats.ReceiveFramingErrors++; \
|
|
} \
|
|
if (CurrentLsr & XUN_LSR_BREAK_INT) { \
|
|
InstancePtr->Stats.ReceiveBreakDetected++; \
|
|
} \
|
|
}
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
|
|
int XUartNs550_SetBaudRate(XUartNs550 *InstancePtr, u32 BaudRate);
|
|
|
|
unsigned int XUartNs550_SendBuffer(XUartNs550 *InstancePtr);
|
|
|
|
unsigned int XUartNs550_ReceiveBuffer(XUartNs550 *InstancePtr);
|
|
|
|
/************************** Variable Definitions ****************************/
|
|
|
|
extern XUartNs550_Config XUartNs550_ConfigTable[];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* end of protection macro */
|
|
|