serial.c 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2007 Aurelien Jarno <aurelien@aurel32.net>
  7. */
  8. #include <linux/module.h>
  9. #include <linux/init.h>
  10. #include <linux/serial.h>
  11. #include <linux/serial_8250.h>
  12. #include <linux/ssb/ssb.h>
  13. #include <bcm47xx.h>
  14. static struct plat_serial8250_port uart8250_data[5];
  15. static struct platform_device uart8250_device = {
  16. .name = "serial8250",
  17. .id = PLAT8250_DEV_PLATFORM,
  18. .dev = {
  19. .platform_data = uart8250_data,
  20. },
  21. };
  22. #ifdef CONFIG_BCM47XX_SSB
  23. static int __init uart8250_init_ssb(void)
  24. {
  25. int i;
  26. struct ssb_mipscore *mcore = &(bcm47xx_bus.ssb.mipscore);
  27. memset(&uart8250_data, 0, sizeof(uart8250_data));
  28. for (i = 0; i < mcore->nr_serial_ports &&
  29. i < ARRAY_SIZE(uart8250_data) - 1; i++) {
  30. struct plat_serial8250_port *p = &(uart8250_data[i]);
  31. struct ssb_serial_port *ssb_port = &(mcore->serial_ports[i]);
  32. p->mapbase = (unsigned int)ssb_port->regs;
  33. p->membase = (void *)ssb_port->regs;
  34. p->irq = ssb_port->irq + 2;
  35. p->uartclk = ssb_port->baud_base;
  36. p->regshift = ssb_port->reg_shift;
  37. p->iotype = UPIO_MEM;
  38. p->flags = UPF_BOOT_AUTOCONF | UPF_SHARE_IRQ;
  39. }
  40. return platform_device_register(&uart8250_device);
  41. }
  42. #endif
  43. #ifdef CONFIG_BCM47XX_BCMA
  44. static int __init uart8250_init_bcma(void)
  45. {
  46. int i;
  47. struct bcma_drv_cc *cc = &(bcm47xx_bus.bcma.bus.drv_cc);
  48. memset(&uart8250_data, 0, sizeof(uart8250_data));
  49. for (i = 0; i < cc->nr_serial_ports &&
  50. i < ARRAY_SIZE(uart8250_data) - 1; i++) {
  51. struct plat_serial8250_port *p = &(uart8250_data[i]);
  52. struct bcma_serial_port *bcma_port;
  53. bcma_port = &(cc->serial_ports[i]);
  54. p->mapbase = (unsigned int)bcma_port->regs;
  55. p->membase = (void *)bcma_port->regs;
  56. p->irq = bcma_port->irq;
  57. p->uartclk = bcma_port->baud_base;
  58. p->regshift = bcma_port->reg_shift;
  59. p->iotype = UPIO_MEM;
  60. p->flags = UPF_BOOT_AUTOCONF | UPF_SHARE_IRQ;
  61. }
  62. return platform_device_register(&uart8250_device);
  63. }
  64. #endif
  65. static int __init uart8250_init(void)
  66. {
  67. switch (bcm47xx_bus_type) {
  68. #ifdef CONFIG_BCM47XX_SSB
  69. case BCM47XX_BUS_TYPE_SSB:
  70. return uart8250_init_ssb();
  71. #endif
  72. #ifdef CONFIG_BCM47XX_BCMA
  73. case BCM47XX_BUS_TYPE_BCMA:
  74. return uart8250_init_bcma();
  75. #endif
  76. }
  77. return -EINVAL;
  78. }
  79. module_init(uart8250_init);
  80. MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
  81. MODULE_LICENSE("GPL");
  82. MODULE_DESCRIPTION("8250 UART probe driver for the BCM47XX platforms");