zedboard 中断

/*该文件包含使用GPIO驱动程序(XGpioPs)在一个设计实例操作中断驱动模式。
*该示例使用GPIO的中断能力检测按钮,事件并设置基于输入输出的LED。用户需要按评估板上所有的开关SW1-SW5从这个例子中退出。
*@注意:*本示例假定有一个UART设备在硬件设计。*/

/***************************** Include Files *********************************/
#include "xparameters.h"
#include "xgpiops.h"
#include "xscugic.h"
#include "xil_exception.h"
#include <xil_printf.h>
/************************** 常量定义 *****************************/
/*
 常量的定义
以下常量映射到硬件实例的名称*是EDK XPS系统创建的。
他们在这里定义,这样*用户可以很容易地更改所有需要的设备id在一个地方。
 */
//#define XPAR_XGPIOPS_0_DEVICE_ID XPAR_PS7_GPIO_0_DEVICE_ID z xp。h中
#define GPIO_DEVICE_ID		XPAR_XGPIOPS_0_DEVICE_ID//0
#define INTC_DEVICE_ID		XPAR_SCUGIC_SINGLE_DEVICE_ID//0
#define GPIO_INTERRUPT_ID	XPAR_XGPIOPS_0_INTR//中断号52 GPIO中断号52
/*
以下常量定义所使用的GPIObank
 */
#define INPUT_BANK	XGPIOPS_BANK0  /* Bank 0 of the GPIO Device */
#define OUTPUT_BANK	XGPIOPS_BANK1  /* Bank 1 of the GPIO Device */
/*
 * The following constants define the positions of the buttons of the GPIO.
*以下常量定义GPIO的按钮的状态。
 */
#define GPIO_ALL_BUTTONS	0xFFFF//

/*
 * The following constant determines which buttons must be pressed to cause
 * interrupt processing to stop.
 * 下面的常数决定哪些按钮必须按下来触发中断
 */
#define GPIO_EXIT_CONTROL_VALUE	0x1F

#define printf			xil_printf	/* Smalller foot-print printf */

/**************************** 类型定义*******************************/

/*****************宏定义*********************/

/************************** 函数原型******************************/

static int GpioIntrExample(XScuGic *Intc, XGpioPs *Gpio, u16 DeviceId,
			   u16 GpioIntrId);
static void IntrHandler(void *CallBackRef, int Bank, u32 Status);
static int SetupInterruptSystem(XScuGic *Intc, XGpioPs *Gpio, u16 GpioIntrId);

/**************************变量定义 *****************************/

/*
 * 以下是全局声明,以便它们将被清零,因此它们是
 *从调试方便。
 * The following are declared globally so they are zeroed and so they are
 * easily accessible from a debugger.
 */
static XGpioPs Gpio; /* The Instance of the GPIO Driver GPIO驱动器的常量*/

static XScuGic Intc; /* The Instance of the Interrupt Controller Driver中断控制器的常量 */

static u32 AllButtonsPressed; /* Intr status of the bank bank的中断状态 */

/****************************************************************************/
/**
*主函数调用GPIO中断实例
* @param	None.
*
* @return
*		- XST_SUCCESS if the example has completed successfully.
*		- XST_FAILURE if the example has failed.
*
* @note		None.
*
*****************************************************************************/
int main(void)
{
	int Status;

	xil_printf("GPIO Interrupt Example Test \r\n");

	/*
	 * Run the GPIO interrupt example, specify the parameters that
	 * are generated in xparameters.h.
	 */
	Status = GpioIntrExample(&Intc, &Gpio, GPIO_DEVICE_ID,
				 GPIO_INTERRUPT_ID);

	if (Status != XST_SUCCESS) {
		xil_printf("GPIO Interrupt Example Test Failed\r\n");
		return XST_FAILURE;
	}

	xil_printf("Successfully ran GPIO Interrupt Example Test\r\n");
	return XST_SUCCESS;
}

