2019-05-19 15:07:45 +03:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2018-06-01 11:22:52 +03:00
|
|
|
#
|
|
|
|
# GNSS receiver configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig GNSS
|
|
|
|
tristate "GNSS receiver support"
|
2020-06-13 19:50:22 +03:00
|
|
|
help
|
2018-06-01 11:22:52 +03:00
|
|
|
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.
|
2018-06-01 11:22:54 +03:00
|
|
|
|
|
|
|
if GNSS
|
|
|
|
|
|
|
|
config GNSS_SERIAL
|
|
|
|
tristate
|
|
|
|
|
2019-02-13 18:09:29 +03:00
|
|
|
config GNSS_MTK_SERIAL
|
|
|
|
tristate "Mediatek GNSS receiver support"
|
|
|
|
depends on SERIAL_DEV_BUS
|
|
|
|
select GNSS_SERIAL
|
|
|
|
help
|
|
|
|
Say Y here if you have a Mediatek-based GNSS receiver which uses a
|
|
|
|
serial interface.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
|
|
be called gnss-mtk.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2018-06-01 11:22:58 +03:00
|
|
|
config GNSS_SIRF_SERIAL
|
|
|
|
tristate "SiRFstar GNSS receiver support"
|
|
|
|
depends on SERIAL_DEV_BUS
|
2020-06-13 19:50:22 +03:00
|
|
|
help
|
2018-06-01 11:22:58 +03:00
|
|
|
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.
|
|
|
|
|
2018-06-01 11:22:56 +03:00
|
|
|
config GNSS_UBX_SERIAL
|
|
|
|
tristate "u-blox GNSS receiver support"
|
|
|
|
depends on SERIAL_DEV_BUS
|
|
|
|
select GNSS_SERIAL
|
2020-06-13 19:50:22 +03:00
|
|
|
help
|
2018-06-01 11:22:56 +03:00
|
|
|
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.
|
|
|
|
|
2018-06-01 11:22:54 +03:00
|
|
|
endif # GNSS
|