1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * cec-notifier.h - notify CEC drivers of physical address changes
6 * Copyright 2016-2017 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
9 #ifndef LINUX_CEC_NOTIFIER_H
10 #define LINUX_CEC_NOTIFIER_H
12 #include <linux/types.h>
13 #include <media/cec.h>
20 #if IS_REACHABLE(CONFIG_CEC_CORE) && IS_ENABLED(CONFIG_CEC_NOTIFIER)
23 * cec_notifier_get_conn - find or create a new cec_notifier for the given
24 * device and connector tuple.
25 * @dev: device that sends the events.
26 * @conn: the connector name from which the event occurs
28 * If a notifier for device @dev already exists, then increase the refcount
29 * and return that notifier.
31 * If it doesn't exist, then allocate a new notifier struct and return a
32 * pointer to that new struct.
34 * Return NULL if the memory could not be allocated.
36 struct cec_notifier *cec_notifier_get_conn(struct device *dev,
40 * cec_notifier_put - decrease refcount and delete when the refcount reaches 0.
43 void cec_notifier_put(struct cec_notifier *n);
46 * cec_notifier_set_phys_addr - set a new physical address.
47 * @n: the CEC notifier
48 * @pa: the CEC physical address
50 * Set a new CEC physical address.
51 * Does nothing if @n == NULL.
53 void cec_notifier_set_phys_addr(struct cec_notifier *n, u16 pa);
56 * cec_notifier_set_phys_addr_from_edid - set parse the PA from the EDID.
57 * @n: the CEC notifier
58 * @edid: the struct edid pointer
60 * Parses the EDID to obtain the new CEC physical address and set it.
61 * Does nothing if @n == NULL.
63 void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n,
64 const struct edid *edid);
67 * cec_notifier_register - register a callback with the notifier
68 * @n: the CEC notifier
69 * @adap: the CEC adapter, passed as argument to the callback function
70 * @callback: the callback function
72 void cec_notifier_register(struct cec_notifier *n,
73 struct cec_adapter *adap,
74 void (*callback)(struct cec_adapter *adap, u16 pa));
77 * cec_notifier_unregister - unregister the callback from the notifier.
78 * @n: the CEC notifier
80 void cec_notifier_unregister(struct cec_notifier *n);
83 * cec_register_cec_notifier - register the notifier with the cec adapter.
84 * @adap: the CEC adapter
85 * @notifier: the CEC notifier
87 void cec_register_cec_notifier(struct cec_adapter *adap,
88 struct cec_notifier *notifier);
91 static inline struct cec_notifier *cec_notifier_get_conn(struct device *dev,
94 /* A non-NULL pointer is expected on success */
95 return (struct cec_notifier *)0xdeadfeed;
98 static inline void cec_notifier_put(struct cec_notifier *n)
102 static inline void cec_notifier_set_phys_addr(struct cec_notifier *n, u16 pa)
106 static inline void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n,
107 const struct edid *edid)
111 static inline void cec_notifier_register(struct cec_notifier *n,
112 struct cec_adapter *adap,
113 void (*callback)(struct cec_adapter *adap, u16 pa))
117 static inline void cec_notifier_unregister(struct cec_notifier *n)
121 static inline void cec_register_cec_notifier(struct cec_adapter *adap,
122 struct cec_notifier *notifier)
128 * cec_notifier_get - find or create a new cec_notifier for the given device.
129 * @dev: device that sends the events.
131 * If a notifier for device @dev already exists, then increase the refcount
132 * and return that notifier.
134 * If it doesn't exist, then allocate a new notifier struct and return a
135 * pointer to that new struct.
137 * Return NULL if the memory could not be allocated.
139 static inline struct cec_notifier *cec_notifier_get(struct device *dev)
141 return cec_notifier_get_conn(dev, NULL);
145 * cec_notifier_phys_addr_invalidate() - set the physical address to INVALID
147 * @n: the CEC notifier
149 * This is a simple helper function to invalidate the physical
150 * address. Does nothing if @n == NULL.
152 static inline void cec_notifier_phys_addr_invalidate(struct cec_notifier *n)
154 cec_notifier_set_phys_addr(n, CEC_PHYS_ADDR_INVALID);