xref: /openbmc/linux/drivers/gnss/Kconfig (revision 0ca650c1)
1#
2# GNSS receiver configuration
3#
4
5menuconfig GNSS
6	tristate "GNSS receiver support"
7	---help---
8	  Say Y here if you have a GNSS receiver (e.g. a GPS receiver).
9
10	  To compile this driver as a module, choose M here: the module will
11	  be called gnss.
12
13if GNSS
14
15config GNSS_SERIAL
16	tristate
17
18config GNSS_MTK_SERIAL
19	tristate "Mediatek GNSS receiver support"
20	depends on SERIAL_DEV_BUS
21	select GNSS_SERIAL
22	help
23	  Say Y here if you have a Mediatek-based GNSS receiver which uses a
24	  serial interface.
25
26	  To compile this driver as a module, choose M here: the module will
27	  be called gnss-mtk.
28
29	  If unsure, say N.
30
31config GNSS_SIRF_SERIAL
32	tristate "SiRFstar GNSS receiver support"
33	depends on SERIAL_DEV_BUS
34	---help---
35	  Say Y here if you have a SiRFstar-based GNSS receiver which uses a
36	  serial interface.
37
38	  To compile this driver as a module, choose M here: the module will
39	  be called gnss-sirf.
40
41	  If unsure, say N.
42
43config GNSS_UBX_SERIAL
44	tristate "u-blox GNSS receiver support"
45	depends on SERIAL_DEV_BUS
46	select GNSS_SERIAL
47	---help---
48	  Say Y here if you have a u-blox GNSS receiver which uses a serial
49	  interface.
50
51	  To compile this driver as a module, choose M here: the module will
52	  be called gnss-ubx.
53
54	  If unsure, say N.
55
56endif # GNSS
57