⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ps2.h

📁 基于FPGA嵌入式开发实现的VGA接口
💻 H
字号:
//////////////////////////////////////////////////////////////////////////////
// Filename:          D:\EMBD\VGA/drivers/PS2_v1_00_a/src/PS2.h
// Version:           1.00.a
// Description:       PS2 Driver Header File
// Date:              Tue Jun 19 00:24:27 2007 (by Create and Import Peripheral Wizard)
//////////////////////////////////////////////////////////////////////////////

#ifndef PS2_H
#define PS2_H

/***************************** Include Files *******************************/

#include "xbasic_types.h"
#include "xstatus.h"
#include "xio.h"

/************************** Constant Definitions ***************************/


/**
 * User Logic Slave Space Offsets
 * -- SLAVE_REG0 : user logic slave module register 0
 */
#define PS2_USER_SLAVE_SPACE_OFFSET (0x00000000)
#define PS2_SLAVE_REG0_OFFSET (PS2_USER_SLAVE_SPACE_OFFSET + 0x00000000)

/**
 * IPIF Reset/Mir Space Register Offsets
 * -- RST : software reset register
 * -- MIR : module identification register
 */
#define PS2_IPIF_RST_SPACE_OFFSET (0x00000100)
#define PS2_RST_OFFSET (PS2_IPIF_RST_SPACE_OFFSET + 0x00000000)
#define PS2_MIR_OFFSET (PS2_IPIF_RST_SPACE_OFFSET + 0x00000000)

/**
 * IPIF Reset/Mir Masks
 * -- IPIF_MAVN_MASK   : module major version number
 * -- IPIF_MIVN_MASK   : module minor version number
 * -- IPIF_MIVL_MASK   : module minor version letter
 * -- IPIF_BID_MASK    : module block id
 * -- IPIF_BTP_MASK    : module block type
 * -- IPIF_RESET       : software reset
 */
#define IPIF_MAVN_MASK (0xF0000000UL)
#define IPIF_MIVN_MASK (0x0FE00000UL)
#define IPIF_MIVL_MASK (0x001F0000UL)
#define IPIF_BID_MASK (0x0000FF00UL)
#define IPIF_BTP_MASK (0x000000FFUL)
#define IPIF_RESET (0x0000000A)

/***************** Macros (Inline Functions) Definitions *******************/

/**
 *
 * Write a value to a PS2 register. A 32 bit write is performed.
 * If the component is implemented in a smaller width, only the least
 * significant data is written.
 *
 * @param   BaseAddress is the base address of the PS2 device.
 * @param   RegOffset is the register offset from the base to write to.
 * @param   Data is the data written to the register.
 *
 * @return  None.
 *
 * @note    None.
 *
 * C-style signature:
 * 	void PS2_mWriteReg(Xuint32 BaseAddress, unsigned RegOffset, Xuint32 Data)
 *
 */
#define PS2_mWriteReg(BaseAddress, RegOffset, Data) \
 	XIo_Out32((BaseAddress) + (RegOffset), (Xuint32)(Data))

/**
 *
 * Read a value from a PS2 register. A 32 bit read is performed.
 * If the component is implemented in a smaller width, only the least
 * significant data is read from the register. The most significant data
 * will be read as 0.
 *
 * @param   BaseAddress is the base address of the PS2 device.
 * @param   RegOffset is the register offset from the base to write to.
 *
 * @return  Data is the data from the register.
 *
 * @note    None.
 *
 * C-style signature:
 * 	Xuint32 PS2_mReadReg(Xuint32 BaseAddress, unsigned RegOffset)
 *
 */
#define PS2_mReadReg(BaseAddress, RegOffset) \
 	XIo_In32((BaseAddress) + (RegOffset))


/**
 *
 * Write/Read value to/from PS2 user logic slave registers.
 *
 * @param   BaseAddress is the base address of the PS2 device.
 * @param   Value is the data written to the register.
 *
 * @return  Data is the data from the user logic slave register.
 *
 * @note    None.
 *
 * C-style signature:
 * 	Xuint32 PS2_mReadSlaveRegn(Xuint32 BaseAddress)
 *
 */
#define PS2_mWriteSlaveReg0(BaseAddress, Value) \
 	XIo_Out32((BaseAddress) + (PS2_SLAVE_REG0_OFFSET), (Xuint32)(Value))

#define PS2_mReadSlaveReg0(BaseAddress) \
 	XIo_In32((BaseAddress) + (PS2_SLAVE_REG0_OFFSET))

/**
 *
 * Reset PS2 via software.
 *
 * @param   BaseAddress is the base address of the PS2 device.
 *
 * @return  None.
 *
 * @note    None.
 *
 * C-style signature:
 * 	void PS2_mReset(Xuint32 BaseAddress)
 *
 */
#define PS2_mReset(BaseAddress) \
 	XIo_Out32((BaseAddress)+(PS2_RST_OFFSET), IPIF_RESET)

/**
 *
 * Read module identification information from PS2 device.
 *
 * @param   BaseAddress is the base address of the PS2 device.
 *
 * @return  None.
 *
 * @note    None.
 *
 * C-style signature:
 * 	Xuint32 PS2_mReadMIR(Xuint32 BaseAddress)
 *
 */
#define PS2_mReadMIR(BaseAddress) \
 	XIo_In32((BaseAddress)+(PS2_MIR_OFFSET))

/************************** Function Prototypes ****************************/


/**
 *
 * Run a self-test on the driver/device. Note this may be a destructive test if
 * resets of the device are performed.
 *
 * If the hardware system is not built correctly, this function may never
 * return to the caller.
 *
 * @param   baseaddr_p is the base address of the PS2 instance to be worked on.
 *
 * @return
 *
 *    - XST_SUCCESS   if all self-test code passed
 *    - XST_FAILURE   if any self-test code failed
 *
 * @note    Caching must be turned off for this function to work.
 * @note    Self test may fail if data memory and device are not on the same bus.
 *
 */
XStatus PS2_SelfTest(void * baseaddr_p);

#endif // PS2_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -