Path: blob/main/sys/contrib/device-tree/Bindings/gnss/gnss.txt
48377 views
GNSS Receiver DT binding12This documents the binding structure and common properties for GNSS receiver3devices.45A GNSS receiver node is a node named "gnss" and typically resides on a serial6bus (e.g. UART, I2C or SPI).78Please refer to the following documents for generic properties:910Documentation/devicetree/bindings/serial/serial.yaml11Documentation/devicetree/bindings/spi/spi-bus.txt1213Required properties:1415- compatible : A string reflecting the vendor and specific device the node16represents1718Optional properties:19- lna-supply : Separate supply for an LNA20- enable-gpios : GPIO used to enable the device21- timepulse-gpios : Time pulse GPIO2223Example:2425serial@1234 {26compatible = "ns16550a";2728gnss {29compatible = "u-blox,neo-8";3031vcc-supply = <&gnss_reg>;32timepulse-gpios = <&gpio0 16 GPIO_ACTIVE_HIGH>;3334current-speed = <4800>;35};36};373839