4 * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
5 * Copyright 2000 Bernardo Innocenti <bernie@codewiz.org>
6 * This file is part of DevLib - See README.devlib for information.
9 * \brief AVR UART and SPI I/O driver
11 * Rationale for project_ks hardware.
13 * The serial 0 on the board_kf board is used to communicate with the
14 * smart card, which has the TX and RX lines connected together. To
15 * allow the smart card to drive the RX line of the CPU the CPU TX has
16 * to be in a high impedance state.
17 * Whenever a transmission is done and there is nothing more to send
18 * the transmitter is turn off. The output pin is held in input with
19 * pull-up enabled, to avoid capturing noise from the nearby RX line.
21 * The line on the KBus port must keep sending data, even when
22 * there is nothing to transmit, because a burst data transfer
23 * generates noise on the audio channels.
24 * This is accomplished using the multiprocessor mode of the
25 * ATmega64/128 serial.
27 * The receiver keeps the MPCM bit always on. When useful data
28 * is trasmitted the address bit is set. The receiver hardware
29 * consider the frame as address info and receive it.
30 * When useless fill bytes are sent the address bit is cleared
31 * and the receiver will ignore them, avoiding useless triggering
35 * \author Bernardo Innocenti <bernie@develer.com>
36 * \author Stefano Fedrigo <aleph@develer.com>
41 *#* Revision 1.30 2006/02/17 22:23:06 bernie
42 *#* Update POSIX serial emulator.
44 *#* Revision 1.29 2005/11/27 23:31:48 bernie
45 *#* Support avr-libc 1.4.
47 *#* Revision 1.28 2005/11/04 16:20:02 bernie
48 *#* Fix reference to README.devlib in header.
50 *#* Revision 1.27 2005/07/03 15:19:31 bernie
53 *#* Revision 1.26 2005/04/11 19:10:27 bernie
54 *#* Include top-level headers from cfg/ subdir.
56 *#* Revision 1.25 2005/01/25 08:37:26 bernie
57 *#* CONFIG_SER_HWHANDSHAKE fixes.
59 *#* Revision 1.24 2005/01/14 00:49:16 aleph
60 *#* Rename callbacks; SerialHardwareVT.txSending: New callback; Add SPI_BUS macros.
62 *#* Revision 1.23 2005/01/11 18:09:07 aleph
63 *#* Add ATmega8 SPI port definitions; Fix transmit complete IRQ bug; add strobe macros to uart1 and spi
65 *#* Revision 1.22 2004/12/31 17:47:45 bernie
66 *#* Rename UNUSED() to UNUSED_ARG().
68 *#* Revision 1.21 2004/12/13 12:07:06 bernie
69 *#* DISABLE_IRQSAVE/ENABLE_IRQRESTORE: Convert to IRQ_SAVE_DISABLE/IRQ_RESTORE.
71 *#* Revision 1.20 2004/12/13 11:51:43 bernie
72 *#* Fix a latent bug with reentrant serial IRQs.
74 *#* Revision 1.19 2004/12/13 11:51:08 bernie
75 *#* DISABLE_INTS/ENABLE_INTS: Convert to IRQ_DISABLE/IRQ_ENABLE.
77 *#* Revision 1.18 2004/12/08 08:03:48 bernie
80 *#* Revision 1.17 2004/10/19 07:52:35 bernie
81 *#* Reset parity bits before overwriting them (Fixed by batt in project_ks).
83 *#* Revision 1.16 2004/10/03 18:45:48 bernie
84 *#* Convert to new-style config macros; Allow compiling with a C++ compiler (mostly).
86 *#* Revision 1.15 2004/09/14 21:05:36 bernie
87 *#* Use debug.h instead of kdebug.h; Use new AVR pin names; Spelling fixes.
89 *#* Revision 1.14 2004/09/06 21:50:00 bernie
92 *#* Revision 1.13 2004/09/06 21:40:50 bernie
93 *#* Move buffer handling in chip-specific driver.
95 *#* Revision 1.12 2004/08/29 22:06:10 bernie
96 *#* Fix a bug in the (unused) RTS/CTS code; Clarify documentation.
98 *#* Revision 1.10 2004/08/10 06:30:41 bernie
99 *#* Major redesign of serial bus policy handling.
101 *#* Revision 1.9 2004/08/02 20:20:29 aleph
102 *#* Merge from project_ks
104 *#* Revision 1.8 2004/07/29 22:57:09 bernie
105 *#* Several tweaks to reduce code size on ATmega8.
107 *#* Revision 1.7 2004/07/18 21:54:23 bernie
108 *#* Add ATmega8 support.
110 *#* Revision 1.5 2004/06/27 15:25:40 aleph
111 *#* Add missing callbacks for SPI;
112 *#* Change UNUSED() macro to new version with two args;
113 *#* Use TX line filling only on the correct KBUS serial port;
114 *#* Fix nasty IRQ disabling bug in recv complete hander for port 1.
116 *#* Revision 1.4 2004/06/03 11:27:09 bernie
117 *#* Add dual-license information.
119 *#* Revision 1.3 2004/06/02 21:35:24 aleph
120 *#* Serial enhancements: interruptible receive handler and 8 bit serial status for AVR; remove volatile attribute to FIFOBuffer, useless for new fifobuf routens
122 *#* Revision 1.2 2004/05/23 18:21:53 bernie
123 *#* Trim CVS logs and cleanup header info.
129 #include "hw.h" /* Required for bus macros overrides */
130 #include <appconfig.h>
132 #include <cfg/debug.h>
133 #include <drv/timer.h>
134 #include <mware/fifobuf.h>
137 #if defined(__AVR_LIBC_VERSION__) && (__AVR_LIBC_VERSION__ >= 10400UL)
138 #include <avr/interrupt.h>
140 #include <avr/signal.h>
144 #if !CONFIG_SER_HWHANDSHAKE
146 * \name Hardware handshake (RTS/CTS).
149 #define RTS_ON do {} while (0)
150 #define RTS_OFF do {} while (0)
151 #define IS_CTS_ON true
152 #define EIMSKF_CTS 0 /*!< Dummy value, must be overridden */
158 * \name Overridable serial bus hooks
160 * These can be redefined in hw.h to implement
161 * special bus policies such as half-duplex, 485, etc.
165 * TXBEGIN TXCHAR TXEND TXOFF
166 * | __________|__________ | |
169 * ______ __ __ __ __ __ __ ________________
170 * \/ \/ \/ \/ \/ \/ \/
171 * ______/\__/\__/\__/\__/\__/\__/
177 #ifndef SER_UART0_BUS_TXINIT
179 * Default TXINIT macro - invoked in uart0_init()
181 * - Enable both the receiver and the transmitter
182 * - Enable only the RX complete interrupt
184 #define SER_UART0_BUS_TXINIT do { \
185 UCSR0B = BV(RXCIE) | BV(RXEN) | BV(TXEN); \
189 #ifndef SER_UART0_BUS_TXBEGIN
191 * Invoked before starting a transmission
193 * - Enable both the receiver and the transmitter
194 * - Enable both the RX complete and UDR empty interrupts
196 #define SER_UART0_BUS_TXBEGIN do { \
197 UCSR0B = BV(RXCIE) | BV(UDRIE) | BV(RXEN) | BV(TXEN); \
201 #ifndef SER_UART0_BUS_TXCHAR
203 * Invoked to send one character.
205 #define SER_UART0_BUS_TXCHAR(c) do { \
210 #ifndef SER_UART0_BUS_TXEND
212 * Invoked as soon as the txfifo becomes empty
214 * - Keep both the receiver and the transmitter enabled
215 * - Keep the RX complete interrupt enabled
216 * - Disable the UDR empty interrupt
218 #define SER_UART0_BUS_TXEND do { \
219 UCSR0B = BV(RXCIE) | BV(RXEN) | BV(TXEN); \
223 #ifndef SER_UART0_BUS_TXOFF
225 * \def SER_UART0_BUS_TXOFF
227 * Invoked after the last character has been transmitted
229 * The default is no action.
232 #define SER_UART0_BUS_TXOFF
236 #ifndef SER_UART1_BUS_TXINIT
237 /*! \sa SER_UART0_BUS_TXINIT */
238 #define SER_UART1_BUS_TXINIT do { \
239 UCSR1B = BV(RXCIE) | BV(RXEN) | BV(TXEN); \
242 #ifndef SER_UART1_BUS_TXBEGIN
243 /*! \sa SER_UART0_BUS_TXBEGIN */
244 #define SER_UART1_BUS_TXBEGIN do { \
245 UCSR1B = BV(RXCIE) | BV(UDRIE) | BV(RXEN) | BV(TXEN); \
248 #ifndef SER_UART1_BUS_TXCHAR
249 /*! \sa SER_UART0_BUS_TXCHAR */
250 #define SER_UART1_BUS_TXCHAR(c) do { \
254 #ifndef SER_UART1_BUS_TXEND
255 /*! \sa SER_UART0_BUS_TXEND */
256 #define SER_UART1_BUS_TXEND do { \
257 UCSR1B = BV(RXCIE) | BV(RXEN) | BV(TXEN); \
260 #ifndef SER_UART1_BUS_TXOFF
262 * \def SER_UART1_BUS_TXOFF
264 * \see SER_UART0_BUS_TXOFF
267 #define SER_UART1_BUS_TXOFF
274 * \name Overridable SPI hooks
276 * These can be redefined in hw.h to implement
277 * special bus policies such as slave select pin handling, etc.
281 #ifndef SER_SPI_BUS_TXINIT
283 * Default TXINIT macro - invoked in spi_init()
284 * The default is no action.
286 #define SER_SPI_BUS_TXINIT
289 #ifndef SER_SPI_BUS_TXCLOSE
291 * Invoked after the last character has been transmitted.
292 * The default is no action.
294 #define SER_SPI_BUS_TXCLOSE
299 /* SPI port and pin configuration */
300 #if CPU_AVR_ATMEGA64 || CPU_AVR_ATMEGA128 || CPU_AVR_ATMEGA103
301 #define SPI_PORT PORTB
303 #define SPI_SCK_BIT PB1
304 #define SPI_MOSI_BIT PB2
305 #define SPI_MISO_BIT PB3
306 #elif CPU_AVR_ATMEGA8
307 #define SPI_PORT PORTB
309 #define SPI_SCK_BIT PB5
310 #define SPI_MOSI_BIT PB3
311 #define SPI_MISO_BIT PB4
313 #error Unknown architecture
316 /* USART register definitions */
317 #if CPU_AVR_ATMEGA64 || CPU_AVR_ATMEGA128
318 #define AVR_HAS_UART1 1
319 #elif CPU_AVR_ATMEGA8
320 #define AVR_HAS_UART1 0
327 #define SIG_UART0_DATA SIG_UART_DATA
328 #define SIG_UART0_RECV SIG_UART_RECV
329 #define SIG_UART0_TRANS SIG_UART_TRANS
330 #elif CPU_AVR_ATMEGA103
331 #define AVR_HAS_UART1 0
336 #define SIG_UART0_DATA SIG_UART_DATA
337 #define SIG_UART0_RECV SIG_UART_RECV
338 #define SIG_UART0_TRANS SIG_UART_TRANS
340 #error Unknown architecture
345 * \def CONFIG_SER_STROBE
347 * This is a debug facility that can be used to
348 * monitor SER interrupt activity on an external pin.
350 * To use strobes, redefine the macros SER_STROBE_ON,
351 * SER_STROBE_OFF and SER_STROBE_INIT and set
352 * CONFIG_SER_STROBE to 1.
354 #if !defined(CONFIG_SER_STROBE) || !CONFIG_SER_STROBE
355 #define SER_STROBE_ON do {/*nop*/} while(0)
356 #define SER_STROBE_OFF do {/*nop*/} while(0)
357 #define SER_STROBE_INIT do {/*nop*/} while(0)
361 /* From the high-level serial driver */
362 extern struct Serial ser_handles[SER_CNT];
364 /* TX and RX buffers */
365 static unsigned char uart0_txbuffer[CONFIG_UART0_TXBUFSIZE];
366 static unsigned char uart0_rxbuffer[CONFIG_UART0_RXBUFSIZE];
368 static unsigned char uart1_txbuffer[CONFIG_UART1_TXBUFSIZE];
369 static unsigned char uart1_rxbuffer[CONFIG_UART1_RXBUFSIZE];
371 static unsigned char spi_txbuffer[CONFIG_SPI_TXBUFSIZE];
372 static unsigned char spi_rxbuffer[CONFIG_SPI_RXBUFSIZE];
376 * Internal hardware state structure
378 * The \a sending variable is true while the transmission
379 * interrupt is retriggering itself.
381 * For the USARTs the \a sending flag is useful for taking specific
382 * actions before sending a burst of data, at the start of a trasmission
383 * but not before every char sent.
385 * For the SPI, this flag is necessary because the SPI sends and receives
386 * bytes at the same time and the SPI IRQ is unique for send/receive.
387 * The only way to start transmission is to write data in SPDR (this
388 * is done by spi_starttx()). We do this *only* if a transfer is
389 * not already started.
393 struct SerialHardware hw;
394 volatile bool sending;
399 * These are to trick GCC into *not* using absolute addressing mode
400 * when accessing ser_handles, which is very expensive.
402 * Accessing through these pointers generates much shorter
403 * (and hopefully faster) code.
405 struct Serial *ser_uart0 = &ser_handles[SER_UART0];
407 struct Serial *ser_uart1 = &ser_handles[SER_UART1];
409 struct Serial *ser_spi = &ser_handles[SER_SPI];
416 static void uart0_init(
417 UNUSED_ARG(struct SerialHardware *, _hw),
418 UNUSED_ARG(struct Serial *, ser))
420 SER_UART0_BUS_TXINIT;
425 static void uart0_cleanup(UNUSED_ARG(struct SerialHardware *, _hw))
430 static void uart0_enabletxirq(struct SerialHardware *_hw)
432 struct AvrSerial *hw = (struct AvrSerial *)_hw;
435 * WARNING: racy code here! The tx interrupt sets hw->sending to false
436 * when it runs with an empty fifo. The order of statements in the
442 SER_UART0_BUS_TXBEGIN;
446 static void uart0_setbaudrate(UNUSED_ARG(struct SerialHardware *, _hw), unsigned long rate)
448 /* Compute baud-rate period */
449 uint16_t period = (((CLOCK_FREQ / 16UL) + (rate / 2)) / rate) - 1;
451 #if !CPU_AVR_ATMEGA103
452 UBRR0H = (period) >> 8;
456 //DB(kprintf("uart0_setbaudrate(rate=%lu): period=%d\n", rate, period);)
459 static void uart0_setparity(UNUSED_ARG(struct SerialHardware *, _hw), int parity)
461 #if !CPU_AVR_ATMEGA103
462 UCSR0C = (UCSR0C & ~(BV(UPM1) | BV(UPM0))) | ((parity) << UPM0);
468 static void uart1_init(
469 UNUSED_ARG(struct SerialHardware *, _hw),
470 UNUSED_ARG(struct Serial *, ser))
472 SER_UART1_BUS_TXINIT;
477 static void uart1_cleanup(UNUSED_ARG(struct SerialHardware *, _hw))
482 static void uart1_enabletxirq(struct SerialHardware *_hw)
484 struct AvrSerial *hw = (struct AvrSerial *)_hw;
487 * WARNING: racy code here! The tx interrupt
488 * sets hw->sending to false when it runs with
489 * an empty fifo. The order of the statements
490 * in the if-block matters.
495 SER_UART1_BUS_TXBEGIN;
499 static void uart1_setbaudrate(UNUSED_ARG(struct SerialHardware *, _hw), unsigned long rate)
501 /* Compute baud-rate period */
502 uint16_t period = (((CLOCK_FREQ / 16UL) + (rate / 2)) / rate) - 1;
504 UBRR1H = (period) >> 8;
507 //DB(kprintf("uart1_setbaudrate(rate=%ld): period=%d\n", rate, period);)
510 static void uart1_setparity(UNUSED_ARG(struct SerialHardware *, _hw), int parity)
512 UCSR1C = (UCSR1C & ~(BV(UPM1) | BV(UPM0))) | ((parity) << UPM0);
515 #endif // AVR_HAS_UART1
517 static void spi_init(UNUSED_ARG(struct SerialHardware *, _hw), UNUSED_ARG(struct Serial *, ser))
520 * Set MOSI and SCK ports out, MISO in.
522 * The ATmega64/128 datasheet explicitly states that the input/output
523 * state of the SPI pins is not significant, as when the SPI is
524 * active the I/O port are overrided.
525 * This is *blatantly FALSE*.
527 * Moreover, the MISO pin on the board_kc *must* be in high impedance
528 * state even when the SPI is off, because the line is wired together
529 * with the KBus serial RX, and the transmitter of the slave boards
530 * would be unable to drive the line.
532 SPI_DDR |= BV(SPI_MOSI_BIT) | BV(SPI_SCK_BIT);
533 SPI_DDR &= ~BV(SPI_MISO_BIT);
534 /* Enable SPI, IRQ on, Master, CPU_CLOCK/16 */
535 SPCR = BV(SPE) | BV(SPIE) | BV(MSTR) | BV(SPR0);
542 static void spi_cleanup(UNUSED_ARG(struct SerialHardware *, _hw))
548 /* Set all pins as inputs */
549 SPI_DDR &= ~(BV(SPI_MISO_BIT) | BV(SPI_MOSI_BIT) | BV(SPI_SCK_BIT));
552 static void spi_starttx(struct SerialHardware *_hw)
554 struct AvrSerial *hw = (struct AvrSerial *)_hw;
557 IRQ_SAVE_DISABLE(flags);
559 /* Send data only if the SPI is not already transmitting */
560 if (!hw->sending && !fifo_isempty(&ser_spi->txfifo))
563 SPDR = fifo_pop(&ser_spi->txfifo);
569 static void spi_setbaudrate(
570 UNUSED_ARG(struct SerialHardware *, _hw),
571 UNUSED_ARG(unsigned long, rate))
576 static void spi_setparity(UNUSED_ARG(struct SerialHardware *, _hw), UNUSED_ARG(int, parity))
581 static bool tx_sending(struct SerialHardware* _hw)
583 struct AvrSerial *hw = (struct AvrSerial *)_hw;
589 // FIXME: move into compiler.h? Ditch?
591 #define C99INIT(name,val) .name = val
592 #elif defined(__GNUC__)
593 #define C99INIT(name,val) name: val
595 #warning No designated initializers, double check your code
596 #define C99INIT(name,val) (val)
600 * High-level interface data structures
602 static const struct SerialHardwareVT UART0_VT =
604 C99INIT(init, uart0_init),
605 C99INIT(cleanup, uart0_cleanup),
606 C99INIT(setBaudrate, uart0_setbaudrate),
607 C99INIT(setParity, uart0_setparity),
608 C99INIT(txStart, uart0_enabletxirq),
609 C99INIT(txSending, tx_sending),
613 static const struct SerialHardwareVT UART1_VT =
615 C99INIT(init, uart1_init),
616 C99INIT(cleanup, uart1_cleanup),
617 C99INIT(setBaudrate, uart1_setbaudrate),
618 C99INIT(setParity, uart1_setparity),
619 C99INIT(txStart, uart1_enabletxirq),
620 C99INIT(txSending, tx_sending),
622 #endif // AVR_HAS_UART1
624 static const struct SerialHardwareVT SPI_VT =
626 C99INIT(init, spi_init),
627 C99INIT(cleanup, spi_cleanup),
628 C99INIT(setBaudrate, spi_setbaudrate),
629 C99INIT(setParity, spi_setparity),
630 C99INIT(txStart, spi_starttx),
631 C99INIT(txSending, tx_sending),
634 static struct AvrSerial UARTDescs[SER_CNT] =
638 C99INIT(table, &UART0_VT),
639 C99INIT(txbuffer, uart0_txbuffer),
640 C99INIT(rxbuffer, uart0_rxbuffer),
641 C99INIT(txbuffer_size, sizeof(uart0_txbuffer)),
642 C99INIT(rxbuffer_size, sizeof(uart0_rxbuffer)),
644 C99INIT(sending, false),
649 C99INIT(table, &UART1_VT),
650 C99INIT(txbuffer, uart1_txbuffer),
651 C99INIT(rxbuffer, uart1_rxbuffer),
652 C99INIT(txbuffer_size, sizeof(uart1_txbuffer)),
653 C99INIT(rxbuffer_size, sizeof(uart1_rxbuffer)),
655 C99INIT(sending, false),
660 C99INIT(table, &SPI_VT),
661 C99INIT(txbuffer, spi_txbuffer),
662 C99INIT(rxbuffer, spi_rxbuffer),
663 C99INIT(txbuffer_size, sizeof(spi_txbuffer)),
664 C99INIT(rxbuffer_size, sizeof(spi_rxbuffer)),
666 C99INIT(sending, false),
670 struct SerialHardware *ser_hw_getdesc(int unit)
672 ASSERT(unit < SER_CNT);
673 return &UARTDescs[unit].hw;
681 #if CONFIG_SER_HWHANDSHAKE
683 //! This interrupt is triggered when the CTS line goes high
686 // Re-enable UDR empty interrupt and TX, then disable CTS interrupt
687 UCSR0B = BV(RXCIE) | BV(UDRIE) | BV(RXEN) | BV(TXEN);
688 EIMSK &= ~EIMSKF_CTS;
691 #endif // CONFIG_SER_HWHANDSHAKE
695 * Serial 0 TX interrupt handler
697 SIGNAL(SIG_UART0_DATA)
701 struct FIFOBuffer * const txfifo = &ser_uart0->txfifo;
703 if (fifo_isempty(txfifo))
706 #ifndef SER_UART0_BUS_TXOFF
707 UARTDescs[SER_UART0].sending = false;
710 #if CPU_AVR_ATMEGA64 || CPU_AVR_ATMEGA128 || CPU_AVR_ATMEGA103
713 // Disable rx interrupt and tx, enable CTS interrupt
715 UCSR0B = BV(RXCIE) | BV(RXEN) | BV(TXEN);
722 char c = fifo_pop(txfifo);
723 SER_UART0_BUS_TXCHAR(c);
729 #ifdef SER_UART0_BUS_TXOFF
731 * Serial port 0 TX complete interrupt handler.
733 * This IRQ is usually disabled. The UDR-empty interrupt
734 * enables it when there's no more data to transmit.
735 * We need to wait until the last character has been
736 * transmitted before switching the 485 transceiver to
739 * The txfifo might have been refilled by putchar() while
740 * we were waiting for the transmission complete interrupt.
741 * In this case, we must restart the UDR empty interrupt,
742 * otherwise we'd stop the serial port with some data
743 * still pending in the buffer.
745 SIGNAL(SIG_UART0_TRANS)
749 struct FIFOBuffer * const txfifo = &ser_uart0->txfifo;
750 if (fifo_isempty(txfifo))
753 UARTDescs[SER_UART0].sending = false;
756 UCSR0B = BV(RXCIE) | BV(UDRIE) | BV(RXEN) | BV(TXEN);
760 #endif /* SER_UART0_BUS_TXOFF */
766 * Serial 1 TX interrupt handler
768 SIGNAL(SIG_UART1_DATA)
772 struct FIFOBuffer * const txfifo = &ser_uart1->txfifo;
774 if (fifo_isempty(txfifo))
777 #ifndef SER_UART1_BUS_TXOFF
778 UARTDescs[SER_UART1].sending = false;
781 #if CPU_AVR_ATMEGA64 || CPU_AVR_ATMEGA128 || CPU_AVR_ATMEGA103
784 // Disable rx interrupt and tx, enable CTS interrupt
786 UCSR1B = BV(RXCIE) | BV(RXEN) | BV(TXEN);
793 char c = fifo_pop(txfifo);
794 SER_UART1_BUS_TXCHAR(c);
800 #ifdef SER_UART1_BUS_TXOFF
802 * Serial port 1 TX complete interrupt handler.
804 * \sa port 0 TX complete handler.
806 SIGNAL(SIG_UART1_TRANS)
810 struct FIFOBuffer * const txfifo = &ser_uart1->txfifo;
811 if (fifo_isempty(txfifo))
814 UARTDescs[SER_UART1].sending = false;
817 UCSR1B = BV(RXCIE) | BV(UDRIE) | BV(RXEN) | BV(TXEN);
821 #endif /* SER_UART1_BUS_TXOFF */
823 #endif // AVR_HAS_UART1
827 * Serial 0 RX complete interrupt handler.
829 * This handler is interruptible.
830 * Interrupt are reenabled as soon as recv complete interrupt is
831 * disabled. Using INTERRUPT() is troublesome when the serial
832 * is heavily loaded, because an interrupt could be retriggered
833 * when executing the handler prologue before RXCIE is disabled.
835 * \note The code that re-enables interrupts is commented out
836 * because in some nasty cases the interrupt is retriggered.
837 * This is probably due to the RXC flag being set before
838 * RXCIE is cleared. Unfortunately the RXC flag is read-only
839 * and can't be cleared by code.
841 SIGNAL(SIG_UART0_RECV)
845 /* Disable Recv complete IRQ */
846 //UCSR0B &= ~BV(RXCIE);
849 /* Should be read before UDR */
850 ser_uart0->status |= UCSR0A & (SERRF_RXSROVERRUN | SERRF_FRAMEERROR);
852 /* To clear the RXC flag we must _always_ read the UDR even when we're
853 * not going to accept the incoming data, otherwise a new interrupt
854 * will occur once the handler terminates.
857 struct FIFOBuffer * const rxfifo = &ser_uart0->rxfifo;
859 if (fifo_isfull(rxfifo))
860 ser_uart0->status |= SERRF_RXFIFOOVERRUN;
863 fifo_push(rxfifo, c);
864 #if CONFIG_SER_HWHANDSHAKE
865 if (fifo_isfull(rxfifo))
870 /* Reenable receive complete int */
872 //UCSR0B |= BV(RXCIE);
881 * Serial 1 RX complete interrupt handler.
883 * This handler is interruptible.
884 * Interrupt are reenabled as soon as recv complete interrupt is
885 * disabled. Using INTERRUPT() is troublesome when the serial
886 * is heavily loaded, because an interrupt could be retriggered
887 * when executing the handler prologue before RXCIE is disabled.
889 * \see SIGNAL(SIG_UART0_RECV)
891 SIGNAL(SIG_UART1_RECV)
895 /* Disable Recv complete IRQ */
896 //UCSR1B &= ~BV(RXCIE);
899 /* Should be read before UDR */
900 ser_uart1->status |= UCSR1A & (SERRF_RXSROVERRUN | SERRF_FRAMEERROR);
902 /* To avoid an IRQ storm, we must _always_ read the UDR even when we're
903 * not going to accept the incoming data
906 struct FIFOBuffer * const rxfifo = &ser_uart1->rxfifo;
907 //ASSERT_VALID_FIFO(rxfifo);
909 if (UNLIKELY(fifo_isfull(rxfifo)))
910 ser_uart1->status |= SERRF_RXFIFOOVERRUN;
913 fifo_push(rxfifo, c);
914 #if CONFIG_SER_HWHANDSHAKE
915 if (fifo_isfull(rxfifo))
919 /* Re-enable receive complete int */
921 //UCSR1B |= BV(RXCIE);
926 #endif // AVR_HAS_UART1
930 * SPI interrupt handler
936 /* Read incoming byte. */
937 if (!fifo_isfull(&ser_spi->rxfifo))
938 fifo_push(&ser_spi->rxfifo, SPDR);
942 ser_spi->status |= SERRF_RXFIFOOVERRUN;
946 if (!fifo_isempty(&ser_spi->txfifo))
947 SPDR = fifo_pop(&ser_spi->txfifo);
949 UARTDescs[SER_SPI].sending = false;