u-blox.txt 939 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. u-blox GNSS Receiver DT binding
  2. The u-blox GNSS receivers can use UART, DDC (I2C), SPI and USB interfaces.
  3. Please see Documentation/devicetree/bindings/gnss/gnss.txt for generic
  4. properties.
  5. Required properties:
  6. - compatible : Must be one of
  7. "u-blox,neo-8"
  8. "u-blox,neo-m8"
  9. - vcc-supply : Main voltage regulator
  10. Required properties (DDC):
  11. - reg : DDC (I2C) slave address
  12. Required properties (SPI):
  13. - reg : SPI chip select address
  14. Required properties (USB):
  15. - reg : Number of the USB hub port or the USB host-controller port
  16. to which this device is attached
  17. Optional properties:
  18. - timepulse-gpios : Time pulse GPIO
  19. - u-blox,extint-gpios : GPIO connected to the "external interrupt" input pin
  20. - v-bckp-supply : Backup voltage regulator
  21. Example:
  22. serial@1234 {
  23. compatible = "ns16550a";
  24. gnss {
  25. compatible = "u-blox,neo-8";
  26. v-bckp-supply = <&gnss_v_bckp_reg>;
  27. vcc-supply = <&gnss_vcc_reg>;
  28. };
  29. };