Hi, first post here hopefully someone can help.
I have a system using DM3730/Uboot and Linux 2.6.32 kernel. Attempting to use the SPI3 port and have configured the GPIO in the omap_board_mux structure in arch/arm/mach-omap2/board-omap3tdm3730.c I have added:
OMAP3_MUX(ETK_D3, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT ), //CLOCK OMAP3_MUX(ETK_D0, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT), //SIMO OMAP3_MUX(ETK_D2, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT), //CS0 OMAP3_MUX(ETK_D7, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT), OMAP3_MUX(ETK_D1, OMAP_MUX_MODE1 | OMAP_PIN_INPUT), //SOMI
The problem I am getting is that I see no data on the SPI input, the signal is there I have scoped it and at the correct voltage state.
Is there any way that I can check the register status' from the bash terminal so I can see if the pinmux is still set as an input ?
Thanks in advance
Marc