Hello friends,
I need to send some SPI data to my custom LCD ( all in u-boot context). Now the first option I tried to enable the SPI 1 hw peripheral of AM335x (instead of bit banging on GPIO) using SItara Ware examples. But when enable interrupts, the u-boot just freeze, never enters in prompt.
139 void CPUirqe(void)
140 {
141 /* Enable IRQ in CPSR */
142 asm(" mrs r0, CPSR\n\t"
143 " bic r0, #0x80\n\t"
144 " msr CPSR, r0");
145 }
I don't have a JTAG so I cannot see where AM335x is blocked.
Any hints appreciated,