OpenCores

a VHDL 16550 UART core

Issue List
Clearing Receiver Line Status Interrupt #6
Closed matthiask opened this issue over 17 years ago
matthiask commented over 17 years ago

When using the Receiver Line Status Interrupt (IER(2) = 1) I observe the following behaviour:

  • A character with parity, framing or break error was received and the LS interrupt is set.
  • When now the LSR is read, the LS interrupt is not cleared how it is described in the IIR.
  • But when the top character from the Rx FIFO is read then the LS interrupt is cleared immediately.

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

matthiask commented over 17 years ago

It seems that I found a solution. I changed the following code in gh_uart_16550.vhd:

OLD:

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';

NEW:

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.

hlefevre was assigned over 17 years ago
hlefevre closed this over 17 years ago

Assignee
hlefevre
Labels
Bug