codeworkx changed the topic of #teamhacksung to: HACKSUNG IS DEAD, HAIL HACKSUNG!
geecko has joined #teamhacksung
reversEngineer has joined #teamhacksung
geecko has quit [Quit: Quitte]
arcus has quit [Disconnected by services]
arcus_ has joined #teamhacksung
arcus_ is now known as arcus
uberlaggydarwin has joined #teamhacksung
uberlaggydarwin has quit [Ping timeout: 272 seconds]
The_Pot has joined #teamhacksung
The_Pot has quit [Changing host]
The_Pot has joined #teamhacksung
ThePot has quit [Ping timeout: 272 seconds]
nanzu has joined #teamhacksung
The_Pot has quit [Quit: Leaving]
nanzu has left #teamhacksung [#teamhacksung]
white has quit [Remote host closed the connection]
uberlaggydarwin has joined #teamhacksung
evcz is now known as Guest95013
meeeeeeee has joined #teamhacksung
meeeeeeee has quit [Changing host]
meeeeeeee has joined #teamhacksung
Guest95013 has quit [Ping timeout: 252 seconds]
Kaik541 has joined #teamhacksung
uberlaggydarwin has quit [Quit: Leaving.]
CoreISP has quit [Quit: Smoking]
ankitkv has joined #teamhacksung
meeeeeeee is now known as evcz
ramsrib has joined #teamhacksung
uberlaggydarwin has joined #teamhacksung
uberlaggydarwin has quit [Client Quit]
Kaik541 has quit [Ping timeout: 245 seconds]
uberlaggydarwin has joined #teamhacksung
uberlaggydarwin has quit [Client Quit]
uberlaggydarwin has joined #teamhacksung
Kaik541 has joined #teamhacksung
uberlaggydarwin1 has joined #teamhacksung
uberlaggydarwin has quit [Ping timeout: 245 seconds]
uberlaggydarwin1 has quit [Client Quit]
uberlaggydarwin has joined #teamhacksung
xe4l has quit [Remote host closed the connection]
xe4l has joined #teamhacksung
ankitkv has quit [Quit: Leaving]
lolwat has joined #teamhacksung
xe4l has quit [Ping timeout: 240 seconds]
xe4l has joined #teamhacksung
jamestunnicliffe has quit [Read error: Operation timed out]
jamestunnicliffe has joined #teamhacksung
jamestunnicliffe has joined #teamhacksung
jamestunnicliffe has quit [Changing host]
lolwat has quit [Read error: Connection reset by peer]
geecko has joined #teamhacksung
krabador has joined #teamhacksung
uberlaggydarwin has quit [Read error: Connection reset by peer]
uberlaggydarwin has joined #teamhacksung
ThePot has joined #teamhacksung
ramsrib has quit [Ping timeout: 240 seconds]
ramsrib has joined #teamhacksung
sbrissen_gone is now known as sbrissen
<geecko> xplodwild, sup
ThePot has quit [Quit: Leaving]
krabador has quit [Remote host closed the connection]
krabador has joined #teamhacksung
<geecko> xplodwild, what is BOARD_EGL_NEEDS_LEGACY_FB ?
krabador has quit [Ping timeout: 260 seconds]
<geecko> xplodwild, looks like mCurrentFence->isValid() returns false. whyyyy
krabador has joined #teamhacksung
<geecko> reminder:
<geecko> E/Fence ( 1887): GLConsumer::doGLFenceWaitLocked: fence 44 didn't signal in 3000 ms
<geecko> E/GLConsumer( 1887): [BootAnimation] doGLFenceWait: error waiting for fence: -62
<geecko> bool isValid() const { return mFenceFd != -1; }
<geecko> ok ok
<geecko> that explains a lot :P
<geecko> xplodwild, back to the kernal, there's some places where fences are set to -1
<geecko> if (fbdev->support_fence == FENCE_NOT_SUPPORT) {
<geecko> win_data->fence = -1;
<geecko> }
<geecko> so
<geecko> why is it set to FENCE_NOT_SUPPORT
<Espenfjo> Probably because the kernel isnt hacked enough :)
<geecko> there's an ioctl S3CFB_SUPPORT_FENCE
<geecko> printk("\n\n######support_fence %x \n\n", (unsigned int)fbdev->support_fence);
<geecko> never seen that in dmesg, so i assume it's never used
<geecko> Espenfjo, indeed :D
<geecko> #if defined(CONFIG_FB_S5P_VSYNC_THREAD)
<geecko> INIT_LIST_HEAD(&fbdev[i]->update_regs_list);
<geecko> init_kthread_worker(&fbdev[i]->update_regs_worker);
<geecko> mutex_init(&fbdev[i]->update_regs_list_lock);
<geecko> fbdev[i]->update_regs_thread = kthread_run(kthread_worker_fn,
<geecko> &fbdev[i]->update_regs_worker, "s3c-fb");
<geecko> if (IS_ERR(fbdev[i]->update_regs_thread)) {
<geecko> int err = PTR_ERR(fbdev[i]->update_regs_thread);
<geecko> fbdev[i]->update_regs_thread = NULL;
<geecko> dev_err(fbdev[i]->dev, "failed to run update_regs thread\n");
<geecko> return err;
<geecko> }
<geecko> init_kthread_work(&fbdev[i]->update_regs_work, s3c_fb_update_regs_handler);
<geecko> fbdev[i]->timeline = sw_sync_timeline_create("s3c-fb");
<geecko> fbdev[i]->timeline_max = 1;
<geecko> fbdev[i]->support_fence = FENCE_SUPPORT;
<geecko> #endif
<geecko> gotcha
<geecko> Espenfjo, :D :D
<geecko> $ grep -r CONFIG_FB_S5P_VSYNC_THREAD
<geecko> cyanogenmod_n8013_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_n8000_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_n7100_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_n7000_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> m0_00_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_i9305_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_t0lte_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_t0ltecdma_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_i777_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_i9100_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_i925_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_d710_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> cyanogenmod_i9300_defconfig:CONFIG_FB_S5P_VSYNC_THREAD=y
<geecko> I FUCKING FOUND IT
<geecko> hey no
<geecko> shit :x
<geecko> didn't see n7000
<Espenfjo> should be the same
<geecko> wtf is wrong then D:
<Espenfjo> If i9100 is there the n7000 should be there as well
<geecko> so CONFIG_FB_S5P_VSYNC_THREAD is enabled
<geecko> hmmmmm
krabador has quit [Quit: Sto andando via]
krabador has joined #teamhacksung
<geecko> Espenfjo, recompiling the kernal... i will see if support_fence is set or not :P
<geecko> it _is_ set
kzard has quit [Ping timeout: 248 seconds]
kzard has joined #teamhacksung
krabador has quit [Read error: Connection reset by peer]
lolwat has joined #teamhacksung
Zhenech has quit [Ping timeout: 272 seconds]
krabador has joined #teamhacksung
Zhenech has joined #teamhacksung
ankitkv has joined #teamhacksung
<geecko> so fence id != fence fd :P
<geecko> that's why
<geecko> so s3cfb may not be the problem anymore
ThePot has joined #teamhacksung
ricotz has joined #teamhacksung
Zhenech has quit [Ping timeout: 264 seconds]
Zhenech has joined #teamhacksung
Zhenech has quit [Read error: Operation timed out]
Zhenech has joined #teamhacksung
scarFortyFive has joined #teamhacksung
rodgort` has joined #teamhacksung
scar45 has quit [*.net *.split]
rodgort has quit [*.net *.split]
scarFortyFive is now known as scar45
Zhenech has quit [Read error: Operation timed out]
Zhenech has joined #teamhacksung
<geecko> so fences are signaled properly.
<geecko> it's just that it's not caught
<geecko> whyyyyy :(
<geecko> xplodwild, logcat and dmesg from the working hwcomposer on i9300 would be nice
plastikman has joined #teamhacksung
ankitkv has quit [Quit: Leaving]
ankitkv has joined #teamhacksung
<geecko> Espenfjo, why BOARD_USE_SECTVOUT was disabled?
<geecko> i'm realizing i reenabled it on galaxys2-common, while it's not on i9300
<geecko> errr yes it is. woops
<Espenfjo> Because it doesnt work
<Espenfjo> And the kernel has to be updated to make it work, so better diable it
ramsrib has quit [Quit: ramsrib]
<Espenfjo> It has to be there to compile, err, was it fimd/fimg/camera-crap/hwcomposer?
<Espenfjo> :(
<Espenfjo> I think stuff in the camera blob requires it
<Espenfjo> Its so long ago since I actually did anything useful, but I think thats needed because the framework in newer android releases require some new EGL flags. This lets us use older EGL blobs
<Espenfjo> not sure about the prop
<geecko> Espenfjo, you lazy f* :D
<geecko> thanks !
<Espenfjo> I know, im lazy :)
<geecko> Espenfjo, i can spend months doing nothing and then a full week like this one scratching my head
<Espenfjo> Yup :)
<Espenfjo> Although now it has been closer to a year for my part
<geecko> Espenfjo, at least you're here ;)
<Espenfjo> :)
plastikman has quit [Ping timeout: 245 seconds]
plastikman has joined #teamhacksung
Zhenech has quit [Read error: Operation timed out]
Zhenech has joined #teamhacksung
Zhenech has quit [Ping timeout: 246 seconds]
Zhenech has joined #teamhacksung
Zhenech has quit [Ping timeout: 248 seconds]
Zhenech has joined #teamhacksung
Perka has quit [Ping timeout: 245 seconds]
Perka has joined #teamhacksung
Zhenech has quit [Ping timeout: 245 seconds]
Zhenech_ has joined #teamhacksung
Zhenech_ is now known as Zhenech
CoreISP has joined #teamhacksung
Perka has quit [Ping timeout: 252 seconds]
Perka has joined #teamhacksung
<geecko> xplodwild, pls stop pretending you're here while you're not :P :P
<xplodwild> geecko: ok, I'm not here
<xplodwild> :P
<geecko> xplodwild, WUT
<geecko> xplodwild, the debugfest is not over yet :(
lolwat has quit [Read error: Connection reset by peer]
Zhenech has quit [Ping timeout: 248 seconds]
_whitelogger has joined #teamhacksung
<geecko> so fences fd can be valid too.
<geecko> the issue must be in the kernel..
<geecko> xplodwild, don't forget the i9300 test build :) that would be nice
cuco has joined #teamhacksung
<geecko> xplodwild, all pts from s3c-fb_pt are "active", that means, waiting for completion
<geecko> on the other hand all pts from mali can be signaled so it's good
<geecko> conclusion: s3cfb is derping
lolwat has joined #teamhacksung
The_Pot has joined #teamhacksung
ThePot has quit [Ping timeout: 246 seconds]
plastikman has quit [Ping timeout: 272 seconds]
paulk-collins has joined #teamhacksung
The_Pot has quit [Quit: Leaving]
krabador has quit [Quit: Sto andando via]
plastikman has joined #teamhacksung
krabador has joined #teamhacksung
Perka has quit [Ping timeout: 252 seconds]
Perka has joined #teamhacksung
Pablo__ has joined #teamhacksung
Pablo__ has quit [Quit: Page closed]
evcz has quit [Read error: Connection reset by peer]
evcz has joined #teamhacksung
ankitkv has quit [Ping timeout: 272 seconds]
uberlaggydarwin has quit [Quit: Leaving.]
ankitkv has joined #teamhacksung
sbrissen is now known as sbrissen_gone
lolwat has quit [Quit: lolwat]
<geecko> xplodwild, ?
<xplodwild> geecko: building
<geecko> xplodwild, \o/
plastikman_ has joined #teamhacksung
plastikman has quit [Ping timeout: 264 seconds]
Perka has quit [Ping timeout: 252 seconds]
Perka has joined #teamhacksung
<xplodwild> geecko: hardware/samsung/exynos4/hal/libedid/libddc.c:85:24: error: 'DEV_NAME' undeclared (first use in this function)
<xplodwild> now I wonder if the patch really applied properly when I tested it..
<xplodwild> hmm or my derp in the boardconfig file
<xplodwild> nvm, my typo
<geecko> xplodwild, yep
ricotz has quit [Ping timeout: 265 seconds]
ricotz has joined #teamhacksung
krabador has quit [Quit: Sto andando via]
krabador has joined #teamhacksung
Kaik541 has quit [Ping timeout: 248 seconds]
krabador has quit [Quit: Sto andando via]
krabador has joined #teamhacksung
<xplodwild> E/HAL ( 9619): dlopen failed: cannot locate symbol "display_menu" referenced by "hwcomposer.exynos4.so"...
<xplodwild> lolwat
<xplodwild> geecko: ^
<xplodwild> ok
<xplodwild> the buildbox I used had older blobs
<geecko> xplodwild, beware, 'lolwat' is actually a member name. he's not connected right now :P
ricotz has quit [Quit: Ex-Chat]
paulk-collins has quit [Remote host closed the connection]
cuco has quit [Quit: Konversation terminated!]
krabador_ has joined #teamhacksung
krabador has quit [Ping timeout: 260 seconds]
<geecko> xplodwild, fixed?
krabador_ has quit [Quit: Sto andando via]
krabador has joined #teamhacksung
plastikman_ has quit [Ping timeout: 272 seconds]
plastikman_ has joined #teamhacksung
<geecko> xplodwild, come on :P
plastikman_ has quit [Ping timeout: 272 seconds]
<xplodwild> geecko: yes sorry :P
<xplodwild> booting on my i9300 just to make sure
<geecko> xplodwild, you should be sorry about having an actual life
<geecko> :P
<xplodwild> geecko: what's a life?
<xplodwild> I mean, if you could see my desk right now
<geecko> xplodwild, you have 3 hours
<xplodwild> you'd definitely don't think I have a life
<geecko> xplodwild, lawl :D
<geecko> i'm not sure about my desk either :P
krabador has quit [Ping timeout: 260 seconds]
krabador has joined #teamhacksung
krabador has quit [Remote host closed the connection]
krabador has joined #teamhacksung