a684ebbaf6cdcb22767afe8ad248fb09db685235
[bertos.git] / bertos / drv / ser.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2003, 2004, 2006 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2000 Bernie Innocenti <bernie@codewiz.org>
31  * -->
32  *
33  * \brief Buffered serial I/O driver
34  *
35  * The serial rx interrupt buffers incoming data in a software FIFO
36  * to decouple the higher level protocols from the line speed.
37  * Outgoing data is buffered as well for better performance.
38  * This driver is not optimized for best performance, but it
39  * has proved to be fast enough to handle transfer rates up to
40  * 38400bps on a 16MHz 80196.
41  *
42  * MODULE CONFIGURATION
43  *
44  *  \li \c CONFIG_SER_HWHANDSHAKE - set to 1 to enable RTS/CTS handshake.
45  *         Support is incomplete/untested.
46  *  \li \c CONFIG_SER_TXTIMEOUT - Enable software serial transmission timeouts
47  *
48  *
49  * \version $Id$
50  * \author Bernie Innocenti <bernie@codewiz.org>
51  */
52
53 #include "ser.h"
54 #include "wdt.h"
55 #include "timer.h"
56 #include "ser_p.h"
57
58 #include "cfg/cfg_ser.h"
59 #include "cfg/cfg_proc.h"
60 #include <cfg/debug.h>
61
62 #include <mware/formatwr.h>
63
64 #include <cpu/power.h> /* cpu_relax() */
65
66 #include <string.h> /* memset() */
67
68 /*
69  * Sanity check for config parameters required by this module.
70  */
71 #if !defined(CONFIG_KERN) || ((CONFIG_KERN != 0) && CONFIG_KERN != 1)
72         #error CONFIG_KERN must be set to either 0 or 1 in cfg_kern.h
73 #endif
74 #if !defined(CONFIG_SER_RXTIMEOUT)
75         #error CONFIG_SER_TXTIMEOUT missing in cfg_ser.h
76 #endif
77 #if !defined(CONFIG_SER_RXTIMEOUT)
78         #error CONFIG_SER_RXTIMEOUT missing in cfg_ser.h
79 #endif
80 #if !defined(CONFIG_SER_DEFBAUDRATE)
81         #error CONFIG_SER_DEFBAUDRATE missing in cfg_ser.h
82 #endif
83
84
85 struct Serial *ser_handles[SER_CNT];
86
87 /**
88  * Insert \a c in tx FIFO buffer.
89  * \note This function will switch out the calling process
90  * if the tx buffer is full. If the buffer is full
91  * and \a port->txtimeout is 0 return EOF immediatly.
92  *
93  * \return EOF on error or timeout, \a c otherwise.
94  */
95 static int ser_putchar(int c, struct Serial *port)
96 {
97         if (fifo_isfull_locked(&port->txfifo))
98         {
99 #if CONFIG_SER_TXTIMEOUT != -1
100                 /* If timeout == 0 we don't want to wait */
101                 if (port->txtimeout == 0)
102                         return EOF;
103
104                 ticks_t start_time = timer_clock();
105 #endif
106
107                 /* Wait while buffer is full... */
108                 do
109                 {
110                         cpu_relax();
111
112 #if CONFIG_SER_TXTIMEOUT != -1
113                         if (timer_clock() - start_time >= port->txtimeout)
114                         {
115                                 ATOMIC(port->status |= SERRF_TXTIMEOUT);
116                                 return EOF;
117                         }
118 #endif /* CONFIG_SER_TXTIMEOUT */
119                 }
120                 while (fifo_isfull_locked(&port->txfifo));
121         }
122
123         fifo_push_locked(&port->txfifo, (unsigned char)c);
124
125         /* (re)trigger tx interrupt */
126         port->hw->table->txStart(port->hw);
127
128         /* Avoid returning signed extended char */
129         return (int)((unsigned char)c);
130 }
131
132
133 /**
134  * Fetch a character from the rx FIFO buffer.
135  * \note This function will switch out the calling process
136  * if the rx buffer is empty. If the buffer is empty
137  * and \a port->rxtimeout is 0 return EOF immediatly.
138  *
139  * \return EOF on error or timeout, \a c otherwise.
140  */
141 static int ser_getchar(struct Serial *port)
142 {
143         if (fifo_isempty_locked(&port->rxfifo))
144         {
145 #if CONFIG_SER_RXTIMEOUT != -1
146                 /* If timeout == 0 we don't want to wait for chars */
147                 if (port->rxtimeout == 0)
148                         return EOF;
149
150                 ticks_t start_time = timer_clock();
151 #endif
152
153                 /* Wait while buffer is empty */
154                 do
155                 {
156                         cpu_relax();
157
158 #if CONFIG_SER_RXTIMEOUT != -1
159                         if (timer_clock() - start_time >= port->rxtimeout)
160                         {
161                                 ATOMIC(port->status |= SERRF_RXTIMEOUT);
162                                 return EOF;
163                         }
164 #endif /* CONFIG_SER_RXTIMEOUT */
165                 }
166                 while (fifo_isempty_locked(&port->rxfifo) && (ser_getstatus(port) & SERRF_RX) == 0);
167         }
168
169         /*
170          * Get a byte from the FIFO (avoiding sign-extension),
171          * re-enable RTS, then return result.
172          */
173         if (ser_getstatus(port) & SERRF_RX)
174                 return EOF;
175         return (int)(unsigned char)fifo_pop_locked(&port->rxfifo);
176 }
177
178 /**
179  * Fetch a character from the rx FIFO buffer.
180  * If the buffer is empty, ser_getchar_nowait() returns
181  * EOF immediatly.
182  * \note Deprecated, use ser_getchar with rx_timeout set to 0.
183  */
184 int ser_getchar_nowait(struct Serial *fd)
185 {
186         if (fifo_isempty_locked(&fd->rxfifo))
187                 return EOF;
188
189         /* NOTE: the double cast prevents unwanted sign extension */
190         return (int)(unsigned char)fifo_pop_locked(&fd->rxfifo);
191 }
192
193
194
195 /**
196  * Read at most \a size bytes from \a port and put them in \a buf
197  *
198  * \return number of bytes actually read.
199  */
200 static size_t ser_read(struct KFile *fd, void *_buf, size_t size)
201 {
202         Serial *fds = SERIAL_CAST(fd);
203
204         size_t i = 0;
205         char *buf = (char *)_buf;
206         int c;
207
208         while (i < size)
209         {
210                 if ((c = ser_getchar(fds)) == EOF)
211                         break;
212                 buf[i++] = c;
213         }
214
215         return i;
216 }
217
218 /**
219  * \brief Write a buffer to serial.
220  *
221  * \return 0 if OK, EOF in case of error.
222  *
223  * \todo Optimize with fifo_pushblock()
224  */
225 static size_t ser_write(struct KFile *fd, const void *_buf, size_t size)
226 {
227         Serial *fds = SERIAL_CAST(fd);
228         const char *buf = (const char *)_buf;
229         size_t i = 0;
230
231         while (size--)
232         {
233                 if (ser_putchar(*buf++, fds) == EOF)
234                         break;
235                 i++;
236         }
237         return i;
238 }
239
240
241 #if CONFIG_SER_RXTIMEOUT != -1 || CONFIG_SER_TXTIMEOUT != -1
242 void ser_settimeouts(struct Serial *fd, mtime_t rxtimeout, mtime_t txtimeout)
243 {
244         #if CONFIG_SER_RXTIMEOUT != -1
245                 fd->rxtimeout = ms_to_ticks(rxtimeout);
246         #else
247                 (void)rxtimeout;
248         #endif
249
250         #if CONFIG_SER_TXTIMEOUT != -1
251                 fd->txtimeout = ms_to_ticks(txtimeout);
252         #else
253                 (void)txtimeout;
254         #endif
255 }
256 #endif /* CONFIG_SER_RXTIMEOUT || CONFIG_SER_TXTIMEOUT */
257
258
259 void ser_setbaudrate(struct Serial *fd, unsigned long rate)
260 {
261         fd->hw->table->setBaudrate(fd->hw, rate);
262 }
263
264
265 void ser_setparity(struct Serial *fd, int parity)
266 {
267         fd->hw->table->setParity(fd->hw, parity);
268 }
269
270 static int ser_error(struct KFile *fd)
271 {
272         Serial *fds = SERIAL_CAST(fd);
273         return ser_getstatus(fds);
274 }
275
276 static void ser_clearerr(struct KFile *fd)
277 {
278         Serial *fds = SERIAL_CAST(fd);
279         ser_setstatus(fds, 0);
280 }
281
282
283
284 /**
285  * Flush both the RX and TX buffers.
286  */
287 void ser_purge(struct Serial *fd)
288 {
289         ser_purgeRx(fd);
290         ser_purgeTx(fd);
291 }
292
293 /**
294  * Flush RX buffer.
295  */
296 void ser_purgeRx(struct Serial *fd)
297 {
298         fifo_flush_locked(&fd->rxfifo);
299 }
300
301 /**
302  * Flush TX buffer.
303  */
304 void ser_purgeTx(struct Serial *fd)
305 {
306         fifo_flush_locked(&fd->txfifo);
307 }
308
309
310 /**
311  * Wait until all pending output is completely
312  * transmitted to the other end.
313  *
314  * \note The current implementation only checks the
315  *       software transmission queue. Any hardware
316  *       FIFOs are ignored.
317  */
318 static int ser_flush(struct KFile *fd)
319 {
320         Serial *fds = SERIAL_CAST(fd);
321
322         /*
323          * Wait until the FIFO becomes empty, and then until the byte currently in
324          * the hardware register gets shifted out.
325          */
326         while (!fifo_isempty(&fds->txfifo)
327                || fds->hw->table->txSending(fds->hw))
328                 cpu_relax();
329         return 0;
330 }
331
332
333 /**
334  * Initialize a serial port.
335  *
336  * \param fd KFile Serial struct interface.
337  * \param unit  Serial unit to open. Possible values are architecture dependant.
338  */
339 static struct Serial *ser_open(struct Serial *fd, unsigned int unit)
340 {
341         ASSERT(unit < countof(ser_handles));
342
343         ser_handles[unit] = fd;
344         ASSERT(!fd->is_open);
345         DB(fd->is_open = true);
346
347         fd->unit = unit;
348
349         fd->hw = ser_hw_getdesc(unit);
350
351         /* Initialize circular buffers */
352         ASSERT(fd->hw->txbuffer);
353         ASSERT(fd->hw->rxbuffer);
354         fifo_init(&fd->txfifo, fd->hw->txbuffer, fd->hw->txbuffer_size);
355         fifo_init(&fd->rxfifo, fd->hw->rxbuffer, fd->hw->rxbuffer_size);
356
357         fd->hw->table->init(fd->hw, fd);
358
359         /* Set default values */
360 #if CONFIG_SER_RXTIMEOUT != -1 || CONFIG_SER_TXTIMEOUT != -1
361         ser_settimeouts(fd, CONFIG_SER_RXTIMEOUT, CONFIG_SER_TXTIMEOUT);
362 #endif
363 #if CONFIG_SER_DEFBAUDRATE
364         ser_setbaudrate(fd, CONFIG_SER_DEFBAUDRATE);
365 #endif
366
367         /* Clear error flags */
368         ser_setstatus(fd, 0);
369
370         return fd;
371 }
372
373
374 /**
375  * Clean up serial port, disabling the associated hardware.
376  */
377 static int ser_close(struct KFile *fd)
378 {
379         Serial *fds = SERIAL_CAST(fd);
380         Serial *port = fds;
381
382         ASSERT(port->is_open);
383         DB(port->is_open = false);
384
385         // Wait until we finish sending everything
386         ser_flush(fd);
387
388         port->hw->table->cleanup(port->hw);
389         DB(port->hw = NULL);
390
391         /*
392          * We purge the FIFO buffer only after the low-level cleanup, so that
393          * we are sure that there are no more interrupts.
394          */
395         ser_purge(fds);
396         return 0;
397 }
398
399 /**
400  * Reopen serial port.
401  */
402 static struct KFile *ser_reopen(struct KFile *fd)
403 {
404         Serial *fds = SERIAL_CAST(fd);
405
406         ser_close(fd);
407         ser_open(fds, fds->unit);
408         return (KFile *)fds;
409 }
410
411 /**
412  * Init serial driver for \a unit.
413  */
414 void ser_init(struct Serial *fds, unsigned int unit)
415 {
416         memset(fds, 0, sizeof(*fds));
417
418         DB(fds->fd._type = KFT_SERIAL);
419         fds->fd.reopen = ser_reopen;
420         fds->fd.close = ser_close;
421         fds->fd.read = ser_read;
422         fds->fd.write = ser_write;
423         fds->fd.flush = ser_flush;
424         fds->fd.error = ser_error;
425         fds->fd.clearerr = ser_clearerr;
426         ser_open(fds, unit);
427 }
428
429
430 /**
431  * Read data from SPI bus.
432  * Since we are master, we have to trigger slave by sending
433  * fake chars on the bus.
434  */
435 static size_t spimaster_read(struct KFile *fd, void *_buf, size_t size)
436 {
437         Serial *fd_spi = SERIAL_CAST(fd);
438
439         ser_flush(&fd_spi->fd);
440         ser_purgeRx(fd_spi);
441
442         size_t total_rd = 0;
443         uint8_t *buf = (uint8_t *)_buf;
444         int c;
445
446         while (size--)
447         {
448                 /*
449                  * Send and receive chars 1 by 1, otherwise the rxfifo
450                  * will overrun.
451                  */
452                 ser_putchar(0, fd_spi);
453
454                 if ((c = ser_getchar(fd_spi)) == EOF)
455                         break;
456
457                 *buf++ = c;
458                 total_rd++;
459         }
460         return total_rd;
461 }
462
463 /**
464  * Write data to SPI bus.
465  */
466 static size_t spimaster_write(struct KFile *fd, const void *buf, size_t size)
467 {
468         Serial *fd_spi = SERIAL_CAST(fd);
469
470         ser_purgeRx(fd_spi);
471
472         return ser_write(&fd_spi->fd, buf, size);
473 }
474
475
476 /**
477  * Init SPI serial driver \a unit in master mode.
478  *
479  * This interface implements the SPI master protocol over a serial SPI
480  * driver. This is needed because normal serial driver send/receive data
481  * at the same time. SPI slaves like memories and other peripherals
482  * first receive and *then* send response back instead.
483  * To achieve this, when we are master and we are *sending*,
484  * we have to discard all incoming data. Then, when we want to
485  * receive, we must write fake data to SPI to trigger slave devices.
486  */
487 void spimaster_init(Serial *fds, unsigned int unit)
488 {
489         ser_init(fds, unit);
490         fds->fd.read = spimaster_read;
491         fds->fd.write = spimaster_write;
492 }
493
494