How to modify continuous clock of spi to non-continuous clock on agx xavier?

I have agx xavier on hand, it’s official kit,.
run ubuntu 18.04,
kernel version 4.9.140-tegra,
use SDKmanager 4.3.

AGX SPI spidev0.0:

other board I want:

reference:

You can use clock delay between packets dt property to set up the delay between the clock cycles.

could you give me complete configure , thank you.
This is the original configuration of the device tree:
spi@3210000 {
status = “okay”;
spi@0 {
compatible = “spidev”;
reg = <0x0>;
spi-max-frequency = <33000000>;
nvidia,rx-clk-tap-delay = <0x11>;
};
};

Add nvidia,clk-delay-between-packets like below.

..
..
spi@0 {
compatible = “spidev”;
reg = <0x0>;
spi-max-frequency = <33000000>;
nvidia,rx-clk-tap-delay = <0x11>;

            controller-data {
                nvidia,clk-delay-between-packets = <10>;
            };
};
..
..