Skip to content

Commit

Permalink
misc: jesd204b: Add driver for Xilinx jesd204b
Browse files Browse the repository at this point in the history
Create new folder for xilinx jesd204b driver.

Signed-off-by: Shubhrajyoti Datta <shubhraj@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
State: pending
  • Loading branch information
Shubhrajyoti Datta authored and Michal Simek committed May 27, 2021
1 parent 3abdddb commit 70fb7e7
Show file tree
Hide file tree
Showing 6 changed files with 587 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/misc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@ config HISI_HIKEY_USB
switching between the dual-role USB-C port and the USB-A host ports
using only one USB controller.

source "drivers/misc/jesd204b/Kconfig"
source "drivers/misc/c2port/Kconfig"
source "drivers/misc/eeprom/Kconfig"
source "drivers/misc/cb710/Kconfig"
Expand Down
1 change: 1 addition & 0 deletions drivers/misc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ obj-$(CONFIG_XILINX_SDFEC) += xilinx_sdfec.o
obj-$(CONFIG_HISI_HIKEY_USB) += hisi_hikey_usb.o
obj-$(CONFIG_XILINX_FLEX_PM) += xilinx_flex_pm.o
obj-$(CONFIG_XILINX_TRAFGEN) += xilinx_trafgen.o
obj-$(CONFIG_XILINX_JESD204B) += jesd204b/
16 changes: 16 additions & 0 deletions drivers/misc/jesd204b/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#
# Jesd204b support
#

config XILINX_JESD204B
tristate "Xilinx JESD204B"
help
This option enables support for the Xilinx JESD204B driver.
It is designed to allow user to access JESD204B IP registers
with sysfs entries. JESD204B is the protocol used by High-Speed
data converters to transfer data to FPGA/ASIC.

If unsure, say N.

To compile this driver as a module, choose M here: the
module will be called jesd204b.
2 changes: 2 additions & 0 deletions drivers/misc/jesd204b/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
obj-$(CONFIG_XILINX_JESD204B) += jesd204b.o
jesd204b-y += xilinx_jesd204b.o
Loading

0 comments on commit 70fb7e7

Please sign in to comment.