cx18-mailbox.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * cx18 mailbox functions
  3. *
  4. * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  19. * 02111-1307 USA
  20. */
  21. #ifndef _CX18_MAILBOX_H_
  22. #define _CX18_MAILBOX_H_
  23. /* mailbox max args */
  24. #define MAX_MB_ARGUMENTS 6
  25. /* compatibility, should be same as the define in cx2341x.h */
  26. #define CX2341X_MBOX_MAX_DATA 16
  27. #define MB_RESERVED_HANDLE_0 0
  28. #define MB_RESERVED_HANDLE_1 0xFFFFFFFF
  29. struct cx18;
  30. /* The cx18_mailbox struct is the mailbox structure which is used for passing
  31. messages between processors */
  32. struct cx18_mailbox {
  33. /* The sender sets a handle in 'request' after he fills the command. The
  34. 'request' should be different than 'ack'. The sender, also, generates
  35. an interrupt on XPU2YPU_irq where XPU is the sender and YPU is the
  36. receiver. */
  37. u32 request;
  38. /* The receiver detects a new command when 'req' is different than 'ack'.
  39. He sets 'ack' to the same value as 'req' to clear the command. He, also,
  40. generates an interrupt on YPU2XPU_irq where XPU is the sender and YPU
  41. is the receiver. */
  42. u32 ack;
  43. u32 reserved[6];
  44. /* 'cmd' identifies the command. The list of these commands are in
  45. cx23418.h */
  46. u32 cmd;
  47. /* Each command can have up to 6 arguments */
  48. u32 args[MAX_MB_ARGUMENTS];
  49. /* The return code can be one of the codes in the file cx23418.h. If the
  50. command is completed successfuly, the error will be ERR_SYS_SUCCESS.
  51. If it is pending, the code is ERR_SYS_PENDING. If it failed, the error
  52. code would indicate the task from which the error originated and will
  53. be one of the errors in cx23418.h. In that case, the following
  54. applies ((error & 0xff) != 0).
  55. If the command is pending, the return will be passed in a MB from the
  56. receiver to the sender. 'req' will be returned in args[0] */
  57. u32 error;
  58. };
  59. int cx18_api(struct cx18 *cx, u32 cmd, int args, u32 data[]);
  60. int cx18_vapi_result(struct cx18 *cx, u32 data[MAX_MB_ARGUMENTS], u32 cmd,
  61. int args, ...);
  62. int cx18_vapi(struct cx18 *cx, u32 cmd, int args, ...);
  63. int cx18_api_func(void *priv, u32 cmd, int in, int out,
  64. u32 data[CX2341X_MBOX_MAX_DATA]);
  65. long cx18_mb_ack(struct cx18 *cx, const struct cx18_mailbox *mb);
  66. #endif