blob: c1990218f18c5b6e1cc3fe11172db501857668fd [file] [log] [blame]
David Howellsb920de12008-02-08 04:19:31 -08001/* Standard UART definitions
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
Akira Takeuchi368dd5a2010-10-27 17:28:55 +010012#ifndef _ASM_SERIAL_H
13#define _ASM_SERIAL_H
David Howellsb920de12008-02-08 04:19:31 -080014
15/* Standard COM flags (except for COM4, because of the 8514 problem) */
Valentin Rothberg507224a2015-04-12 17:37:24 +020016#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
David Howellsb920de12008-02-08 04:19:31 -080017#define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ)
18#define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_AUTO_IRQ)
19#else
20#define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
21#define STD_COM4_FLAGS ASYNC_BOOT_AUTOCONF
22#endif
23
Valentin Rothberg507224a2015-04-12 17:37:24 +020024#ifdef CONFIG_SERIAL_8250_MANY_PORTS
David Howellsb920de12008-02-08 04:19:31 -080025#define FOURPORT_FLAGS ASYNC_FOURPORT
26#define ACCENT_FLAGS 0
27#define BOCA_FLAGS 0
28#define HUB6_FLAGS 0
29#define RS_TABLE_SIZE 64
30#else
31#define RS_TABLE_SIZE
32#endif
33
David Howells2f2a2132009-04-10 14:33:48 +010034#include <unit/serial.h>
Akira Takeuchi368dd5a2010-10-27 17:28:55 +010035
36#endif /* _ASM_SERIAL_H */