PS端GPIO配置和基本介绍

Xilinx PS GPIO 驱动程序。

该驱动程序支持 Xilinx PS GPIO 控制器。
GPIO 控制器支持以下功能:

The GPIO Controller supports the following features:

  • 4 banks
  • Masked writes (There are no masked reads)屏蔽写入
  • Bypass mode 旁路模式
  • Configurable Interrupts (Level/Edge)可配置中断(电平/边沿)

        该驱动程序旨在独立于 RTOS 和处理器。任何对动态内存管理、线程或线程互斥、虚拟内存或高速缓存控制的需求都必须由该驱动程序之上的层来满足。
该驱动程序支持上面列出的所有功能(如果适用)。

驱动程序描述

设备驱动程序使高层软件(例如应用程序)能够与 GPIO 进行通信。

中断

        驱动程序提供中断管理功能和中断处理程序。该驱动程序的用户需要提供回调函数。驱动程序提供了中断处理程序示例。


线程

        该驱动程序不是线程安全的。任何线程或线程互斥的需求都必须由该驱动程序之上的层来满足。


断言

        断言用于所有 Xilinx 驱动程序中,以强制对参数值进行约束。通过在编译时定义 NDEBUG 标识符,可以在系统范围内关闭断言。默认情况下,断言是打开的,建议用户在开发过程中将断言保持打开状态。


构建驱动程序

        XGpioPs 驱动程序由多个源文件组成。这允许用户仅构建和链接驱动程序中必要的部分。

所以需要引入头文件:

#include "xparameters.h"
#include "xgpiops.h"

例程:

