Permalink
Cannot retrieve contributors at this time
ODROIDC-UBOOT-CONFIG | |
# Resolution Configuration | |
# 'hdmimode' must be one of below to configure display resolution within | |
# supported by your TV or monitor. | |
# Symbol | Resolution | |
# --------------------+------------- | |
# "480x320p60hz" | 480x320 | |
# "vga" | 640x480 | |
# "480p" | 720x480 | |
# "576p" | 720x576 | |
# "800x480p60hz" | 800x480 | |
# "480x800p60hz" | 480x800 | |
# "800x600p60hz" | 800x600 | |
# "1024x600p60hz" | 1024x600 | |
# "1024x768p60hz" | 1024x768 | |
# "1080i50hz" | 1080I@50Hz | |
# "1080p24hz" | 1080P@24Hz | |
# "1080p50hz" | 1080P@50Hz | |
# "1080p" | 1080P@60Hz | |
# "720p" | 1280x720 | |
# "800p" | 1280x800 | |
# "sxga" | 1280x1024 | |
# "1360x768p60hz" | 1360x768 | |
# "1366x768p60hz" | 1366x768 | |
# "1440x900p60hz" | 1440x900 | |
# "1600x900p60hz" | 1600x900 | |
# "1680x1050p60hz" | 1680x1050 | |
# "1920x1200" | 1920x1200 | |
setenv hdmimode "720p" | |
# HDMI/DVI Mode Configuration | |
# This will enforce the singal type of display | |
# "hdmi" - For HDMI interface | |
# "dvi" - For DVI interface | |
setenv vout_mode "hdmi" | |
# HPD enable/disable option | |
setenv disablehpd "false" | |
# Overscan offset configuration | |
# All offsets are zero and can be tuned by manual or ODROID Utility | |
setenv top "0" | |
setenv left "0" | |
setenv bottom "0" | |
setenv right "0" | |
# UHS Card Configuration | |
# Uncomment the line below to __DISABLE__ UHS-1 MicroSD support | |
# This might break boot for some brand/models of cards. | |
#setenv disableuhs "disableuhs" | |
# CEC Configuration | |
setenv cecconfig "cecf" | |
# Disable IR remote | |
setenv ir_remote "1" | |
suspend_hdmiphy=0 | |
# CPU Max Frequency | |
# setenv max_freq "1488" | |
# setenv max_freq "1536" | |
# setenv max_freq "1632" | |
# setenv max_freq "1728" | |
# setenv max_freq "1824" | |
setenv max_freq "1536" | |
# Disable Vu7 | |
setenv disable_vu7 "false" | |
# invert touch screen x,y | |
setenv touch_invert_x "false" | |
setenv touch_invert_y "false" | |
# Enable backlight_pwm | |
# disable : backlight "no" | |
# ODROID-VU5/7 : backlight "yes" | |
# ODROID-VU8 : backlight "invert" | |
setenv backlight_pwm "no" | |
# Booting | |
setenv bootargs "root=/dev/mmcblk0p2 rw console=ttyS0,115200n8 no_console_suspend vdaccfg=${vdac_config} logo=osd1,loaded,${fb_addr},${outputmode},full hdmimode=${hdmimode} cvbsmode=${cvbsmode} hdmitx=${cecconfig} vout=${vout_mode} disablehpd=${disablehpd} ${disableuhs} overscan_top=${top} overscan_left=${left} overscan_bottom=${bottom} overscan_right=${right} androidboot.serialno=${fbt_id#} ir_remote=${ir_remote} usbcore.autosuspend=-1 suspend_hdmiphy=${suspend_hdmiphy} max_freq=${max_freq} disable_vu7=${disable_vu7} touch_invert_x=${touch_invert_x} touch_invert_y=${touch_invert_y} backlight_pwm=${backlight_pwm}" | |
setenv bootcmd "movi read boot 0 0x12000000; movi read dtb 0 0x12800000; bootm 0x12000000 - 0x12800000" | |
#setenv bootcmd "fatload mmc 0:1 ${loadaddr} Image_rtcshield; movi read dtb 0 0x12800000; bootm 0x12000000 - 0x12800000" | |
run bootcmd |