8250_boca.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * linux/drivers/serial/8250_boca.c
  3. *
  4. * Copyright (C) 2005 Russell King.
  5. * Data taken from include/asm-i386/serial.h
  6. *
  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.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/init.h>
  13. #include <linux/serial_8250.h>
  14. #define PORT(_base,_irq) \
  15. { \
  16. .iobase = _base, \
  17. .irq = _irq, \
  18. .uartclk = 1843200, \
  19. .iotype = UPIO_PORT, \
  20. .flags = UPF_BOOT_AUTOCONF, \
  21. }
  22. static struct plat_serial8250_port boca_data[] = {
  23. PORT(0x100, 12),
  24. PORT(0x108, 12),
  25. PORT(0x110, 12),
  26. PORT(0x118, 12),
  27. PORT(0x120, 12),
  28. PORT(0x128, 12),
  29. PORT(0x130, 12),
  30. PORT(0x138, 12),
  31. PORT(0x140, 12),
  32. PORT(0x148, 12),
  33. PORT(0x150, 12),
  34. PORT(0x158, 12),
  35. PORT(0x160, 12),
  36. PORT(0x168, 12),
  37. PORT(0x170, 12),
  38. PORT(0x178, 12),
  39. { },
  40. };
  41. static struct platform_device boca_device = {
  42. .name = "serial8250",
  43. .id = PLAT8250_DEV_BOCA,
  44. .dev = {
  45. .platform_data = boca_data,
  46. },
  47. };
  48. static int __init boca_init(void)
  49. {
  50. return platform_device_register(&boca_device);
  51. }
  52. module_init(boca_init);
  53. MODULE_AUTHOR("Russell King");
  54. MODULE_DESCRIPTION("8250 serial probe module for Boca cards");
  55. MODULE_LICENSE("GPL");