<!-- Some styling for better description lists --><style type='text/css'>dt { font-weight: bold;float: left;display:inline;margin-right: 1em} dd { display:block; margin-left: 2em}</style>

   ***: capOM has quit IRC (Ping timeout: 258 seconds)
   <br> snawrocki has quit IRC (Ping timeout: 258 seconds)
   mripard: <u>hverkuil1</u>: hi
   <br> as a follow-up of your ELC talk, I looked into the HDMI controller found on the Allwinner SoCs
   <br> and while it looks like the controller supports it, this is basically just some bitbang
   <br> you have two bits hidden in a register to write / read a bit from the bus
   <br> which is already quite interesting
   <br> but it also doesn't give you any interrupts.
   <br> so I'm not really sure when / how I could call cec_receive_msg
   <br> is that something that could even work?
   hverkuil1: <u>mripard</u>: sorry, I was in a meeting.
   <br> You basically have to create a low-level worker thread or something similar to handle the low-level bit-banging and a gpio irq to detect when data comes in. When a full message has been read (or transmitted), then that low-level thread would call the CEC framework.
   <br> I've found gpio-cec.c/h sources in android code for this that doesn't look too bad (well, it needs a lot of clean up, but the basics can be used, I think).
   <br> BTW, I think I read somewhere that newer allwinners have proper CEC hardware.
   <br> A gpio CEC implementation could be allwinner agnostic: all you need are two gpio pins after all.
   mripard: it isn't a GPIO, it just behaves like one
   <br> which also means I cannot do interrupts at all on this thing
   <br> I was considering polling, but that's probably not going to be very reliable
   hverkuil1: <u>mchehab</u>: can you take https://patchwork.linuxtv.org/patch/37165/ for 4.10? It missed the 4.9 merge window, unfortunately.
   <br> <u>mripard</u>: in the gpio-cec.c code I see them put an interrupt on what I assume is the read gpio.
   <br> Although in that code there seems to be only one gpio pin involved (if I understand the code).
   mripard: <u>hverkuil1</u>: yes, if it was a gpio I could certainly use it :) but in my case, it's just really two bits, one in write only, one in read only, that's it. And you don't have any interrupts when you receive data.
   <br> Or at all, actually.
   hverkuil1: Without interrupts that leaves polling (possibly with short sleeps in between each poll).
   <br> Oh wait, the gpio-cec.c implementation is for a rockchip, not allwinner.
   <br> Sorry about the confusion.
   <br> <u>mripard</u>: sampling the CEC pin at 10 kHz should be sufficient.
   mripard: I'll give it a shot then
   <br> thanks!
   pinchartl: waking up the CPU at 10kHz, lovely :-/
   <br> <u>mripard</u>: are you sure there's no interrupt vs. undocumented interrupts ? :-)
   mripard: no
   <br> but even their code uses polling
   <br> one would expect that they know how their own hardware works
   <br> (you can now call me naive)
   pinchartl: that's cute :-D
   hverkuil1: <u>mripard</u>: I mailed you the rockchip implementation, but now I read that you have code from allwinner, so I guess you already have code to do the low-level bit handling.
   mripard: <u>hverkuil1</u>: yep, but they seem to be only reading when they wrote before, but doesn't expect a message to come when the haven't wrote before
   mchehab: <u>hverkuil1</u>: I'll take a look into it along the week
   mripard: <u>hverkuil1</u>: thanks for the mail
   hverkuil1: <u>mripard</u>: the first thing you do when setting up the adapter is to transmit POLL messages. So yes, you always start with a transmit before you ever start reading.
   <br> Except if you want to implement CEC snooping mode where you read any messages that pass over the bus, even if you are not initialized yet with a logical address etc.
   mchehab: <u>hverkuil1</u>: btw, I'll be pulling back from 4.9-rc1... we need to test our drivers, specially USB ones, to be 100% sure that the virtually mapped stack won't affect them
   pinchartl: <u>shuah</u>: what's the status of the media_device_get_devres() rework that we discussed in San Diego ?
   shuah: <u>pinchartl</u>: I sent in the final version and it has been reviewed. Not sure if mchehab is ready to pull those in yet
   pinchartl: <u>shuah</u>: would you happen to remember the title of the patch series ?
   shuah: let me dig that up
   pinchartl: thanks
   <br> (will you attend the kernel summit by the way ? it would be nice to see you face to face again)
   shuah: yes I am attending kernel summit - it would be great to see you again
   pinchartl: \o/
   shuah: Media Device Allocator API is the title - a patch series of 2 - after v2, I redid patch 1/2 and sent in v3 for that one to address hverkuil coomments
   <br> okay I am going to give you the link
   pinchartl: I can find that, thanks
   shuah: okay
   pinchartl: <u>neg</u>: could you please have a look ?
   shuah: [PATCH v2 0/2] Media Device Allocator API
   <br> https://lkml.org/lkml/2016/5/24/712
   pinchartl: <u>shuah</u>: fyi, Niklas (neg) needs the patches for a Renesas driver (called VIN)
   shuah: bummer these aren't showing up threaded - let me find them linux-media archive
   neg: pinchartl,shuah: thanks I will have a look and if I can make it work!
   shuah: okay - I am also waiting to do my snd-usb work as well
   <br> pinchartl, neg: here is the link to the final 1/2 v3 patch - https://www.mail-archive.com/linux-media@vger.kernel.org/msg97779.html
   <br> https://www.mail-archive.com/linux-media@vger.kernel.org/msg98793.html
   <br> https://www.mail-archive.com/linux-media@vger.kernel.org/msg97704.html this is the the second patch in the series
   <br> <u>neg</u>: you won't need this - this is the one that updates au0828 to use the new api
   pinchartl: <u>shuah</u>: thankk you
   shuah: no problem - for kernel summit - I will be there on Oct 30 and heading back Nov 3rd - driving this time
   pinchartl: I'll arrive on the 30th too, and leave on the 6th
   ***: a0869644 has left "Ex-Chat"
   <br> benjiG has left
   <br> awalls has left