2018-02-07 17:05:46 +03:00
/* SPDX-License-Identifier: GPL-2.0-only */
2016-11-14 16:55:20 +03:00
/*
* cec - notifier . h - notify CEC drivers of physical address changes
*
2020-03-28 16:03:02 +03:00
* Copyright 2016 Russell King .
2016-11-14 16:55:20 +03:00
* Copyright 2016 - 2017 Cisco Systems , Inc . and / or its affiliates . All rights reserved .
*/
# ifndef LINUX_CEC_NOTIFIER_H
# define LINUX_CEC_NOTIFIER_H
2019-04-10 12:13:28 +03:00
# include <linux/err.h>
2017-04-17 13:54:37 +03:00
# include <media/cec.h>
2016-11-14 16:55:20 +03:00
struct device ;
struct edid ;
struct cec_adapter ;
struct cec_notifier ;
2017-05-28 11:58:04 +03:00
# if IS_REACHABLE(CONFIG_CEC_CORE) && IS_ENABLED(CONFIG_CEC_NOTIFIER)
2016-11-14 16:55:20 +03:00
2019-06-20 13:10:00 +03:00
/**
* cec_notifier_conn_register - find or create a new cec_notifier for the given
* HDMI device and connector tuple .
* @ hdmi_dev : HDMI device that sends the events .
2020-03-16 12:36:47 +03:00
* @ port_name : the connector name from which the event occurs . May be NULL
2019-06-20 13:10:00 +03:00
* if there is always only one HDMI connector created by the HDMI device .
* @ conn_info : the connector info from which the event occurs ( may be NULL )
*
2020-03-16 12:36:47 +03:00
* If a notifier for device @ dev and connector @ port_name already exists , then
2019-06-20 13:10:00 +03:00
* increase the refcount and return that notifier .
*
* If it doesn ' t exist , then allocate a new notifier struct and return a
* pointer to that new struct .
*
* Return NULL if the memory could not be allocated .
*/
struct cec_notifier *
2020-03-16 12:36:47 +03:00
cec_notifier_conn_register ( struct device * hdmi_dev , const char * port_name ,
2019-06-20 13:10:00 +03:00
const struct cec_connector_info * conn_info ) ;
/**
* cec_notifier_conn_unregister - decrease refcount and delete when the
* refcount reaches 0.
* @ n : notifier . If NULL , then this function does nothing .
*/
void cec_notifier_conn_unregister ( struct cec_notifier * n ) ;
/**
* cec_notifier_cec_adap_register - find or create a new cec_notifier for the
* given device .
* @ hdmi_dev : HDMI device that sends the events .
2020-03-16 12:36:47 +03:00
* @ port_name : the connector name from which the event occurs . May be NULL
2019-06-20 13:10:00 +03:00
* if there is always only one HDMI connector created by the HDMI device .
* @ adap : the cec adapter that registered this notifier .
*
2020-03-16 12:36:47 +03:00
* If a notifier for device @ dev and connector @ port_name already exists , then
2019-06-20 13:10:00 +03:00
* increase the refcount and return that notifier .
*
* If it doesn ' t exist , then allocate a new notifier struct and return a
* pointer to that new struct .
*
* Return NULL if the memory could not be allocated .
*/
struct cec_notifier *
2020-03-16 12:36:47 +03:00
cec_notifier_cec_adap_register ( struct device * hdmi_dev , const char * port_name ,
2019-06-20 13:10:00 +03:00
struct cec_adapter * adap ) ;
/**
* cec_notifier_cec_adap_unregister - decrease refcount and delete when the
* refcount reaches 0.
* @ n : notifier . If NULL , then this function does nothing .
2019-10-04 14:04:24 +03:00
* @ adap : the cec adapter that registered this notifier .
2019-06-20 13:10:00 +03:00
*/
2019-10-04 14:04:24 +03:00
void cec_notifier_cec_adap_unregister ( struct cec_notifier * n ,
struct cec_adapter * adap ) ;
2019-06-20 13:10:00 +03:00
2016-11-14 16:55:20 +03:00
/**
* cec_notifier_set_phys_addr - set a new physical address .
* @ n : the CEC notifier
* @ pa : the CEC physical address
*
* Set a new CEC physical address .
2017-07-15 15:32:56 +03:00
* Does nothing if @ n = = NULL .
2016-11-14 16:55:20 +03:00
*/
void cec_notifier_set_phys_addr ( struct cec_notifier * n , u16 pa ) ;
/**
* cec_notifier_set_phys_addr_from_edid - set parse the PA from the EDID .
* @ n : the CEC notifier
* @ edid : the struct edid pointer
*
* Parses the EDID to obtain the new CEC physical address and set it .
2017-07-15 15:32:56 +03:00
* Does nothing if @ n = = NULL .
2016-11-14 16:55:20 +03:00
*/
void cec_notifier_set_phys_addr_from_edid ( struct cec_notifier * n ,
const struct edid * edid ) ;
2019-04-10 12:13:28 +03:00
/**
* cec_notifier_parse_hdmi_phandle - find the hdmi device from " hdmi-phandle "
* @ dev : the device with the " hdmi-phandle " device tree property
*
* Returns the device pointer referenced by the " hdmi-phandle " property .
* Note that the refcount of the returned device is not incremented .
* This device pointer is only used as a key value in the notifier
* list , but it is never accessed by the CEC driver .
*/
struct device * cec_notifier_parse_hdmi_phandle ( struct device * dev ) ;
2016-11-14 16:55:20 +03:00
# else
2019-06-20 13:10:00 +03:00
static inline struct cec_notifier *
2020-03-16 12:36:47 +03:00
cec_notifier_conn_register ( struct device * hdmi_dev , const char * port_name ,
2019-06-20 13:10:00 +03:00
const struct cec_connector_info * conn_info )
{
/* A non-NULL pointer is expected on success */
return ( struct cec_notifier * ) 0xdeadfeed ;
}
static inline void cec_notifier_conn_unregister ( struct cec_notifier * n )
{
}
static inline struct cec_notifier *
2020-03-16 12:36:47 +03:00
cec_notifier_cec_adap_register ( struct device * hdmi_dev , const char * port_name ,
2019-06-20 13:10:00 +03:00
struct cec_adapter * adap )
{
/* A non-NULL pointer is expected on success */
return ( struct cec_notifier * ) 0xdeadfeed ;
}
2019-10-04 14:04:24 +03:00
static inline void cec_notifier_cec_adap_unregister ( struct cec_notifier * n ,
struct cec_adapter * adap )
2019-06-20 13:10:00 +03:00
{
}
2016-11-14 16:55:20 +03:00
static inline void cec_notifier_set_phys_addr ( struct cec_notifier * n , u16 pa )
{
}
static inline void cec_notifier_set_phys_addr_from_edid ( struct cec_notifier * n ,
const struct edid * edid )
{
}
2019-04-10 12:13:28 +03:00
static inline struct device * cec_notifier_parse_hdmi_phandle ( struct device * dev )
{
return ERR_PTR ( - ENODEV ) ;
}
2016-11-14 16:55:20 +03:00
# endif
2017-07-15 15:32:56 +03:00
/**
* cec_notifier_phys_addr_invalidate ( ) - set the physical address to INVALID
*
* @ n : the CEC notifier
*
* This is a simple helper function to invalidate the physical
* address . Does nothing if @ n = = NULL .
*/
static inline void cec_notifier_phys_addr_invalidate ( struct cec_notifier * n )
{
cec_notifier_set_phys_addr ( n , CEC_PHYS_ADDR_INVALID ) ;
}
2016-11-14 16:55:20 +03:00
# endif