/
usr
/
src
/
linux-headers-5.15.0-181
/
include
/
media
/
/usr/src/linux-headers-5.15.0-181/include/media
mkdir
upload
Name
Size
Mode
Actions
davinci/
-
0755
rm
drv-intf/
-
0755
rm
i2c/
-
0755
rm
tpg/
-
0755
rm
cec-notifier.h
5146
0644
edit
dl
rm
cec-pin.h
2853
0644
edit
dl
rm
cec.h
16230
0644
edit
dl
rm
demux.h
23237
0644
edit
dl
rm
dmxdev.h
6034
0644
edit
dl
rm
dvb-usb-ids.h
18614
0644
edit
dl
rm
dvbdev.h
14859
0644
edit
dl
rm
dvb_ca_en50221.h
4455
0644
edit
dl
rm
dvb_demux.h
11033
0644
edit
dl
rm
dvb_frontend.h
30751
0644
edit
dl
rm
dvb_math.h
1811
0644
edit
dl
rm
dvb_net.h
2583
0644
edit
dl
rm
dvb_ringbuffer.h
8524
0644
edit
dl
rm
dvb_vb2.h
7838
0644
edit
dl
rm
frame_vector.h
1447
0644
edit
dl
rm
hevc-ctrls.h
9098
0644
edit
dl
rm
imx.h
190
0644
edit
dl
rm
ipu-isys.h
884
0644
edit
dl
rm
media-dev-allocator.h
2261
0644
edit
dl
rm
media-device.h
17401
0644
edit
dl
rm
media-devnode.h
5415
0644
edit
dl
rm
media-entity.h
36306
0644
edit
dl
rm
media-request.h
12245
0644
edit
dl
rm
rc-core.h
12610
0644
edit
dl
rm
rc-map.h
14704
0644
edit
dl
rm
rcar-fcp.h
1127
0644
edit
dl
rm
tuner-types.h
7723
0644
edit
dl
rm
tuner.h
8603
0644
edit
dl
rm
tveeprom.h
3370
0644
edit
dl
rm
v4l2-async.h
11448
0644
edit
dl
rm
v4l2-common.h
19123
0644
edit
dl
rm
v4l2-ctrls.h
50854
0644
edit
dl
rm
v4l2-dev.h
16921
0644
edit
dl
rm
v4l2-device.h
18964
0644
edit
dl
rm
v4l2-dv-timings.h
9543
0644
edit
dl
rm
v4l2-event.h
6130
0644
edit
dl
rm
v4l2-fh.h
4317
0644
edit
dl
rm
v4l2-flash-led-class.h
5888
0644
edit
dl
rm
v4l2-fwnode.h
20279
0644
edit
dl
rm
v4l2-h264.h
2921
0644
edit
dl
rm
v4l2-image-sizes.h
827
0644
edit
dl
rm
v4l2-ioctl.h
34112
0644
edit
dl
rm
v4l2-jpeg.h
5207
0644
edit
dl
rm
v4l2-mc.h
7669
0644
edit
dl
rm
v4l2-mediabus.h
7686
0644
edit
dl
rm
v4l2-mem2mem.h
29441
0644
edit
dl
rm
v4l2-rect.h
5852
0644
edit
dl
rm
v4l2-subdev.h
46004
0644
edit
dl
rm
videobuf-core.h
6974
0644
edit
dl
rm
videobuf-dma-contig.h
909
0644
edit
dl
rm
videobuf-dma-sg.h
2856
0644
edit
dl
rm
videobuf-vmalloc.h
1166
0644
edit
dl
rm
videobuf2-core.h
49407
0644
edit
dl
rm
videobuf2-dma-contig.h
883
0644
edit
dl
rm
videobuf2-dma-sg.h
698
0644
edit
dl
rm
videobuf2-dvb.h
1863
0644
edit
dl
rm
videobuf2-memops.h
1101
0644
edit
dl
rm
videobuf2-v4l2.h
14347
0644
edit
dl
rm
videobuf2-vmalloc.h
509
0644
edit
dl
rm
vsp1.h
3652
0644
edit
dl
rm
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 <linux/types.h> #include <media/cec.h> /** * 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
Save
cmd:
run