mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
42654ebad0
-----BEGIN PGP SIGNATURE----- iQIcBAABAgAGBQJZNnBiAAoJEAhfPr2O5OEV9bwP/1bus9tAw3AT+HxRSIaFFX8+ DMDmJ6nZ4WQJ4fI04tKkUjpl+G2ImDGshdGgLht/YpaJRd6KgPqV+zWrAVX5/0e1 mLyhjaALuk5M//JbkxEP95SWBOZ6SCIWlV/5oQRTNI86kO0gISxoCAsbumKlSSUC qTFmbmPp9siFpS43eZjVcgYIbwFx75qvLTc1+JRvxa2VhtMB5d4xYnXSpxlCvduj NN14KiphBgCOvyMQsi4q3H6ma8EL0sEtaukqPzXOnz6GGAIUUbDA23APM5H0LIIZ kYhO9ooez4dz1094ex1zSS/uQq2ogCTv7ShQseddNbHhOFG7Aq30AXLMEWeHaNp1 fFb28CY3CBpNaYfjePbqIs8KKg3JxmJGmCGgW65p40UGUo1Itbpci5MqN8BjQAI8 Ks1rf+V4iYQTr4QmQJQqCyJCljrsQbGMKZ9I67pmqfbqDunlH43Zr88DEWPv3rbW qac6U1vh108UHE/1KRZFjzvo31ToP+f+AwyVTXVeIi6vba2gvC8ASCJnZ/nGtO74 Eb/GR0DtqvYGE6sXohbMywZ+8wRR6CdRVDC4YotQwaoghwnH10WPLg3JahECVMu7 MbDtVvUHjbJ18cqwCW+J01gcuQxH/8Lx07T9T+pUFFanPBT7phPiQ/UAEPL1e3XO e4nFwX9h78wISBdy8Yx7 =+jBV -----END PGP SIGNATURE----- Merge tag 'media/v4.12-2' into patchwork media fixes for v4.12-rc4 * tag 'media/v4.12-2': (598 commits) [media] rc-core: race condition during ir_raw_event_register() [media] cec: drop MEDIA_CEC_DEBUG [media] cec: rename MEDIA_CEC_NOTIFIER to CEC_NOTIFIER [media] cec: select CEC_CORE instead of depend on it [media] rainshadow-cec: ensure exit_loop is intialized [media] atomisp: don't treat warnings as errors Linux 4.12-rc3 x86/ftrace: Make sure that ftrace trampolines are not RWX x86/mm/ftrace: Do not bug in early boot on irqs_disabled in cpu_flush_range() selftests/ftrace: Add a testcase for many kprobe events kprobes/x86: Fix to set RWX bits correctly before releasing trampoline ftrace: Fix memory leak in ftrace_graph_release() ipv4: add reference counting to metrics net: ethernet: ax88796: don't call free_irq without request_irq first ip6_tunnel, ip6_gre: fix setting of DSCP on encapsulated packets sctp: fix ICMP processing if skb is non-linear net: llc: add lock_sock in llc_ui_bind to avoid a race condition PCI/msi: fix the pci_alloc_irq_vectors_affinity stub blk-mq: Only register debugfs attributes for blk-mq queues x86/timers: Move simple_udelay_calibration past init_hypervisor_platform ... Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
122 lines
3.4 KiB
C
122 lines
3.4 KiB
C
/*
|
|
* cec-notifier.h - notify CEC drivers of physical address changes
|
|
*
|
|
* Copyright 2016 Russell King <rmk+kernel@arm.linux.org.uk>
|
|
* Copyright 2016-2017 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
|
*
|
|
* This program is free software; you may redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#ifndef LINUX_CEC_NOTIFIER_H
|
|
#define LINUX_CEC_NOTIFIER_H
|
|
|
|
#include <linux/types.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_get - find or create a new cec_notifier for the given device.
|
|
* @dev: device that sends the events.
|
|
*
|
|
* If a notifier for device @dev 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_get(struct device *dev);
|
|
|
|
/**
|
|
* cec_notifier_put - decrease refcount and delete when the refcount reaches 0.
|
|
* @n: notifier
|
|
*/
|
|
void cec_notifier_put(struct cec_notifier *n);
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
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.
|
|
*/
|
|
void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n,
|
|
const struct edid *edid);
|
|
|
|
/**
|
|
* cec_notifier_register - register a callback with the notifier
|
|
* @n: the CEC notifier
|
|
* @adap: the CEC adapter, passed as argument to the callback function
|
|
* @callback: the callback function
|
|
*/
|
|
void cec_notifier_register(struct cec_notifier *n,
|
|
struct cec_adapter *adap,
|
|
void (*callback)(struct cec_adapter *adap, u16 pa));
|
|
|
|
/**
|
|
* cec_notifier_unregister - unregister the callback from the notifier.
|
|
* @n: the CEC notifier
|
|
*/
|
|
void cec_notifier_unregister(struct cec_notifier *n);
|
|
|
|
#else
|
|
static inline struct cec_notifier *cec_notifier_get(struct device *dev)
|
|
{
|
|
/* A non-NULL pointer is expected on success */
|
|
return (struct cec_notifier *)0xdeadfeed;
|
|
}
|
|
|
|
static inline void cec_notifier_put(struct cec_notifier *n)
|
|
{
|
|
}
|
|
|
|
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 void cec_notifier_register(struct cec_notifier *n,
|
|
struct cec_adapter *adap,
|
|
void (*callback)(struct cec_adapter *adap, u16 pa))
|
|
{
|
|
}
|
|
|
|
static inline void cec_notifier_unregister(struct cec_notifier *n)
|
|
{
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|