【ZYNQ】AXI-Quad-SPI SDK 开发记录 测试

2024-05-24 20:20

本文主要是介绍【ZYNQ】AXI-Quad-SPI SDK 开发记录 测试,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前人工作

如前人工作,在Navigate to BSP Settings中找到历例程
在这里插入图片描述

file:///F:/Xilinx/Vitis/2019.2/data/embeddedsw/XilinxProcessorIPLib/drivers/spi_v4_5/doc/html/api/example.html

在这里插入图片描述
使用XSpi_LowLevelExample例子,源代码的AI解析
在这里插入图片描述

int XSpi_LowLevelExample(u32 BaseAddress)
{u32 Control;int NumBytesSent = 0;int NumBytesRcvd = 0;u32 Count;/** Set up the device in loopback mode and enable master mode.*/Control = XSpi_ReadReg(BaseAddress, XSP_CR_OFFSET);Control |= (XSP_CR_MASTER_MODE_MASK); // Enable master modeXSpi_WriteReg(BaseAddress, XSP_CR_OFFSET, Control);

代码中,摁住ctrl+左键 可以跳转到函数的定义,XSpi_ReadReg 就是寄存器读,通过基地址+偏移地址。

在这里插入图片描述

在xspi_h.c
#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 */
u8 Buffer[BUFFER_SIZE];// change to u8
#define XSP_CR_OFFSET		0x60	/**< Control register */

【pg153-axi-quad-spi.pdf】网上找
60h是cr寄存器
最低位,LOOP 是否回环,默认0,不回环
在这里插入图片描述

	/** Set up the device in loopback mode and enable master mode.*/Control = XSpi_ReadReg(BaseAddress, XSP_CR_OFFSET);Control |= (XSP_CR_MASTER_MODE_MASK); // Enable master modeXSpi_WriteReg(BaseAddress, XSP_CR_OFFSET, Control);

XSP_CR_MASTER_MODE_MASK 就代表把 Bits[2]给变成1

#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 highor 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 selectassert */
#define XSP_CR_TRANS_INHIBIT_MASK  0x00000100 /**< Master transactioninhibit */

在这里插入图片描述

在这里插入图片描述

	/** Fill up the transmitter with data, assuming the receiver can hold* the same amount of data.*/while ((XSpi_ReadReg(BaseAddress, XSP_SR_OFFSET) &XSP_SR_TX_FULL_MASK) == 0) {XSpi_WriteReg((BaseAddress), XSP_DTR_OFFSET,Buffer[NumBytesSent++]);}
#define XSP_SR_TX_FULL_MASK	   0x00000008 /**< Transmit Reg/FIFO is full */

SR状态寄存器,读取SR寄存器32bit内容
当发射tx 的fifo没有满的时候,把发射数据写进去
在这里插入图片描述

#define XSP_DTR_OFFSET		0x68	/**< Data transmit */

在这里插入图片描述
在这里插入图片描述

	/** Enable the device.*/Control = XSpi_ReadReg(BaseAddress, XSP_CR_OFFSET);Control |= XSP_CR_ENABLE_MASK;Control &= ~XSP_CR_TRANS_INHIBIT_MASK;XSpi_WriteReg(BaseAddress, XSP_CR_OFFSET, Control);

开启设备
清除传输禁止位
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

	/** Initialize the buffer with zeroes so that it can be used to receive* data.*/for (Count = 0; Count < BUFFER_SIZE; Count++) {Buffer[Count] = 0x0;}

在这里插入图片描述

	/** Wait for the transmit FIFO to transition to empty before checking* the receive FIFO, this prevents a fast processor from seeing the* receive FIFO as empty*/while (!(XSpi_ReadReg(BaseAddress, XSP_SR_OFFSET) &XSP_SR_TX_EMPTY_MASK));

循环读取SR状态寄存器,看tx数据是不是空

	/** Transmitter is full, now receive the data just looped back until* the receiver is empty.*/while ((XSpi_ReadReg(BaseAddress, XSP_SR_OFFSET) &XSP_SR_RX_EMPTY_MASK) == 0) {//when RX fifo is no emptyBuffer[NumBytesRcvd++] = XSpi_ReadReg((BaseAddress),XSP_DRR_OFFSET);}

如果接收的寄存器不是空的了,(说明有数据来了),就把DRR接收data寄存器的数据读到fifo缓存里面。
在这里插入图片描述

在这里插入图片描述

流程:
1.设置控制寄存器CR,设置模式
2.定义缓存fifo
3.检查状态寄存器SR,把缓存fifo发到tx的data寄存器(DTR)
4.开启spi设备,CR使能,CR清楚禁止位
5.接收数据
6.验证数据

**

  • 调试验证

**
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

开始调试
在代码里面打断点
右侧代码行双击 打断点

在这里插入图片描述
在这里插入图片描述

/******************************************************************************
*
* Copyright (C) 2002 - 2019 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.
*
* 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 AUTHORS OR COPYRIGHT HOLDERS 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.
*
*
*
******************************************************************************/
/******************************************************************************/
/**
* @file  xspi_low_level_example.c
*
* This file contains a design example using the low-level driver of the
* SPI driver (XSpi). These macros are found in xspi_l.h.  A simple loopback
* test is done within an SPI device in polled mode. This example works only with
* 8-bit wide data transfers.
*
* @note
* This example works only with 8-bit wide data transfers in standard SPI mode.
* This example will not work if the axi_qspi device is confiured in dual/quad
* modes.
*
* To make this example work for 16 bit transfers change u8 Buffer[BUFFER_SIZE]
* to u16 Buffer[BUFFER_SIZE]. The SPI Core should also be configured for 16 bit
* access during the build time.
*
* To make this example work for 32 bit transfers change u8 Buffer[BUFFER_SIZE]
* to u32 Buffer[BUFFER_SIZE]. The SPI Core should also be configured for 32 bit
* access during the build time.
*
*
*<pre>
* MODIFICATION HISTORY:
*
* Ver   Who  Date     Changes
* ----- ---- -------- ----------------------------------------------------------
* 1.00b rpm  04/24/02 First release
* 1.00b jhl  09/10/02 Added code to ensure it works with a fast processor.
* 1.00b sv   05/16/05 Minor changes to comply to Doxygen and coding guidelines
* 3.00a ktn  10/28/09 Converted all register accesses to 32 bit access.
* 3.02a sdm  05/04/11 Added a note about dual/quad modes in axi_qspi.
* 4.2   ms   01/23/17 Added xil_printf statement in main function to
*                     ensure that "Successfully ran" and "Failed" strings
*                     are available in all examples. This is a fix for
*                     CR-965028.
*
*</pre>
*******************************************************************************//***************************** Include Files **********************************/#include "xparameters.h"
#include "xstatus.h"
#include "xspi_l.h"
#include "xil_printf.h"#include "stdio.h"
/************************** Constant Definitions ******************************//** The following constants map to the XPAR parameters created in the* xparameters.h file. They are defined here such that a user can easily* change all the needed parameters in one place.*/
#define SPI_BASEADDR		XPAR_SPI_0_BASEADDR/**************************** Type Definitions ********************************//***************** Macros (Inline Functions) Definitions **********************//************************** Function Prototypes *******************************/int XSpi_LowLevelExample(u32 BaseAddress);/************************** Variable Definitions ******************************//**  This is the size of the buffer to be transmitted/received in this example.*/
#define BUFFER_SIZE			 32/** The buffer used for Transmission/Reception of the SPI test data*/
u32 Buffer[BUFFER_SIZE];// change to u32/******************************************************************************/
/**
* This function is the main function of the SPI Low Level example.
*
* @param	None
*
* @return	XST_SUCCESS to indicate success, else XST_FAILURE to indicate
*		Failure.
*
* @note		None
*
*******************************************************************************/
int main(void)
{int Status;/** Run the example, specify the Base Address that is generated in* xparameters.h*/Status = XSpi_LowLevelExample(SPI_BASEADDR);if (Status != XST_SUCCESS) {xil_printf("Spi lowlevel Example Failed\r\n");printf("Spi lowlevel Example Failed\r\n");return XST_FAILURE;}xil_printf("Successfully ran Spi lowlevel Example\r\n");printf("Successfully ran Spi lowlevel Example\r\n");return XST_SUCCESS;
}/******************************************************************************/
/**
*
* This function does a simple loopback test within an SPI device.
*
* @param	BaseAddress is the BaseAddress of the SPI device
*
* @return	XST_SUCCESS if successful, XST_FAILURE if unsuccessful
*
* @note		None
*
*******************************************************************************/
int XSpi_LowLevelExample(u32 BaseAddress)
{u32 Control;int NumBytesSent = 0;int NumBytesRcvd = 0;u32 Count;/** Set up the device in loopback mode and enable master mode.*/Control = XSpi_ReadReg(BaseAddress, XSP_CR_OFFSET);Control |= (XSP_CR_LOOPBACK_MASK | XSP_CR_MASTER_MODE_MASK); // Enable master modeXSpi_WriteReg(BaseAddress, XSP_CR_OFFSET, Control);/** Initialize the buffer with some data.*/for (Count = 0; Count < BUFFER_SIZE; Count++) {Buffer[Count] = Count;// 0-31}/** Fill up the transmitter with data, assuming the receiver can hold* the same amount of data.*/while ((XSpi_ReadReg(BaseAddress, XSP_SR_OFFSET) &XSP_SR_TX_FULL_MASK) == 0) {//when TX fifo is not fullXSpi_WriteReg((BaseAddress), XSP_DTR_OFFSET,Buffer[NumBytesSent++]);}/** Enable the device.*/Control = XSpi_ReadReg(BaseAddress, XSP_CR_OFFSET);Control |= XSP_CR_ENABLE_MASK;Control &= ~XSP_CR_TRANS_INHIBIT_MASK;XSpi_WriteReg(BaseAddress, XSP_CR_OFFSET, Control);/** Initialize the buffer with zeroes so that it can be used to receive* data.*/for (Count = 0; Count < BUFFER_SIZE; Count++) {Buffer[Count] = 0x0;}/** Wait for the transmit FIFO to transition to empty before checking* the receive FIFO, this prevents a fast processor from seeing the* receive FIFO as empty*/while (!(XSpi_ReadReg(BaseAddress, XSP_SR_OFFSET) &XSP_SR_TX_EMPTY_MASK));/** Transmitter is full, now receive the data just looped back until* the receiver is empty.*/while ((XSpi_ReadReg(BaseAddress, XSP_SR_OFFSET) &XSP_SR_RX_EMPTY_MASK) == 0) {//when RX fifo is no emptyBuffer[NumBytesRcvd++] = XSpi_ReadReg((BaseAddress),XSP_DRR_OFFSET);}/** If no data was sent or the data that was sent was not received,* then return an error*/if ((NumBytesSent != NumBytesRcvd) || (NumBytesSent == 0)) {return XST_FAILURE;}return XST_SUCCESS;
}

这篇关于【ZYNQ】AXI-Quad-SPI SDK 开发记录 测试的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/999438

相关文章

Nginx设置连接超时并进行测试的方法步骤

《Nginx设置连接超时并进行测试的方法步骤》在高并发场景下,如果客户端与服务器的连接长时间未响应,会占用大量的系统资源,影响其他正常请求的处理效率,为了解决这个问题,可以通过设置Nginx的连接... 目录设置连接超时目的操作步骤测试连接超时测试方法:总结:设置连接超时目的设置客户端与服务器之间的连接

Android 悬浮窗开发示例((动态权限请求 | 前台服务和通知 | 悬浮窗创建 )

《Android悬浮窗开发示例((动态权限请求|前台服务和通知|悬浮窗创建)》本文介绍了Android悬浮窗的实现效果,包括动态权限请求、前台服务和通知的使用,悬浮窗权限需要动态申请并引导... 目录一、悬浮窗 动态权限请求1、动态请求权限2、悬浮窗权限说明3、检查动态权限4、申请动态权限5、权限设置完毕后

如何通过海康威视设备网络SDK进行Java二次开发摄像头车牌识别详解

《如何通过海康威视设备网络SDK进行Java二次开发摄像头车牌识别详解》:本文主要介绍如何通过海康威视设备网络SDK进行Java二次开发摄像头车牌识别的相关资料,描述了如何使用海康威视设备网络SD... 目录前言开发流程问题和解决方案dll库加载不到的问题老旧版本sdk不兼容的问题关键实现流程总结前言作为

关于Spring @Bean 相同加载顺序不同结果不同的问题记录

《关于Spring@Bean相同加载顺序不同结果不同的问题记录》本文主要探讨了在Spring5.1.3.RELEASE版本下,当有两个全注解类定义相同类型的Bean时,由于加载顺序不同,最终生成的... 目录问题说明测试输出1测试输出2@Bean注解的BeanDefiChina编程nition加入时机总结问题说明

基于Python开发PPTX压缩工具

《基于Python开发PPTX压缩工具》在日常办公中,PPT文件往往因为图片过大而导致文件体积过大,不便于传输和存储,所以本文将使用Python开发一个PPTX压缩工具,需要的可以了解下... 目录引言全部代码环境准备代码结构代码实现运行结果引言在日常办公中,PPT文件往往因为图片过大而导致文件体积过大,

使用DeepSeek API 结合VSCode提升开发效率

《使用DeepSeekAPI结合VSCode提升开发效率》:本文主要介绍DeepSeekAPI与VisualStudioCode(VSCode)结合使用,以提升软件开发效率,具有一定的参考价值... 目录引言准备工作安装必要的 VSCode 扩展配置 DeepSeek API1. 创建 API 请求文件2.

将sqlserver数据迁移到mysql的详细步骤记录

《将sqlserver数据迁移到mysql的详细步骤记录》:本文主要介绍将SQLServer数据迁移到MySQL的步骤,包括导出数据、转换数据格式和导入数据,通过示例和工具说明,帮助大家顺利完成... 目录前言一、导出SQL Server 数据二、转换数据格式为mysql兼容格式三、导入数据到MySQL数据

关于rpc长连接与短连接的思考记录

《关于rpc长连接与短连接的思考记录》文章总结了RPC项目中长连接和短连接的处理方式,包括RPC和HTTP的长连接与短连接的区别、TCP的保活机制、客户端与服务器的连接模式及其利弊分析,文章强调了在实... 目录rpc项目中的长连接与短连接的思考什么是rpc项目中的长连接和短连接与tcp和http的长连接短

Oracle查询优化之高效实现仅查询前10条记录的方法与实践

《Oracle查询优化之高效实现仅查询前10条记录的方法与实践》:本文主要介绍Oracle查询优化之高效实现仅查询前10条记录的相关资料,包括使用ROWNUM、ROW_NUMBER()函数、FET... 目录1. 使用 ROWNUM 查询2. 使用 ROW_NUMBER() 函数3. 使用 FETCH FI

Python MySQL如何通过Binlog获取变更记录恢复数据

《PythonMySQL如何通过Binlog获取变更记录恢复数据》本文介绍了如何使用Python和pymysqlreplication库通过MySQL的二进制日志(Binlog)获取数据库的变更记录... 目录python mysql通过Binlog获取变更记录恢复数据1.安装pymysqlreplicat