/Linux-v5.10/Documentation/devicetree/bindings/iio/adc/ |
D | st,stm32-dfsdm-adc.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/iio/adc/st,stm32-dfsdm-adc.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Fabrice Gasnier <fabrice.gasnier@st.com> 11 - Olivier Moysan <olivier.moysan@st.com> 14 STM32 DFSDM ADC is a sigma delta analog-to-digital converter dedicated to 17 - Sigma delta modulators (motor control, metering...) 18 - PDM microphones (audio digital microphone) 23 Each child node matches with a filter instance. [all …]
|
/Linux-v5.10/drivers/net/ethernet/sfc/falcon/ |
D | filter.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 4 * Copyright 2005-2013 Solarflare Communications Inc. 15 * enum ef4_filter_match_flags - Flags for hardware filter match type 22 * @EF4_FILTER_MATCH_ETHER_TYPE: Match by Ether-type 31 * - Falcon supports RX filters matching by {TCP,UDP}/IPv4 4-tuple or 32 * local 2-tuple (only implemented for Falcon B0) 34 * - Siena supports RX and TX filters matching by {TCP,UDP}/IPv4 4-tuple 35 * or local 2-tuple, or local MAC with or without outer VID, and RX 38 * - Huntington supports filter matching controlled by firmware, potentially 39 * using {TCP,UDP}/IPv{4,6} 4-tuple or local 2-tuple, local MAC or I/G bit, [all …]
|
/Linux-v5.10/drivers/net/ethernet/sfc/ |
D | filter.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 4 * Copyright 2005-2013 Solarflare Communications Inc. 15 * enum efx_filter_match_flags - Flags for hardware filter match type 22 * @EFX_FILTER_MATCH_ETHER_TYPE: Match by Ether-type 32 * - Falcon supports RX filters matching by {TCP,UDP}/IPv4 4-tuple or 33 * local 2-tuple (only implemented for Falcon B0) 35 * - Siena supports RX and TX filters matching by {TCP,UDP}/IPv4 4-tuple 36 * or local 2-tuple, or local MAC with or without outer VID, and RX 39 * - Huntington supports filter matching controlled by firmware, potentially 40 * using {TCP,UDP}/IPv{4,6} 4-tuple or local 2-tuple, local MAC or I/G bit, [all …]
|
/Linux-v5.10/tools/testing/fault-injection/ |
D | failcmd.sh | 2 # SPDX-License-Identifier: GPL-2.0 5 # failcmd.sh - run a command with injecting slab/page allocation failures 8 # failcmd.sh --help 24 -p percent 25 --probability=percent 29 -t value 30 --times=value 34 --oom-kill-allocating-task=value 39 -h, --help 42 --interval=value, --space=value, --verbose=value, --task-filter=value, [all …]
|
/Linux-v5.10/scripts/ |
D | Makefile.build | 1 # SPDX-License-Identifier: GPL-2.0 14 obj-y := 15 obj-m := 16 lib-y := 17 lib-m := 19 always-y := 20 always-m := 22 subdir-y := 23 subdir-m := 28 asflags-y := [all …]
|
D | Makefile.lib | 1 # SPDX-License-Identifier: GPL-2.0 3 asflags-y += $(EXTRA_AFLAGS) 4 ccflags-y += $(EXTRA_CFLAGS) 5 cppflags-y += $(EXTRA_CPPFLAGS) 6 ldflags-y += $(EXTRA_LDFLAGS) 8 $(warning 'always' is deprecated. Please use 'always-y' instead) 9 always-y += $(always) 11 ifneq ($(hostprogs-y),) 12 $(warning 'hostprogs-y' is deprecated. Please use 'hostprogs' instead) 13 hostprogs += $(hostprogs-y) [all …]
|
/Linux-v5.10/drivers/media/platform/sti/bdisp/ |
D | bdisp-reg.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 8 /* 0 - General */ 13 /* 1 - Target */ 18 /* 2 - Color Fill */ 21 /* 3 - Source 1 */ 26 /* 4 - Source 2 */ 31 /* 5 - Source 3 */ 36 /* 6 - Clipping */ 39 /* 7 - CLUT */ 42 /* 8 - Filter & Mask */ [all …]
|
/Linux-v5.10/tools/testing/selftests/tc-testing/tc-tests/filters/ |
D | tests.json | 6 "filter", 14 "$TC filter add dev $DEV1 protocol all pref 1 ingress handle 0x1234 matchall action ok" 16 … "cmdUnderTest": "$TC filter get dev $DEV1 protocol all pref 1 ingress handle 0x1234 matchall", 18 "verifyCmd": "$TC filter show dev $DEV1 ingress", 19 "matchPattern": "filter protocol all pref 1 matchall chain 0 handle 0x1234", 29 "filter", 35 …"cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress handle 0xffffffff flower acti… 37 "verifyCmd": "$TC filter show dev $DEV2 ingress", 38 "matchPattern": "filter protocol ip pref 1 flower.*handle 0xffffffff", 48 "filter", [all …]
|
/Linux-v5.10/Documentation/userspace-api/media/v4l/ |
D | ext-ctrls-codec.rst | 1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later 3 .. _mpeg-controls: 24 .. _mpeg-control-id: 27 ----------------- 35 .. _v4l2-mpeg-stream-type: 40 enum v4l2_mpeg_stream_type - 41 The MPEG-1, -2 or -4 output stream type. One cannot assume anything 48 .. flat-table:: 49 :header-rows: 0 50 :stub-columns: 0 [all …]
|
/Linux-v5.10/drivers/dma-buf/ |
D | selftest.c | 1 /* SPDX-License-Identifier: MIT */ 31 /* Embed the line number into the parameter name so that we can order tests */ 49 char *filter, *sep, *tok; in apply_subtest_filter() local 52 filter = kstrdup(__st_filter, GFP_KERNEL); in apply_subtest_filter() 53 for (sep = filter; (tok = strsep(&sep, ","));) { in apply_subtest_filter() 85 kfree(filter); in apply_subtest_filter() 95 for (; count--; st++) { in __subtests() 98 return -EINTR; in __subtests() 100 if (!apply_subtest_filter(caller, st->name)) in __subtests() 103 pr_info("dma-buf: Running %s/%s\n", caller, st->name); in __subtests() [all …]
|
/Linux-v5.10/Documentation/networking/device_drivers/ethernet/aquantia/ |
D | atlantic.rst | 1 .. SPDX-License-Identifier: GPL-2.0 8 For the aQuantia Multi-Gigabit PCI Express Family of Ethernet Adapters 12 - Identifying Your Adapter 13 - Configuration 14 - Supported ethtool options 15 - Command Line Parameters 16 - Config file parameters 17 - Support 18 - License 23 The driver in this release is compatible with AQC-100, AQC-107, AQC-108 [all …]
|
/Linux-v5.10/include/media/ |
D | dvb_demux.h | 4 * Copyright (C) 2000-2001 Marcus Metzler & Ralph Metzler 30 * enum dvb_dmx_filter_type - type of demux feed. 41 * enum dvb_dmx_state - state machine for a demux filter. 43 * @DMX_STATE_FREE: indicates that the filter is freed. 44 * @DMX_STATE_ALLOCATED: indicates that the filter was allocated 46 * @DMX_STATE_READY: indicates that the filter is ready 48 * @DMX_STATE_GO: indicates that the filter is running. 64 * struct dvb_demux_filter - Describes a DVB demux section filter. 66 * @filter: Section filter as defined by &struct dmx_section_filter. 69 * @doneq: flag that indicates when a filter is ready. [all …]
|
/Linux-v5.10/Documentation/trace/ |
D | events.rst | 24 --------------------------------- 59 --------------------------- 82 - 0 - all events this file affects are disabled 83 - 1 - all events this file affects are enabled 84 - X - there is a mixture of events enabled and disabled 85 - ? - this file does not affect any event 88 --------------- 90 In order to facilitate early boot debugging, use boot option:: 92 trace_event=[event-list] 94 event-list is a comma separated list of events. See section 2.1 for event [all …]
|
/Linux-v5.10/drivers/net/ethernet/chelsio/cxgb4/ |
D | t4_values.h | 4 * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved. 16 * - Redistributions of source code must retain the above 20 * - Redistributions in binary form must reproduce the above 74 /* T6 and later use a single-bit encoding for FetchBurstMin */ 102 /* T5 and later support a new BAR2-based doorbell mechanism for Egress Queues. 104 * offsets 8x and a Write Combining single 64-byte Egress Queue Unit 110 * non-64-byte aligned offset for the Simple Doorbell in order to attempt to 112 * non-contiguous offset for the Going To Sleep writes in order to avoid 125 /* PCI-E definitions */ 130 * Compressed Filter Tuple for LE filters. Each bit set in TP_VLAN_PRI_MAP [all …]
|
/Linux-v5.10/arch/x86/events/intel/ |
D | pt.c | 1 // SPDX-License-Identifier: GPL-2.0-only 4 * Copyright (c) 2013-2014, Intel Corporation. 8 * http://software.intel.com/en-us/intel-isa-extensions 23 #include <asm/intel-family.h> 40 * width encoded in IP-related packets), and event configuration (bitmasks with 74 u32 c = caps[cd->leaf * PT_CPUID_REGS_NUM + cd->reg]; in intel_pt_validate_cap() 75 unsigned int shift = __ffs(cd->mask); in intel_pt_validate_cap() 77 return (c & cd->mask) >> shift; in intel_pt_validate_cap() 93 enum pt_capabilities cap = (long)ea->var; in pt_cap_show() 111 PMU_FORMAT_ATTR(mtc_period, "config:14-17" ); [all …]
|
/Linux-v5.10/drivers/iio/adc/ |
D | stm32-dfsdm.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 5 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved 15 * STM32 DFSDM - global register map 18 * -------------------------------------------------------- 20 * -------------------------------------------------------- 22 * -------------------------------------------------------- 24 * -------------------------------------------------------- 26 * -------------------------------------------------------- 27 * | 0x100 | FILTER 0 + COMMON FILTER FIELDs | 28 * -------------------------------------------------------- [all …]
|
/Linux-v5.10/tools/lib/traceevent/ |
D | event-parse-api.c | 1 // SPDX-License-Identifier: LGPL-2.1 7 #include "event-parse.h" 8 #include "event-parse-local.h" 9 #include "event-utils.h" 12 * tep_get_event - returns the event with the given index 21 if (tep && tep->events && index < tep->nr_events) in tep_get_event() 22 return tep->events[index]; in tep_get_event() 28 * tep_get_first_event - returns the first event in the events array 40 * tep_get_events_count - get the number of defined events 49 return tep->nr_events; in tep_get_events_count() [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/sound/ |
D | st,stm32-adfsdm.txt | 1 STMicroelectronics Audio Digital Filter Sigma Delta modulators(DFSDM) 5 For details on DFSDM bindings refer to ../iio/adc/st,stm32-dfsdm-adc.txt 8 - compatible: "st,stm32h7-dfsdm-dai". 10 - #sound-dai-cells : Must be equal to 0 12 - io-channels : phandle to iio dfsdm instance node. 17 compatible = "audio-graph-card"; 23 compatible = "st,stm32h7-dfsdm"; 26 clock-names = "dfsdm"; 27 #interrupt-cells = <1>; 28 #address-cells = <1>; [all …]
|
/Linux-v5.10/tools/lib/traceevent/Documentation/ |
D | libtraceevent-filter.txt | 5 ---- 8 tep_filter_remove_event, tep_filter_strerror, tep_filter_add_filter_str - 9 Event filter related APIs. 12 -------- 14 -- 15 *#include <event-parse.h>* 28 -- 31 ----------- 32 Filters can be attached to traced events. They can be used to filter out various 37 The _tep_filter_alloc()_ function creates a new event filter. The _tep_ argument [all …]
|
/Linux-v5.10/Documentation/userspace-api/ |
D | seccomp_filter.rst | 16 Seccomp filtering provides a means for a process to specify a filter for 17 incoming system calls. The filter is expressed as a Berkeley Packet 18 Filter (BPF) program, as with socket filters, except that the data 21 filtering of system calls using a filter program language with a long 25 to time-of-check-time-of-use (TOCTOU) attacks that are common in system 51 Now takes an additional argument which specifies a new filter 64 will contain the filter program. If the program is invalid, the 65 call will return -1 and set errno to ``EINVAL``. 73 true, ``-EACCES`` will be returned. This requirement ensures that filter 77 Additionally, if ``prctl(2)`` is allowed by the attached filter, [all …]
|
/Linux-v5.10/include/uapi/linux/ |
D | omap3isp.h | 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 5 * TI OMAP3 ISP - User-space API 25 * 02110-1301 USA 41 * VIDIOC_OMAP3ISP_AF_CFG: Set auto-focus module configuration 121 * struct omap3isp_h3a_aewb_config - AE AWB configuration reset values 123 * @win_height: Window Height. Range 2 - 256, even values only. 124 * @win_width: Window Width. Range 6 - 256, even values only. 125 * @ver_win_count: Vertical Window Count. Range 1 - 128. 126 * @hor_win_count: Horizontal Window Count. Range 1 - 36. 127 * @ver_win_start: Vertical Window Start. Range 0 - 4095. [all …]
|
/Linux-v5.10/lib/ |
D | xarray.c | 1 // SPDX-License-Identifier: GPL-2.0+ 4 * Copyright (c) 2017-2018 Microsoft Corporation 5 * Copyright (c) 2018-2020 Oracle 33 return (__force unsigned int)xa->xa_flags & 3; in xa_lock_type() 58 return xa->xa_flags & XA_FLAGS_TRACK_FREE; in xa_track_free() 63 return xa->xa_flags & XA_FLAGS_ZERO_BUSY; in xa_zero_busy() 68 if (!(xa->xa_flags & XA_FLAGS_MARK(mark))) in xa_mark_set() 69 xa->xa_flags |= XA_FLAGS_MARK(mark); in xa_mark_set() 74 if (xa->xa_flags & XA_FLAGS_MARK(mark)) in xa_mark_clear() 75 xa->xa_flags &= ~(XA_FLAGS_MARK(mark)); in xa_mark_clear() [all …]
|
/Linux-v5.10/drivers/staging/pi433/Documentation/ |
D | pi433.txt | 64 ---------------- 67 PI433_IOC_RD_TX_CFG - get the transmission parameters from the driver 68 PI433_IOC_WR_TX_CFG - set the transmission parameters 69 PI433_IOC_RD_RX_CFG - get the receiving parameters from the driver 70 PI433_IOC_WR_RX_CFG - set the receiving parameters 86 FSK - frequency shift key 87 OOK - On-Off-key 89 shapingOff - no shaping 90 shaping1_0 - gauss filter with BT 1 (FSK only) 91 shaping0_5 - gauss filter with BT 0.5 (FSK only) [all …]
|
/Linux-v5.10/tools/perf/Documentation/ |
D | perf-report.txt | 1 perf-report(1) 5 ---- 6 perf-report - Read perf.data (created by perf record) and display the profile 9 -------- 11 'perf report' [-i <file> | --input=file] 14 ----------- 19 ------- 20 -i:: 21 --input=:: 24 -v:: [all …]
|
/Linux-v5.10/net/bridge/netfilter/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 36 through your machine, in order to figure out how they are related 69 tristate "ebt: filter table support" 71 The ebtables filter table is used to define frame filtering rules at 89 tristate "ebt: 802.3 filter support" 96 tristate "ebt: among filter support" 100 MAC/IP address pairs can be matched, f.e. for anti-spoofing rules. 105 tristate "ebt: ARP filter support" 113 tristate "ebt: IP filter support" 121 tristate "ebt: IP6 filter support" [all …]
|