legacy_serial.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Legacy COM port devices for x86 platforms without PNPBIOS or ACPI.
  3. * Data taken from include/asm-i386/serial.h.
  4. *
  5. * (c) Copyright 2007 Hewlett-Packard Development Company, L.P.
  6. * Bjorn Helgaas <bjorn.helgaas@hp.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include <linux/pnp.h>
  15. #include <linux/serial_8250.h>
  16. /* Standard COM flags (except for COM4, because of the 8514 problem) */
  17. #ifdef CONFIG_SERIAL_DETECT_IRQ
  18. #define COM_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_AUTO_IRQ)
  19. #define COM4_FLAGS (UPF_BOOT_AUTOCONF | UPF_AUTO_IRQ)
  20. #else
  21. #define COM_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST)
  22. #define COM4_FLAGS UPF_BOOT_AUTOCONF
  23. #endif
  24. #define PORT(_base,_irq,_flags) \
  25. { \
  26. .iobase = _base, \
  27. .irq = _irq, \
  28. .uartclk = 1843200, \
  29. .iotype = UPIO_PORT, \
  30. .flags = _flags, \
  31. }
  32. static struct plat_serial8250_port x86_com_data[] = {
  33. PORT(0x3F8, 4, COM_FLAGS),
  34. PORT(0x2F8, 3, COM_FLAGS),
  35. PORT(0x3E8, 4, COM_FLAGS),
  36. PORT(0x2E8, 3, COM4_FLAGS),
  37. { },
  38. };
  39. static struct platform_device x86_com_device = {
  40. .name = "serial8250",
  41. .id = PLAT8250_DEV_PLATFORM,
  42. .dev = {
  43. .platform_data = x86_com_data,
  44. },
  45. };
  46. static int force_legacy_probe;
  47. module_param_named(force, force_legacy_probe, bool, 0);
  48. MODULE_PARM_DESC(force, "Force legacy serial port probe");
  49. static int __init serial8250_x86_com_init(void)
  50. {
  51. if (pnp_platform_devices && !force_legacy_probe)
  52. return -ENODEV;
  53. return platform_device_register(&x86_com_device);
  54. }
  55. module_init(serial8250_x86_com_init);
  56. MODULE_AUTHOR("Bjorn Helgaas");
  57. MODULE_LICENSE("GPL");
  58. MODULE_DESCRIPTION("Generic 8250/16x50 legacy probe module");