本文转载自:http://www.cnblogs.com/pengdonglin137/p/4633877.html
u-boot支持LCD显示(基于TQ2440)
平台简介
Linux版本:Linux-3.14
u-boot版本:u-boot-2015.04
硬件:TQ2440(内存:64MB NandFlash:256MB)
作者:彭东林
摘要
这个版本的u-boot支持LCD很容易,期间,参考了tq2440官方u-boot中的LCD驱动。我们只需要在配置文件中配置相应的宏,实现LCD的初始化和使能函数即可。
代码我已经上传到CSDN上了,git@code.csdn.net:pengdonglin137/u-boot.git
其中一共有两个分支,一个是master分支,用于跟踪u-boot的最近分支,另一个是u-boot-2015-04-tq2440-spl分支,从名称上可以看到,这个分支的u-boot版本是u-boot-2015.04,用于向tq2440上移植。
使用方法:
git clone git@code.csdn.net:pengdonglin137/u-boot.git -b u-boot-2015-04-tq2440-spl
思路
我们按照下面的思路来移植:
1.先分析u-boot的启动流程;
2.分析u-boot在内存中的布局;
3.然后重点分析u-boot中LCD的初始化流程,如FreamBuffer的分配,LCD的初始化和使能;
4.完成LCD的初始化和使能函数;
u-boot的启动流程
这里的u-boot采用了spl启动的方式,关于这部分可以参考博客:
http://www.cnblogs.com/pengdonglin137/p/4541705.html
关于这个版本的u-boot的启动流程我总结了一个pdf文档,下面是下载地址:
u-boot的内存布局
关于这部分,上面的文档中已经有总结,请参考上面的文档。
LCD的初始化流程
这里我们分为LCD的FreamBuffer的分配,LCD的初始化以及使能过程。
内存分配
下面这张图是S3C2440的LCD控制器模块:
The LCDCDMA is a dedicated DMA, which can transfer the video data in frame memory to LCD driver automatically. By using this special DMA, the video data can be displayed on the screen without CPU intervention.
u-boot分配的FrameBuffer:
下图中的红色区域就是u-boot预留的LCD FreamBuffer,它的起始地址存放在gd->fb_base中。
LCD的初始化
下面是函数调用关系:
board_init_r
-> ……
->stdio_init_tables
->initr_serial
->stdio_add_devices (common/stdio.c)
->drv_lcd_init (common/lcd.c)
->lcd_init (common/lcd.c)
下面是lcd_init函数:
1: static int lcd_init(void *lcdbase)
2: {
3: debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
4: lcd_ctrl_init(lcdbase);
5:
6: /*
7: * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi) ignores
8: * the 'lcdbase' argument and uses custom lcd base address
9: * by setting up gd->fb_base. Check for this condition and fixup
10: * 'lcd_base' address.
11: */
12: if (map_to_sysmem(lcdbase) != gd->fb_base)
13: lcd_base = map_sysmem(gd->fb_base, 0);
14:
15: debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);