mailbox.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /*
  2. * Mailbox reservation modules for OMAP1
  3. *
  4. * Copyright (C) 2006-2009 Nokia Corporation
  5. * Written by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file "COPYING" in the main directory of this archive
  9. * for more details.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/platform_device.h>
  14. #include <linux/io.h>
  15. #include <plat/mailbox.h>
  16. #define MAILBOX_ARM2DSP1 0x00
  17. #define MAILBOX_ARM2DSP1b 0x04
  18. #define MAILBOX_DSP2ARM1 0x08
  19. #define MAILBOX_DSP2ARM1b 0x0c
  20. #define MAILBOX_DSP2ARM2 0x10
  21. #define MAILBOX_DSP2ARM2b 0x14
  22. #define MAILBOX_ARM2DSP1_Flag 0x18
  23. #define MAILBOX_DSP2ARM1_Flag 0x1c
  24. #define MAILBOX_DSP2ARM2_Flag 0x20
  25. static void __iomem *mbox_base;
  26. struct omap_mbox1_fifo {
  27. unsigned long cmd;
  28. unsigned long data;
  29. unsigned long flag;
  30. };
  31. struct omap_mbox1_priv {
  32. struct omap_mbox1_fifo tx_fifo;
  33. struct omap_mbox1_fifo rx_fifo;
  34. };
  35. static inline int mbox_read_reg(size_t ofs)
  36. {
  37. return __raw_readw(mbox_base + ofs);
  38. }
  39. static inline void mbox_write_reg(u32 val, size_t ofs)
  40. {
  41. __raw_writew(val, mbox_base + ofs);
  42. }
  43. /* msg */
  44. static mbox_msg_t omap1_mbox_fifo_read(struct omap_mbox *mbox)
  45. {
  46. struct omap_mbox1_fifo *fifo =
  47. &((struct omap_mbox1_priv *)mbox->priv)->rx_fifo;
  48. mbox_msg_t msg;
  49. msg = mbox_read_reg(fifo->data);
  50. msg |= ((mbox_msg_t) mbox_read_reg(fifo->cmd)) << 16;
  51. return msg;
  52. }
  53. static void
  54. omap1_mbox_fifo_write(struct omap_mbox *mbox, mbox_msg_t msg)
  55. {
  56. struct omap_mbox1_fifo *fifo =
  57. &((struct omap_mbox1_priv *)mbox->priv)->tx_fifo;
  58. mbox_write_reg(msg & 0xffff, fifo->data);
  59. mbox_write_reg(msg >> 16, fifo->cmd);
  60. }
  61. static int omap1_mbox_fifo_empty(struct omap_mbox *mbox)
  62. {
  63. return 0;
  64. }
  65. static int omap1_mbox_fifo_full(struct omap_mbox *mbox)
  66. {
  67. struct omap_mbox1_fifo *fifo =
  68. &((struct omap_mbox1_priv *)mbox->priv)->rx_fifo;
  69. return mbox_read_reg(fifo->flag);
  70. }
  71. /* irq */
  72. static void
  73. omap1_mbox_enable_irq(struct omap_mbox *mbox, omap_mbox_type_t irq)
  74. {
  75. if (irq == IRQ_RX)
  76. enable_irq(mbox->irq);
  77. }
  78. static void
  79. omap1_mbox_disable_irq(struct omap_mbox *mbox, omap_mbox_type_t irq)
  80. {
  81. if (irq == IRQ_RX)
  82. disable_irq(mbox->irq);
  83. }
  84. static int
  85. omap1_mbox_is_irq(struct omap_mbox *mbox, omap_mbox_type_t irq)
  86. {
  87. if (irq == IRQ_TX)
  88. return 0;
  89. return 1;
  90. }
  91. static struct omap_mbox_ops omap1_mbox_ops = {
  92. .type = OMAP_MBOX_TYPE1,
  93. .fifo_read = omap1_mbox_fifo_read,
  94. .fifo_write = omap1_mbox_fifo_write,
  95. .fifo_empty = omap1_mbox_fifo_empty,
  96. .fifo_full = omap1_mbox_fifo_full,
  97. .enable_irq = omap1_mbox_enable_irq,
  98. .disable_irq = omap1_mbox_disable_irq,
  99. .is_irq = omap1_mbox_is_irq,
  100. };
  101. /* FIXME: the following struct should be created automatically by the user id */
  102. /* DSP */
  103. static struct omap_mbox1_priv omap1_mbox_dsp_priv = {
  104. .tx_fifo = {
  105. .cmd = MAILBOX_ARM2DSP1b,
  106. .data = MAILBOX_ARM2DSP1,
  107. .flag = MAILBOX_ARM2DSP1_Flag,
  108. },
  109. .rx_fifo = {
  110. .cmd = MAILBOX_DSP2ARM1b,
  111. .data = MAILBOX_DSP2ARM1,
  112. .flag = MAILBOX_DSP2ARM1_Flag,
  113. },
  114. };
  115. static struct omap_mbox mbox_dsp_info = {
  116. .name = "dsp",
  117. .ops = &omap1_mbox_ops,
  118. .priv = &omap1_mbox_dsp_priv,
  119. };
  120. static struct omap_mbox *omap1_mboxes[] = { &mbox_dsp_info, NULL };
  121. static int __devinit omap1_mbox_probe(struct platform_device *pdev)
  122. {
  123. struct resource *mem;
  124. int ret;
  125. struct omap_mbox **list;
  126. list = omap1_mboxes;
  127. list[0]->irq = platform_get_irq_byname(pdev, "dsp");
  128. mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  129. mbox_base = ioremap(mem->start, resource_size(mem));
  130. if (!mbox_base)
  131. return -ENOMEM;
  132. ret = omap_mbox_register(&pdev->dev, list);
  133. if (ret) {
  134. iounmap(mbox_base);
  135. return ret;
  136. }
  137. return 0;
  138. }
  139. static int __devexit omap1_mbox_remove(struct platform_device *pdev)
  140. {
  141. omap_mbox_unregister();
  142. iounmap(mbox_base);
  143. return 0;
  144. }
  145. static struct platform_driver omap1_mbox_driver = {
  146. .probe = omap1_mbox_probe,
  147. .remove = __devexit_p(omap1_mbox_remove),
  148. .driver = {
  149. .name = "omap-mailbox",
  150. },
  151. };
  152. static int __init omap1_mbox_init(void)
  153. {
  154. return platform_driver_register(&omap1_mbox_driver);
  155. }
  156. static void __exit omap1_mbox_exit(void)
  157. {
  158. platform_driver_unregister(&omap1_mbox_driver);
  159. }
  160. module_init(omap1_mbox_init);
  161. module_exit(omap1_mbox_exit);
  162. MODULE_LICENSE("GPL v2");
  163. MODULE_DESCRIPTION("omap mailbox: omap1 architecture specific functions");
  164. MODULE_AUTHOR("Hiroshi DOYU <Hiroshi.DOYU@nokia.com>");
  165. MODULE_ALIAS("platform:omap1-mailbox");