Hi,
The HDMI on the BeagleBone black isn't supported in the TI PSP yet: http://processors.wiki.ti.com/index.php/AM335x-PSP_04.06.00.11_Release_Notes
If you wish to use the HDMI, you can try the Angstrom distribution from the BBB site.
Have you seen the LCD Controller Driver's Guide? http://processors.wiki.ti.com/index.php/AM335x_LCD_Controller_Driver%27s_Guide
You can change the LCD controller configuration for your LCD inside the kernel and then recompile the kernel. The structure you need to check can be found inside the <linux_dir>/arch/arm/mach-omap2/board-am335xevm.c board file:
[quote]static struct lcd_ctrl_config lcd_cfg = {
&disp_panel,
.ac_bias = 255,
.ac_bias_intrpt = 0,
.dma_burst_sz = 16,
.bpp = 32,
.fdd = 0x80,
.tft_alt_mode = 0,
.stn_565_mode = 0,
.mono_8bit_mode = 0,
.invert_line_clock = 1,
.invert_frm_clock = 1,
.sync_edge = 0,
.sync_ctrl = 1,
.raster_order = 0,
};[/quote]
Best regards,
Miroslav