2004-08-01 22:48:16 +00:00
|
|
|
#ifndef __SERIAL_H__
|
|
|
|
#define __SERIAL_H__
|
|
|
|
|
2011-05-14 06:56:15 +00:00
|
|
|
#include <post.h>
|
|
|
|
|
2004-08-01 22:48:16 +00:00
|
|
|
struct serial_device {
|
2011-11-10 14:11:04 +00:00
|
|
|
/* enough bytes to match alignment of following func pointer */
|
2012-09-07 12:32:10 +00:00
|
|
|
char name[16];
|
2004-08-01 22:48:16 +00:00
|
|
|
|
2012-09-07 12:35:31 +00:00
|
|
|
int (*start)(void);
|
|
|
|
int (*stop)(void);
|
2012-09-07 12:32:10 +00:00
|
|
|
void (*setbrg)(void);
|
|
|
|
int (*getc)(void);
|
|
|
|
int (*tstc)(void);
|
|
|
|
void (*putc)(const char c);
|
|
|
|
void (*puts)(const char *s);
|
2011-05-14 06:56:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_UART
|
2012-09-07 12:32:10 +00:00
|
|
|
void (*loop)(int);
|
2011-05-14 06:56:15 +00:00
|
|
|
#endif
|
2012-09-07 12:32:10 +00:00
|
|
|
struct serial_device *next;
|
2004-08-01 22:48:16 +00:00
|
|
|
};
|
|
|
|
|
2012-10-06 14:07:01 +00:00
|
|
|
void default_serial_puts(const char *s);
|
|
|
|
|
2004-08-01 22:48:16 +00:00
|
|
|
extern struct serial_device serial_smc_device;
|
|
|
|
extern struct serial_device serial_scc_device;
|
2011-11-18 06:49:11 +00:00
|
|
|
extern struct serial_device *default_serial_console(void);
|
|
|
|
|
|
|
|
#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
|
|
|
|
defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \
|
|
|
|
defined(CONFIG_405EX) || defined(CONFIG_440) || \
|
|
|
|
defined(CONFIG_MB86R0x) || defined(CONFIG_MPC5xxx) || \
|
|
|
|
defined(CONFIG_MPC83xx) || defined(CONFIG_MPC85xx) || \
|
|
|
|
defined(CONFIG_MPC86xx) || defined(CONFIG_SYS_SC520) || \
|
2012-07-02 10:38:14 +00:00
|
|
|
defined(CONFIG_TEGRA20) || defined(CONFIG_SYS_COREBOOT) || \
|
|
|
|
defined(CONFIG_MICROBLAZE)
|
2005-01-09 22:28:56 +00:00
|
|
|
extern struct serial_device serial0_device;
|
|
|
|
extern struct serial_device serial1_device;
|
2012-09-12 18:02:05 +00:00
|
|
|
#endif
|
|
|
|
|
2006-08-30 21:02:10 +00:00
|
|
|
extern struct serial_device eserial1_device;
|
|
|
|
extern struct serial_device eserial2_device;
|
2005-01-09 22:28:56 +00:00
|
|
|
|
2011-04-30 03:23:28 +00:00
|
|
|
extern void serial_register(struct serial_device *);
|
2004-08-01 22:48:16 +00:00
|
|
|
extern void serial_initialize(void);
|
2009-05-16 10:14:54 +00:00
|
|
|
extern void serial_stdio_init(void);
|
2011-11-18 06:49:12 +00:00
|
|
|
extern int serial_assign(const char *name);
|
2004-08-01 22:48:16 +00:00
|
|
|
extern void serial_reinit_all(void);
|
|
|
|
|
2009-10-31 17:37:44 +00:00
|
|
|
/* For usbtty */
|
2009-10-31 17:37:45 +00:00
|
|
|
#ifdef CONFIG_USB_TTY
|
|
|
|
|
2009-10-31 17:37:44 +00:00
|
|
|
extern int usbtty_getc(void);
|
|
|
|
extern void usbtty_putc(const char c);
|
|
|
|
extern void usbtty_puts(const char *str);
|
|
|
|
extern int usbtty_tstc(void);
|
|
|
|
|
2009-10-31 17:37:45 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
/* stubs */
|
|
|
|
#define usbtty_getc() 0
|
|
|
|
#define usbtty_putc(a)
|
|
|
|
#define usbtty_puts(a)
|
|
|
|
#define usbtty_tstc() 0
|
|
|
|
|
|
|
|
#endif /* CONFIG_USB_TTY */
|
|
|
|
|
2012-09-14 21:45:51 +00:00
|
|
|
#if defined(CONFIG_MPC512X)
|
2010-04-24 17:27:06 +00:00
|
|
|
extern struct stdio_dev *open_port(int num, int baudrate);
|
|
|
|
extern int close_port(int num);
|
|
|
|
extern int write_port(struct stdio_dev *port, char *buf);
|
|
|
|
extern int read_port(struct stdio_dev *port, char *buf, int size);
|
|
|
|
#endif
|
|
|
|
|
2004-08-01 22:48:16 +00:00
|
|
|
#endif
|