/usr/src/linux-headers-5.15.0-181/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.h78380644editdlrm
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-181/include/media/cec-pin.h (2853B)
/* SPDX-License-Identifier: GPL-2.0-only */ /* * cec-pin.h - low-level CEC pin control * * Copyright 2017 Cisco Systems, Inc. and/or its affiliates. All rights reserved. */ #ifndef LINUX_CEC_PIN_H #define LINUX_CEC_PIN_H #include #include /** * struct cec_pin_ops - low-level CEC pin operations * @read: read the CEC pin. Returns > 0 if high, 0 if low, or an error * if negative. * @low: drive the CEC pin low. * @high: stop driving the CEC pin. The pull-up will drive the pin * high, unless someone else is driving the pin low. * @enable_irq: optional, enable the interrupt to detect pin voltage changes. * @disable_irq: optional, disable the interrupt. * @free: optional. Free any allocated resources. Called when the * adapter is deleted. * @status: optional, log status information. * @read_hpd: optional. Read the HPD pin. Returns > 0 if high, 0 if low or * an error if negative. * @read_5v: optional. Read the 5V pin. Returns > 0 if high, 0 if low or * an error if negative. * @received: optional. High-level CEC message callback. Allows the driver * to process CEC messages. * * These operations (except for the @received op) are used by the * cec pin framework to manipulate the CEC pin. */ struct cec_pin_ops { int (*read)(struct cec_adapter *adap); void (*low)(struct cec_adapter *adap); void (*high)(struct cec_adapter *adap); bool (*enable_irq)(struct cec_adapter *adap); void (*disable_irq)(struct cec_adapter *adap); void (*free)(struct cec_adapter *adap); void (*status)(struct cec_adapter *adap, struct seq_file *file); int (*read_hpd)(struct cec_adapter *adap); int (*read_5v)(struct cec_adapter *adap); /* High-level CEC message callback */ int (*received)(struct cec_adapter *adap, struct cec_msg *msg); }; /** * cec_pin_changed() - update pin state from interrupt * * @adap: pointer to the cec adapter * @value: when true the pin is high, otherwise it is low * * If changes of the CEC voltage are detected via an interrupt, then * cec_pin_changed is called from the interrupt with the new value. */ void cec_pin_changed(struct cec_adapter *adap, bool value); /** * cec_pin_allocate_adapter() - allocate a pin-based cec adapter * * @pin_ops: low-level pin operations * @priv: will be stored in adap->priv and can be used by the adapter ops. * Use cec_get_drvdata(adap) to get the priv pointer. * @name: the name of the CEC adapter. Note: this name will be copied. * @caps: capabilities of the CEC adapter. This will be ORed with * CEC_CAP_MONITOR_ALL and CEC_CAP_MONITOR_PIN. * * Allocate a cec adapter using the cec pin framework. * * Return: a pointer to the cec adapter or an error pointer */ struct cec_adapter *cec_pin_allocate_adapter(const struct cec_pin_ops *pin_ops, void *priv, const char *name, u32 caps); #endif