Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | /* SPDX-License-Identifier: GPL-2.0-only */ /* * cec-notifier.h - notify CEC drivers of physical address changes * * Copyright 2016 Russell King. * Copyright 2016-2017 Cisco Systems, Inc. and/or its affiliates. All rights reserved. */ #ifndef LINUX_CEC_NOTIFIER_H #define LINUX_CEC_NOTIFIER_H #include <linux/err.h> #include <media/cec.h> struct device; struct edid; struct cec_adapter; struct cec_notifier; #if IS_REACHABLE(CONFIG_CEC_CORE) && IS_ENABLED(CONFIG_CEC_NOTIFIER) /** * 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. * @port_name: the connector name from which the event occurs. May be NULL * 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) * * If a notifier for device @dev and connector @port_name already exists, then * 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 * cec_notifier_conn_register(struct device *hdmi_dev, const char *port_name, 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. * @port_name: the connector name from which the event occurs. May be NULL * if there is always only one HDMI connector created by the HDMI device. * @adap: the cec adapter that registered this notifier. * * If a notifier for device @dev and connector @port_name already exists, then * 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 * cec_notifier_cec_adap_register(struct device *hdmi_dev, const char *port_name, 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. * @adap: the cec adapter that registered this notifier. */ void cec_notifier_cec_adap_unregister(struct cec_notifier *n, struct cec_adapter *adap); /** * 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. * Does nothing if @n == NULL. */ 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. * Does nothing if @n == NULL. */ void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n, const struct edid *edid); /** * 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); #else static inline struct cec_notifier * cec_notifier_conn_register(struct device *hdmi_dev, const char *port_name, 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 * cec_notifier_cec_adap_register(struct device *hdmi_dev, const char *port_name, struct cec_adapter *adap) { /* A non-NULL pointer is expected on success */ return (struct cec_notifier *)0xdeadfeed; } static inline void cec_notifier_cec_adap_unregister(struct cec_notifier *n, struct cec_adapter *adap) { } 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) { } static inline struct device *cec_notifier_parse_hdmi_phandle(struct device *dev) { return ERR_PTR(-ENODEV); } #endif /** * 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); } #endif |