#include <linux/module.h>
#include <linux/tty.h>
#include <linux/ioport.h>
#include <linux/init.h>
#include <linux/console.h>
#include <linux/device.h>
#include <linux/tty_flip.h>
#include <linux/serial_core.h>
#include <linux/serial.h>
#include <linux/io.h>
#include <asm/irq.h>
#include <asm/mach-types.h>
#include <asm/system_info.h>
#include <asm/hardware/dec21285.h>
#include <mach/hardware.h>
Go to the source code of this file.
#define H_UBRLCR_BREAK (1 << 0) |
#define H_UBRLCR_FIFO (1 << 4) |
#define H_UBRLCR_PARENB (1 << 1) |
#define H_UBRLCR_PAREVN (1 << 2) |
#define H_UBRLCR_STOPB (1 << 3) |
#define RXSTAT_DUMMY_READ 0x80000000 |
#define RXSTAT_FRAME (1 << 0) |
#define RXSTAT_OVERRUN (1 << 2) |
#define RXSTAT_PARITY (1 << 1) |
#define SERIAL_21285_CONSOLE NULL |
#define SERIAL_21285_MAJOR 204 |
#define SERIAL_21285_MINOR 4 |
#define SERIAL_21285_NAME "ttyFB" |
MODULE_DESCRIPTION |
( |
"Intel Footbridge (21285) serial driver" |
| ) |
|
module_exit |
( |
serial21285_exit |
| ) |
|
module_init |
( |
serial21285_init |
| ) |
|