高通平台bootloader里面串口logo输出配置方法
1:在modem端将相应的gpio设置成相应功能。
2:在/lk/project/xxx.mk打开uart输出logo功能。
3:在platform/msm_shared/uart.c中定义uart几输出logo,
#if PLATFORM_MSM7X30
static unsigned uart_base = MSM_UART2_BASE;
#elif PLATFORM_MSM7X27A
static unsigned uart_base = MSM_UART1_BASE;
#else
static unsigned uart_base = MSM_UART3_BASE;
#endif
这样appsboot就可以打印logo了