Hi,
I am trying to setup lpspi1 on Apalis iMX8. I get glitches on the SCLK depending on what I connect. These glitches seem to be read as extra clock pulses on the spi so all readings are wrong.
I am evaluating on the Apalis Evaluation board , and have tried both with the 1nF on C104 mounted and not mounted.
This is my device tree setup:
&dma_subsys {
lpspi1: spi@5a010000 {
compatible = "fsl,imx7ulp-spi";
reg = <0x5a010000 0x10000>;
#address-cells = <1>;
#size-cells = <0>;
interrupts = <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
interrupt-parent = <&gic>;
clocks = <&spi1_lpcg 0>,
<&spi1_lpcg 1>;
clock-names = "per", "ipg";
assigned-clocks = <&clk IMX_SC_R_SPI_1 IMX_SC_PM_CLK_PER>;
assigned-clock-rates = <60000000>;
power-domains = <&pd IMX_SC_R_SPI_1>;
dma-names = "tx","rx";
dmas = <&edma2 3 0 0>, <&edma2 2 0 1>;
status = "disabled";
};
};
pinctrl_lpspi1: lpspi1grp {
fsl,pins = <
IMX8QM_ADC_IN3_DMA_SPI1_SCK 0x0600004c
IMX8QM_ADC_IN4_DMA_SPI1_SDO 0x0600004c
IMX8QM_ADC_IN5_DMA_SPI1_SDI 0x0600004c
IMX8QM_ADC_IN6_LSIO_GPIO3_IO24 0x0600004c
IMX8QM_ADC_IN7_LSIO_GPIO3_IO25 0x0600004c
>;
};
&lpspi1 {
pinctrl-names = “default”;
pinctrl-0 = <&pinctrl_lpspi1>;
#address-cells = <1>;
#size-cells = <0>;
fsl,spi-num-chipselects = <2>;
cs-gpios = <&lsio_gpio3 24 GPIO_ACTIVE_LOW>, <&lsio_gpio3 25 GPIO_ACTIVE_LOW>;
status = “okay”;
spidev2_cs0: spi@0 {
compatible = "toradex,evalspi";
reg = <0>;
spi-max-frequency = <4000000>;
};
spidev2_cs1: spi@1 {
compatible = "toradex,evalspi";
reg = <1>;
spi-max-frequency = <4000000>;
};
};
This output of tdx-info:
Software summary
------------------------------------------------------------
Bootloader: U-Boot
Kernel version: 5.4.193-5.7.0-devel+git.f78299297185 #1-TorizonCore SMP PREEMPT Thu May 11 08:53:23 UTC 2023
Kernel command line: pci=nomsi root=LABEL=otaroot rootfstype=ext4 quiet logo.nologo vt.global_cursor_default=0 plymouth.ignore-serial-consoles splash ostree=/ostree/boot.1/torizon/0dce0ef4758c070a8509d9b6fcbb83136214e2d045a7f3b7669cc8266b40852b/0
Distro name: NAME="Custom TorizonCore Variant"
Distro version: VERSION_ID=5.7.0-devel-20230511085225-build.0
Hostname: apalis-imx8-07278529
------------------------------------------------------------
Hardware info
------------------------------------------------------------
HW model: Toradex Apalis iMX8QM V1.1 on Custom Carrier Board
Toradex version: 0037 V1.1E
Serial number: 07278529
Processor arch: aarch64
------------------------------------------------------------
Is there some known issue with glitches on lpspi1 SCLK?
Anything else I should look for or think of?