Hello
I use the dspi0 on my board which connects to the Intel_ALTERA 10M08SCU169C8G chip.
Fragment from the devices tree which I have at the moment:
&edma1 {
status = "okay";
};
&dspi0 {
bus-num = <0>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_dspi0>;
status = "okay";
/*sflash: at26df081a@0 {*/
spidev0: spidev@0 {
/*#address-cells = <1>;*/
/*#size-cells = <1>;*/
/*compatible = "atmel,at26df081a";*/
compatible = "toradex,evalspi";
/*spi-max-frequency = <16000000>;*/
spi-max-frequency = <66000000>;
/*spi-cpol;*/
/*spi-cpha;*/
reg = <0>;
};
};
pinctrl_dspi0: dspi0grp {
fsl,pins = <
VF610_PAD_PTB19__DSPI0_CS0 0x1182
VF610_PAD_PTB20__DSPI0_SIN 0x1181
VF610_PAD_PTB21__DSPI0_SOUT 0x1182
VF610_PAD_PTB22__DSPI0_SCK 0x1182
>;
};
I want to get spi-max-frequency 66 MHz but I get only 16 MHz.
How can I get frequency above 16 mhz?
My board uses Linux for TWR-VF65GS10.
Thanks.