mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
d2efbbd18b
Add driver for serial-connected SiRFstar-based GNSS receivers. These devices typically boot into hibernate mode from which they can be woken using a pulse on the ON_OFF input pin. Once active, a pulse on the same ON_OFF pin is used to put the device back into hibernate mode. The current state can be determined by sampling the WAKEUP output. Hardware configurations where WAKEUP has been connected to ON_OFF (and where an initial WAKEUP pulse during boot is sufficient to have the device boot into active mode) are also supported. In this case, device power is managed using the main-supply regulator only. Note that configurations where WAKEUP is left not connected, so that the device power state can only indirectly be determined using the I/O interface, is currently not supported. It should be fairly straight-forward to extend the current implementation with such support however (and this this is the main reason for not using the generic serial implementation for this driver). Note that timepulse-support is left unimplemented. Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
43 lines
943 B
Text
43 lines
943 B
Text
#
|
|
# GNSS receiver configuration
|
|
#
|
|
|
|
menuconfig GNSS
|
|
tristate "GNSS receiver support"
|
|
---help---
|
|
Say Y here if you have a GNSS receiver (e.g. a GPS receiver).
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called gnss.
|
|
|
|
if GNSS
|
|
|
|
config GNSS_SERIAL
|
|
tristate
|
|
|
|
config GNSS_SIRF_SERIAL
|
|
tristate "SiRFstar GNSS receiver support"
|
|
depends on SERIAL_DEV_BUS
|
|
---help---
|
|
Say Y here if you have a SiRFstar-based GNSS receiver which uses a
|
|
serial interface.
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called gnss-sirf.
|
|
|
|
If unsure, say N.
|
|
|
|
config GNSS_UBX_SERIAL
|
|
tristate "u-blox GNSS receiver support"
|
|
depends on SERIAL_DEV_BUS
|
|
select GNSS_SERIAL
|
|
---help---
|
|
Say Y here if you have a u-blox GNSS receiver which uses a serial
|
|
interface.
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called gnss-ubx.
|
|
|
|
If unsure, say N.
|
|
|
|
endif # GNSS
|