/Linux-v5.15/arch/um/drivers/ |
D | line.c | 22 struct line *line = chan->line; in line_interrupt() local 24 if (line) in line_interrupt() 25 chan_interrupt(line, irq); in line_interrupt() 31 * Returns the free space inside the ring buffer of this line. 33 * Should be called while holding line->lock (this does not modify data). 35 static unsigned int write_room(struct line *line) in write_room() argument 39 if (line->buffer == NULL) in write_room() 43 n = line->head - line->tail; in write_room() 52 struct line *line = tty->driver_data; in line_write_room() local 56 spin_lock_irqsave(&line->lock, flags); in line_write_room() [all …]
|
D | chan.h | 13 #include "line.h" 18 struct line *line; member 30 extern void chan_interrupt(struct line *line, int irq); 31 extern int parse_chan_pair(char *str, struct line *line, int device, 37 extern int console_open_chan(struct line *line, struct console *co); 41 extern int enable_chan(struct line *line); 42 extern void close_chan(struct line *line); 43 extern int chan_window_size(struct line *line, 46 extern int chan_config_string(struct line *line, char *str, int size,
|
D | chan_kern.c | 133 struct line *line = container_of(work, struct line, task.work); in line_timer_cb() local 135 if (!line->throttled) in line_timer_cb() 136 chan_interrupt(line, line->driver->read_irq); in line_timer_cb() 139 int enable_chan(struct line *line) in enable_chan() argument 145 INIT_DELAYED_WORK(&line->task, line_timer_cb); in enable_chan() 147 list_for_each(ele, &line->chan_list) { in enable_chan() 159 err = line_setup_irq(chan->fd, chan->input, chan->output, line, in enable_chan() 170 close_chan(line); in enable_chan() 198 um_free_irq(chan->line->driver->read_irq, chan); in free_irqs() 200 um_free_irq(chan->line->driver->write_irq, chan); in free_irqs() [all …]
|
/Linux-v5.15/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/ |
D | nv10.c | 29 nv10_gpio_sense(struct nvkm_gpio *gpio, int line) in nv10_gpio_sense() argument 32 if (line < 2) { in nv10_gpio_sense() 33 line = line * 16; in nv10_gpio_sense() 34 line = nvkm_rd32(device, 0x600818) >> line; in nv10_gpio_sense() 35 return !!(line & 0x0100); in nv10_gpio_sense() 37 if (line < 10) { in nv10_gpio_sense() 38 line = (line - 2) * 4; in nv10_gpio_sense() 39 line = nvkm_rd32(device, 0x60081c) >> line; in nv10_gpio_sense() 40 return !!(line & 0x04); in nv10_gpio_sense() 42 if (line < 14) { in nv10_gpio_sense() [all …]
|
/Linux-v5.15/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_self_test.c | 115 /* lines start from 2 since line 1 is heading in csv */ 118 /*line 2*/{(0x3), 1, 0x2114, 124 /*line 3*/{(0x3), 1, 0x2114, 130 /*line 4*/{(0x3), 1, 0x2120, 136 /*line 5*/{(0x3), 1, 0x2814, 142 /*line 6*/{(0x2), 1, 0x281c, 148 /*line 7*/{(0x2), 1, 0x2820, 154 /*line 8*/{(0x3), 1, PXP2_REG_PGL_EXP_ROM2, 160 /*line 9*/{(0x3), 2, 0x212c, 166 /*line 10*/{(0x1C), 1, 0x2104, [all …]
|
/Linux-v5.15/tools/perf/pmu-events/arch/x86/goldmont/ |
D | frontend.json | 4 …Line and that cache line is in the ICache (hit). The event strives to count on a cache line basis… 10 …"BriefDescription": "References per ICache line that are available in the ICache (hit). This event… 14 …Line and that cache line is not in the ICache (miss). The event strives to count on a cache line … 20 …"BriefDescription": "References per ICache line that are not available in the ICache (miss). This … 24 …Line. The event strives to count on a cache line basis, so that multiple fetches to a single cach… 30 …"BriefDescription": "References per ICache line. This event counts differently than Intel processo…
|
/Linux-v5.15/Documentation/RCU/Design/Memory-Ordering/ |
D | rcu_node-lock.svg | 80 <!-- Line: box --> 81 <!-- Line: box --> 82 <!-- Line: box --> 83 <!-- Line --> 85 <!-- Line --> 87 <!-- Line --> 89 <!-- Line --> 91 <!-- Line: box --> 92 <!-- Line: box --> 93 <!-- Line --> [all …]
|
/Linux-v5.15/tools/perf/pmu-events/arch/x86/goldmontplus/ |
D | frontend.json | 4 …Line and that cache line is in the ICache (hit). The event strives to count on a cache line basis… 12 …"BriefDescription": "References per ICache line that are available in the ICache (hit). This event… 16 …Line and that cache line is not in the ICache (miss). The event strives to count on a cache line … 24 …"BriefDescription": "References per ICache line that are not available in the ICache (miss). This … 28 …Line. The event strives to count on a cache line basis, so that multiple fetches to a single cach… 36 …"BriefDescription": "References per ICache line. This event counts differently than Intel processo…
|
/Linux-v5.15/drivers/tty/serial/ |
D | dz.h | 20 #define DZ_TLINE 0x0300 /* Transmitter Line Number */ 31 #define DZ_LINE_MASK 0x0300 /* Line Mask */ 39 #define LINE(x) ((x & DZ_LINE_MASK) >> 8) /* Get the line number macro 51 #define DZ_MODEM_RTS 0x0800 /* RTS for the modem line (2) */ 52 #define DZ_MODEM_DTR 0x0400 /* DTR for the modem line (2) */ 53 #define DZ_PRINT_RTS 0x0200 /* RTS for the prntr line (3) */ 54 #define DZ_PRINT_DTR 0x0100 /* DTR for the prntr line (3) */ 55 #define DZ_LNENB 0x000f /* Transmitter Line Enable */ 60 #define DZ_MODEM_RI 0x0800 /* RI for the modem line (2) */ 61 #define DZ_MODEM_CD 0x0400 /* CD for the modem line (2) */ [all …]
|
/Linux-v5.15/scripts/ |
D | show_delta | 20 the kernel command line option "time" is specified. When run with no 22 each printk line and the next. When run with the '-b' option, all times 29 If it is a string, the first message line 31 line) is used as the time reference. 36 will show times relative to the line in the kernel output 41 # returns a tuple containing the seconds and text for each message line 44 def get_time(line): argument 45 if line[0]!="[": 49 (time_str, rest) = string.split(line[1:],']',1) 56 # average line looks like: [all …]
|
/Linux-v5.15/drivers/gpio/ |
D | gpio-thunderx.c | 50 unsigned int line; member 57 struct msix_entry *msix_entries; /* per line MSI-X */ 58 struct thunderx_line *line_entries; /* per line irq info */ 65 static unsigned int bit_cfg_reg(unsigned int line) in bit_cfg_reg() argument 67 return 8 * line + GPIO_BIT_CFG; in bit_cfg_reg() 70 static unsigned int intr_reg(unsigned int line) in intr_reg() argument 72 return 8 * line + GPIO_INTR; in intr_reg() 76 unsigned int line) in thunderx_gpio_is_gpio_nowarn() argument 78 u64 bit_cfg = readq(txgpio->register_base + bit_cfg_reg(line)); in thunderx_gpio_is_gpio_nowarn() 88 unsigned int line) in thunderx_gpio_is_gpio() argument [all …]
|
/Linux-v5.15/tools/perf/pmu-events/arch/x86/haswell/ |
D | uncore.json | 43 "BriefDescription": "An external snoop hits a non-modified line in some processor core.", 44 "PublicDescription": "An external snoop hits a non-modified line in some processor core.", 55 … this Cbox due to processor core memory request which hits a non-modified line in some processor c… 56 … this Cbox due to processor core memory request which hits a non-modified line in some processor c… 67 …: "A cross-core snoop resulted from L3 Eviction which hits a non-modified line in some processor c… 68 …: "A cross-core snoop resulted from L3 Eviction which hits a non-modified line in some processor c… 79 "BriefDescription": "An external snoop hits a modified line in some processor core.", 80 "PublicDescription": "An external snoop hits a modified line in some processor core.", 91 …d by this Cbox due to processor core memory request which hits a modified line in some processor c… 92 …d by this Cbox due to processor core memory request which hits a modified line in some processor c… [all …]
|
/Linux-v5.15/tools/perf/pmu-events/arch/x86/tremontx/ |
D | frontend.json | 4 …Line and that cache line is not in the ICache (miss). The event strives to count on a cache line … 12 …quests to the Instruction Cache (ICache) for one or more bytes in a cache line and they do not hit… 16 …Line. The event strives to count on a cache line basis, so that multiple fetches to a single cach… 24 …Description": "Counts requests to the Instruction Cache (ICache) for one or more bytes cache Line."
|
/Linux-v5.15/Documentation/devicetree/bindings/media/ |
D | cec-gpio.txt | 3 The HDMI CEC GPIO module supports CEC implementations where the CEC line 4 is hooked up to a pull-up GPIO line and - optionally - the HPD line is 5 hooked up to another GPIO line. 7 Please note: the maximum voltage for the CEC line is 3.63V, for the HPD and 9 when connecting them to a GPIO line. 13 - cec-gpios: gpio that the CEC line is connected to. The line should be 16 If the CEC line is associated with an HDMI receiver/transmitter, then the 21 If the CEC line is not associated with an HDMI receiver/transmitter, then 24 - hpd-gpios: gpio that the HPD line is connected to. 26 This property is optional and can be used for debugging changes on the 5V line: [all …]
|
/Linux-v5.15/Documentation/arm/samsung/ |
D | clksrc-change-registers.awk | 69 while (getline line < ARGV[1] > 0) { 70 if (line ~ /\#define.*_MASK/ && 71 !(line ~ /USB_SIG_MASK/)) { 72 splitdefine(line, fields) 75 printf "MASK " line "\n" > "/dev/stderr" 98 if ((getline line) <= 0) { 103 if (line ~ /\.shift/) { 104 shift = extract_value(line) 105 } else if (line ~ /\.mask/) { 106 mask = extract_value(line) [all …]
|
/Linux-v5.15/drivers/zorro/ |
D | gen-devlist.c | 32 char line[1024], *c, *bra, manuf[8]; in main() local 45 while (fgets(line, sizeof(line)-1, stdin)) { in main() 47 if ((c = strchr(line, '\n'))) in main() 49 if (!line[0] || line[0] == '#') in main() 51 if (line[0] == '\t') { in main() 54 if (strlen(line) > 5 && line[5] == ' ') { in main() 55 c = line + 5; in main() 64 fprintf(stderr, "Line %d: Product name too long\n", lino); in main() 68 fprintf(devf, "\tPRODUCT(%s,%s,\"", manuf, line+1); in main() 76 } else if (strlen(line) > 4 && line[4] == ' ') { in main() [all …]
|
/Linux-v5.15/arch/arm/boot/dts/ |
D | nuvoton-npcm750-runbmc-olympus.dts | 434 line-name = "TPM_BMC_ALERT_N"; 440 line-name = "FM_BIOS_TOP_SWAP"; 446 line-name = "FM_BIOS_PREFRB2_GOOD"; 452 line-name = "BMC_SATAXPCIE_0TO3_SEL"; 458 line-name = "BMC_SATAXPCIE_4TO7_SEL"; 464 line-name = "FM_UV_ADR_TRIGGER_EN_N"; 470 line-name = "RM_THROTTLE_EN_N"; 476 line-name = "FM_BMC_TPM_PRES_N"; 482 line-name = "FM_CPU0_SKTOCC_LVT3_N"; 488 line-name = "FM_CPU1_SKTOCC_LVT3_N"; [all …]
|
/Linux-v5.15/include/uapi/linux/ |
D | gpio.h | 48 * The maximum number of configuration attributes associated with a line 55 * @GPIO_V2_LINE_FLAG_USED: line is not available for request 56 * @GPIO_V2_LINE_FLAG_ACTIVE_LOW: line active state is physical low 57 * @GPIO_V2_LINE_FLAG_INPUT: line is an input 58 * @GPIO_V2_LINE_FLAG_OUTPUT: line is an output 59 * @GPIO_V2_LINE_FLAG_EDGE_RISING: line detects rising (inactive to active) 61 * @GPIO_V2_LINE_FLAG_EDGE_FALLING: line detects falling (active to 63 * @GPIO_V2_LINE_FLAG_OPEN_DRAIN: line is an open drain output 64 * @GPIO_V2_LINE_FLAG_OPEN_SOURCE: line is an open source output 65 * @GPIO_V2_LINE_FLAG_BIAS_PULL_UP: line has pull-up bias enabled [all …]
|
/Linux-v5.15/drivers/media/platform/qcom/camss/ |
D | camss-vfe-gen1.c | 36 static int vfe_disable_output(struct vfe_line *line) in vfe_disable_output() argument 38 struct vfe_device *vfe = to_vfe(line); in vfe_disable_output() 39 struct vfe_output *output = &line->output; in vfe_disable_output() 58 ops->reg_update(vfe, line->id); in vfe_disable_output() 68 if (line->id != VFE_LINE_PIX) { in vfe_disable_output() 70 vfe->ops_gen1->bus_disconnect_wm_from_rdi(vfe, output->wm_idx[0], line->id); in vfe_disable_output() 71 vfe->ops_gen1->enable_irq_wm_line(vfe, output->wm_idx[0], line->id, 0); in vfe_disable_output() 80 vfe->ops_gen1->enable_irq_pix_line(vfe, 0, line->id, 0); in vfe_disable_output() 82 vfe->ops_gen1->set_realign_cfg(vfe, line, 0); in vfe_disable_output() 95 * vfe_gen1_disable - Disable streaming on VFE line [all …]
|
D | camss-vfe.c | 167 static u32 vfe_src_pad_code(struct vfe_line *line, u32 sink_code, in vfe_src_pad_code() argument 170 struct vfe_device *vfe = to_vfe(line); in vfe_src_pad_code() 309 struct vfe_output *output = &vfe->line[i].output; in vfe_init_outputs() 390 int vfe_put_output(struct vfe_line *line) in vfe_put_output() argument 392 struct vfe_device *vfe = to_vfe(line); in vfe_put_output() 393 struct vfe_output *output = &line->output; in vfe_put_output() 443 ret = camss_get_pixel_clock(&vfe->line[i].subdev.entity, in vfe_set_clock_rates() 465 struct vfe_line *l = &vfe->line[j]; in vfe_set_clock_rates() 526 ret = camss_get_pixel_clock(&vfe->line[i].subdev.entity, in vfe_check_clock_rates() 547 struct vfe_line *l = &vfe->line[j]; in vfe_check_clock_rates() [all …]
|
/Linux-v5.15/tools/testing/selftests/rcutorture/bin/ |
D | kvm-transform.sh | 14 # single line. It also assumes no whitespace in filenames. 71 line = ""; 75 if (line == "") 76 line = $i; 78 line = line " " $i; 79 } else if (line == "") { 80 line = $i; 82 line = line " " $i; 86 line = line " file:" consolelog; 89 line = line " " image; [all …]
|
/Linux-v5.15/scripts/coccinelle/misc/ |
D | array_size_dup.cocci | 43 msg = "WARNING: array_size is used later (line %s) to compute the same size" % (p2[0].line) 51 msg = "WARNING: array_size is used later (line %s) to compute the same size" % (p2[0].line) 72 msg = "WARNING: array_size is already used (line %s) to compute the same size" % (p1[0].line) 80 msg = "WARNING: array_size is already used (line %s) to compute the same size" % (p1[0].line) 108 msg = "WARNING: array3_size is used later (line %s) to compute the same size" % (p2[0].line) 116 msg = "WARNING: array3_size is used later (line %s) to compute the same size" % (p2[0].line) 138 msg = "WARNING: array3_size is already used (line %s) to compute the same size" % (p1[0].line) 146 msg = "WARNING: array3_size is already used (line %s) to compute the same size" % (p1[0].line) 172 msg = "WARNING: struct_size is used later (line %s) to compute the same size" % (p2[0].line) 180 msg = "WARNING: struct_size is used later (line %s) to compute the same size" % (p2[0].line) [all …]
|
/Linux-v5.15/arch/arm64/boot/dts/hisilicon/ |
D | hi3670-hikey970.dts | 75 * Legend: proper name = the GPIO line is used as GPIO 84 * Line names are taken from "hikey970-schematics.pdf" from HiSilicon. 90 * When the 96Board naming of a line and the schematic name of 91 * the same line are in conflict, the 96Board specification 100 gpio-line-names = 113 gpio-line-names = 126 gpio-line-names = 139 gpio-line-names = 152 gpio-line-names = 170 gpio-line-names = [all …]
|
/Linux-v5.15/tools/perf/pmu-events/arch/s390/cf_z13/ |
D | extended.json | 7 …e the line was originally in a Read-Only state in the cache but has been updated to be in the Excl… 42 …ectory write to the Level-1 Data cache directory where the returned cache line was sourced from th… 63 …write to the Level-1 Instruction cache directory where the returned cache line was sourced from th… 112 …ectory write to the Level-1 Data cache directory where the returned cache line was sourced from an… 119 …ectory write to the Level-1 Data cache directory where the returned cache line was sourced from an… 126 …ectory write to the Level-1 Data cache directory where the returned cache line was sourced from an… 133 …ectory write to the Level-1 Data cache directory where the returned cache line was sourced from an… 140 …ectory write to the Level-1 Data cache directory where the returned cache line was sourced from an… 147 …ectory write to the Level-1 Data cache directory where the returned cache line was sourced from an… 154 …ectory write to the Level-1 Data cache directory where the returned cache line was sourced from an… [all …]
|
/Linux-v5.15/Documentation/userspace-api/media/v4l/ |
D | dev-sliced-vbi.rst | 18 packets of fixed size, covering one scan line each. The number of 63 services it can identify on a given line are limited. For example on PAL 64 line 16 the hardware may be able to look for a VPS or Teletext signal, 81 hardware must be told which VBI service to expect on each scan line. Not 84 other services can only be inserted in one specific line). In many 131 fields [#f1]_ to ``V4L2_SLICED_TELETEXT_B`` and line 23 of the first 145 driver shall look for or insert on the respective scan line. 148 When the hardware cannot handle multiple services on the same line 153 map to ITU-R line numbers\ [#f2]_ as follows: 157 - 525 line systems [all …]
|