- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
AXI lite based peripheral with Interrupt
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-26-2012 03:14 PM
Greeting everyone. How can a AXI lite peripheral (HDL code) be made to interrupt the Microblaze? What's to be considered in such a design? Also, are there any reference designs for such a system? I greatly appreciate any pointers. Thanks in advance.
Solved! Go to Solution.
Re: AXI lite based peripheral with Interrupt
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-26-2012 11:44 PM
The interrupt signal is declared in the same way that a normal output in your HDL code.
To make EDK understand that this signal (let's call it MY_INTERRUPT) is an interrupt signal, you have to declare this line in the .mpd file of your custom IP, and make sure tha the level are compatible with the interrupt controler of your system.
PORT MY_INTERRUPT = MY_INTERRUPT, SIGIS = INTERRUPT, SENSITIVITY = LEVEL_HIGH, INTERRUPT_PRIORITY = LOW
Re: AXI lite based peripheral with Interrupt
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-27-2012 09:50 AM
Thank you very much for the reply. That answers my question.











