Path: blob/main/sys/contrib/device-tree/Bindings/fpga/altera-passive-serial.txt
48375 views
Altera Passive Serial SPI FPGA Manager12Altera FPGAs support a method of loading the bitstream over what is3referred to as "passive serial".4The passive serial link is not technically SPI, and might require extra5circuits in order to play nicely with other SPI slaves on the same bus.67See https://www.altera.com/literature/hb/cyc/cyc_c51013.pdf89Required properties:10- compatible: Must be one of the following:11"altr,fpga-passive-serial",12"altr,fpga-arria10-passive-serial"13- reg: SPI chip select of the FPGA14- nconfig-gpios: config pin (referred to as nCONFIG in the manual)15- nstat-gpios: status pin (referred to as nSTATUS in the manual)1617Optional properties:18- confd-gpios: confd pin (referred to as CONF_DONE in the manual)1920Example:21fpga: fpga@0 {22compatible = "altr,fpga-passive-serial";23spi-max-frequency = <20000000>;24reg = <0>;25nconfig-gpios = <&gpio4 9 GPIO_ACTIVE_LOW>;26nstat-gpios = <&gpio4 11 GPIO_ACTIVE_LOW>;27confd-gpios = <&gpio4 12 GPIO_ACTIVE_LOW>;28};293031