/****************************************************************************/
/**
*此功能显示GPIO器件的中断fucntionality的用法。
*这是负责初始化GPIO器件,设置中断和
*提供一前景循环,使得中断可以发生在后台。
* @param	Intc is a pointer to the XScuGic driver Instance.
* intc指向XScuGic driver Instance
* @param	Gpio is a pointer to the XGpioPs driver Instance.
* @param	DeviceId is the XPAR_<Gpio_Instance>_PS_DEVICE_ID value
*		from xparameters.h.
* @param	GpioIntrId is XPAR_<GIC>_<GPIO_Instance>_VEC_ID value
*		from xparameters.h
*
* @return	- XST_SUCCESS if the example has completed successfully.
*		- XST_FAILURE if the example has failed.
*
* @note		None
*
*****************************************************************************/
int GpioIntrExample(XScuGic *Intc, XGpioPs *Gpio, u16 DeviceId, u16 GpioIntrId)
{
	XGpioPs_Config *ConfigPtr;
	int Status;

	/*
	 * 初始化 Gpio driver.
	 */
	ConfigPtr = XGpioPs_LookupConfig(DeviceId);
	if (ConfigPtr == NULL) {
		return XST_FAILURE;
	}
	XGpioPs_CfgInitialize(Gpio, ConfigPtr, ConfigPtr->BaseAddr);

	/*自检
	 * Run a self-test on the GPIO device.
	 */
	Status = XGpioPs_SelfTest(Gpio);
	if (Status != XST_SUCCESS) {
		return XST_FAILURE;
	}

	/*
	 * 设置bank0的方向寄存器,所有引脚都是输入
	 * Setup direction register of bank0, so
	 * that all the pins are configured as inputs.
	 */

	XGpioPs_SetDirection(Gpio, INPUT_BANK, ~GPIO_ALL_BUTTONS);//INPUT_BANK是bank编号,

	/*
	 * 输入模式,使能led的引脚
	 * Set the direction for all signals to be
	 * outputs and Enable the Output enable for the LED Pins.
	 */
	XGpioPs_SetDirection(Gpio, OUTPUT_BANK, GPIO_ALL_BUTTONS);
	XGpioPs_SetOutputEnable(Gpio, OUTPUT_BANK, GPIO_ALL_BUTTONS);

	/*设置,使得中断可以发生
	 * Setup the interrupts such that interrupt processing can occur. If
	 * an error occurs then exit.
	 */
	Status = SetupInterruptSystem(Intc, Gpio, GPIO_INTERRUPT_ID);
	if (Status != XST_SUCCESS) {
		return XST_FAILURE;
	}

	printf("\n\rPush each of the 5 buttons once to exit\n\r");
	AllButtonsPressed = FALSE;

	/*
	 * Loop forever while the button changes are handled by the interrupt
	 * level processing.
	 */
	while(AllButtonsPressed == FALSE);

	printf("\n\r The GPIO Interrupt example has passed Successfully.\n\r");

	return XST_SUCCESS;
}

/****************************************************************************/
/**
* This function is the user layer callback function for the bank 0 interrupts of
* the GPIO device. It checks if all the switches have been pressed to stop the
* interrupt processing and exit from the example.
*此功能是用户层的回调函数为GPIO的bank0中断
它如果所有的交换机都按停止检查
*从例如中断处理和退出。
*CallBackRef是指向上层回调函数的指针
*Status是gpio的bank的中断状态
* @param	CallBackRef is a pointer to the upper layer callback reference.
* @param	Status is the Interrupt status of the GPIO bank.
*
* @return	None.
*
* @note		None.
*
******************************************************************************/
static void IntrHandler(void *CallBackRef, int Bank, u32 Status)
{
	XGpioPs *Gpio = (XGpioPs *)CallBackRef;
	static u32 ButtonsChanged;

	/*
	 * Do nothing if the intr is generated for a different bank.
	 */
	if (Bank != INPUT_BANK) {
		return;
	}

	ButtonsChanged |= Status;

	/*
	 * Set the LEDs.
	 */
	XGpioPs_Write(Gpio, OUTPUT_BANK, ButtonsChanged);

	if (ButtonsChanged == GPIO_EXIT_CONTROL_VALUE) {
		/*
		 * Five buttons are pressed to mark the completion of the test.
		 */
		AllButtonsPressed = TRUE;
		ButtonsChanged = 0;
	}
}

