2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* linux/include/linux/serial_8250.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Russell King
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_SERIAL_8250_H
|
|
|
|
#define _LINUX_SERIAL_8250_H
|
|
|
|
|
|
|
|
#include <linux/serial_core.h>
|
2005-10-29 14:07:23 -04:00
|
|
|
#include <linux/platform_device.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-09-01 10:56:26 -04:00
|
|
|
/*
|
|
|
|
* This is the platform device platform_data structure
|
|
|
|
*/
|
2005-04-16 18:20:36 -04:00
|
|
|
struct plat_serial8250_port {
|
|
|
|
unsigned long iobase; /* io base address */
|
|
|
|
void __iomem *membase; /* ioremap cookie or NULL */
|
|
|
|
unsigned long mapbase; /* resource base */
|
|
|
|
unsigned int irq; /* interrupt number */
|
|
|
|
unsigned int uartclk; /* UART clock rate */
|
|
|
|
unsigned char regshift; /* register shift */
|
|
|
|
unsigned char iotype; /* UPIO_* */
|
2005-06-27 06:12:54 -04:00
|
|
|
unsigned char hub6;
|
2006-01-21 18:03:28 -05:00
|
|
|
upf_t flags; /* UPF_* flags */
|
2005-04-16 18:20:36 -04:00
|
|
|
};
|
|
|
|
|
2005-09-08 11:04:41 -04:00
|
|
|
/*
|
|
|
|
* Allocate 8250 platform device IDs. Nothing is implied by
|
|
|
|
* the numbering here, except for the legacy entry being -1.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
PLAT8250_DEV_LEGACY = -1,
|
|
|
|
PLAT8250_DEV_PLATFORM,
|
|
|
|
PLAT8250_DEV_PLATFORM1,
|
2006-03-25 18:03:13 -05:00
|
|
|
PLAT8250_DEV_PLATFORM2,
|
2005-09-08 11:04:41 -04:00
|
|
|
PLAT8250_DEV_FOURPORT,
|
|
|
|
PLAT8250_DEV_ACCENT,
|
|
|
|
PLAT8250_DEV_BOCA,
|
|
|
|
PLAT8250_DEV_HUB6,
|
|
|
|
PLAT8250_DEV_MCA,
|
2005-11-06 04:07:03 -05:00
|
|
|
PLAT8250_DEV_AU1X00,
|
2005-09-08 11:04:41 -04:00
|
|
|
};
|
|
|
|
|
2005-09-01 10:56:26 -04:00
|
|
|
/*
|
|
|
|
* This should be used by drivers which want to register
|
|
|
|
* their own 8250 ports without registering their own
|
|
|
|
* platform device. Using these will make your driver
|
|
|
|
* dependent on the 8250 driver.
|
|
|
|
*/
|
|
|
|
struct uart_port;
|
|
|
|
|
|
|
|
int serial8250_register_port(struct uart_port *);
|
|
|
|
void serial8250_unregister_port(int line);
|
|
|
|
void serial8250_suspend_port(int line);
|
|
|
|
void serial8250_resume_port(int line);
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#endif
|