Thank you Alejandro for your response.
Well I do know (it's the 80 GPIO), actually I understood my problem, I have to change the defaults configuration of the SSP2_SCK into simple GPIO.
To do that, I need to change the device tree file imx28-evk.dts.
I'm trying this : (don't know if it's gonna work)
ssp2: ssp@80014000 {
compatible = "fsl,imx28-mmc";
pinctrl-names = "default";
pinctrl-0 = <&my_pins_a>;
};
pinctrl@80018000 {
pinctrl-names = "default";
pinctrl-0 = <&hog_pins_a>;
my_pins_a : mypin@0 {
fsl,pinmux-ids = <
MX28_PAD_SSP2_SCK__GPIO_2_16
>;
fsl,drive-strength = <MXS_DRIVE_4mA>;
fsl,voltage = <MXS_VOLTAGE_HIGH>;
fsl,pull-up = <MXS_PULL_DISABLE>;
};
But right now, my biggest problem is how to make yocto generate a new kernel everytime I change the imx28-evk.dts file...
By the way, I bought a Flash memory and I plugged it on the Nand Flash Socket, and I don't know how to put my linux on it ! I'm using a SD card and I simply use :
sudo dd if=imx28-vulog-image-imx28evk.sdcard of=/dev/sdb
So wether I'll have to install U-boot on the Flash and then use /tftpboot procedure (and I don't know how to do that...), or maybe there's I sudo dd command for the nand flash ?
Thank you