Hi guys,
I've been following this tutorial (http://shakithweblog.blogspot.com/2012/12/getting-sobel-filter-application.html) and everything worked great. In the tutorial they give you the BOOT.BIN file ready, so now I'm trying to generate the BOOT.BIN file by myself and I've got some errors :/
To generate the BOOT.BIN file I'm using Xilinx SDK and three files: zynq_fsbl.elf, system.bit and u-boot.elf. These three files are the same as used to generate the original BOOT.BIN file. The Zedboard boots properly, but there is no video output (the HDMI monitor shows no display at all). Here are the two boot logs, one with the original project working properly and the second one where the video output fails.
boot log good (http://pastebin.com/2mR4va5r)
boot log hdmi problem (http://pastebin.com/kebAVeir)
The mayor difference between the 2 boots is this one:
GOOD ONE (lines 292 to 303):
Debug1a: analog_drm_encoder_mode_set
Debug1b: analog_drm_encoder_mode_set
Debug1c: analog_drm_encoder_mode_set
Debug2: analog_drm_encoder_set_clock
setting clock to: 148500
raw_edid: dc40e180 7
Using YCbCr output
Console: switching to colour frame buffer device 240x67
usb 1-1: new high-speed USB device number 2 using xusbps-ehci
fb0: frame buffer device
drm: registered panic notifier
[drm] Initialized analog_drm 1.0.0 20110530 on minor 0
HDMI PROBLEM (lines 309 to 319)
Debug1a: analog_drm_encoder_mode_set
Debug1b: analog_drm_encoder_mode_set
Debug1c: analog_drm_encoder_mode_set
Debug2: analog_drm_encoder_set_clock
setting clock to: 65000
raw_edid: (null) 0
Using RGB output
Console: switching to colour frame buffer device 128x48
fb0: frame buffer device
drm: registered panic notifier
[drm] Initialized analog_drm 1.0.0 20110530 on minor 0
As you can see one is using YCbCr color space and the other one is using RGB, why do you think this is happening?
Hope you can help me on this one!
Thanks!
Nicolas