/*****************************************************************************/
/**
*他的功能设置中断系统的例子。它使落bank0所有的GPIO器件管脚边缘中断。
*参数GicInstancePtr是一个指针XScuGic驱动程序实例。
*参数GpioInstancePtr包含一个指向到被连接到中断的GPIO的常量
*参数GpioIntrId是中断Id,
* XPAR_<GICPS>_ <GPIOPS_instance>_VEC_ID从价值
* xparameters.h。
*
返回:XST_SUCCESS如果成功,否则XST_FAILURE。
* This function sets up the interrupt system for the example. It enables falling
* edge interrupts for all the pins of bank 0 in the GPIO device.
*
* @param	GicInstancePtr is a pointer to the XScuGic driver Instance.
* @param	GpioInstancePtr contains a pointer to the instance of the GPIO
*		component which is going to be connected to the interrupt
*		controller.
* @param	GpioIntrId is the interrupt Id and is typically
*		XPAR_<GICPS>_<GPIOPS_instance>_VEC_ID value from
*		xparameters.h.
*
* @return	XST_SUCCESS if successful, otherwise XST_FAILURE.
*
* @note		None.
*
****************************************************************************/
static int SetupInterruptSystem(XScuGic *GicInstancePtr, XGpioPs *Gpio,
				u16 GpioIntrId)
{
	int Status;

	XScuGic_Config *IntcConfig; /* Instance of the interrupt controller
	中断控制器常量 */

	Xil_ExceptionInit();

	/*初始化中断控制器
	 */
	IntcConfig = XScuGic_LookupConfig(INTC_DEVICE_ID);
	if (NULL == IntcConfig) {
		return XST_FAILURE;
	}

	Status = XScuGic_CfgInitialize(GicInstancePtr, IntcConfig,
					IntcConfig->CpuBaseAddress);
	if (Status != XST_SUCCESS) {
		return XST_FAILURE;
	}

	/*
	 * 把中断控制器中断处理程序连接到硬件
*中断处理逻辑的处理器。
	 * Connect the interrupt controller interrupt handler to the hardware
	 * interrupt handling logic in the processor.
	 */
	Xil_ExceptionRegisterHandler(XIL_EXCEPTION_ID_INT,
				(Xil_ExceptionHandler)XScuGic_InterruptHandler,
				GicInstancePtr);

	/*
	 * Connect the device driver handler that will be called when an
	 * interrupt for the device occurs, the handler defined above performs
	 * the specific interrupt processing for the device.
	 * 连接那些当中断发生的时候将会被调用的设备驱动处理函数,
	 * 上述定义的处理程序执行特定中断处理的设备。
	 */
	Status = XScuGic_Connect(GicInstancePtr, GpioIntrId,
				(Xil_ExceptionHandler)XGpioPs_IntrHandler,
				(void *)Gpio);
	if (Status != XST_SUCCESS) {
		return Status;
	}

	/*使能bank0 的下降沿中断
	 * Enable falling edge interrupts for all the pins in bank 0.
	 */
//#define INPUT_BANK 0
	XGpioPs_SetIntrType(Gpio, INPUT_BANK, 0x00, 0x00, 0x00);

	/*设置gpio中断的控制器
	 * Set the handler for gpio interrupts.
	 */
	XGpioPs_SetCallbackHandler(Gpio, (void *)Gpio, IntrHandler);

	/*使能bank0的gpio中断
	 * Enable the GPIO interrupts of Bank 0.
	 */
	XGpioPs_IntrEnable(Gpio, INPUT_BANK, 0xFFFFFFFF);

	/*使能gpio设备的中断
	 * Enable the interrupt for the GPIO device.
	 */
	XScuGic_Enable(GicInstancePtr, GpioIntrId);

	/*使能处理程序的中断
	 * Enable interrupts in the Processor.
	 */
	Xil_ExceptionEnableMask(XIL_EXCEPTION_IRQ);

	return XST_SUCCESS;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-08 08:33:54

zedboard 中断的相关文章

zedboard中断实现

关于zedboard中断的博客 http://m.blog.csdn.net/blog/oxp7085915/17378687 http://www.tuicool.com/articles/mY3qIvi 在系统编程的中断处理程序,也称为中断服务例程(ISR),在微控制器固件,操作系统回调子例程,或设备驱动器,其执行是由一个硬件中断的接收触发.中断处理程序中有大量的功能,这些功能的基础上的原因而变化的中断生成和速度时,中断处理程序完成其任务. 中断处理程序是事件处理程序的一个低级别的对应.这些

zedboard中断main

//Description:         Zed LED DimmerExample //Revision:            Oct 25, 2013: 1.00Initial version //---------------------------------------------------------------------------- /*****************************Include Files *************************

79.ZYNQ内部私有定时器中断

上篇文章实现了了PS接受来自PL的中断,本片文章将在ZYNQ的纯PS里实现私有定时器中断.每个一秒中断一次,在中断函数里计数加1,通过串口打印输出. *本文所使用的开发板是Miz702(兼容zedboard) PC 开发环境版本:Vivado 2015.2 Xilinx SDK 2015.2* 中断原理 中断对于保证任务的实时性非常必要,在ZYNQ里集成了中断控制器GIC(Generic Interrupt Controller).GIC可以接受I/O外设中断IOP和PL中断,将这些中断发给CP

77.PS接收来自PL的按键中断

本篇文章主要介绍外设(PL)产生的中断请求,在PS端进行处理. 在PL端通过按键产生中断,PS接受到之后点亮相应的LED. 本文所使用的开发板是zedboardPC 开发环境版本:Vivado 2015.4 Xilinx SDK 2015.4 搭建硬件工程 建好工程后,添加ZYNQ IP 双击 ZYNQ,打开Re-customize IP对话框,使能IRQ_P2P 使能UART1 点击Run Connection Automation,按照如图所示配置,点击OK 添加一个GPIO IP,按照如图

HLS图像处理系列——在ZEDBoard搭建DDR图像处理通路

ZYNQ芯片内包含一个丰富特性的基于双核ARM Cortex-A9的处理子系统(Processing System,PS)和Xilinx 28nm可编程逻辑(Programmable Logic,PL).PS除了核心外还包括片上存储器.外部存储器接口以及大量外设连接接口. 利用ARM,我们可以做嵌入式操作系统相关的任务,如图形界面.用户输入.网络.DDR3控制等,由于ARM本身具有丰富的外设接口,而且支持多级流水线,处理这些事务游刃有余,但对于计算量较大的应用却捉襟见肘,因为ARM本身还是典型的

zedboard各种相关资料整理中

目录 知识篇.. 1 Zedboard实现Linux. 1 中断.. 1 裸机中断实验硬件配置.. 2 oled驱动.. 2 约束.. 2 [Vivado使用误区与进阶]XDC约束技巧-- I/O篇.. 2 教程篇.. 2 何宾网络课堂.. 2 高亚军-vivado入门与提高.. 2 资源篇.. 2 Xilinx官网用户指南地址.. 2 相关博客.. 3 转自其他博客.. 3 知识篇 Zedboard实现Linux http://blog.chinaunix.net/xmlrpc.php?r=b

zedboard上首个驱动实践——Led

// led驱动 *myled.c*//头文件 #include<linux/module.h> //最基本的文件,支持动态添加和卸载模块 #include<linux/kernel.h> //内核相关文件 #include<linux/fs.h> //包括文件操作相关struct的定义(struct file_operations和struct inode),MINOR.MAJOR的头文件 #include<linux/init.h> //初始化头文件 #

LCD实验学习笔记(八):中断控制器

s3c2440有60个中断源(其中15个为子中断源). 程序状态寄存器(PSR)的F位设为1,禁用快速中断(FRQ). 程序状态寄存器(PSR)的I位设为1,禁用普通中断(IRQ). 相反,PSR寄存器F位为0开FRQ中断,I位为0开IRQ中断. s3c2440中断控制器中有五个控制寄存器:中断源等待寄存器(SRCPND),中断模式寄存器(INTMOD),屏蔽寄存器(INTMSK),优先级寄存器(PRIORITY),中断等待寄存器(INTPND). SRCPND寄存器各位对应不同的中断,其中外部

Java阻塞中断和LockSupport

在介绍之前,先抛几个问题. Thread.interrupt()方法和InterruptedException异常的关系?是由interrupt触发产生了InterruptedException异常? Thread.interrupt()会中断线程什么状态的工作? RUNNING or BLOCKING? 一般Thread编程需要关注interrupt中断不?一般怎么处理?可以用来做什么? LockSupport.park()和unpark(),与object.wait()和notify()的区