2004-08-02 06:48:16 +08:00
|
|
|
#ifndef __SERIAL_H__
|
|
|
|
#define __SERIAL_H__
|
|
|
|
|
|
|
|
#define NAMESIZE 16
|
|
|
|
#define CTLRSIZE 8
|
|
|
|
|
|
|
|
struct serial_device {
|
|
|
|
char name[NAMESIZE];
|
|
|
|
char ctlr[CTLRSIZE];
|
|
|
|
|
|
|
|
int (*init) (void);
|
|
|
|
void (*setbrg) (void);
|
|
|
|
int (*getc) (void);
|
|
|
|
int (*tstc) (void);
|
|
|
|
void (*putc) (const char c);
|
|
|
|
void (*puts) (const char *s);
|
|
|
|
|
|
|
|
struct serial_device *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct serial_device serial_smc_device;
|
|
|
|
extern struct serial_device serial_scc_device;
|
|
|
|
extern struct serial_device * default_serial_console (void);
|
|
|
|
|
2007-10-05 23:10:59 +08:00
|
|
|
#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) || \
|
|
|
|
defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_405EX) || \
|
2009-07-02 18:45:01 +08:00
|
|
|
defined(CONFIG_MPC5xxx) || defined(CONFIG_MPC83xx) || \
|
|
|
|
defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
|
2005-01-10 06:28:56 +08:00
|
|
|
extern struct serial_device serial0_device;
|
|
|
|
extern struct serial_device serial1_device;
|
2008-10-16 21:01:15 +08:00
|
|
|
#if defined(CONFIG_SYS_NS16550_SERIAL)
|
2006-08-31 05:02:10 +08:00
|
|
|
extern struct serial_device eserial1_device;
|
|
|
|
extern struct serial_device eserial2_device;
|
|
|
|
extern struct serial_device eserial3_device;
|
|
|
|
extern struct serial_device eserial4_device;
|
2008-10-16 21:01:15 +08:00
|
|
|
#endif /* CONFIG_SYS_NS16550_SERIAL */
|
2006-08-31 05:02:10 +08:00
|
|
|
|
2005-01-10 06:28:56 +08:00
|
|
|
#endif
|
|
|
|
|
2007-12-19 21:24:40 +08:00
|
|
|
#if defined(CONFIG_S3C2410)
|
|
|
|
extern struct serial_device s3c24xx_serial0_device;
|
|
|
|
extern struct serial_device s3c24xx_serial1_device;
|
|
|
|
extern struct serial_device s3c24xx_serial2_device;
|
|
|
|
#endif
|
2005-01-10 06:28:56 +08:00
|
|
|
|
2009-10-01 16:20:28 +08:00
|
|
|
#if defined(CONFIG_S5PC1XX)
|
|
|
|
extern struct serial_device s5pc1xx_serial0_device;
|
|
|
|
extern struct serial_device s5pc1xx_serial1_device;
|
|
|
|
extern struct serial_device s5pc1xx_serial2_device;
|
|
|
|
extern struct serial_device s5pc1xx_serial3_device;
|
|
|
|
#endif
|
|
|
|
|
2009-05-31 18:44:37 +08:00
|
|
|
#if defined(CONFIG_OMAP3_ZOOM2)
|
|
|
|
extern struct serial_device zoom2_serial_device0;
|
|
|
|
extern struct serial_device zoom2_serial_device1;
|
|
|
|
extern struct serial_device zoom2_serial_device2;
|
|
|
|
extern struct serial_device zoom2_serial_device3;
|
|
|
|
#endif
|
|
|
|
|
2007-08-31 04:57:04 +08:00
|
|
|
extern struct serial_device serial_ffuart_device;
|
|
|
|
extern struct serial_device serial_btuart_device;
|
|
|
|
extern struct serial_device serial_stuart_device;
|
|
|
|
|
2004-08-02 06:48:16 +08:00
|
|
|
extern void serial_initialize(void);
|
2009-05-16 18:14:54 +08:00
|
|
|
extern void serial_stdio_init(void);
|
2004-08-02 06:48:16 +08:00
|
|
|
extern int serial_assign(char * name);
|
|
|
|
extern void serial_reinit_all(void);
|
|
|
|
|
2009-11-01 01:37:44 +08:00
|
|
|
/* For usbtty */
|
|
|
|
extern int usbtty_getc(void);
|
|
|
|
extern void usbtty_putc(const char c);
|
|
|
|
extern void usbtty_puts(const char *str);
|
|
|
|
extern int usbtty_tstc(void);
|
|
|
|
|
2004-08-02 06:48:16 +08:00
|
|
|
#endif
|