diff options
author | Heiko Schocher <hs@denx.de> | 2015-01-20 10:06:18 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-01-29 18:37:49 +0100 |
commit | b4b39a7e54fa6f4aa016cf98744aa5659db75d33 (patch) | |
tree | cf6db0283046f050bdf1e0cf0250df3bc9605d06 /board/aristainetos/aristainetos.c | |
parent | f82eb2fa5df86b7180ea355a3cb98482f7c27269 (diff) | |
download | u-boot-imx-b4b39a7e54fa6f4aa016cf98744aa5659db75d33.zip u-boot-imx-b4b39a7e54fa6f4aa016cf98744aa5659db75d33.tar.gz u-boot-imx-b4b39a7e54fa6f4aa016cf98744aa5659db75d33.tar.bz2 |
arm, imx6, aristainetos: board updates
- use linux display timing settings
- change backlight duty cycle 500ns
- some defaultenvironment changes
- change fit_addr_r to 0x14000000 as needed if
MAX_LOCKDEP_SUBCLASSES in linux gets increased.
- Environment now at 0xd0000 in nand flash
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'board/aristainetos/aristainetos.c')
-rw-r--r-- | board/aristainetos/aristainetos.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/aristainetos/aristainetos.c b/board/aristainetos/aristainetos.c index 67ac260..8330bb6 100644 --- a/board/aristainetos/aristainetos.c +++ b/board/aristainetos/aristainetos.c @@ -321,8 +321,8 @@ static void enable_lvds(struct display_info_t const *dev) /* enable backlight PWM 3 */ if (pwm_init(2, 0, 0)) goto error; - /* duty cycle 200ns, period: 3000ns */ - if (pwm_config(2, 200, 3000)) + /* duty cycle 500ns, period: 3000ns */ + if (pwm_config(2, 500, 3000)) goto error; if (pwm_enable(2)) goto error; @@ -350,8 +350,8 @@ struct display_info_t const displays[] = { .right_margin = 88, .upper_margin = 10, .lower_margin = 10, - .hsync_len = 25, - .vsync_len = 1, + .hsync_len = 80, + .vsync_len = 25, .sync = 0, .vmode = FB_VMODE_NONINTERLACED } |