Overview
Online Support
FAQ
  Atmel Series  (29) TOP10
  MYS-SAM9X5 (3)
  MYS-SAM9G45 (1)
  MYD-SAM9X5 (7)
  MYD-SAM9X5-V2 (2)
  MYD-JA5D2X (0)
  MYD-SAMA5D3X (11)
  MYD-SAMA5D3X-C (0)
  MYD-JA5D4X (0)
  MYC-SAM9X5 (4)
  MYC-SAM9X5-V2 (1)
  MYC-JA5D2X (0)
  MYC-SAMA5D3X (0)
  MCC-SAMA5D3X-C (0)
  MYC-JA5D4X (0)
  NXP Series  (23) TOP10
  MYS-6ULX (4)
  MYD-Y6ULX (3)
  MYD-Y6ULX-HMI (1)
  MYD-IMX28X (2)
  MYD-LPC435X (2)
  MYD-LPC185X (1)
  MYD-LPC1788 (0)
  MYC-Y6ULX (4)
  MYC-IMX28X (0)
  i.MX 6UL/6ULL (6)
  TI Series  (24) TOP10
  MYD-AM335X (12)
  MYD-AM335X-Y (0)
  MYD-AM335X-J (0)
  MYD-C437X (0)
  MYD-C437X-PRU (5)
  Rico Board (6)
  MYC-AM335X (1)
  MCC-AM335X-Y (0)
  MCC-AM335X-J (0)
  MYC-C437X (0)
  Xilinx Series  (20) TOP10
  Z-turn Board (9)
  Z-turn Lite (2)
  MYD-C7Z010/20 (0)
  MYD-C7Z015 (7)
  MYD-Y7Z010/007S (0)
  MYC-C7Z010/20 (0)
  MYC-C7Z015 (0)
  MYC-Y7Z010/007S (0)
  HMI Solutions  (0) TOP10
  MYD-Y6ULX-CHMI (0)
  MY-EVC5100S-HMI (0)
  Others  (1) TOP10
  MY-WF003U (1)
 
  Home >  Support > Xilinx Series > Z-turn Board
 
How to use SPI1 interface on Z-turn Board?
 
Question
How to use SPI1 interface on Z-turn Board?
Answer

The SPI resource is as below:


Kernel Modification
Device tree has added spidev device and the kernel has modified the configuration option:
[mw_shl_code=bash,true]Device Drivers->SPI support->[/mw_shl_code]
Select
User mode SPI device driver support
spi device node is at:
/dev/spidev1.0
After selected this option, the spi device driver can be realized in user space. Please find relative material on net or refer to the source code:
drivers/spi/spidev.c
The spi source code is at:
drivers/spi/spi-cadence.c

Device tree modification

The device tree has modified two places.
The first place is as below:
[mw_shl_code=c,true]aliases {
                ethernet0 = &gem0;
                serial0 = &uart1;
                serial1 = &uart0;
                spi0 = &qspi;
                spi1 = &spi1;              // added this row
        };[/mw_shl_code]

The second place has added the spi definition.
[mw_shl_code=c,true]&spi1 {
        status = "okay";
        num-cs = <1>;
        spidev@0 {
            compatible = "spidev";
            reg = <0>;
            spi-max-frequency = <50000000>;
            //spi-cpha;
           //spi-cpol;
    };
};[/mw_shl_code]
Enclosed herewith the compiled kernel, device tree file package as below:


  • uImagekernel image
  • devicetree.dtbdevice tree image (binary)
  • zynq-zturn.dtsdevice tree source file


z-turn_spi1.zip