
Added initial support Xilinx Embedded Software. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
363 lines
12 KiB
C
Executable file
363 lines
12 KiB
C
Executable file
/******************************************************************************
|
|
*
|
|
* Copyright (C) 2001 - 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 xspi_l.h
|
|
*
|
|
* This header file contains identifiers, Register Definitions and basic driver
|
|
* functions (or macros) that can be used to access the device.
|
|
* Refer xspi.h for information about the driver.
|
|
*
|
|
* <pre>
|
|
* MODIFICATION HISTORY:
|
|
*
|
|
* Ver Who Date Changes
|
|
* ----- ---- -------- -----------------------------------------------
|
|
* 1.00b rpm 04/24/02 First release
|
|
* 1.11a wgr 03/22/07 Converted to new coding style.
|
|
* 1.11a sv 02/22/08 Added the definition of LSB-MSB first option.
|
|
* 1.12a sv 03/28/08 Removed macros in _l.h file, moved the
|
|
* interrupt register definitions from _i.h to _l.h.
|
|
* 2.00a sv 07/30/08 Removed macros in _l.h file, moved the
|
|
* interrupt register definitions from _i.h to _l.h.
|
|
* 3.00a ktn 10/28/09 Updated all the register accesses as 32 bit access.
|
|
* Added XSpi_ReadReg and XSpi_WriteReg macros.
|
|
* 3.01a sdm 04/23/10 Added definitions for the new slave mode interrupts.
|
|
* 3.02a sdm 03/30/11 Added definitions for the new register bits in axi_qspi.
|
|
* 3.04a bss 03/21/12 Added XIP Mode Register masks
|
|
*
|
|
* </pre>
|
|
*
|
|
******************************************************************************/
|
|
|
|
#ifndef XSPI_L_H /* prevent circular inclusions */
|
|
#define XSPI_L_H /* by using protection macros */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/***************************** Include Files *********************************/
|
|
|
|
#include "xil_types.h"
|
|
#include "xil_assert.h"
|
|
#include "xil_io.h"
|
|
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
|
|
/***************** Macros (Inline Functions) Definitions *********************/
|
|
|
|
#define XSpi_In32 Xil_In32
|
|
#define XSpi_Out32 Xil_Out32
|
|
|
|
/****************************************************************************/
|
|
/**
|
|
*
|
|
* Read from the specified Spi device register.
|
|
*
|
|
* @param BaseAddress contains the base address of the device.
|
|
* @param RegOffset contains the offset from the 1st register of the
|
|
* device to select the specific register.
|
|
*
|
|
* @return The value read from the register.
|
|
*
|
|
* @note C-Style signature:
|
|
* u32 XSpi_ReadReg(u32 BaseAddress, u32 RegOffset);
|
|
*
|
|
******************************************************************************/
|
|
#define XSpi_ReadReg(BaseAddress, RegOffset) \
|
|
XSpi_In32((BaseAddress) + (RegOffset))
|
|
|
|
/***************************************************************************/
|
|
/**
|
|
*
|
|
* Write to the specified Spi device register.
|
|
*
|
|
* @param BaseAddress contains the base address of the device.
|
|
* @param RegOffset contains the offset from the 1st register of the
|
|
* device to select the specific register.
|
|
* @param RegisterValue is the value to be written to the register.
|
|
*
|
|
* @return None.
|
|
*
|
|
* @note C-Style signature:
|
|
* void XSpi_WriteReg(u32 BaseAddress, u32 RegOffset,
|
|
* u32 RegisterValue);
|
|
******************************************************************************/
|
|
#define XSpi_WriteReg(BaseAddress, RegOffset, RegisterValue) \
|
|
XSpi_Out32((BaseAddress) + (RegOffset), (RegisterValue))
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
|
|
/************************** Constant Definitions *****************************/
|
|
|
|
/**
|
|
* XSPI register offsets
|
|
*/
|
|
/** @name Register Map
|
|
*
|
|
* Register offsets for the XSpi device.
|
|
* @{
|
|
*/
|
|
#define XSP_DGIER_OFFSET 0x1C /**< Global Intr Enable Reg */
|
|
#define XSP_IISR_OFFSET 0x20 /**< Interrupt status Reg */
|
|
#define XSP_IIER_OFFSET 0x28 /**< Interrupt Enable Reg */
|
|
#define XSP_SRR_OFFSET 0x40 /**< Software Reset register */
|
|
#define XSP_CR_OFFSET 0x60 /**< Control register */
|
|
#define XSP_SR_OFFSET 0x64 /**< Status Register */
|
|
#define XSP_DTR_OFFSET 0x68 /**< Data transmit */
|
|
#define XSP_DRR_OFFSET 0x6C /**< Data receive */
|
|
#define XSP_SSR_OFFSET 0x70 /**< 32-bit slave select */
|
|
#define XSP_TFO_OFFSET 0x74 /**< Tx FIFO occupancy */
|
|
#define XSP_RFO_OFFSET 0x78 /**< Rx FIFO occupancy */
|
|
|
|
/* @} */
|
|
|
|
|
|
/**
|
|
* @name Global Interrupt Enable Register (GIER) mask(s)
|
|
* @{
|
|
*/
|
|
#define XSP_GINTR_ENABLE_MASK 0x80000000 /**< Global interrupt enable */
|
|
|
|
/* @} */
|
|
|
|
|
|
/** @name SPI Device Interrupt Status/Enable Registers
|
|
*
|
|
* <b> Interrupt Status Register (IPISR) </b>
|
|
*
|
|
* This register holds the interrupt status flags for the Spi device.
|
|
*
|
|
* <b> Interrupt Enable Register (IPIER) </b>
|
|
*
|
|
* This register is used to enable interrupt sources for the Spi device.
|
|
* Writing a '1' to a bit in this register enables the corresponding Interrupt.
|
|
* Writing a '0' to a bit in this register disables the corresponding Interrupt.
|
|
*
|
|
* ISR/IER registers have the same bit definitions and are only defined once.
|
|
* @{
|
|
*/
|
|
#define XSP_INTR_MODE_FAULT_MASK 0x00000001 /**< Mode fault error */
|
|
#define XSP_INTR_SLAVE_MODE_FAULT_MASK 0x00000002 /**< Selected as slave while
|
|
* disabled */
|
|
#define XSP_INTR_TX_EMPTY_MASK 0x00000004 /**< DTR/TxFIFO is empty */
|
|
#define XSP_INTR_TX_UNDERRUN_MASK 0x00000008 /**< DTR/TxFIFO underrun */
|
|
#define XSP_INTR_RX_FULL_MASK 0x00000010 /**< DRR/RxFIFO is full */
|
|
#define XSP_INTR_RX_OVERRUN_MASK 0x00000020 /**< DRR/RxFIFO overrun */
|
|
#define XSP_INTR_TX_HALF_EMPTY_MASK 0x00000040 /**< TxFIFO is half empty */
|
|
#define XSP_INTR_SLAVE_MODE_MASK 0x00000080 /**< Slave select mode */
|
|
#define XSP_INTR_RX_NOT_EMPTY_MASK 0x00000100 /**< RxFIFO not empty */
|
|
|
|
/**
|
|
* The following bits are available only in axi_qspi Interrupt Status and
|
|
* Interrupt Enable registers.
|
|
*/
|
|
#define XSP_INTR_CPOL_CPHA_ERR_MASK 0x00000200 /**< CPOL/CPHA error */
|
|
#define XSP_INTR_SLAVE_MODE_ERR_MASK 0x00000400 /**< Slave mode error */
|
|
#define XSP_INTR_MSB_ERR_MASK 0x00000800 /**< MSB Error */
|
|
#define XSP_INTR_LOOP_BACK_ERR_MASK 0x00001000 /**< Loop back error */
|
|
#define XSP_INTR_CMD_ERR_MASK 0x00002000 /**< 'Invalid cmd' error */
|
|
|
|
/**
|
|
* Mask for all the interrupts in the IP Interrupt Registers.
|
|
*/
|
|
#define XSP_INTR_ALL (XSP_INTR_MODE_FAULT_MASK | \
|
|
XSP_INTR_SLAVE_MODE_FAULT_MASK | \
|
|
XSP_INTR_TX_EMPTY_MASK | \
|
|
XSP_INTR_TX_UNDERRUN_MASK | \
|
|
XSP_INTR_RX_FULL_MASK | \
|
|
XSP_INTR_TX_HALF_EMPTY_MASK | \
|
|
XSP_INTR_RX_OVERRUN_MASK | \
|
|
XSP_INTR_SLAVE_MODE_MASK | \
|
|
XSP_INTR_RX_NOT_EMPTY_MASK | \
|
|
XSP_INTR_CMD_ERR_MASK | \
|
|
XSP_INTR_LOOP_BACK_ERR_MASK | \
|
|
XSP_INTR_MSB_ERR_MASK | \
|
|
XSP_INTR_SLAVE_MODE_ERR_MASK | \
|
|
XSP_INTR_CPOL_CPHA_ERR_MASK)
|
|
|
|
/**
|
|
* The interrupts we want at startup. We add the TX_EMPTY interrupt in later
|
|
* when we're getting ready to transfer data. The others we don't care
|
|
* about for now.
|
|
*/
|
|
#define XSP_INTR_DFT_MASK (XSP_INTR_MODE_FAULT_MASK | \
|
|
XSP_INTR_TX_UNDERRUN_MASK | \
|
|
XSP_INTR_RX_OVERRUN_MASK | \
|
|
XSP_INTR_SLAVE_MODE_FAULT_MASK | \
|
|
XSP_INTR_CMD_ERR_MASK)
|
|
/* @} */
|
|
|
|
/**
|
|
* SPI Software Reset Register (SRR) mask.
|
|
*/
|
|
#define XSP_SRR_RESET_MASK 0x0000000A
|
|
|
|
|
|
/** @name SPI Control Register (CR) masks
|
|
*
|
|
* @{
|
|
*/
|
|
#define XSP_CR_LOOPBACK_MASK 0x00000001 /**< Local loopback mode */
|
|
#define XSP_CR_ENABLE_MASK 0x00000002 /**< System enable */
|
|
#define XSP_CR_MASTER_MODE_MASK 0x00000004 /**< Enable master mode */
|
|
#define XSP_CR_CLK_POLARITY_MASK 0x00000008 /**< Clock polarity high
|
|
or low */
|
|
#define XSP_CR_CLK_PHASE_MASK 0x00000010 /**< Clock phase 0 or 1 */
|
|
#define XSP_CR_TXFIFO_RESET_MASK 0x00000020 /**< Reset transmit FIFO */
|
|
#define XSP_CR_RXFIFO_RESET_MASK 0x00000040 /**< Reset receive FIFO */
|
|
#define XSP_CR_MANUAL_SS_MASK 0x00000080 /**< Manual slave select
|
|
assert */
|
|
#define XSP_CR_TRANS_INHIBIT_MASK 0x00000100 /**< Master transaction
|
|
inhibit */
|
|
|
|
/**
|
|
* LSB/MSB first data format select. The default data format is MSB first.
|
|
* The LSB first data format is not available in all versions of the Xilinx Spi
|
|
* Device whereas the MSB first data format is supported by all the versions of
|
|
* the Xilinx Spi Devices. Please check the HW specification to see if this
|
|
* feature is supported or not.
|
|
*/
|
|
#define XSP_CR_LSB_MSB_FIRST_MASK 0x00000200
|
|
|
|
/* @} */
|
|
|
|
/** @name SPI Control Register (CR) masks for XIP Mode
|
|
*
|
|
* @{
|
|
*/
|
|
#define XSP_CR_XIP_CLK_PHASE_MASK 0x00000001 /**< Clock phase 0 or 1 */
|
|
#define XSP_CR_XIP_CLK_POLARITY_MASK 0x00000002 /**< Clock polarity
|
|
high or low */
|
|
|
|
/* @} */
|
|
|
|
|
|
|
|
|
|
/** @name Status Register (SR) masks
|
|
*
|
|
* @{
|
|
*/
|
|
#define XSP_SR_RX_EMPTY_MASK 0x00000001 /**< Receive Reg/FIFO is empty */
|
|
#define XSP_SR_RX_FULL_MASK 0x00000002 /**< Receive Reg/FIFO is full */
|
|
#define XSP_SR_TX_EMPTY_MASK 0x00000004 /**< Transmit Reg/FIFO is
|
|
empty */
|
|
#define XSP_SR_TX_FULL_MASK 0x00000008 /**< Transmit Reg/FIFO is full */
|
|
#define XSP_SR_MODE_FAULT_MASK 0x00000010 /**< Mode fault error */
|
|
#define XSP_SR_SLAVE_MODE_MASK 0x00000020 /**< Slave mode select */
|
|
|
|
/*
|
|
* The following bits are available only in axi_qspi Status register.
|
|
*/
|
|
#define XSP_SR_CPOL_CPHA_ERR_MASK 0x00000040 /**< CPOL/CPHA error */
|
|
#define XSP_SR_SLAVE_MODE_ERR_MASK 0x00000080 /**< Slave mode error */
|
|
#define XSP_SR_MSB_ERR_MASK 0x00000100 /**< MSB Error */
|
|
#define XSP_SR_LOOP_BACK_ERR_MASK 0x00000200 /**< Loop back error */
|
|
#define XSP_SR_CMD_ERR_MASK 0x00000400 /**< 'Invalid cmd' error */
|
|
|
|
/* @} */
|
|
|
|
/** @name Status Register (SR) masks for XIP Mode
|
|
*
|
|
* @{
|
|
*/
|
|
#define XSP_SR_XIP_RX_EMPTY_MASK 0x00000001 /**< Receive Reg/FIFO
|
|
is empty */
|
|
#define XSP_SR_XIP_RX_FULL_MASK 0x00000002 /**< Receive Reg/FIFO
|
|
is full */
|
|
#define XSP_SR_XIP_MASTER_MODF_MASK 0x00000004 /**< Receive Reg/FIFO
|
|
is full */
|
|
#define XSP_SR_XIP_CPHPL_ERROR_MASK 0x00000008 /**< Clock Phase,Clock
|
|
Polarity Error */
|
|
#define XSP_SR_XIP_AXI_ERROR_MASK 0x00000010 /**< AXI Transaction
|
|
Error */
|
|
|
|
/* @} */
|
|
|
|
|
|
/** @name SPI Transmit FIFO Occupancy (TFO) mask
|
|
*
|
|
* @{
|
|
*/
|
|
/* The binary value plus one yields the occupancy.*/
|
|
#define XSP_TFO_MASK 0x0000001F
|
|
|
|
/* @} */
|
|
|
|
/** @name SPI Receive FIFO Occupancy (RFO) mask
|
|
*
|
|
* @{
|
|
*/
|
|
/* The binary value plus one yields the occupancy.*/
|
|
#define XSP_RFO_MASK 0x0000001F
|
|
|
|
/* @} */
|
|
|
|
/** @name Data Width Definitions
|
|
*
|
|
* @{
|
|
*/
|
|
#define XSP_DATAWIDTH_BYTE 8 /**< Tx/Rx Reg is Byte Wide */
|
|
#define XSP_DATAWIDTH_HALF_WORD 16 /**< Tx/Rx Reg is Half Word (16 bit)
|
|
Wide */
|
|
#define XSP_DATAWIDTH_WORD 32 /**< Tx/Rx Reg is Word (32 bit) Wide */
|
|
|
|
/* @} */
|
|
|
|
/** @name SPI Modes
|
|
*
|
|
* The following constants define the modes in which qxi_qspi operates.
|
|
*
|
|
* @{
|
|
*/
|
|
#define XSP_STANDARD_MODE 0
|
|
#define XSP_DUAL_MODE 1
|
|
#define XSP_QUAD_MODE 2
|
|
|
|
/*@}*/
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
/***************** Macros (Inline Functions) Definitions *********************/
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
|
|
/************************** Variable Definitions *****************************/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* end of protection macro */
|