summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/serial/STATUS
blob: 6eb7fa41717c79857419a437366ecdc8414ce996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
#  $Id$
#

General
=======

+ Hardware flow control is not currently supported.  Some of the chip
  drivers (in particular the z8530) have support for hardware flow control
  but this has not been tested in the libchip context.  There will need
  to be a way to totally disabled hardware flow control which is not
  currently in this.

+ "ulClockSpeed" configuration item field to become a pointer to a table
  of chip specific information.  For example, the z8530 should specify
  clock speed and clock divisor setting.

+ A termios structure should be included to specify  the initial settings.
  Right now all drivers default to 9600, 8N1.
 
+ Need to switch to passing pointers rather than a minor number to 
  functions which are strictly internal to each chip driver.  This
  should be a performance win.

+ Need a test which prompts you for termios settings and tests them.  Until
  this happens, testing for the variety of settings possible will be limited.
  This test should be able to test any serial port while prompts come to the
  console.

MC68681
=======

+ Works interrupt and polled.

+ Hardware flow control not included.

NS16650
=======

+ Not tested in libchip context.  Based on Radstone PPC2 driver which worked 
  well.

+ Interrupt code has been reworked to not use ring buffer and may be broken
  as it has not been tested since this was done.

+ ns16550_set-attributes function is untested.

+ Hardware flow control included but is currently disabled in ISR.

Z85C30
======

+ Works polled and interrupt.

+ Hardware flow control included but is currently disabled in ISR.

+ Needs to support mode where more specific vectors are generated.