
上面的图片是Led液晶屏手册上面的信息
怎么转换成
驱动上面的信息
驱动信息如下,是s3c6410的
#define S3CFB_HFP 40 //320 /* front porch */
#define S3CFB_HSW 128 //20 /* hsync width */
#define S3CFB_HBP 88 //0 /* back porch */
#define S3CFB_VFP 39 /* front porch */
#define S3CFB_VSW 4 /* vsync width */
#define S3CFB_VBP 23 /* back porch */
#define S3CFB_HRES 1024 /* horizon pixel x resolition */
#define S3CFB_VRES 768 /* line cnt y resolution */
#define S3CFB_HRES_VIRTUAL 1024 /* horizon pixel x resolition */
#define S3CFB_VRES_VIRTUAL 1536 /* line cnt y resolution */
#define S3CFB_HRES_OSD 1024 /* horizon pixel x resolition */
#define S3CFB_VRES_OSD 768 /* line cnt y resolution */
#define S3CFB_VFRAME_FREQ 27 /* frame rate freq */
#define S3CFB_PIXEL_CLOCK (S3CFB_VFRAME_FREQ * (S3CFB_HFP + S3CFB_HSW + S3CFB_HBP + S3CFB_HRES) * (S3CFB_VFP + S3CFB_VSW + S3CFB_VBP + S3CFB_VRES))
有些液晶屏手册上面的信息刚好能够对应,有些就不行了。不知道怎么转换···