Home
last modified time | relevance | path

Searched refs:de (Results 1 – 25 of 68) sorted by relevance

123

/drivers/net/ethernet/dec/tulip/
A Dde2104x.c373 netif_dbg(de, rx_err, de->dev, in de_rx_err_acct()
380 netif_warn(de, rx_err, de->dev, in de_rx_err_acct()
432 netif_dbg(de, rx_status, de->dev, in de_rx()
506 de->rx_tail, de->tx_head, de->tx_tail); in de_interrupt()
571 netif_dbg(de, tx_err, de->dev, in de_tx()
586 netif_dbg(de, tx_done, de->dev, in de_tx()
895 de->tx_head = de->tx_tail = 0; in de_stop_hw()
1316 de->tx_head = de->tx_tail = 0; in de_init_rings()
1345 de->rx_skb[i].mapping, de->rx_buf_sz, in de_clean_rings()
1453 de->rx_tail, de->tx_head, de->tx_tail); in de_tx_timeout()
[all …]
/drivers/gpu/drm/imx/dc/
A Ddc-de.c57 struct dc_de *de; in dc_de_bind() local
60 de = devm_kzalloc(dev, sizeof(*de), GFP_KERNEL); in dc_de_bind()
61 if (!de) in dc_de_bind()
70 if (IS_ERR(de->reg_top)) in dc_de_bind()
85 de->dev = dev; in dc_de_bind()
99 dc_drm->de[id] = de; in dc_de_bind()
112 struct dc_de *de; in dc_de_post_bind() local
116 de = dc_drm->de[i]; in dc_de_post_bind()
151 dc_dec_init(de); in dc_de_runtime_resume()
152 dc_fg_init(de->fg); in dc_de_runtime_resume()
[all …]
A Ddc-crtc.c242 ret = pm_runtime_resume_and_get(dc_crtc->de->dev); in dc_crtc_atomic_enable()
322 ret = pm_runtime_put(dc_crtc->de->dev); in dc_crtc_atomic_disable()
461 dc_crtc->de->dev, in dc_crtc_request_irqs()
465 dc_crtc->de->dev, in dc_crtc_request_irqs()
469 dc_crtc->de->dev, in dc_crtc_request_irqs()
507 struct dc_de *de = dc_drm->de[crtc_index]; in dc_crtc_init() local
512 dc_crtc->de = de; in dc_crtc_init()
523 dc_crtc->fg = de->fg; in dc_crtc_init()
526 dc_crtc->irq_dec_seqcomplete = de->irq_seqcomplete; in dc_crtc_init()
527 dc_crtc->irq_dec_shdload = de->irq_shdload; in dc_crtc_init()
[all …]
A Ddc-kms.h42 struct dc_de *de; member
A DMakefile3 imx8-dc-drm-objs := dc-cf.o dc-crtc.o dc-de.o dc-drv.o dc-ed.o dc-fg.o dc-fl.o \
/drivers/memory/
A Ddfl-emif.c80 void __iomem *base = de->base; in emif_clear_store()
88 spin_lock(&de->lock); in emif_clear_store()
94 spin_unlock(&de->lock); in emif_clear_store()
224 struct dfl_emif *de; in dfl_emif_probe() local
226 de = devm_kzalloc(dev, sizeof(*de), GFP_KERNEL); in dfl_emif_probe()
227 if (!de) in dfl_emif_probe()
231 if (IS_ERR(de->base)) in dfl_emif_probe()
232 return PTR_ERR(de->base); in dfl_emif_probe()
234 de->dev = dev; in dfl_emif_probe()
235 spin_lock_init(&de->lock); in dfl_emif_probe()
[all …]
/drivers/net/wireless/ath/
A Ddfs_pri_detector.c376 pri_detector_reset(de, 0); in pri_detector_exit()
378 kfree(de); in pri_detector_exit()
400 de->last_ts = ts; in pri_detector_add_pulse()
405 pri_detector_reset(de, ts); in pri_detector_add_pulse()
419 struct pri_detector *de; in pri_detector_init() local
421 de = kzalloc(sizeof(*de), GFP_ATOMIC); in pri_detector_init()
422 if (de == NULL) in pri_detector_init()
429 INIT_LIST_HEAD(&de->pulses); in pri_detector_init()
431 de->max_count = rs->ppb * 2; in pri_detector_init()
432 de->rs = rs; in pri_detector_init()
[all …]
A Ddfs_pattern_detector.c188 struct pri_detector *de = cd->detectors[i]; in channel_detector_exit() local
189 if (de != NULL) in channel_detector_exit()
190 de->exit(de); in channel_detector_exit()
211 struct pri_detector *de = pri_detector_init(rs); in channel_detector_create() local
212 if (de == NULL) in channel_detector_create()
214 cd->detectors[i] = de; in channel_detector_create()
A Ddfs_pri_detector.h60 void (*exit) (struct pri_detector *de);
62 (*add_pulse)(struct pri_detector *de, struct pulse_event *e);
63 void (*reset) (struct pri_detector *de, u64 ts);
/drivers/gpu/drm/i915/gt/
A Dselftest_engine_pm.c263 ktime_t de, dt; in live_engine_busy_stats() local
281 de = intel_engine_get_busy_time(engine, &t[0]); in live_engine_busy_stats()
283 de = ktime_sub(intel_engine_get_busy_time(engine, &t[1]), de); in live_engine_busy_stats()
286 if (de < 0 || de > 10) { in live_engine_busy_stats()
289 de, (int)div64_u64(100 * de, dt), dt); in live_engine_busy_stats()
320 de = intel_engine_get_busy_time(engine, &t[0]); in live_engine_busy_stats()
322 de = ktime_sub(intel_engine_get_busy_time(engine, &t[1]), de); in live_engine_busy_stats()
325 if (100 * de < 95 * dt || 95 * de > 100 * dt) { in live_engine_busy_stats()
328 de, (int)div64_u64(100 * de, dt), dt); in live_engine_busy_stats()
/drivers/gpu/host1x/
A Ddebug.c172 struct dentry *de = debugfs_create_dir("tegra-host1x", NULL); in host1x_debugfs_init() local
175 host1x->debugfs = de; in host1x_debugfs_init()
177 debugfs_create_file("status", S_IRUGO, de, host1x, &host1x_debug_fops); in host1x_debugfs_init()
178 debugfs_create_file("status_all", S_IRUGO, de, host1x, in host1x_debugfs_init()
181 debugfs_create_u32("trace_cmdbuf", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
184 host1x_hw_debug_init(host1x, de); in host1x_debugfs_init()
186 debugfs_create_u32("force_timeout_pid", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
188 debugfs_create_u32("force_timeout_val", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
190 debugfs_create_u32("force_timeout_channel", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
A Ddev.h55 void (*debug_init)(struct dentry *de);
332 static inline void host1x_hw_debug_init(struct host1x *host, struct dentry *de) in host1x_hw_debug_init() argument
335 host->debug_op->debug_init(de); in host1x_hw_debug_init()
/drivers/staging/media/atomisp/pci/isp/kernels/de/de_1.0/
A Dia_css_de.host.c38 const struct sh_css_isp_de_params *de, in ia_css_de_dump() argument
41 if (!de) in ia_css_de_dump()
45 "de_pixelnoise", de->pixelnoise); in ia_css_de_dump()
48 de->c1_coring_threshold); in ia_css_de_dump()
51 de->c2_coring_threshold); in ia_css_de_dump()
A Dia_css_de.host.h23 const struct sh_css_isp_de_params *de,
/drivers/md/
A Ddm-snap-persistent.c412 struct disk_exception *de = get_exception(ps, ps_area, index); in read_exception() local
415 result->old_chunk = le64_to_cpu(de->old_chunk); in read_exception()
416 result->new_chunk = le64_to_cpu(de->new_chunk); in read_exception()
422 struct disk_exception *de = get_exception(ps, ps->area, index); in write_exception() local
425 de->old_chunk = cpu_to_le64(e->old_chunk); in write_exception()
426 de->new_chunk = cpu_to_le64(e->new_chunk); in write_exception()
431 struct disk_exception *de = get_exception(ps, ps->area, index); in clear_exception() local
434 de->old_chunk = 0; in clear_exception()
435 de->new_chunk = 0; in clear_exception()
A Ddm-cache-policy-smq.c475 struct entry *de; in q_requeue() local
481 for (de = l_head(q->es, q->qs + new_level); de && de->sentinel; de = l_next(q->es, de)) in q_requeue()
484 if (de) { in q_requeue()
485 q_del(q, de); in q_requeue()
486 de->level = e->level; in q_requeue()
490 q_push_before(q, s1, de); in q_requeue()
494 q_push_before(q, s2, de); in q_requeue()
498 q_push(q, de); in q_requeue()
501 q_push(q, de); in q_requeue()
/drivers/net/ethernet/socionext/
A Dnetsec.c626 de->buf_len_info = desc->len; in netsec_set_rx_de()
627 de->attr = attr; in netsec_set_rx_de()
795 struct netsec_de *de; in netsec_set_tx_de() local
798 de = dring->vaddr + (DESC_SZ * idx); in netsec_set_tx_de()
814 de->attr = attr; in netsec_set_tx_de()
979 if (de->attr & (1U << NETSEC_RX_PKT_OWN_FIELD)) { in netsec_process_rx()
992 pkt_len = de->buf_len_info >> 16; in netsec_process_rx()
1007 (de->attr >> NETSEC_RX_PKT_CO_FIELD) & 3; in netsec_process_rx()
1283 struct netsec_de *de; in netsec_setup_tx_dring() local
1285 de = dring->vaddr + (DESC_SZ * i); in netsec_setup_tx_dring()
[all …]
/drivers/clk/sunxi-ng/
A DMakefile51 obj-$(CONFIG_SUN9I_A80_CCU) += sun9i-a80-de-ccu.o
78 sun9i-a80-de-ccu-y += ccu-sun9i-a80-de.o
/drivers/ipack/devices/
A Dscc2698.h62 u8 de, ctg; /* Start counter timer of block */ member
80 u8 de, r2; /* reserved */ member
/drivers/net/can/sja1000/
A DKconfig15 (http://www.ems-wuensche.de).
22 EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de).
101 boards from Phytec (http://www.phytec.de) like the PCM027,
/drivers/net/ethernet/intel/ice/
A Dice_dpll.c2683 struct ice_dpll *de = &pf->dplls.eec; in ice_dpll_periodic_work() local
2692 ret = ice_dpll_update_state(pf, de, false); in ice_dpll_periodic_work()
2710 ice_dpll_notify_changes(de); in ice_dpll_periodic_work()
3112 struct ice_dpll *de = &d->eec; in ice_dpll_deinit_pins() local
3408 &de->input_prio[i]); in ice_dpll_init_info_pins_generic()
3473 &de->input_prio[i]); in ice_dpll_init_info_direct_pins()
3670 struct ice_dpll *de = &pf->dplls.eec; in ice_dpll_init_info() local
3685 de->dpll_idx = abilities.eec_dpll_idx; in ice_dpll_init_info()
3701 if (!de->input_prio) in ice_dpll_init_info()
3737 de->mode = DPLL_MODE_AUTOMATIC; in ice_dpll_init_info()
[all …]
/drivers/staging/media/atomisp/pci/
A Dia_css_isp_states.c117 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.de.size; in ia_css_initialize_de_state()
119 unsigned int offset = binary->info->mem_offsets.offsets.state->vmem.de.offset; in ia_css_initialize_de_state()
A Dia_css_isp_states.h45 struct ia_css_isp_parameter de; member
/drivers/media/radio/si470x/
A Dradio-si470x-common.c119 static unsigned short de = 1; variable
120 module_param(de, ushort, 0444);
121 MODULE_PARM_DESC(de, "De-emphasis: 0=75us *1=50us*");
383 if (de) in si470x_start()
/drivers/gpu/drm/msm/disp/dpu1/
A Ddpu_hw_util.h154 struct dpu_hw_scaler3_de_cfg de; member
311 struct dpu_drm_de_v1 de; member

Completed in 65 milliseconds

123