mx53_smd VGA Display

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

mx53_smd VGA Display

跳至解决方案
1,050 次查看
Danial
Contributor II

if I use the mx53_smd BSP, I can't use VGA Display,

but when I use mx53_loco BSP, it work. Why? There are

some differeces between mx53_smd and mx53_loco?

Thanks!

标签 (1)
0 项奖励
回复
1 解答
845 次查看
Danial
Contributor II

Thankyou, in mx53_smd.c files,

change:

static struct tve_platform_data tve_data = {

  .dac_reg = "DA9052_LDO7",

};

static struct ldb_platform_data ldb_data = {

  .ext_ref = 1,

  .boot_enable = MXC_LDBDI1,

};

to

static struct tve_platform_data tve_data = {

  .dac_reg = "DA9052_LDO7",

  .boot_enable = MXC_TVE_VGA,//2012-12-28 by add zhoudan

};

static struct ldb_platform_data ldb_data = {

  .ext_ref = 1,

  //.boot_enable = MXC_LDBDI1,

};

and it work.

在原帖中查看解决方案

0 项奖励
回复
2 回复数
845 次查看
4guin4g4
Contributor IV

The LVDS is the default display for the SMD. Have you tried changing the bootargs?
What board are you using? is this a custom board?

0 项奖励
回复
846 次查看
Danial
Contributor II

Thankyou, in mx53_smd.c files,

change:

static struct tve_platform_data tve_data = {

  .dac_reg = "DA9052_LDO7",

};

static struct ldb_platform_data ldb_data = {

  .ext_ref = 1,

  .boot_enable = MXC_LDBDI1,

};

to

static struct tve_platform_data tve_data = {

  .dac_reg = "DA9052_LDO7",

  .boot_enable = MXC_TVE_VGA,//2012-12-28 by add zhoudan

};

static struct ldb_platform_data ldb_data = {

  .ext_ref = 1,

  //.boot_enable = MXC_LDBDI1,

};

and it work.

0 项奖励
回复