Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c6f29bea authored by dearandrew's avatar dearandrew Committed by himta ram
Browse files

radio: RTC6226: Add support for RTC6226 FM chip



Add support for Richwave's RTC6226 FM chip based
on I2C. Add enable, disable, tune, seek and scan
functionality.

Signed-off-by: default avatartiantsai chang <changtt@richwave.com.tw>
Git-commit: 7066fd96dfa476c7131cfb791f59a09397017f40
Git-repo:  https://gitlab.com/richwavegit/rtc6226/


Change-Id: Ib91e5612c6cdbae2200b16dedd048b953b6dce64
Signed-off-by: default avatarhimta ram <hram@codeaurora.org>
parent dba83a4b
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -506,4 +506,17 @@ config RADIO_ZOLTRIX_PORT

endif # V4L_RADIO_ISA_DRIVERS

config I2C_RTC6226_QCA
	tristate "Richwave RTC6226 FM Radio Receiver support with I2C for QCA"
	depends on I2C && RADIO_RTC6226_QCA
	---help---
	  This is a driver for I2C devices with the Richwave RTC6226
	  chip.

	  Say Y here if you want to connect this type of radio to your
	  computer's I2C port.

	  To compile this driver as a module, choose M here: the
	  module will be called radio-i2c-RTC6226_QCA.

endif # RADIO_ADAPTERS
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ obj-$(CONFIG_RADIO_WL1273) += radio-wl1273.o
obj-$(CONFIG_RADIO_WL128X) += wl128x/
obj-$(CONFIG_RADIO_TEA575X) += tea575x.o
obj-$(CONFIG_USB_RAREMONO) += radio-raremono.o
obj-$(CONFIG_I2C_RTC6226_QCA) += rtc6226/

shark2-objs := radio-shark2.o radio-tea5777.o

+7 −0
Original line number Diff line number Diff line
#
# Makefile for radios with Richwave RTC6226 FM Tuner
#

radio-i2c-rtc6226-qca-objs	:= radio-rtc6226-i2c.o radio-rtc6226-common.o

obj-$(CONFIG_I2C_RTC6226_QCA) += radio-i2c-rtc6226-qca.o
Loading