Guest davidevinavil Posted March 22, 2011 Report Posted March 22, 2011 (edited) I'm locking into kernel source and I'm noting a lot of source file that are builded by makefile to build radio FM stuff The interesting stuff is that those file that are about radio FM are also about TV.. Those file are into driver/media/common/tuners folder.. I'm not sure about that, but if it's right ours metal could receive TV broadcast :/ This is an extract of tuner-simple.c contents.. static inline char *tuner_param_name(enum param_type type) { char *name; switch (type) { case TUNER_PARAM_TYPE_RADIO: name = "radio"; break; case TUNER_PARAM_TYPE_PAL: name = "pal"; break; case TUNER_PARAM_TYPE_SECAM: name = "secam"; break; case TUNER_PARAM_TYPE_NTSC: name = "ntsc"; break; case TUNER_PARAM_TYPE_DIGITAL: name = "digital"; break; default: name = "unknown"; break; } return name;[/codebox].. Edited March 22, 2011 by davidevinavil
Guest vache Posted March 23, 2011 Report Posted March 23, 2011 There is also a mdp_dma_tv.c in drivers/video/msm, referenced to a TV_PANEL. Look into this for a long time now. At begining i thought it was the cause of the 30FPS limit, like the HTC Evo had, 30FPS was reserved for the HDMI output. Now i doubt. Dunno what Acer did, it's really strange, many references to an external output we don't have.
Guest davidevinavil Posted March 23, 2011 Report Posted March 23, 2011 I think Acer has used source without edit it to get the best for hours metal. I mean that sources are wrote for Ic that could done a lot of thinks like radio and TV receiver, but we haven't all hardware stuff to receive TV.. And Acer used that sources for general purpose..
Guest vache Posted March 23, 2011 Report Posted March 23, 2011 I think Acer has used source without edit it to get the best for hours metal. I mean that sources are wrote for Ic that could done a lot of thinks like radio and TV receiver, but we haven't all hardware stuff to receive TV.. And Acer used that sources for general purpose.. Compared Acer source and the Streak source, it's the same. Streak, that have a HDMI output, was also limited to 30FPS at begining, fixed by Stephen Hyde (Topic). Looks like Acer did not removed the HDMI output support from Streak source. I sended him a PM to ask how he fixed that.
Guest davidevinavil Posted March 23, 2011 Report Posted March 23, 2011 I don't understand.. FPS limit should be bypassed by disabling vsync in panel drivers right? In fact running neocore I've score 43 after disable vsync..
Guest vache Posted March 23, 2011 Report Posted March 23, 2011 I don't understand.. FPS limit should be bypassed by disabling vsync in panel drivers right? In fact running neocore I've score 43 after disable vsync.. It just push the limit to 43, it does not remove the limit. Scores could be really better, and the phone could be really smoother.
Guest davidevinavil Posted March 23, 2011 Report Posted March 23, 2011 (edited) It just push the limit to 43, it does not remove the limit. Scores could be really better, and the phone could be really smoother. Ok.. Hope we'll be able to remove that stupid limit :D Maybe future gingerbread's kernel will be without this issue :/ And what do you think about adreno driver? Seems that are for adreno 200 instead 205.. Edited March 23, 2011 by davidevinavil
Guest dieghito Posted March 23, 2011 Report Posted March 23, 2011 sorry but the thread is call "TV brodcast" why you're speaking about hdmi????
Guest davidevinavil Posted March 23, 2011 Report Posted March 23, 2011 sorry but the thread is call "TV brodcast" why you're speaking about hdmi???? Because TV and HDMI are stuff inside kernel source apparently whitout needs to be.. And about HDMI could be cause of fps limit.. sorry for bad english :/ I'm not able to active TV but I would understand because there is it in kernel source..
Guest davidevinavil Posted March 23, 2011 Report Posted March 23, 2011 (edited) @Vache Look at makefile into drivers/video/msm take from desire z source... # Yamato GL driver ifeq ($(CONFIG_GPU_MSM_KGSL_ADRENO205),y) obj-$(CONFIG_GPU_MSM_KGSL) += gpu/kgsl_adreno205/ else obj-$(CONFIG_GPU_MSM_KGSL) += gpu/kgsl/ endif obj-$(CONFIG_MSM_HDMI) += hdmi/ obj-$(CONFIG_VIDC_720P) += vidc/[/codebox] Into this makefile there is something about adreno 205.. There 's also a gpu/kgsl_adreno205 folder.. In ours source there isn't :D I doubt that right driver for adreno 205 in 2.6.29 kernel there isn't :/ Edited March 23, 2011 by davidevinavil
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now