Skip to content

AD9213 driver #2804

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions drivers/iio/adc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,18 @@ config AD9208
AD9208, AD9689, AD9695, AD9697, AD9694, AD6688, AD6684 high speed ADCs.
Provides direct access via sysfs.

config AD9213
tristate "Analog Devices AD9213 ADC"
depends on SPI
select IIO_BACKEND
help
Say yes here to build support for Analog Devices:
AD9213 JESD204B RF Analog-to-Digital Converter.
Provides direct access via sysfs.

To compile this driver as a module, choose M here: the module will be
called ad9213.

config AD9361
bool "Analog Devices AD9361, AD9364 RF Agile Transceiver driver"
depends on SPI
Expand Down
2 changes: 2 additions & 0 deletions drivers/iio/adc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ ad9208_drv-y := ad9208.o \

obj-$(CONFIG_AD9208) += ad9208_drv.o

obj-$(CONFIG_AD9213) += ad9213.o

ad9081_drv-y := ad9081.o \
ad9081/adi_ad9081_adc.o \
ad9081/adi_ad9081_device.o \
Expand Down
Loading