blob: b1c8397341249e594b7800e9c31c789b0ba1fccc [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * cec-notifier.h - notify CEC drivers of physical address changes
4 *
Olivier Deprez157378f2022-04-04 15:47:50 +02005 * Copyright 2016 Russell King.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 * Copyright 2016-2017 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
7 */
8
9#ifndef LINUX_CEC_NOTIFIER_H
10#define LINUX_CEC_NOTIFIER_H
11
David Brazdil0f672f62019-12-10 10:32:29 +000012#include <linux/err.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000013#include <media/cec.h>
14
15struct device;
16struct edid;
17struct cec_adapter;
18struct cec_notifier;
19
20#if IS_REACHABLE(CONFIG_CEC_CORE) && IS_ENABLED(CONFIG_CEC_NOTIFIER)
21
22/**
David Brazdil0f672f62019-12-10 10:32:29 +000023 * cec_notifier_conn_register - find or create a new cec_notifier for the given
24 * HDMI device and connector tuple.
25 * @hdmi_dev: HDMI device that sends the events.
Olivier Deprez157378f2022-04-04 15:47:50 +020026 * @port_name: the connector name from which the event occurs. May be NULL
David Brazdil0f672f62019-12-10 10:32:29 +000027 * if there is always only one HDMI connector created by the HDMI device.
28 * @conn_info: the connector info from which the event occurs (may be NULL)
29 *
Olivier Deprez157378f2022-04-04 15:47:50 +020030 * If a notifier for device @dev and connector @port_name already exists, then
David Brazdil0f672f62019-12-10 10:32:29 +000031 * increase the refcount and return that notifier.
32 *
33 * If it doesn't exist, then allocate a new notifier struct and return a
34 * pointer to that new struct.
35 *
36 * Return NULL if the memory could not be allocated.
37 */
38struct cec_notifier *
Olivier Deprez157378f2022-04-04 15:47:50 +020039cec_notifier_conn_register(struct device *hdmi_dev, const char *port_name,
David Brazdil0f672f62019-12-10 10:32:29 +000040 const struct cec_connector_info *conn_info);
41
42/**
43 * cec_notifier_conn_unregister - decrease refcount and delete when the
44 * refcount reaches 0.
45 * @n: notifier. If NULL, then this function does nothing.
46 */
47void cec_notifier_conn_unregister(struct cec_notifier *n);
48
49/**
50 * cec_notifier_cec_adap_register - find or create a new cec_notifier for the
51 * given device.
52 * @hdmi_dev: HDMI device that sends the events.
Olivier Deprez157378f2022-04-04 15:47:50 +020053 * @port_name: the connector name from which the event occurs. May be NULL
David Brazdil0f672f62019-12-10 10:32:29 +000054 * if there is always only one HDMI connector created by the HDMI device.
55 * @adap: the cec adapter that registered this notifier.
56 *
Olivier Deprez157378f2022-04-04 15:47:50 +020057 * If a notifier for device @dev and connector @port_name already exists, then
David Brazdil0f672f62019-12-10 10:32:29 +000058 * increase the refcount and return that notifier.
59 *
60 * If it doesn't exist, then allocate a new notifier struct and return a
61 * pointer to that new struct.
62 *
63 * Return NULL if the memory could not be allocated.
64 */
65struct cec_notifier *
Olivier Deprez157378f2022-04-04 15:47:50 +020066cec_notifier_cec_adap_register(struct device *hdmi_dev, const char *port_name,
David Brazdil0f672f62019-12-10 10:32:29 +000067 struct cec_adapter *adap);
68
69/**
70 * cec_notifier_cec_adap_unregister - decrease refcount and delete when the
71 * refcount reaches 0.
72 * @n: notifier. If NULL, then this function does nothing.
Olivier Deprez157378f2022-04-04 15:47:50 +020073 * @adap: the cec adapter that registered this notifier.
David Brazdil0f672f62019-12-10 10:32:29 +000074 */
Olivier Deprez157378f2022-04-04 15:47:50 +020075void cec_notifier_cec_adap_unregister(struct cec_notifier *n,
76 struct cec_adapter *adap);
David Brazdil0f672f62019-12-10 10:32:29 +000077
78/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000079 * cec_notifier_set_phys_addr - set a new physical address.
80 * @n: the CEC notifier
81 * @pa: the CEC physical address
82 *
83 * Set a new CEC physical address.
84 * Does nothing if @n == NULL.
85 */
86void cec_notifier_set_phys_addr(struct cec_notifier *n, u16 pa);
87
88/**
89 * cec_notifier_set_phys_addr_from_edid - set parse the PA from the EDID.
90 * @n: the CEC notifier
91 * @edid: the struct edid pointer
92 *
93 * Parses the EDID to obtain the new CEC physical address and set it.
94 * Does nothing if @n == NULL.
95 */
96void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n,
97 const struct edid *edid);
98
99/**
David Brazdil0f672f62019-12-10 10:32:29 +0000100 * cec_notifier_parse_hdmi_phandle - find the hdmi device from "hdmi-phandle"
101 * @dev: the device with the "hdmi-phandle" device tree property
102 *
103 * Returns the device pointer referenced by the "hdmi-phandle" property.
104 * Note that the refcount of the returned device is not incremented.
105 * This device pointer is only used as a key value in the notifier
106 * list, but it is never accessed by the CEC driver.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000107 */
David Brazdil0f672f62019-12-10 10:32:29 +0000108struct device *cec_notifier_parse_hdmi_phandle(struct device *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000109
110#else
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000111
David Brazdil0f672f62019-12-10 10:32:29 +0000112static inline struct cec_notifier *
Olivier Deprez157378f2022-04-04 15:47:50 +0200113cec_notifier_conn_register(struct device *hdmi_dev, const char *port_name,
David Brazdil0f672f62019-12-10 10:32:29 +0000114 const struct cec_connector_info *conn_info)
115{
116 /* A non-NULL pointer is expected on success */
117 return (struct cec_notifier *)0xdeadfeed;
118}
119
120static inline void cec_notifier_conn_unregister(struct cec_notifier *n)
121{
122}
123
124static inline struct cec_notifier *
Olivier Deprez157378f2022-04-04 15:47:50 +0200125cec_notifier_cec_adap_register(struct device *hdmi_dev, const char *port_name,
David Brazdil0f672f62019-12-10 10:32:29 +0000126 struct cec_adapter *adap)
127{
128 /* A non-NULL pointer is expected on success */
129 return (struct cec_notifier *)0xdeadfeed;
130}
131
Olivier Deprez157378f2022-04-04 15:47:50 +0200132static inline void cec_notifier_cec_adap_unregister(struct cec_notifier *n,
133 struct cec_adapter *adap)
David Brazdil0f672f62019-12-10 10:32:29 +0000134{
135}
136
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000137static inline void cec_notifier_set_phys_addr(struct cec_notifier *n, u16 pa)
138{
139}
140
141static inline void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n,
142 const struct edid *edid)
143{
144}
145
David Brazdil0f672f62019-12-10 10:32:29 +0000146static inline struct device *cec_notifier_parse_hdmi_phandle(struct device *dev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000147{
David Brazdil0f672f62019-12-10 10:32:29 +0000148 return ERR_PTR(-ENODEV);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000149}
150
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000151#endif
152
153/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000154 * cec_notifier_phys_addr_invalidate() - set the physical address to INVALID
155 *
156 * @n: the CEC notifier
157 *
158 * This is a simple helper function to invalidate the physical
159 * address. Does nothing if @n == NULL.
160 */
161static inline void cec_notifier_phys_addr_invalidate(struct cec_notifier *n)
162{
163 cec_notifier_set_phys_addr(n, CEC_PHYS_ADDR_INVALID);
164}
165
166#endif