Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
19 changes: 17 additions & 2 deletions arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,23 @@
};
};

&axi_data_offload_tx {
/delete-property/ adi,oneshot;

Check warning on line 373 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: Please don't use multiple blank lines
&axi_data_offload_tx {

Check warning on line 374 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: please, no spaces at the start of a line + &axi_data_offload_tx {$
adi,bypass;

Check warning on line 375 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: please, no spaces at the start of a line + ^Iadi,bypass;$

Check warning on line 375 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: please, no space before tabs + ^Iadi,bypass;$

Check failure on line 375 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: code indent should use tabs where possible + ^Iadi,bypass;$
adi,oneshot-disable;
};

Check warning on line 377 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: please, no spaces at the start of a line + };$

&axi_data_offload_rx {

Check warning on line 379 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: please, no spaces at the start of a line + &axi_data_offload_rx {$
adi,bypass;

Check warning on line 380 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: please, no spaces at the start of a line + ^Iadi,bypass;$

Check warning on line 380 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: please, no space before tabs + ^Iadi,bypass;$

Check failure on line 380 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: code indent should use tabs where possible + ^Iadi,bypass;$
adi,oneshot-disable;
};

Check warning on line 382 in arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev10-stingray.dts

View workflow job for this annotation

GitHub Actions / checks / checks

checkpatch: please, no spaces at the start of a line + };$

&rx_dma {
/delete-property/ dma-coherent;
};

&tx_dma {
/delete-property/ dma-coherent;
};

&iio_axi_tdd_0 {
Expand Down
3 changes: 3 additions & 0 deletions drivers/misc/adi-axi-data-offload.c
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,9 @@ static int axi_data_offload_probe(struct platform_device *pdev)
if (of_property_read_bool(st->of_node, "adi,oneshot"))
axi_data_offload_ctrl_oneshot(st, true);

if (of_property_read_bool(st->of_node, "adi,oneshot-disable"))
axi_data_offload_ctrl_oneshot(st, false);

if (of_property_read_bool(st->of_node, "adi,bypass"))
axi_data_offload_ctrl_bypass(st, true);

Expand Down
Loading