Home
last modified time | relevance | path

Searched +full:d +full:- (Results 1 – 25 of 1180) sorted by relevance

12345678910>>...48

/Linux-v5.15/drivers/gpu/drm/amd/display/dc/calcs/
Dcalcs_logger.h28 #define DC_LOGGER ctx->logger
36 DC_LOG_BANDWIDTH_CALCS(" [enum] bw_calcs_version version %d", dceip->version); in print_bw_calcs_dceip()
37 DC_LOG_BANDWIDTH_CALCS(" [bool] large_cursor: %d", dceip->large_cursor); in print_bw_calcs_dceip()
38 …DC_LOG_BANDWIDTH_CALCS(" [bool] dmif_pipe_en_fbc_chunk_tracker: %d", dceip->dmif_pipe_en_fbc_chunk… in print_bw_calcs_dceip()
39 …DC_LOG_BANDWIDTH_CALCS(" [bool] display_write_back_supported: %d", dceip->display_write_back_suppo… in print_bw_calcs_dceip()
40 DC_LOG_BANDWIDTH_CALCS(" [bool] argb_compression_support: %d", dceip->argb_compression_support); in print_bw_calcs_dceip()
41 DC_LOG_BANDWIDTH_CALCS(" [bool] pre_downscaler_enabled: %d", dceip->pre_downscaler_enabled); in print_bw_calcs_dceip()
42 DC_LOG_BANDWIDTH_CALCS(" [bool] underlay_downscale_prefetch_enabled: %d", in print_bw_calcs_dceip()
43 dceip->underlay_downscale_prefetch_enabled); in print_bw_calcs_dceip()
44 DC_LOG_BANDWIDTH_CALCS(" [bool] graphics_lb_nodownscaling_multi_line_prefetching: %d", in print_bw_calcs_dceip()
[all …]
/Linux-v5.15/drivers/usb/gadget/udc/aspeed-vhub/
Ddev.c1 // SPDX-License-Identifier: GPL-2.0+
3 * aspeed-vhub -- Driver for Aspeed SoC "vHub" USB gadget
5 * dev.c - Individual device/gadget management (ie, a port = a gadget)
26 #include <linux/dma-mapping.h>
32 void ast_vhub_dev_irq(struct ast_vhub_dev *d) in ast_vhub_dev_irq() argument
34 u32 istat = readl(d->regs + AST_VHUB_DEV_ISR); in ast_vhub_dev_irq()
36 writel(istat, d->regs + AST_VHUB_DEV_ISR); in ast_vhub_dev_irq()
39 ast_vhub_ep0_handle_ack(&d->ep0, true); in ast_vhub_dev_irq()
41 ast_vhub_ep0_handle_ack(&d->ep0, false); in ast_vhub_dev_irq()
43 ast_vhub_ep0_handle_setup(&d->ep0); in ast_vhub_dev_irq()
[all …]
/Linux-v5.15/drivers/media/usb/dvb-usb-v2/
Ddvb_usb_core.c1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Copyright (C) 2004-6 Patrick Boettcher <patrick.boettcher@posteo.de>
10 #include <media/media-device.h>
22 static int dvb_usbv2_download_firmware(struct dvb_usb_device *d, in dvb_usbv2_download_firmware() argument
27 dev_dbg(&d->udev->dev, "%s:\n", __func__); in dvb_usbv2_download_firmware()
29 if (!d->props->download_firmware) { in dvb_usbv2_download_firmware()
30 ret = -EINVAL; in dvb_usbv2_download_firmware()
34 ret = request_firmware(&fw, name, &d->udev->dev); in dvb_usbv2_download_firmware()
36 dev_err(&d->udev->dev, in dvb_usbv2_download_firmware()
37 …"%s: Did not find the firmware file '%s' (status %d). You can use <kernel_dir>/scripts/get_dvb_fir… in dvb_usbv2_download_firmware()
[all …]
/Linux-v5.15/
DCREDITS1 This is at least a partial credits-file of people that have
4 scripts. The fields are: name (N), email (E), web-address
5 (W), PGP key ID and fingerprint (P), description (D), and
6 snail-mail address (S).
10 ----------
14 D: SLOB slab allocator
18 D: Alpha systems hacking, IPv6 and other network related stuff
19 D: One of assisting postmasters for vger.kernel.org's lists
25 D: Samsung pin controller driver
30 D: /proc/sysvipc
[all …]
/Linux-v5.15/scripts/dtc/
Ddata.c1 // SPDX-License-Identifier: GPL-2.0-or-later
8 void data_free(struct data d) in data_free() argument
12 m = d.markers; in data_free()
14 nm = m->next; in data_free()
15 free(m->ref); in data_free()
20 if (d.val) in data_free()
21 free(d.val); in data_free()
24 struct data data_grow_for(struct data d, unsigned int xlen) in data_grow_for() argument
30 return d; in data_grow_for()
32 nd = d; in data_grow_for()
[all …]
/Linux-v5.15/drivers/mtd/
Dmtdswap.c1 // SPDX-License-Identifier: GPL-2.0-only
11 * support and lock-less operation written by Adrian Hunter.
59 #define BLOCK_ERROR (UINT_MAX - 1)
60 #define BLOCK_MAX (UINT_MAX - 2)
80 rb)->erase_count)
82 rb)->erase_count)
153 * page from the current block and is then pre-empted by the GC
160 #define TREE_ROOT(d, name) (&d->trees[MTDSWAP_ ## name].root) argument
161 #define TREE_EMPTY(d, name) (TREE_ROOT(d, name)->rb_node == NULL) argument
162 #define TREE_NONEMPTY(d, name) (!TREE_EMPTY(d, name)) argument
[all …]
/Linux-v5.15/drivers/block/aoe/
Daoedev.c8 #include <linux/blk-mq.h>
18 static void freetgt(struct aoedev *d, struct aoetgt *t);
19 static void skbpoolfree(struct aoedev *d);
29 * - partitions,
30 * - slots per shelf,
31 * - or shelves,
52 error = -1; in minor_get_dyn()
72 pr_err("aoe: %s %d slots per shelf\n", in minor_get_static()
75 error = -1; in minor_get_static()
81 pr_err("aoe: %s with e%ld.%d\n", in minor_get_static()
[all …]
Daoeblk.c9 #include <linux/blk-mq.h>
10 #include <linux/backing-dev.h>
38 struct aoedev *d = disk->private_data; in aoedisk_show_state() local
42 (d->flags & DEVFL_UP) ? "up" : "down", in aoedisk_show_state()
43 (d->flags & DEVFL_KICKME) ? ",kickme" : in aoedisk_show_state()
44 (d->nopen && !(d->flags & DEVFL_UP)) ? ",closewait" : ""); in aoedisk_show_state()
45 /* I'd rather see nopen exported so we can ditch closewait */ in aoedisk_show_state()
51 struct aoedev *d = disk->private_data; in aoedisk_show_mac() local
52 struct aoetgt *t = d->targets[0]; in aoedisk_show_mac()
56 return snprintf(page, PAGE_SIZE, "%pm\n", t->addr); in aoedisk_show_mac()
[all …]
/Linux-v5.15/drivers/media/usb/dvb-usb/
Ddvb-usb-remote.c1 // SPDX-License-Identifier: GPL-2.0
2 /* dvb-usb-remote.c is part of the DVB USB library.
4 * Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@posteo.de)
5 * see dvb-usb-init.c for copyright information.
7 …* This file contains functions for initializing the input-device and for handling remote-control-q…
9 #include "dvb-usb-common.h"
20 if (ke->flags & INPUT_KEYMAP_BY_INDEX) { in legacy_dvb_usb_get_keymap_index()
21 index = ke->index; in legacy_dvb_usb_get_keymap_index()
48 struct dvb_usb_device *d = input_get_drvdata(dev); in legacy_dvb_usb_getkeycode() local
49 struct rc_map_table *keymap = d->props.rc.legacy.rc_map_table; in legacy_dvb_usb_getkeycode()
[all …]
Ddvb-usb-init.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * DVB USB library - provides a generic interface for a DVB USB device driver.
5 * dvb-usb-init.c
7 * Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@posteo.de)
9 * see Documentation/driver-api/media/drivers/dvb-usb.rst for more information
11 #include "dvb-usb-common.h"
16 …ng level (1=info,xfer=2,pll=4,ts=8,err=16,rc=32,fw=64,mem=128,uxfer=256 (or-able))." DVB_USB_DEBU…
24 MODULE_PARM_DESC(force_pid_filter_usage, "force all dvb-usb-devices to use a PID filter, if any (de…
26 static int dvb_usb_adapter_init(struct dvb_usb_device *d, short *adapter_nrs) in dvb_usb_adapter_init() argument
31 for (n = 0; n < d->props.num_adapters; n++) { in dvb_usb_adapter_init()
[all …]
/Linux-v5.15/tools/perf/util/
Ddlfilter.c1 // SPDX-License-Identifier: GPL-2.0
3 * dlfilter.c: Interface to perf script --dlfilter shared object
10 #include <subcmd/exec-cmd.h>
20 #include "trace-event.h"
28 struct symbol *sym = al->sym; in al_to_d_al()
30 d_al->size = sizeof(*d_al); in al_to_d_al()
31 if (al->map) { in al_to_d_al()
32 struct dso *dso = al->map->dso; in al_to_d_al()
34 if (symbol_conf.show_kernel_path && dso->long_name) in al_to_d_al()
35 d_al->dso = dso->long_name; in al_to_d_al()
[all …]
/Linux-v5.15/drivers/clk/ti/
Dadpll.c14 #include <linux/clk-provider.h>
182 static const char *ti_adpll_clk_get_name(struct ti_adpll_data *d, in ti_adpll_clk_get_name() argument
190 err = of_property_read_string_index(d->np, in ti_adpll_clk_get_name()
191 "clock-output-names", in ti_adpll_clk_get_name()
197 name = devm_kasprintf(d->dev, GFP_KERNEL, "%08lx.adpll.%s", in ti_adpll_clk_get_name()
198 d->pa, postfix); in ti_adpll_clk_get_name()
206 static int ti_adpll_setup_clock(struct ti_adpll_data *d, struct clk *clock, in ti_adpll_setup_clock() argument
214 d->clocks[index].clk = clock; in ti_adpll_setup_clock()
215 d->clocks[index].unregister = unregister; in ti_adpll_setup_clock()
221 dev_warn(d->dev, "clock %s con_id lookup may fail\n", in ti_adpll_setup_clock()
[all …]
/Linux-v5.15/arch/arm64/crypto/
Dsha3-ce-core.S1 /* SPDX-License-Identifier: GPL-2.0 */
3 * sha3-ce-core.S - core SHA-3 transform using v8.2 Crypto Extensions
16 .set .Lv\b\().2d, \b
46 ld1 { v0.1d- v3.1d}, [x0]
47 ld1 { v4.1d- v7.1d}, [x8], #32
48 ld1 { v8.1d-v11.1d}, [x8], #32
49 ld1 {v12.1d-v15.1d}, [x8], #32
50 ld1 {v16.1d-v19.1d}, [x8], #32
51 ld1 {v20.1d-v23.1d}, [x8], #32
52 ld1 {v24.1d}, [x8]
[all …]
/Linux-v5.15/drivers/base/regmap/
Dregmap-irq.c1 // SPDX-License-Identifier: GPL-2.0
52 const struct regmap_irq_chip *chip = data->chip; in sub_irq_reg()
53 struct regmap *map = data->map; in sub_irq_reg()
58 if (!chip->sub_reg_offsets || !chip->not_fixed_stride) { in sub_irq_reg()
60 reg = base_reg + (i * map->reg_stride * data->irq_reg_stride); in sub_irq_reg()
62 subreg = &chip->sub_reg_offsets[i]; in sub_irq_reg()
63 offset = subreg->offset[0]; in sub_irq_reg()
74 return &data->chip->irqs[irq]; in irq_to_regmap_irq()
79 struct regmap_irq_chip_data *d = irq_data_get_irq_chip_data(data); in regmap_irq_lock() local
81 mutex_lock(&d->lock); in regmap_irq_lock()
[all …]
/Linux-v5.15/drivers/gpu/drm/mcde/
Dmcde_dsi.c1 // SPDX-License-Identifier: GPL-2.0+
69 struct mcde_dsi *d; in mcde_dsi_irq() local
73 d = host_to_mcde_dsi(mdsi->host); in mcde_dsi_irq()
75 dev_dbg(d->dev, "%s called\n", __func__); in mcde_dsi_irq()
77 val = readl(d->regs + DSI_DIRECT_CMD_STS_FLAG); in mcde_dsi_irq()
79 dev_dbg(d->dev, "DSI_DIRECT_CMD_STS_FLAG = %08x\n", val); in mcde_dsi_irq()
81 dev_dbg(d->dev, "direct command write completed\n"); in mcde_dsi_irq()
84 dev_dbg(d->dev, "direct command TE received\n"); in mcde_dsi_irq()
87 dev_err(d->dev, "direct command ACK ERR received\n"); in mcde_dsi_irq()
89 dev_err(d->dev, "direct command read ERR received\n"); in mcde_dsi_irq()
[all …]
/Linux-v5.15/net/bluetooth/rfcomm/
Dcore.c42 static int channel_mtu = -1;
56 static int rfcomm_queue_disc(struct rfcomm_dlc *d);
58 static int rfcomm_send_pn(struct rfcomm_session *s, int cr, struct rfcomm_dlc *d);
73 /* ---- RFCOMM frame parsing macros ---- */
81 #define __session_dir(s) ((s)->initiator ? 0x00 : 0x01)
109 /* ---- RFCOMM FCS computation ---- */
111 /* reversed, 8-bit, poly=0x07 */
160 return 0xff - __crc(data); in __fcs()
166 return 0xff - rfcomm_crc_table[__crc(data) ^ data[2]]; in __fcs2()
180 /* ---- L2CAP callbacks ---- */
[all …]
/Linux-v5.15/drivers/sh/intc/
Dcore.c5 * Copyright (C) 2009 - 2012 Paul Mundt
12 * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
33 #include <linux/radix-tree.h>
44 * - this needs to be at least 2 for 5-bit priorities on 7780
46 static unsigned int default_prio_level = 2; /* 2 - 16 */
74 struct intc_desc_int *d, in intc_register_irq() argument
84 radix_tree_insert(&d->tree, enum_id, intc_irq_xlate_get(irq)); in intc_register_irq()
95 data[0] = intc_get_mask_handle(desc, d, enum_id, 0); in intc_register_irq()
96 data[1] = intc_get_prio_handle(desc, d, enum_id, 0); in intc_register_irq()
103 pr_warn("missing unique irq mask for irq %d (vect 0x%04x)\n", in intc_register_irq()
[all …]
/Linux-v5.15/tools/lib/bpf/
Dbtf_dump.c1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
4 * BTF-to-C type converter.
25 static const size_t PREFIX_CNT = sizeof(PREFIXES) - 1;
29 return lvl >= PREFIX_CNT ? PREFIXES : &PREFIXES[PREFIX_CNT - lvl]; in pfx()
44 /* per-type auxiliary state */
52 /* whether unique non-duplicate name was already assigned */
88 /* per-type auxiliary state */
91 /* per-type optional cached unique name, must be freed, if present */
95 /* topo-sorted list of dependent type definitions */
131 static const char *btf_name_of(const struct btf_dump *d, __u32 name_off) in btf_name_of() argument
[all …]
/Linux-v5.15/drivers/dma/lgm/
Dlgm-dma.c1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (c) 2016 - 2020 Intel Corporation.
10 #include <linux/dma-mapping.h>
23 #include "../virt-dma.h"
25 #define DRIVER_NAME "lgm-dma"
68 #define DMA_MAX_CLASS (SZ_32 - 1)
142 #define DMA_ORRC_MAX_CNT (SZ_32 - 1)
149 #define DMA_MAX_DESC_NUM (SZ_8K - 1)
150 #define DMA_CHAN_BOFF_MAX (SZ_256 - 1)
154 #define DMA_HDR_LEN_MAX (SZ_16K - 1)
[all …]
/Linux-v5.15/lib/
Dsha1.c1 // SPDX-License-Identifier: GPL-2.0
24 * suggested by Artur Skawina - that will also make gcc unable to
45 /* This "rolls" over the 512-bit array */
50 * the input data, the next mix it from the 512-bit array.
55 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument
60 #define T_0_15(t, A, B, C, D, E) SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
61 #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
62 #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E ) argument
63 #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D,… argument
64 #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0xca62c1d6, A, B, C, D, E ) argument
[all …]
/Linux-v5.15/drivers/gpu/drm/amd/display/dc/core/
Ddc_debug.c43 if (dc->debug.surface_trace) \
48 if (dc->debug.timing_trace) \
53 if (dc->debug.clock_trace) \
63 DC_LOGGER_INIT(dc->ctx->logger); in pre_surface_trace()
68 SURFACE_TRACE("Planes %d:\n", i); in pre_surface_trace()
71 "plane_state->visible = %d;\n" in pre_surface_trace()
72 "plane_state->flip_immediate = %d;\n" in pre_surface_trace()
73 "plane_state->address.type = %d;\n" in pre_surface_trace()
74 "plane_state->address.grph.addr.quad_part = 0x%llX;\n" in pre_surface_trace()
75 "plane_state->address.grph.meta_addr.quad_part = 0x%llX;\n" in pre_surface_trace()
[all …]
/Linux-v5.15/drivers/thermal/intel/int340x_thermal/
Dint3406_thermal.c1 // SPDX-License-Identifier: GPL-2.0-only
37 #define ACPI_TO_RAW(v, d) (d->raw_bd->props.max_brightness * v / 100) argument
38 #define RAW_TO_ACPI(v, d) (v * 100 / d->raw_bd->props.max_brightness) argument
44 struct int3406_thermal_data *d = cooling_dev->devdata; in int3406_thermal_get_max_state() local
46 *state = d->upper_limit - d->lower_limit; in int3406_thermal_get_max_state()
54 struct int3406_thermal_data *d = cooling_dev->devdata; in int3406_thermal_set_cur_state() local
57 if (state > d->upper_limit - d->lower_limit) in int3406_thermal_set_cur_state()
58 return -EINVAL; in int3406_thermal_set_cur_state()
60 acpi_level = d->br->levels[d->upper_limit - state]; in int3406_thermal_set_cur_state()
62 raw_level = ACPI_TO_RAW(acpi_level, d); in int3406_thermal_set_cur_state()
[all …]
/Linux-v5.15/net/core/
Dgen_stats.c1 // SPDX-License-Identifier: GPL-2.0-or-later
24 gnet_stats_copy(struct gnet_dump *d, int type, void *buf, int size, int padattr) in gnet_stats_copy() argument
26 if (nla_put_64bit(d->skb, type, size, buf, padattr)) in gnet_stats_copy()
31 if (d->lock) in gnet_stats_copy()
32 spin_unlock_bh(d->lock); in gnet_stats_copy()
33 kfree(d->xstats); in gnet_stats_copy()
34 d->xstats = NULL; in gnet_stats_copy()
35 d->xstats_len = 0; in gnet_stats_copy()
36 return -1; in gnet_stats_copy()
40 * gnet_stats_start_copy_compat - start dumping procedure in compatibility mode
[all …]
/Linux-v5.15/net/bridge/
Dbr_sysfs_br.c1 // SPDX-License-Identifier: GPL-2.0-or-later
31 static ssize_t store_bridge_parm(struct device *d, in store_bridge_parm() argument
36 struct net_bridge *br = to_bridge(d); in store_bridge_parm()
42 if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN)) in store_bridge_parm()
43 return -EPERM; in store_bridge_parm()
47 return -EINVAL; in store_bridge_parm()
54 netdev_state_change(br->dev); in store_bridge_parm()
67 static ssize_t forward_delay_show(struct device *d, in forward_delay_show() argument
70 struct net_bridge *br = to_bridge(d); in forward_delay_show()
71 return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->forward_delay)); in forward_delay_show()
[all …]
/Linux-v5.15/Documentation/userspace-api/media/
Dtypical_media_device.svg1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later -->
3-path="url(#a)" fill-rule="evenodd" stroke-linejoin="round" stroke-width="28.222" preserveAspectRa…
4d="m1505.5 13443c-293 0-585 292-585 585v2340c0 293 292 586 585 586h3275c293 0 586-293 586-586v-234…
5 fill="#000000" font-family="Serif, serif" font-size="493.88px">Audio decoder</tspan></tspan></tspan…
6d="m2371.5 9608h-2260v-1270h4520v1270h-2260z" fill="#ff8080" style=""/><path id="path39" d="m2371.…
7d="m2363.5 8053h-2269v-1224h4537v1224h-2268z" fill="#ff8080" style=""/><path id="path53" d="m2363.…
8d="m13622 10386h-3810v-1281h7620v1281h-3810z" fill="#cfc" style=""/><path id="path67" d="m13622 10…
9d="m12080 12182h-2268v-1412h4536v1412h-2268z" fill="#cfe7f5" style=""/><path id="path81" d="m12080…
10d="m3050.5 15498h-1563v-1715h3126v1715h-1563z" fill="#fc9" style=""/><path id="path95" d="m3050.5 …
[all …]

12345678910>>...48