1d54267b23
-----BEGIN PGP SIGNATURE----- iQEcBAABAgAGBQJZh8YYAAoJEHm+PkMAQRiG46QIAKOBbLlOY38zIJwDfJs6ydvH eFLryznS7RM2w0Gw1RyVAyWS43QS9RUNGDMa4UOb9AvurBHYpK29t1uq6LejQ/hn 2Uvxuq95qEVVYzN1OA3WzLKUa35g3qRM9rTYFz7xGMRp2Ldk/aPRi/PVJLhSO3YQ HFRLsfNMWTkSR4imuxm7NS+cYMcqWbDbanvW5IwQ+RFRPo8Ac1PbFpGUdVtar6+O Fm3GLBsRB3dijJwYyWQKeDvtLr608i50by4yS7EIAqbUSfoDpJEyTL57oTCRok7P 5ZycGpK4bXWF0OpBWpKgrFO5tB7xfzUDa3TmNhS3Q8ep4KLHNXwM3V6p8Y+YZco= =FId5 -----END PGP SIGNATURE----- Merge tag 'v4.13-rc4' into patchwork Linux 4.13-rc4 * tag 'v4.13-rc4': (863 commits) Linux 4.13-rc4 Fix compat_sys_sigpending breakage ext4: fix copy paste error in ext4_swap_extents() ext4: fix overflow caused by missing cast in ext4_resize_fs() ext4, project: expand inode extra size if possible ext4: cleanup ext4_expand_extra_isize_ea() ext4: restructure ext4_expand_extra_isize ext4: fix forgetten xattr lock protection in ext4_expand_extra_isize ext4: make xattr inode reads faster ext4: inplace xattr block update fails to deduplicate blocks ext4: remove unused mode parameter ext4: fix warning about stack corruption ext4: fix dir_nlink behaviour ext4: silence array overflow warning ext4: fix SEEK_HOLE/SEEK_DATA for blocksize < pagesize platform/x86: intel-vbtn: match power button on press rather than release ext4: release discard bio after sending discard commands sparc64: Fix exception handling in UltraSPARC-III memcpy. arm64: avoid overflow in VA_START and PAGE_OFFSET arm64: Fix potential race with hardware DBM in ptep_set_access_flags() ...
149 lines
4.2 KiB
C
149 lines
4.2 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.
|
|
* 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_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);
|
|
|
|
/**
|
|
* cec_register_cec_notifier - register the notifier with the cec adapter.
|
|
* @adap: the CEC adapter
|
|
* @notifier: the CEC notifier
|
|
*/
|
|
void cec_register_cec_notifier(struct cec_adapter *adap,
|
|
struct cec_notifier *notifier);
|
|
|
|
#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)
|
|
{
|
|
}
|
|
|
|
static inline void cec_register_cec_notifier(struct cec_adapter *adap,
|
|
struct cec_notifier *notifier)
|
|
{
|
|
}
|
|
#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
|