mirror of
https://github.com/wfjm/w11.git
synced 2026-01-13 15:37:43 +00:00
167 lines
5.2 KiB
VHDL
167 lines
5.2 KiB
VHDL
-- $Id: pdp11_irq.vhd 1181 2019-07-08 17:00:50Z mueller $
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
-- Copyright 2007-2019 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
--
|
|
------------------------------------------------------------------------------
|
|
-- Module Name: pdp11_irq - syn
|
|
-- Description: pdp11: interrupt requester
|
|
--
|
|
-- Dependencies: ib_sel
|
|
-- Test bench: tb/tb_pdp11_core (implicit)
|
|
-- Target Devices: generic
|
|
-- Tool versions: ise 8.2-14.7; viv 2014.4-2017.2; ghdl 0.18-0.35
|
|
--
|
|
-- Revision History:
|
|
-- Date Rev Version Comment
|
|
-- 2019-04-23 1136 1.3 BUGFIX: re-write, ensure ACK send to correct device
|
|
-- 2011-11-18 427 1.2.2 now numeric_std clean
|
|
-- 2010-10-23 335 1.2.1 use ib_sel
|
|
-- 2010-10-17 333 1.2 use ibus V2 interface
|
|
-- 2008-08-22 161 1.1.4 use iblib
|
|
-- 2008-04-25 138 1.1.3 use BRESET to clear pirq
|
|
-- 2008-01-06 111 1.1.2 rename signal EI_ACK->EI_ACKM (master ack)
|
|
-- 2008-01-05 110 1.1.1 rename IB_MREQ(ena->req) SRES(sel->ack, hold->busy)
|
|
-- 2007-12-30 107 1.1 use IB_MREQ/IB_SRES interface now
|
|
-- 2007-10-12 88 1.0.2 avoid ieee.std_logic_unsigned, use cast to unsigned
|
|
-- 2007-06-14 56 1.0.1 Use slvtypes.all
|
|
-- 2007-05-12 26 1.0 Initial version
|
|
------------------------------------------------------------------------------
|
|
|
|
library ieee;
|
|
use ieee.std_logic_1164.all;
|
|
use ieee.numeric_std.all;
|
|
|
|
use work.slvtypes.all;
|
|
use work.iblib.all;
|
|
use work.pdp11.all;
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
entity pdp11_irq is -- interrupt requester
|
|
port (
|
|
CLK : in slbit; -- clock
|
|
BRESET : in slbit; -- bus reset
|
|
INT_ACK : in slbit; -- interrupt acknowledge from CPU
|
|
EI_PRI : in slv3; -- external interrupt priority
|
|
EI_VECT : in slv9_2; -- external interrupt vector
|
|
EI_ACKM : out slbit; -- external interrupt acknowledge
|
|
PRI : out slv3; -- interrupt priority
|
|
VECT : out slv9_2; -- interrupt vector
|
|
IB_MREQ : in ib_mreq_type; -- ibus request
|
|
IB_SRES : out ib_sres_type -- ibus response
|
|
);
|
|
end pdp11_irq;
|
|
|
|
architecture syn of pdp11_irq is
|
|
|
|
constant ibaddr_pirq : slv16 := slv(to_unsigned(8#177772#,16));
|
|
constant vect_pirq : slv9 := slv(to_unsigned(8#240#,9));
|
|
|
|
subtype pirq_ibf_pir is integer range 15 downto 9;
|
|
subtype pirq_ibf_pia_h is integer range 7 downto 5;
|
|
subtype pirq_ibf_pia_l is integer range 3 downto 1;
|
|
|
|
type regs_type is record -- state registers
|
|
pirq : slv8_1; -- pirq mask
|
|
eilast : slbit; -- ei won in last cycle
|
|
end record regs_type;
|
|
|
|
constant regs_init : regs_type := (
|
|
(others=>'0'), -- pirq
|
|
'0' -- eilast
|
|
);
|
|
|
|
signal R_REGS : regs_type := regs_init;
|
|
signal N_REGS : regs_type := regs_init;
|
|
|
|
signal IBSEL_PIRQ : slbit := '0';
|
|
signal PI_PRI : slv3 := (others => '0'); -- prog.int. priority
|
|
|
|
-- attribute PRIORITY_EXTRACT : string;
|
|
-- attribute PRIORITY_EXTRACT of PI_PRI : signal is "force";
|
|
|
|
begin
|
|
|
|
SEL : ib_sel
|
|
generic map (
|
|
IB_ADDR => ibaddr_pirq)
|
|
port map (
|
|
CLK => CLK,
|
|
IB_MREQ => IB_MREQ,
|
|
SEL => IBSEL_PIRQ
|
|
);
|
|
|
|
proc_regs: process (CLK)
|
|
begin
|
|
if rising_edge(CLK) then
|
|
if BRESET = '1' then
|
|
R_REGS <= regs_init;
|
|
else
|
|
R_REGS <= N_REGS;
|
|
end if;
|
|
end if;
|
|
end process proc_regs;
|
|
|
|
PI_PRI <= "111" when R_REGS.pirq(7)='1' else
|
|
"110" when R_REGS.pirq(6)='1' else
|
|
"101" when R_REGS.pirq(5)='1' else
|
|
"100" when R_REGS.pirq(4)='1' else
|
|
"011" when R_REGS.pirq(3)='1' else
|
|
"010" when R_REGS.pirq(2)='1' else
|
|
"001" when R_REGS.pirq(1)='1' else
|
|
"000";
|
|
|
|
proc_next : process (R_REGS, IB_MREQ, IBSEL_PIRQ, PI_PRI,
|
|
EI_PRI, EI_VECT, INT_ACK)
|
|
variable r : regs_type := regs_init;
|
|
variable n : regs_type := regs_init;
|
|
variable idout : slv16 := (others=>'0');
|
|
variable ibreq : slbit := '0';
|
|
begin
|
|
|
|
r := R_REGS;
|
|
n := R_REGS;
|
|
|
|
idout := (others=>'0');
|
|
ibreq := IB_MREQ.re or IB_MREQ.we;
|
|
|
|
-- ibus transactions
|
|
if IBSEL_PIRQ = '1' then
|
|
|
|
idout(pirq_ibf_pir) := r.pirq;
|
|
idout(pirq_ibf_pia_h) := PI_PRI;
|
|
idout(pirq_ibf_pia_l) := PI_PRI;
|
|
|
|
if IB_MREQ.we='1'and IB_MREQ.be1='1' then
|
|
n.pirq := IB_MREQ.din(pirq_ibf_pir);
|
|
end if;
|
|
end if;
|
|
|
|
-- pirq vs ei_vect selection
|
|
if unsigned(EI_PRI) > unsigned(PI_PRI) then
|
|
n.eilast := '1';
|
|
PRI <= EI_PRI;
|
|
VECT <= EI_VECT;
|
|
else
|
|
n.eilast := '0';
|
|
PRI <= PI_PRI;
|
|
VECT <= vect_pirq(8 downto 2);
|
|
end if;
|
|
|
|
-- Note: INT_ACK comes one cycle after vector is latched !
|
|
-- therefore send INT_ACK to EI_ACKM only if EI was winner in last cycle
|
|
EI_ACKM <= '0';
|
|
if r.eilast = '1' then
|
|
EI_ACKM <= INT_ACK;
|
|
end if;
|
|
|
|
N_REGS <= n;
|
|
|
|
IB_SRES.dout <= idout;
|
|
IB_SRES.ack <= IBSEL_PIRQ and ibreq; -- ack all
|
|
IB_SRES.busy <= '0';
|
|
|
|
end process proc_next;
|
|
|
|
end syn;
|