Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gennum GN4124 core
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
Gennum GN4124 core
Commits
219433eb
Commit
219433eb
authored
14 years ago
by
Matthieu Cattin
Browse files
Options
Downloads
Patches
Plain Diff
Connect interrupt request pulse to GN4124 gpio 8.
parent
22936a5c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hdl/gn4124core/gn4124_core.vhd
+4
-0
4 additions, 0 deletions
hdl/gn4124core/gn4124_core.vhd
hdl/gn4124core/lotus.vhd
+9
-3
9 additions, 3 deletions
hdl/gn4124core/lotus.vhd
with
13 additions
and
3 deletions
hdl/gn4124core/gn4124_core.vhd
+
4
−
0
View file @
219433eb
...
...
@@ -320,6 +320,10 @@ begin
O
=>
rst_n
);
------------------------------------------------------------------------------
-- IRQ pulse forward to GN4124 GPIO
------------------------------------------------------------------------------
irq_p_o
<=
irq_p_i
;
--============================================================================
-- P2L DataPath
...
...
This diff is collapsed.
Click to expand it.
hdl/gn4124core/lotus.vhd
+
9
−
3
View file @
219433eb
...
...
@@ -283,6 +283,9 @@ architecture BEHAVIOUR of LOTUS is
signal
led0
:
std_logic_vector
(
7
downto
0
);
signal
irq_sources
:
std_logic_vector
(
1
downto
0
);
signal
irq_to_gn4124
:
std_logic
;
begin
------------------------------------------------------------------------------
...
...
@@ -363,9 +366,9 @@ begin
---------------------------------------------------------
-- Interrupt interface
dma_irq_o
=>
open
,
irq_p_i
=>
'0'
,
irq_p_o
=>
open
,
dma_irq_o
=>
irq_sources
,
irq_p_i
=>
irq_to_gn4124
,
irq_p_o
=>
GPIO
(
8
)
,
---------------------------------------------------------
-- Target Interface (Wishbone master)
...
...
@@ -472,6 +475,9 @@ begin
-- douta =>
-- );
-- just forward irq pulses for test
irq_to_gn4124
<=
irq_sources
(
1
)
or
irq_sources
(
0
);
LED
<=
(
others
=>
'1'
);
end
BEHAVIOUR
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment