s3fwrn5.txt 658 B

123456789101112131415161718192021222324252627
  1. * Samsung S3FWRN5 NCI NFC Controller
  2. Required properties:
  3. - compatible: Should be "samsung,s3fwrn5-i2c".
  4. - reg: address on the bus
  5. - interrupt-parent: phandle for the interrupt gpio controller
  6. - interrupts: GPIO interrupt to which the chip is connected
  7. - s3fwrn5,en-gpios: Output GPIO pin used for enabling/disabling the chip
  8. - s3fwrn5,fw-gpios: Output GPIO pin used to enter firmware mode and
  9. sleep/wakeup control
  10. Example:
  11. &hsi2c_4 {
  12. status = "okay";
  13. s3fwrn5@27 {
  14. compatible = "samsung,s3fwrn5-i2c";
  15. reg = <0x27>;
  16. interrupt-parent = <&gpa1>;
  17. interrupts = <3 0 0>;
  18. s3fwrn5,en-gpios = <&gpf1 4 0>;
  19. s3fwrn5,fw-gpios = <&gpj0 2 0>;
  20. };
  21. };