2  *  linux/drivers/serial/8250_mca.c
 
   4  *  Copyright (C) 2005 Russell King.
 
   5  *  Data taken from include/asm-i386/serial.h
 
   7  * This program is free software; you can redistribute it and/or modify
 
   8  * it under the terms of the GNU General Public License version 2 as
 
   9  * published by the Free Software Foundation.
 
  11 #include <linux/config.h>
 
  12 #include <linux/module.h>
 
  13 #include <linux/init.h>
 
  14 #include <linux/mca.h>
 
  15 #include <linux/serial_8250.h>
 
  18  * FIXME: Should we be doing AUTO_IRQ here?
 
  20 #ifdef CONFIG_SERIAL_8250_DETECT_IRQ
 
  21 #define MCA_FLAGS       UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_AUTO_IRQ
 
  23 #define MCA_FLAGS       UPF_BOOT_AUTOCONF | UPF_SKIP_TEST
 
  26 #define PORT(_base,_irq)                        \
 
  31                 .iotype         = UPIO_PORT,    \
 
  35 static struct plat_serial8250_port mca_data[] = {
 
  45 static struct platform_device mca_device = {
 
  47         .id                     = PLAT8250_DEV_MCA,
 
  49                 .platform_data  = mca_data,
 
  53 static int __init mca_init(void)
 
  57         return platform_device_register(&mca_device);
 
  60 module_init(mca_init);
 
  62 MODULE_AUTHOR("Russell King");
 
  63 MODULE_DESCRIPTION("8250 serial probe module for MCA ports");
 
  64 MODULE_LICENSE("GPL");