Jetson orin nano SPI Speed not changing

Is the CS pin working not as expected?
If not, please apply the following patch to check if it could help in your case.

diff --git a/drivers/spi/spi-tegra114.c b/drivers/spi/spi-tegra114.c
--- a/drivers/spi/spi-tegra114.c
+++ b/drivers/spi/spi-tegra114.c
@@ -870,6 +870,8 @@ static u32 tegra_spi_setup_transfer_one(struct spi_device *spi,
 			else
 				command1 &= ~SPI_CS_SW_VAL;
 		}
+		tspi->use_hw_based_cs = true;
+		command1 &= ~(SPI_CS_SW_HW | SPI_CS_SW_VAL);
 
 		if (!tspi->prod_list) {
 			if (tspi->last_used_cs != spi->chip_select) {