/linux-5.10/drivers/gpu/drm/i915/ |
D | i915_debugfs_params.c | 1 // SPDX-License-Identifier: MIT 13 static int i915_param_int_show(struct seq_file *m, void *data) in i915_param_int_show() argument 15 int *value = m->private; in i915_param_int_show() 17 seq_printf(m, "%d\n", *value); in i915_param_int_show() 24 return single_open(file, i915_param_int_show, inode->i_private); in i915_param_int_open() 31 struct seq_file *m = file->private_data; in i915_param_int_write() local 32 int *value = m->private; in i915_param_int_write() 66 static int i915_param_uint_show(struct seq_file *m, void *data) in i915_param_uint_show() argument 68 unsigned int *value = m->private; in i915_param_uint_show() 70 seq_printf(m, "%u\n", *value); in i915_param_uint_show() [all …]
|
/linux-5.10/drivers/firmware/efi/libstub/ |
D | gop.c | 1 // SPDX-License-Identifier: GPL-2.0 2 /* ----------------------------------------------------------------------- 6 * ----------------------------------------------------------------------- */ 29 u32 mode; member 40 u32 m; in parse_modenum() local 42 if (!strstarts(option, "mode=")) in parse_modenum() 44 option += strlen("mode="); in parse_modenum() 45 m = simple_strtoull(option, &option, 0); in parse_modenum() 49 cmdline.mode = m; in parse_modenum() 58 int pf = -1; in parse_res() [all …]
|
/linux-5.10/arch/mips/sgi-ip27/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0 3 prompt "Node addressing mode" 8 bool "IP27 M-Mode" 11 in either N-Modes which allows for more nodes or M-Mode which allows 13 M-Mode, so choose M-mode here. 16 bool "IP27 N-Mode" 19 in either N-Modes which allows for more nodes or M-Mode which allows 21 M-Mode, so choose M-mode here.
|
/linux-5.10/tools/perf/pmu-events/arch/s390/cf_zec12/ |
D | extended.json | 3 "Unit": "CPU-M-CF", 7 …"PublicDescription": "Level-1 Data TLB miss in progress. Incremented by one for every cycle a DTLB… 10 "Unit": "CPU-M-CF", 14 …"PublicDescription": "Level-1 Instruction TLB miss in progress. Incremented by one for every cycle… 17 "Unit": "CPU-M-CF", 21 …on": "A directory write to the Level-1 Data cache directory where the returned cache line was sour… 24 "Unit": "CPU-M-CF", 28 … "A directory write to the Level-1 Instruction cache directory where the returned cache line was s… 31 "Unit": "CPU-M-CF", 35 …on": "A directory write to the Level-1 Data cache directory where the returned cache line was sour… [all …]
|
/linux-5.10/include/uapi/mtd/ |
D | mtd-abi.h | 1 /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ 3 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al. 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 55 * @MTD_OPS_RAW: data are transferred as-is, with no error correction; 56 * this mode implies %MTD_OPS_PLACE_OOB 69 * struct mtd_write_req - data structure for requesting a write operation 74 * @usr_data: user-provided data buffer 75 * @usr_oob: user-provided OOB buffer 76 * @mode: MTD mode (see "MTD operation modes") 80 * writes in various modes. To write to OOB-only, set @usr_data == NULL, and to [all …]
|
/linux-5.10/drivers/iommu/intel/ |
D | debugfs.c | 1 // SPDX-License-Identifier: GPL-2.0 13 #include <linux/intel-iommu.h> 110 static int iommu_regset_show(struct seq_file *m, void *unused) in iommu_regset_show() argument 120 if (!drhd->reg_base_addr) { in iommu_regset_show() 121 seq_puts(m, "IOMMU: Invalid base address\n"); in iommu_regset_show() 122 ret = -EINVAL; in iommu_regset_show() 126 seq_printf(m, "IOMMU: %s Register Base Address: %llx\n", in iommu_regset_show() 127 iommu->name, drhd->reg_base_addr); in iommu_regset_show() 128 seq_puts(m, "Name\t\t\tOffset\t\tContents\n"); in iommu_regset_show() 130 * Publish the contents of the 64-bit hardware registers in iommu_regset_show() [all …]
|
/linux-5.10/drivers/net/team/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 13 To compile this driver as a module, choose M here: the module 19 tristate "Broadcast mode support" 22 Basic mode where packets are transmitted always by all suitable ports. 26 To compile this team mode as a module, choose M here: the module 30 tristate "Round-robin mode support" 33 Basic mode where port used for transmitting packets is selected in 34 round-robin fashion using packet counter. 38 To compile this team mode as a module, choose M here: the module 42 tristate "Random mode support" [all …]
|
/linux-5.10/drivers/gpu/drm/nouveau/dispnv50/ |
D | head.c | 43 .mask = asyh->clr.mask & ~(flush ? 0 : asyh->set.mask), in nv50_head_flush_clr() 46 if (clr.olut) head->func->olut_clr(head); in nv50_head_flush_clr() 47 if (clr.core) head->func->core_clr(head); in nv50_head_flush_clr() 48 if (clr.curs) head->func->curs_clr(head); in nv50_head_flush_clr() 54 if (asyh->set.view ) head->func->view (head, asyh); in nv50_head_flush_set() 55 if (asyh->set.mode ) head->func->mode (head, asyh); in nv50_head_flush_set() 56 if (asyh->set.core ) head->func->core_set(head, asyh); in nv50_head_flush_set() 57 if (asyh->set.olut ) { in nv50_head_flush_set() 58 asyh->olut.offset = nv50_lut_load(&head->olut, in nv50_head_flush_set() 59 asyh->olut.buffer, in nv50_head_flush_set() [all …]
|
/linux-5.10/sound/soc/intel/boards/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 40 Say Y or m if you have such a device. 72 Say Y or m if you have such a device. 84 Say Y or m if you have such a device. This is a recommended option. 91 tristate "Baytrail and Baytrail-CR with RT5640 codec" 97 This adds support for ASoC machine driver for Intel(R) Baytrail and Baytrail-CR 99 Say Y or m if you have such a device. This is a recommended option. 103 tristate "Baytrail and Baytrail-CR with RT5651 codec" 109 This adds support for ASoC machine driver for Intel(R) Baytrail and Baytrail-CR 111 Say Y or m if you have such a device. This is a recommended option. [all …]
|
/linux-5.10/drivers/usb/dwc3/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0 9 Say Y or M here if your system has a Dual Role SuperSpeed 25 bool "DWC3 Mode Selection" 31 bool "Host only mode" 34 Select this when you want to use DWC3 in host mode only, 38 bool "Gadget only mode" 41 Select this when you want to use DWC3 in gadget mode only, 45 bool "Dual Role mode" 49 This is the default mode of working of DWC3 controller where 66 Say 'Y' or 'M' here if you have one such device [all …]
|
/linux-5.10/tools/perf/pmu-events/arch/s390/cf_z14/ |
D | extended.json | 3 "Unit": "CPU-M-CF", 6 "BriefDescription": "L1D Read-only Exclusive Writes", 7 …blicDescription": "A directory write to the Level-1 Data cache where the line was originally in a … 10 "Unit": "CPU-M-CF", 17 "Unit": "CPU-M-CF", 21 …data cache. Incremented by one for every TLB2 miss in progress for the Level-1 Data cache on this … 24 "Unit": "CPU-M-CF", 27 "BriefDescription": "DTLB2 One-Megabyte Page Writes", 28 … into the Combined Region and Segment Table Entry array in the Level-2 TLB for a one-megabyte page… 31 "Unit": "CPU-M-CF", [all …]
|
/linux-5.10/kernel/bpf/ |
D | inode.c | 1 // SPDX-License-Identifier: GPL-2.0-only 92 return ERR_PTR(-EINVAL); in bpf_fd_probe_obj() 103 umode_t mode) in bpf_get_inode() argument 107 switch (mode & S_IFMT) { in bpf_get_inode() 113 return ERR_PTR(-EINVAL); in bpf_get_inode() 118 return ERR_PTR(-ENOSPC); in bpf_get_inode() 120 inode->i_ino = get_next_ino(); in bpf_get_inode() 121 inode->i_atime = current_time(inode); in bpf_get_inode() 122 inode->i_mtime = inode->i_atime; in bpf_get_inode() 123 inode->i_ctime = inode->i_atime; in bpf_get_inode() [all …]
|
/linux-5.10/Documentation/arm/nwfpe/ |
D | todo.rst | 6 POW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - power 7 RPW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse power 8 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2) 10 LOG{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base 10 11 LGN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base e 12 EXP{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - exponent 13 SIN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - sine 14 COS{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - cosine 15 TAN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - tangent 16 ASN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - arcsine [all …]
|
/linux-5.10/tools/perf/pmu-events/arch/s390/cf_z15/ |
D | extended.json | 3 "Unit": "CPU-M-CF", 6 "BriefDescription": "L1D Read-only Exclusive Writes", 7 …blicDescription": "A directory write to the Level-1 Data cache where the line was originally in a … 10 "Unit": "CPU-M-CF", 17 "Unit": "CPU-M-CF", 21 …data cache. Incremented by one for every TLB2 miss in progress for the Level-1 Data cache on this … 24 "Unit": "CPU-M-CF", 27 "BriefDescription": "DTLB2 One-Megabyte Page Writes", 28 … into the Combined Region and Segment Table Entry array in the Level-2 TLB for a one-megabyte page" 31 "Unit": "CPU-M-CF", [all …]
|
/linux-5.10/tools/perf/pmu-events/arch/s390/cf_z13/ |
D | extended.json | 3 "Unit": "CPU-M-CF", 6 "BriefDescription": "L1D Read-only Exclusive Writes", 7 …blicDescription": "A directory write to the Level-1 Data cache where the line was originally in a … 10 "Unit": "CPU-M-CF", 14 …"PublicDescription": "A translation entry has been written to the Level-1 Data Translation Lookasi… 17 "Unit": "CPU-M-CF", 21 …"PublicDescription": "Level-1 Data TLB miss in progress. Incremented by one for every cycle a DTLB… 24 "Unit": "CPU-M-CF", 27 "BriefDescription": "DTLB1 One-Megabyte Page Writes", 28 …": "A translation entry has been written to the Level-1 Data Translation Lookaside Buffer for a on… [all …]
|
/linux-5.10/Documentation/sound/cards/ |
D | serial-u16550.rst | 7 * 0 - Roland Soundcanvas support (default) 8 * 1 - Midiator MS-124T support (1) 9 * 2 - Midiator MS-124W S/A mode (2) 10 * 3 - MS-124W M/B mode support (3) 11 * 4 - Generic device with multiple input support (4) 13 For the Midiator MS-124W, you must set the physical M-S and A-B 14 switches on the Midiator to match the driver mode you select. 16 In Roland Soundcanvas mode, multiple ALSA raw MIDI substreams are supported 17 (midiCnD0-midiCnD15). Whenever you write to a different substream, the driver 28 /sbin/modprobe snd-serial-u16550 port=0x3f8 irq=4 speed=115200 [all …]
|
/linux-5.10/drivers/s390/net/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0 6 def_tristate m 12 To compile as a module, choose M. The module name is lcs. 16 def_tristate m 20 Select this option if you want to use channel-to-channel 21 point-to-point networking on IBM System z. 24 This driver also supports channel-to-channel MPC SNA devices. 26 To compile as a module, choose M. The module name is ctcm. 28 If you do not need any channel-to-channel connection, choose N. 31 def_tristate m [all …]
|
/linux-5.10/include/drm/ |
D | drm_modes.h | 3 * Copyright © 2007-2008 Dave Airlie 4 * Copyright © 2007-2008 Intel Corporation 46 * enum drm_mode_status - hardware support status of a mode 47 * @MODE_OK: Mode OK 50 * @MODE_H_ILLEGAL: mode has illegal horizontal timings 51 * @MODE_V_ILLEGAL: mode has illegal vertical timings 53 * @MODE_NOMODE: no mode with a matching name 54 * @MODE_NO_INTERLACE: interlaced mode not supported 55 * @MODE_NO_DBLESCAN: doublescan mode not supported 56 * @MODE_NO_VSCAN: multiscan mode not supported [all …]
|
/linux-5.10/sound/drivers/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 50 tristate "PC-Speaker support (READ HELP!)" 60 You can compile this as a module which will be called snd-pcsp. 65 pc-speaker a default sound device. Which is likely not 69 options snd-pcsp index=2 71 You don't need this driver if you only want your pc-speaker to beep. 76 Say M if you don't. 89 To compile this driver as a module, choose M here: the module 90 will be called snd-dummy. 97 Say 'Y' or 'M' to include support for the PCM loopback device. [all …]
|
/linux-5.10/drivers/s390/char/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0 20 def_tristate m 36 prompt "Support for 3215 line mode terminal" 39 Include support for IBM 3215 line-mode terminals. 43 prompt "Support for console on 3215 line mode terminal" 46 Include support for using an IBM 3215 line-mode terminal as a 54 prompt "Support for SCLP line mode terminal" 57 Include support for IBM SCLP line-mode terminals. 61 prompt "Support for console on SCLP line mode terminal" 64 Include support for using an IBM HWC line-mode terminal as the Linux [all …]
|
/linux-5.10/drivers/clk/qcom/ |
D | clk-rcg.c | 1 // SPDX-License-Identifier: GPL-2.0-only 10 #include <linux/clk-provider.h> 15 #include "clk-rcg.h" 20 ns >>= s->src_sel_shift; in ns_to_src() 30 mask <<= s->src_sel_shift; in src_to_ns() 33 ns |= src << s->src_sel_shift; in src_to_ns() 44 ret = regmap_read(rcg->clkr.regmap, rcg->ns_reg, &ns); in clk_rcg_get_parent() 47 ns = ns_to_src(&rcg->s, ns); in clk_rcg_get_parent() 49 if (ns == rcg->s.parent_map[i].cfg) in clk_rcg_get_parent() 60 bank &= BIT(rcg->mux_sel_bit); in reg_to_bank() [all …]
|
/linux-5.10/drivers/clk/sunxi-ng/ |
D | ccu_mp.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 4 * Maxime Ripard <maxime.ripard@free-electrons.com> 7 #include <linux/clk-provider.h> 15 unsigned int *m, unsigned int *p) in ccu_mp_find_best() argument 28 if ((rate - tmp_rate) < (rate - best_rate)) { in ccu_mp_find_best() 36 *m = best_m; in ccu_mp_find_best() 56 * unsigned long in rate * m * p below in ccu_mp_find_best_with_parent_adj() 103 unsigned int m, p; in ccu_mp_round_rate() local 105 if (cmp->common.features & CCU_FEATURE_FIXED_POSTDIV) in ccu_mp_round_rate() 106 rate *= cmp->fixed_post_div; in ccu_mp_round_rate() [all …]
|
/linux-5.10/drivers/net/arcnet/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 16 COM90xx type card, so say Y (or M) to "ARCnet COM90xx chipset 19 To compile this driver as a module, choose M here. The module will 29 industry-standard RFC1201 implementations, like the arcether.com 42 industry-standard RFC1201 implementations, like the arcether.com 49 tristate "Enable raw mode packet interface" 51 ARCnet "raw mode" packet encapsulation, no soft headers. Unlikely 56 tristate "Enable CAP mode packet interface" 58 ARCnet "cap mode" packet encapsulation. Used to get the hardware 71 Cap only listens to protocol 1-8. [all …]
|
/linux-5.10/drivers/media/platform/s5p-jpeg/ |
D | jpeg-hw-s5p.c | 1 // SPDX-License-Identifier: GPL-2.0-only 2 /* linux/drivers/media/platform/s5p-jpeg/jpeg-hw.h 13 #include "jpeg-core.h" 14 #include "jpeg-regs.h" 15 #include "jpeg-hw-s5p.h" 35 void s5p_jpeg_input_raw_mode(void __iomem *regs, unsigned long mode) in s5p_jpeg_input_raw_mode() argument 37 unsigned long reg, m; in s5p_jpeg_input_raw_mode() local 39 m = S5P_MOD_SEL_565; in s5p_jpeg_input_raw_mode() 40 if (mode == S5P_JPEG_RAW_IN_565) in s5p_jpeg_input_raw_mode() 41 m = S5P_MOD_SEL_565; in s5p_jpeg_input_raw_mode() [all …]
|
/linux-5.10/drivers/video/fbdev/core/ |
D | modedb.c | 2 * linux/drivers/video/modedb.c -- Standard video mode database management 6 * 2001 - Documented with DocBook 7 * - Brad Douglas <brad@neruo.com> 33 * Standard video mode definitions (taken from XFree86) 293 /* 0 640x350-85 VESA */ 296 /* 1 640x400-85 VESA */ 299 /* 2 720x400-85 VESA */ 302 /* 3 640x480-60 VESA */ 305 /* 4 640x480-72 VESA */ 308 /* 5 640x480-75 VESA */ [all …]
|