mediatek,ap_ccif0.txt 887 B

1234567891011121314151617181920212223242526
  1. Mediatek ap_ccif0 device
  2. ============================
  3. The Mediatek ap_ccif0 controller is an interface to communicate with MD1.
  4. Required Properties:
  5. - compatible: Should be:
  6. "mediatek,ap_ccif0"
  7. - reg: physical base address of AP CCIF base, length of AP CCIF, and MD CCIF base & Length of MD CCIF
  8. - interrupts: interrupt number to the cpu.
  9. - mediatek,md_smem_size: AP and MD share memory size.
  10. Optional properties:
  11. - mediatek,ccif_capability: config AP ccci driver feature, reserved in MT6580
  12. Example:
  13. ap_ccif0:ap_ccif0@1000C000 {
  14. compatible = "mediatek,ap_ccif0";
  15. reg = <0x1000C000 0x1000>, /*AP_CCIF_BASE*/
  16. <0x1000D000 0x1000>; /*MD_CCIF_BASE*/
  17. interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_LOW>, /* CCIF0 IRQ */
  18. <GIC_SPI 152 IRQ_TYPE_EDGE_FALLING>;/* MD WDT IRQ */
  19. mediatek,ccif_capability = <2>;
  20. mediatek,md_smem_size = <0x200000>; /* md share memory size */
  21. };