isp-spi.txt 671 B

12345678910111213141516171819202122
  1. Exynos ISP SPI Subsystem
  2. The device node for ISP SPI subsytem.
  3. Since Peripheral id in EXYNOS is decoded based on Interrupts, currently
  4. ISP SPI have no individual interrupts hence we add ad dummy interrupt node
  5. which will have a value beyond the maximum number of interrupts exynos5 can
  6. support.
  7. Required properties :
  8. - compatible : Should be "samsung,exynos-spi" for spi.
  9. - reg : Base adrress of the the subsystem.
  10. - interrupts : A value which is beyond the maximum number of interrupts
  11. exynos5 can support.
  12. Example:
  13. spi@131a0000 {
  14. #address-cells = <1>;
  15. #size-cells = <0>;
  16. compatible = "samsung,exynos-spi";
  17. reg = <0x131a0000 0x30>;
  18. interrupts = <0 129 0>;
  19. };