ZYNQ-IP-AXI-GPIO

AXI GPIO 可以将 PS 端的一个 AXI 4-Lite 接口转化为 GPIO 接口,并且可以被配置为单端口或双端口,每个通道的位宽可以独立配置。
通过使能三态门可以将端口动态地配置为输入或输出。
axigpio|500
AXIGPIO 是 ZYNQ PL 端的一个 IP 核,可以将 AXI-Lite Master 转为 GPIO,并且一个 AXI-Lite 接口可以通过 AXI interconnect 模块控制多个 AXI-GPIO。

AXI-GPIO IP 设置

最大时钟频率

|500
Z y n q 7020 Zynq 7020 Zynq7020 的最大频率和 A r t i x 7 − 2 Artix 7-2 Artix72 的速率相同,为 140 M H z 140 MHz 140MHz

AXI GPIO 设置

AXIGPIOip|500
默认为单通道。GPIO 的方向在这里设置了以后就不能在 vitis 中设置 GPIO 的方向。
中断属于 PL 对 PS 的中断,需要在 ZYNQ 7 Processing System 中勾选
|500

生成的 vitis 的代码中,xparameters.h 中的 id 默认从 ID 0 开始,不管 vivado 这边的 AXI-GPIO 的序号是从 0 开始还是从 1 开始。

[!note]

  1. GPIO 只能使能整个通道中断,无法单独使能通道中的某个引脚中断
  2. |400
    中断类型只能设置为上升沿或高电平

AXI-GPIO 相关代码

初始化

/****************************************************************************/

/**

* Initialize the XGpio instance provided by the caller based on the

* given configuration data.

*

* Nothing is done except to initialize the InstancePtr.

*

* @param    InstancePtr is a pointer to an XGpio instance. The memory the

*       pointer references must be pre-allocated by the caller. Further

*       calls to manipulate the driver through the XGpio API must be

*       made with this pointer.

* @param    Config is a reference to a structure containing information

*       about a specific GPIO device. This function initializes an

*       InstancePtr object for a specific device specified by the

*       contents of Config. This function can initialize multiple

*       instance objects with the use of multiple calls giving different

*       Config information on each call.

* @param    EffectiveAddr is the device base address in the virtual memory

*       address space. The caller is responsible for keeping the address

*       mapping from EffectiveAddr to the device physical base address

*       unchanged once this function is invoked. Unexpected errors may

*       occur if the address mapping changes after this function is

*       called. If address translation is not used, use

*       Config->BaseAddress for this parameters, passing the physical

*       address instead.

*

* @return

*       - XST_SUCCESS if the initialization is successful.

*

* @note     None.

*

*****************************************************************************/

int XGpio_CfgInitialize(XGpio * InstancePtr, XGpio_Config * Config,

            UINTPTR EffectiveAddr)

设置输入输出方向

/****************************************************************************/

/**

* Set the input/output direction of all discrete signals for the specified

* GPIO channel.
*
* @param    InstancePtr is a pointer to an XGpio instance to be worked on.

* @param    Channel contains the channel of the GPIO (1 or 2) to operate on.

* @param    DirectionMask is a bitmask specifying which discretes are input

*       and which are output. Bits set to 0 are output and bits set to 1
*       are input.
*
* @return   None.

*

* @note     The hardware must be built for dual channels if this function

*       is used with any channel other than 1.  If it is not, this

*       function will assert.

*

*****************************************************************************/

void XGpio_SetDataDirection(XGpio *InstancePtr, unsigned Channel, u32 DirectionMask)

GPIO 读写

/****************************************************************************/

/**

* Read state of discretes for the specified GPIO channel.


* @param    InstancePtr is a pointer to an XGpio instance to be worked on.
* @param    Channel contains the channel of the GPIO (1 or 2) to operate on.

* @return   Current copy of the discretes register.


* @note     The hardware must be built for dual channels if this function

*       is used with any channel other than 1.  If it is not, this

*       function will assert.
*****************************************************************************/

u32 XGpio_DiscreteRead(XGpio * InstancePtr, unsigned Channel)

/****************************************************************************/

/**

* Write to discretes register for the specified GPIO channel.

*

* @param    InstancePtr is a pointer to an XGpio instance to be worked on.

* @param    Channel contains the channel of the GPIO (1 or 2) to operate on.

* @param    Mask is the value to be written to the discretes register.

*

* @return   None.

*

* @note     The hardware must be built for dual channels if this function

*       is  used with any channel other than 1.  If it is not, this

*       function will assert. See also XGpio_DiscreteSet() and

*       XGpio_DiscreteClear().

*

*****************************************************************************/

void XGpio_DiscreteWrite(XGpio * InstancePtr, unsigned Channel, u32 Mask)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/960879.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

20.Word:小谢-病毒知识的科普文章❗【38】

目录 题目​ NO1.2.3文档格式 NO4.5 NO6.7目录/图表目录/书目 NO8.9.10 NO11索引 NO12.13.14 每一步操作完,确定之后记得保存最后所有操作完记得再次删除空行 题目 NO1.2.3文档格式 样式的应用 选中应用段落段落→开始→选择→→检查→应用一个一个应用ctr…

为什么应用程序是特定于操作系统的?[计算机原理]

你把WINDOWS程序复制到MAC上使用,会发现无法运行。你可能会说,MAC是arm处理器,而WINDWOS是X86 处理器。但是在2019年,那时候MAC电脑还全是Intel处理器,在同样的X86芯片上,运行MAC和WINDOWS 程序还是无法互相…

LigerUI在MVC模式下的响应原则

