rockchip-mailbox.txt 969 B

123456789101112131415161718192021222324252627282930313233
  1. Rockchip mailbox
  2. The Rockchip mailbox is used by the Rockchip CPU cores to communicate
  3. requests to MCU processor.
  4. Refer to ./mailbox.txt for generic information about mailbox device-tree
  5. bindings.
  6. Required properties:
  7. - compatible: should be one of the following.
  8. - "rockchip,rk3368-mbox" for rk3368
  9. - reg: physical base address of the controller and length of memory mapped
  10. region.
  11. - interrupts: The interrupt number to the cpu. The interrupt specifier format
  12. depends on the interrupt controller.
  13. - #mbox-cells: Common mailbox binding property to identify the number
  14. of cells required for the mailbox specifier. Should be 1
  15. Example:
  16. --------
  17. /* RK3368 */
  18. mbox: mbox@ff6b0000 {
  19. compatible = "rockchip,rk3368-mailbox";
  20. reg = <0x0 0xff6b0000 0x0 0x1000>,
  21. interrupts = <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>,
  22. <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>,
  23. <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>,
  24. <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>;
  25. #mbox-cells = <1>;
  26. };