4 * Copyright 2003,2004 Develer S.r.l. (http://www.develer.com/)
5 * This file is part of DevLib - See devlib/README for information.
8 * \brief Hardware dependent serial driver (interface)
12 * \author Stefano Fedrigo <aleph@develer.com>
13 * \author Giovanni Bajo <rasky@develer.com>
18 *#* Revision 1.6 2004/12/08 08:56:58 bernie
21 *#* Revision 1.5 2004/09/06 21:40:50 bernie
22 *#* Move buffer handling in chip-specific driver.
24 *#* Revision 1.4 2004/08/25 14:12:08 rasky
25 *#* Aggiornato il comment block dei log RCS
27 *#* Revision 1.3 2004/06/03 11:27:09 bernie
28 *#* Add dual-license information.
30 *#* Revision 1.2 2004/05/23 18:21:53 bernie
31 *#* Trim CVS logs and cleanup header info.
38 struct SerialHardware;
41 struct SerialHardwareVT
43 void (*init)(struct SerialHardware *ctx, struct Serial *ser);
44 void (*cleanup)(struct SerialHardware *ctx);
45 void (*setbaudrate)(struct SerialHardware *ctx, unsigned long rate);
46 void (*setparity)(struct SerialHardware *ctx, int parity);
47 void (*enabletxirq)(struct SerialHardware *ctx);
52 const struct SerialHardwareVT *table;
53 unsigned char *txbuffer;
54 unsigned char *rxbuffer;
59 struct SerialHardware *ser_hw_getdesc(int unit);
61 #endif /* DRV_SER_P_H */