User Activity

Hi,I am using my custom board based on stm32mp1,  and I want it boot silently, including tf-a, optee, uboot and kernel. I don't need debug message from uart console anymore.I want to have it done in Yocto, is it possible? Thanks
I enabled fmc in arch/arm/boot/dts/stm32mp157f-dk2.dts:&fmc { status = "okay"; };And this is how i read or write its registers:static inline unsigned int readl(const volatile void *addr) { unsigned int val; __asm__ __volatile__("": : :"memory"); ...