/******************************************************************************
* Copyright (C) 2010 - 2021 Xilinx, Inc.  All rights reserved.
* SPDX-License-Identifier: MIT
*******************************************************************************/
/*****************************************************************************/
/**
* @file xgpiops_polled_example.c
*
* This file contains an example for using GPIO hardware and driver. This
* example provides the usage of APIs for reading/writing to the individual pins.
* Please see xgpiops.h file for description of the pin numbering.
*
* @note		This example assumes that there is a Uart device in the HW
* design. This example is to provide support only for zcu102 on
* ZynqMp Platform and only for zc702 on Zynq Platform.
* For ZynqMP Platform, Input pin is 22(sw19 on zcu102 board) and Output Pin is
* 23(DS50 on zcu102 board).
* For Zynq Platform, Input Pins are 12(sw14 on zc702 board), 14(sw13 on
* zc702 board) and Output Pin is 10(DS23 on zc702 board).
* This example supports the VCK190 and VMK180 for Versal, but requires a PL
* shim. See Answer Record AR# 75677 for details.
* On the Versal Platform we have two GPIOPS instances :PMC GPIO and PS GPIO
* PMC GPIO contain 4 banks and 116 pins, organized as follows:
*   Bank 0  I/Os:  25:0   (MIO)
*   Bank 1: I/Os:  51:26  (MIO)
*   Bank 3: I/Os:  83:52  (EMIO)
*   Bank 4: I/Os: 115:84  (EMIO)
* PS GPIO contains 2 banks and 58 pins
*   Bank 0  I/Os:  25:0   (MIO)
*   Bank 3: I/Os:  57:26  (EMIO)
* See Figure 61 in AM011 Versal TRM for details.
* Driver supports both PS GPIO and PMC GPIO.
* For accessing PMC GPIOs application you need to set "GPIO.PmcGpio = 1"
* otherwise it accesses PS GPIO.
*
* <pre>
* MODIFICATION HISTORY:
*
* Ver   Who  Date     Changes
* ----- ---- -------- -----------------------------------------------
* 1.00a sv   01/18/10 First Release
* 1.01a sv   04/15/12 Removed the calling of some unnecessary APIs.
*		      Updated the examples for a ZC702 board .
*		      Updated the example to use only pin APIs.
* 3.3   ms   04/17/17 Added notes about input and output pin description
*                     for zcu102 and zc702 boards.
* 3.7	sne  12/04/19 Reverted versal example support.
* 3.8	sne  09/17/20 Added description for Versal PS and PMC GPIO pins.
* 3.9	sne  11/19/20 Added versal PmcGpio example support.
*
* </pre>
*
*****************************************************************************//***************************** Include Files ********************************/#include "xparameters.h"
#include "xgpiops.h"
#include "xstatus.h"
#include "xplatform_info.h"
#include <xil_printf.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 for ZYNQ & ZYNQMP.*/#ifndef GPIO_DEVICE_ID
#define GPIO_DEVICE_ID		XPAR_XGPIOPS_0_DEVICE_ID
#endif/** The following constant is used to wait after an LED is turned on to make* sure that it is visible to the human eye.  This constant might need to be* tuned for faster or slower processor speeds.*/
#define LED_DELAY		10000000#define LED_MAX_BLINK		0x10	/* Number of times the LED Blinks */#define printf			xil_printf	/* Smalller foot-print printf *//**************************** Type Definitions ******************************//***************** Macros (Inline Functions) Definitions *******************//************************** Function Prototypes ****************************/static int GpioOutputExample(void);
static int GpioInputExample(u32 *DataRead);
int GpioPolledExample(u16 DeviceId, u32 *DataRead);/************************** Variable Definitions **************************/
static u32 Input_Pin; /* Switch button */
static u32 Output_Pin; /* LED button *//** The following are declared globally so they are zeroed and can be* easily accessible from a debugger.*/
XGpioPs Gpio;	/* The driver instance for GPIO Device. *//*****************************************************************************/
/**
*
* Main function to call the example.
*
*
* @return
*		- XST_SUCCESS if the example has completed successfully.
*		- XST_FAILURE if the example has failed.
*
* @note		None
*
******************************************************************************/
int main(void)
{int Status;u32 InputData;printf("GPIO Polled Mode Example Test \r\n");Status = GpioPolledExample(GPIO_DEVICE_ID, &InputData);if (Status != XST_SUCCESS) {printf("GPIO Polled Mode Example Test Failed\r\n");return XST_FAILURE;}printf("Data read from GPIO Input is  0x%x \n\r", (int)InputData);printf("Successfully ran GPIO Polled Mode Example Test\r\n");return XST_SUCCESS;
}/*****************************************************************************/
/**
*
* The purpose of this function is to illustrate how to use the GPIO driver to
* turn on/off an LED and read the inputs using the pin APIs.
*
* @param	DeviceId is the XPAR_<GPIO_instance>_DEVICE_ID value from
*		xparameters.h
* @param	DataRead is the pointer where the data read from GPIO Input is
*		returned.
*
* @return
*		- XST_SUCCESS if the example has completed successfully.
*		- XST_FAILURE if the example has failed.
*
* @note		This function will not return if the test is running.
*
******************************************************************************/
int GpioPolledExample(u16 DeviceId, u32 *DataRead)
{int Status;XGpioPs_Config *ConfigPtr;int Type_of_board;/* Initialize the GPIO driver. */ConfigPtr = XGpioPs_LookupConfig(GPIO_DEVICE_ID);Type_of_board = XGetPlatform_Info();switch (Type_of_board) {case XPLAT_ZYNQ_ULTRA_MP:Input_Pin = 22;Output_Pin = 23;break;case XPLAT_ZYNQ:Input_Pin = 14;Output_Pin = 10;break;
#ifdef versalcase XPLAT_VERSAL:/* Accessing PMC GPIO by setting field to 1 */Gpio.PmcGpio =  1;Input_Pin    = 56;Output_Pin   = 52;break;
#endif}Status = XGpioPs_CfgInitialize(&Gpio, ConfigPtr,ConfigPtr->BaseAddr);if (Status != XST_SUCCESS) {return XST_FAILURE;}/* Run the Output Example. */Status = GpioOutputExample();if (Status != XST_SUCCESS) {return XST_FAILURE;}/* Run the Input Example. */Status = GpioInputExample(DataRead);if (Status != XST_SUCCESS) {return XST_FAILURE;}return XST_SUCCESS;
}/*****************************************************************************/
/**
*
* This function does a minimal test on the GPIO device configured as OUTPUT.
*
* @param	None.
*
* @return	- XST_SUCCESS if the example has completed successfully.
*		- XST_FAILURE if the example has failed.
*
* @note		None.
*
****************************************************************************/
static int GpioOutputExample(void)
{u32 Data;volatile int Delay;u32 LedLoop;/** Set the direction for the pin to be output and* Enable the Output enable for the LED Pin.*/XGpioPs_SetDirectionPin(&Gpio, Output_Pin, 1);XGpioPs_SetOutputEnablePin(&Gpio, Output_Pin, 1);/* Set the GPIO output to be low. */XGpioPs_WritePin(&Gpio, Output_Pin, 0x0);for (LedLoop = 0; LedLoop < LED_MAX_BLINK; LedLoop ++) {#ifndef __SIM__/* Wait a small amount of time so the LED is visible. */for (Delay = 0; Delay < LED_DELAY; Delay++);#endif/* Set the GPIO Output to High. */XGpioPs_WritePin(&Gpio, Output_Pin, 0x1);/** Read the state of the data and verify. If the data* read back is not the same as the data written then* return FAILURE.*/Data = XGpioPs_ReadPin(&Gpio, Output_Pin);if (Data != 1 ) {return XST_FAILURE;}#ifndef __SIM__/* Wait a small amount of time so the LED is visible. */for (Delay = 0; Delay < LED_DELAY; Delay++);#endif/* Clear the GPIO Output. */XGpioPs_WritePin(&Gpio, Output_Pin, 0x0);/** Read the state of the data and verify. If the data* read back is not the same as the data written then* return FAILURE.*/Data = XGpioPs_ReadPin(&Gpio, Output_Pin);if (Data != 0) {return XST_FAILURE;}}return XST_SUCCESS;
}/******************************************************************************/
/**
*
* This function performs a test on the GPIO driver/device with the GPIO
* configured as INPUT.
*
* @param	DataRead is the pointer where the data read from GPIO Input is
*		returned
*
* @return	- XST_SUCCESS if the example has completed successfully.
*		- XST_FAILURE if the example has failed.
*
* @note		None.
*
******************************************************************************/
static int GpioInputExample(u32 *DataRead)
{/* Set the direction for the specified pin to be input. */XGpioPs_SetDirectionPin(&Gpio, Input_Pin, 0x0);/* Read the state of the data so that it can be  verified. */*DataRead = XGpioPs_ReadPin(&Gpio, Input_Pin);return XST_SUCCESS;
}

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

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

RandomForestClassifier 与 GradientBoostingClassifier 的区别

RandomForestClassifier&#xff08;随机森林分类器&#xff09;和GradientBoostingClassifier&#xff08;梯度提升分类器&#xff09;是两种常用的集成学习方法&#xff0c;它们之间的区别分以下几点。 1、基础算法 RandomForestClassifier&#xff1a;随机森林分类器是基于…

@SpringBootApplication注解的理解——如何排除自动装配 分布式情况下如何自动加载 nacos是怎么被发现的

前言 spring作为主流的 Java Web 开发的开源框架&#xff0c;是Java 世界最为成功的框架&#xff0c;持续不断深入认识spring框架是Java程序员不变的追求。 本篇博客介绍SpringBootApplicant注解的自动加载相关内容 其他相关的Spring博客文章列表如下&#xff1a; Spring基…

2023 年热门的大型语言模型 (LLMs)汇总【更新至9月26】

一、全景地图 整理了一张大语言模型的血缘图谱&#xff0c;如下图所示&#xff1a; 图中的大语言模型&#xff0c;都是自己做过评测的&#xff0c;主观了点&#xff0c;但是原汁原味&#xff0c;有好的可以推荐给我。 二、ChatGPT系列 ChaTGP是商业版本大语言模型的正统&…

逆强化学习

1.逆强化学习的理论框架 1.teacher的行为被定义成best 2.学习的网络有两个&#xff0c;actor和reward 3.每次迭代中通过比较actor与teacher的行为来更新reward function&#xff0c;基于新的reward function来更新actor使得actor获得的reward最大。 loss的设计相当于一个排序问…

visual studio禁用qt-vsaddin插件更新

visual studio里qt-vsaddin插件默认是自动更新的&#xff0c;由于qt-vsaddin插件新版本的操作方式与老版本相差较大&#xff0c;且新版本不稳定&#xff0c;容易出Bug&#xff0c;所以需要禁用其自动更新&#xff0c;步骤如下&#xff1a;     点击VS2019菜单栏上的【扩展】–…

【Ansible自动化运维实战】使用Ansible部署WordPress应用

【Ansible自动化运维实战】使用Ansible部署WordPress应用 一、Ansible介绍1.1 Ansible简介1.2 Ansible特点二、wordpress介绍2.1 wordpress简介2.2 wordpress特点三、本次实践规划3.1 本次实践介绍3.2 本次实践规划四、部署ansible环境4.1 配置yum仓库4.2 安装ansible4.3 配置a…

基于Java的毕业设计选题管理系统设计与实现(源码+lw+部署文档+讲解等)

文章目录 前言具体实现截图论文参考详细视频演示为什么选择我自己的网站自己的小程序&#xff08;小蔡coding&#xff09;有保障的售后福利 代码参考源码获取 前言 &#x1f497;博主介绍&#xff1a;✌全网粉丝10W,CSDN特邀作者、博客专家、CSDN新星计划导师、全栈领域优质创作…

实现springboot的简单使用~

在之前学习SpringSpringMVCMybatis框架时&#xff0c;我们学习了多种配置spring程序的方式&#xff0c;例如&#xff1a;使用XML&#xff0c;注解&#xff0c;Java配置类&#xff0c;或者是将它们结合使用&#xff0c;但配置文件配置起来依然过于复杂&#xff0c;而我们接下来要…

虚拟机VMware的使用流程以及出现的问题附解决方法

虚拟机VMware的使用流程以及出现的问题附解决方法 下载安装 略。。。 创建虚拟机 虚拟机的设置如下&#xff1a;注意网络适配器为NAT 如果出现ip addr 命令&#xff1a;不显示IP地址的话&#xff1a; 解决方式如下&#xff1a; 首先设置网卡&#xff1a;先查看一下onboot是…

软件工程与计算总结(三)示例项目描述

本节介绍一个标准的项目描述&#xff0c;大家可以作为蓝本学习~ 目录 一.背景 二.目标 三.系统用户 四.用户访谈要点 1.收银员 2.客户经理 3.总经理 4.系统管理员 五.项目实践过程 一.背景 A是一家刚刚发展起来的小型连锁商店&#xff0c;其前身是一家独立的小百货门面…

贪心算法+练习

正值国庆之际&#xff0c;祝愿祖国繁荣昌盛&#xff0c;祝愿朋友一生平安&#xff01;终身学习&#xff0c;奋斗不息&#xff01; 目录 1.贪心算法简介 2.贪心算法的特点 3.如何学习贪心算法 题目练习&#xff08;持续更新&#xff09; 1.柠檬水找零&#xff08;easy&…

ES6中数组的扩展

1. 扩展运算符 用三个点(...)表示&#xff0c;它如同rest参数的逆运算&#xff0c;将数组转为用逗号分隔的参数序列。扩展就是将一个集合分成一个个的。 console.log(...[1, 2, 3]); // 1, 2, 3可以用于函数调用 扩展运算符后还可以放置表达式 ...(x > 0 ? [a] : [])如…

YOLOv2解析 | 批归一化 锚 主干网

文章目录 1 改进1.1 Batch Normalization 批归一化1.2 High Resolution Classifier 更高分辨率的分类器1.3 **Convolutional With Anchor Boxes 带锚盒的卷积**1.4 Dimension Clusters 维度集群1.5 更深更宽的主干网络1.6 Fine-Grained Features** **细粒度特征 **1.,7 Multi-S…

Altium Designer 批量添加元器件后缀

Altium Designer 批量添加元器件后缀 方法一方法二可能出现的问题要注意 方法一 您可以使用 Altium Designer 中的“批量修改元器件名称”功能来批量添加元器件后缀。具体步骤如下&#xff1a; 1.为了方便显示 操作流程&#xff0c;我这里复制了几个原理图的文件&#xff0c;粘…

剑指offer——JZ22 链表中倒数最后k个结点 解题思路与具体代码【C++】

一、题目描述与要求 链表中倒数最后k个结点_牛客题霸_牛客网 (nowcoder.com) 题目描述 输入一个长度为 n 的链表&#xff0c;设链表中的元素的值为 ai &#xff0c;返回该链表中倒数第k个节点。 如果该链表长度小于k&#xff0c;请返回一个长度为 0 的链表。 数据范围&…

好奇喵 | Surface Web ---> Deep Web ---> Dark Web

前言 我们可能听说过深网(deep Web)、暗网(dark Web)等名词&#xff0c;有些时候可能会认为它们是一个东西&#xff0c;其实不然&#xff0c;两者的区别还是比较大的。 什么是deep web&#xff1f; 深网是网络的一部分&#xff0c;与之相对应的是表层网络&#xff08;surface …

jsbridge实战2:Swift和h5的jsbridge通信

[[toc]] demo1: 文本通信 h5 -> app 思路&#xff1a; h5 全局属性上挂一个变量app 接收这个变量的内容关键API: navigation代理 navigationAction.request.url?.absoluteString // 这个变量挂载在 request 的 url 上 &#xff0c;在浏览器实际无法运行&#xff0c;因…

Spring事务

事务概念 逻辑上的一组操作&#xff0c;要么都成功、要么都失败 典型案例&#xff1a;银行转账 事务特性&#xff1a;ACID【原子、一致、隔离、持久】 搭建环境 银行转账操作 web&#xff1a; service&#xff1a;逻辑操作&#xff0c;调用dao dao&#xff1a;创建两个方法 …

强化学习环境 - robogym - 学习 - 2

强化学习环境 - robogym - 学习 - 2 文章目录 强化学习环境 - robogym - 学习 - 2项目地址为什么选择 robogymRearrange - 环境部分介绍Robot Control Interface - 机器人控制接口Environment - listEnvironment Randomization - 接口设置 项目地址 https://github.com/openai…

PAT(Basic Level) Practice(中文) 1015德才论

前言 ※ PTA是 程序设计类实验辅助教学平台 &#xff0c;里边包含一些编程题目集以供练习。 这道题用java解&#xff0c;我试了三种解法&#xff0c;不断优化&#xff0c;但始终是三个测试点通过、三个测试点超时。我把我的代码放在这里&#xff0c;做个参考吧。 1015 德才…