LigerUI是基于jQuery的UI框架,故他也是遵守jQuery的开发模式,但是也具有其特色的侦听函数,那么当LigerUI作为View层的时候,他所发送后端的必然是表单的数据,在此我们以俩个div为例: {Layout "~/View…

BurpSuite--暴力破解

一.弱口令 1. 基本概念 介绍:弱口令(weak password)是指那些容易被他人猜测或通过工具破解的密码。虽然弱口令没有严格的定义,但通常它指的是由简单的数字、字母、常用词语或规律性组合构成的密码。 特点: 密码容易被…

深入探讨防抖函数中的 this 上下文

深入剖析防抖函数中的 this 上下文 最近我在研究防抖函数实现的时候,发现一个耗费脑子的问题,出现了令我困惑的问题。接下来,我将通过代码示例,深入探究这些现象背后的原理。 示例代码 function debounce(fn, delay) {let time…

【PostgreSQL内核学习 —— (WindowAgg(一))】

WindowAgg 窗口函数介绍WindowAgg理论层面源码层面WindowObjectData 结构体WindowStatePerFuncData 结构体WindowStatePerAggData 结构体eval_windowaggregates 函数update_frameheadpos 函数 声明:本文的部分内容参考了他人的文章。在编写过程中,我们尊…

RocketMQ消息是如何存储的?

大家好,我是锋哥。今天分享关于【RocketMQ消息是如何存储的?】面试题。希望对大家有帮助; RocketMQ消息是如何存储的? 1000道 互联网大厂Java工程师 精选面试题-Java资源分享网 RocketMQ 使用了一个高性能、分布式的消息存储架构…

MongoDB平替数据库对比

背景 项目一直是与实时在线监测相关,特点数据量大,读写操作大,所以选用的是MongoDB。但按趋势来讲,需要有一款国产数据库可替代,实现信创要求。选型对比如下 1. IoTDB 这款是由清华大学主导的开源时序数据库&#x…

电力晶体管(GTR)全控性器件

电力晶体管(Giant Transistor,GTR)是一种全控性器件,以下是关于它的详细介绍:(模电普通晶体管三极管进行对比学习) 基本概念 GTR是一种耐高电压、大电流的双极结型晶体管(BJT&am…

蓝桥杯python语言基础(4)——基础数据结构(上)

目录 一、列表与元组 (一)列表 (二)操作列表 (三)元组 习题P502 习题P497 二、字符串 (一)字符串的基本操作 (二)字符串的常用方法 (三&…

langchain基础(三)

Chain: 关于三个invoke: 提示模板、聊天模型和输出解析器都实现了langchain的runnable接口, 都具有invoke方法(因为invoke方法是Runnable的通用调用方法) 所以可以一次性调用多次invoke直接得到最终结果:…

数据分析和AI丨应对AI实施挑战,工程领域AI应用的五大方法

工程领域的人工智能 (AI) 已经开始发挥价值,低代码和无代码工具正在使曾经仅属于专业数据科学家的 AI 能力变得大众化。 然而,并非工程领域的每个人都能从中受益,使用新的便捷的 AI 工具提高工作效率并不难&#xff0c…

【Linux探索学习】第二十七弹——信号(一):Linux 信号基础详解

Linux学习笔记: https://blog.csdn.net/2301_80220607/category_12805278.html?spm1001.2014.3001.5482 前言: 前面我们已经将进程通信部分讲完了,现在我们来讲一个进程部分也非常重要的知识点——信号,信号也是进程间通信的一…

games101-(5/6)

光栅化 投影完成之后,视图区域被确定在从[-1,1]的单位矩阵中,下一步就是光栅化 长宽比:ratio 垂直的可视角度:fild-of-view 可以看到的y 轴的范围,角度越小 越接近正交投影 屏幕坐标系 、 将多边形转化成像素 显示…

Linux之详谈——权限管理

目录 小 峰 编 程 ​编辑 一、权限概述 1、什么是权限 2、为什么要设置权限 3、Linux中的权限类别- 4、Linux中文件所有者 1)所有者分类(谁) 2)所有者的表示方法 ① u(the user who owns it)(属主权限&…

oracle比较一下统计信息差异吧

统计信息发生了哪些变化? 从上次收集到最近一次收集有什么不同? set long 999999 longc 99999 line 100 select report, maxdiffpct from table(dbms_stats.diff_table_stats_in_history(SYS,T1,to_timestamp(2025-01-22 09:01:46,YYYY-MM-DD hh24:mi:s…

【现代深度学习技术】深度学习计算 | 参数管理

【作者主页】Francek Chen 【专栏介绍】 ⌈ ⌈ ⌈PyTorch深度学习 ⌋ ⌋ ⌋ 深度学习 (DL, Deep Learning) 特指基于深层神经网络模型和方法的机器学习。它是在统计机器学习、人工神经网络等算法模型基础上,结合当代大数据和大算力的发展而发展出来的。深度学习最重…

用WinForm如何制作简易计算器

首先我们要自己搭好页面 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms;namespace _7_简易计算…

spring入门其实特别简单,也可以做单机。

直接在官网配置 点右边的"ADD DEPENDENCIES",选“Spring Web” 然后点“GENERATE”,会自动下载一个demo.zip。解压demo.zip,用IntelliJ IDEA打开就能用了。 IntelliJ IDEA打开之后,你得配置你的

智慧消防营区一体化安全管控 2024 年度深度剖析与展望

在 2024 年,智慧消防营区一体化安全管控领域取得了令人瞩目的进展,成为保障营区安全稳定运行的关键力量。这一年,行业在政策驱动、技术创新应用、实践成果及合作交流等方面呈现出多元且深刻的发展态势,同时也面临着一系列亟待解决…