/usr/src/linux-headers-5.15.0-190/include/media
NameSizeModeActions
davinci/-0755rm
drv-intf/-0755rm
i2c/-0755rm
tpg/-0755rm
cec-notifier.h51460644editdlrm
cec-pin.h28530644editdlrm
cec.h162300644editdlrm
demux.h232370644editdlrm
dmxdev.h60340644editdlrm
dvb-usb-ids.h186140644editdlrm
dvbdev.h148590644editdlrm
dvb_ca_en50221.h44550644editdlrm
dvb_demux.h110330644editdlrm
dvb_frontend.h307510644editdlrm
dvb_math.h18110644editdlrm
dvb_net.h25830644editdlrm
dvb_ringbuffer.h85240644editdlrm
dvb_vb2.h79120644editdlrm
frame_vector.h14470644editdlrm
hevc-ctrls.h90980644editdlrm
imx.h1900644editdlrm
ipu-isys.h8840644editdlrm
media-dev-allocator.h22610644editdlrm
media-device.h174010644editdlrm
media-devnode.h54150644editdlrm
media-entity.h363060644editdlrm
media-request.h122450644editdlrm
rc-core.h126100644editdlrm
rc-map.h147040644editdlrm
rcar-fcp.h11270644editdlrm
tuner-types.h77230644editdlrm
tuner.h86030644editdlrm
tveeprom.h33700644editdlrm
v4l2-async.h114480644editdlrm
v4l2-common.h191230644editdlrm
v4l2-ctrls.h508540644editdlrm
v4l2-dev.h169210644editdlrm
v4l2-device.h189640644editdlrm
v4l2-dv-timings.h95430644editdlrm
v4l2-event.h61300644editdlrm
v4l2-fh.h43170644editdlrm
v4l2-flash-led-class.h58880644editdlrm
v4l2-fwnode.h202790644editdlrm
v4l2-h264.h29210644editdlrm
v4l2-image-sizes.h8270644editdlrm
v4l2-ioctl.h341120644editdlrm
v4l2-jpeg.h52070644editdlrm
v4l2-mc.h76690644editdlrm
v4l2-mediabus.h76860644editdlrm
v4l2-mem2mem.h294410644editdlrm
v4l2-rect.h58520644editdlrm
v4l2-subdev.h460040644editdlrm
videobuf-core.h69740644editdlrm
videobuf-dma-contig.h9090644editdlrm
videobuf-dma-sg.h28560644editdlrm
videobuf-vmalloc.h11660644editdlrm
videobuf2-core.h494070644editdlrm
videobuf2-dma-contig.h8830644editdlrm
videobuf2-dma-sg.h6980644editdlrm
videobuf2-dvb.h18630644editdlrm
videobuf2-memops.h11010644editdlrm
videobuf2-v4l2.h143470644editdlrm
videobuf2-vmalloc.h5090644editdlrm
vsp1.h36520644editdlrm
Edit: /usr/src/linux-headers-5.15.0-190/include/media/cec-notifier.h (5146B)
/* 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 #include 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