• Hans Verkuil's avatar
    media: cec-pin: add low-level pin hardware support · ea5c8ef2
    Hans Verkuil authored
    Add support for CEC hardware that relies on low-level pin polling or
    GPIO interrupts.
    
    One example is the Allwinner SoC. But any GPIO-based CEC implementation can
    use this as well.
    
    A GPIO implementation is very suitable as well for debugging: it can use
    interrupts to detect state changes and report it. Userspace can then verify
    if the bus traffic is correct. This also makes error injection possible.
    
    The disadvantage is that it is hard to get the timings right since linux
    isn't a hard realtime system.
    
    In general on an idle system it works quite well, but under load the timer
    will miss its mark every so often.
    
    The debugfs file /sys/kernel/debug/cec/cecX/status gives some statistics
    with respect to the timer overruns.
    
    When the adapter is unconfigured and the low-level driver supports
    interrupts, then the interrupt will be used to detect changes. This should
    be quite accurate. But when the adapter is configured a hrtimer has to be
    used.
    
    The hrtimer implements a state machine where for each state the code will
    read the bus or drive the bus and go on to the next state. It will re-arm
    the timer with a delay based on the next state.
    Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
    Reviewed-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
    Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
    ea5c8ef2
cec-api.c 16.2 KB