|
Edited by fsmoke at 2016-4-24 17:34
Finally i've got some free time ...
I use ttl converter for debug my opipc, and find something interesting
This is piece of log:
...
[ 2.135404] cmdline,disp=
[ 2.169360] cmdline,disp=
[ 2.172308] [DISP] disp_init_tv,line:531:screen 0 do not support TV TYPE!
[ 2.179844] [DISP] bsp_disp_tv_register,line:938:'ptv is null
[ 2.186252] [DISP] disp_device_attached_and_enable,line:159:attched ok, mgr0<-->device1, type=2, mode=11
....
It seems disp_mode param in disp_init section has no effect at all - i test it with = 0 and = 1 values - but kernel always falls to screen 0. On the other hand - tvout cannot work on screen 0 at all!! I've explored sources of sunxi display driver and found this:
static const int de_supported_output_types[] = {
/* DISP0 */
4, /*HDMI*/
/* DISP1 */
2, /*TV*/
};
So only display number = 1 could be as tv out and display number = 0 could be as hdmi only.
I have 2 questions for you:
1) why kernel ignores disp_mode parameter even if kodi does not support it - is it hardcoded somewhere in configs? If yes - then where?
2) Earlier you told about display=0 only for kodi - why? Is it possible to change this? |
|