During a quick search I had not been able to find any HDMI CEC driver. In the docs available there is only one Register about CEC.
I thought about implementation of an driver and libcec support for the A20.
Regards,
Christian
The Allwinner SoCs that have an HDMI pin, also have a memory-mapped HDMI-CEC register located at HDMI base 0xf1c16000 plus the offset 0x214. This register provides the following bits
#define CEC_RX 0x0100 /* phys. line value, either high or low */#define CEC_TX 0x0200#define CEC_ENABLE 0x0800
Other bits are unused.
I asked Allwinner about CEC once but they only replied that A10s doesn't have a hardware CEC core.
You can find examples of using the CEC register in some unfinished CEC code in the 3.4 linux-sunxi kernel.