When using the Receiver Line Status Interrupt (IER(2) = 1) I observe the following behaviour:
What I expect is that the LS interrupt can be cleared by reading the LSR any time, independently of the top charater in the Rx FIFO.
Matthias Klemm
It seems that I found a solution. I changed the following code in gh_uart_16550.vhd:
Parity_ER <= RF_DO(8); FRAME_ER <= RF_DO(9); Break_ITR <= RF_DO(10);
ITR3 <= '0' when (IER(2) = '0') else '1' when (LSR(1) = '1') else '1' when (RF_DO(10 downto 8) > "000") else '0';
parity_er_edge_det : gh_edge_det PORT MAP ( clk => clk, rst => rst, d => RF_DO(8), re => Parity_ER);
FRAME_er_edge_det : gh_edge_det PORT MAP ( clk => clk, rst => rst, d => RF_DO(9), re => FRAME_ER);
Break_ITR_edge_det : gh_edge_det PORT MAP ( clk => clk, rst => rst, d => RF_DO(10), re => Break_ITR);
ITR3 <= '0' when (IER(2) = '0') else '1' when (LSR(1) = '1') else '1' when (LSR(4 downto 2) > "000") else '0';
In my test it worked fine.