Home
last modified time | relevance | path

Searched refs:df (Results 1 – 25 of 122) sorted by relevance

12345

/linux/drivers/gpu/drm/msm/
H A Dmsm_gpu_devfreq.c23 struct msm_gpu_devfreq *df = &gpu->devfreq; in msm_devfreq_target() local
40 if (df->idle_freq) { in msm_devfreq_target()
41 df->idle_freq = *freq; in msm_devfreq_target()
47 mutex_lock(&df->lock); in msm_devfreq_target()
48 gpu->funcs->gpu_set_freq(gpu, opp, df->suspended); in msm_devfreq_target()
49 mutex_unlock(&df->lock); in msm_devfreq_target()
61 struct msm_gpu_devfreq *df = &gpu->devfreq; in get_freq() local
68 if (df->idle_freq) in get_freq()
69 return df->idle_freq; in get_freq()
81 struct msm_gpu_devfreq *df = &gpu->devfreq; in msm_devfreq_get_dev_status() local
[all …]
/linux/drivers/vfio/
H A Ddevice_cdev.c27 struct vfio_device_file *df; in vfio_device_fops_cdev_open() local
34 df = vfio_allocate_device_file(device); in vfio_device_fops_cdev_open()
35 if (IS_ERR(df)) { in vfio_device_fops_cdev_open()
36 ret = PTR_ERR(df); in vfio_device_fops_cdev_open()
40 filep->private_data = df; in vfio_device_fops_cdev_open()
56 static void vfio_df_get_kvm_safe(struct vfio_device_file *df) in vfio_df_get_kvm_safe() argument
58 spin_lock(&df->kvm_ref_lock); in vfio_df_get_kvm_safe()
59 vfio_device_get_kvm_safe(df->device, df->kvm); in vfio_df_get_kvm_safe()
60 spin_unlock(&df->kvm_ref_lock); in vfio_df_get_kvm_safe()
83 long vfio_df_ioctl_bind_iommufd(struct vfio_device_file *df, in vfio_df_ioctl_bind_iommufd() argument
[all …]
H A Dvfio_main.c496 struct vfio_device_file *df; in vfio_allocate_device_file() local
498 df = kzalloc_obj(*df, GFP_KERNEL_ACCOUNT); in vfio_allocate_device_file()
499 if (!df) in vfio_allocate_device_file()
502 df->device = device; in vfio_allocate_device_file()
503 spin_lock_init(&df->kvm_ref_lock); in vfio_allocate_device_file()
505 return df; in vfio_allocate_device_file()
508 static int vfio_df_device_first_open(struct vfio_device_file *df) in vfio_df_device_first_open() argument
510 struct vfio_device *device = df->device; in vfio_df_device_first_open()
511 struct iommufd_ctx *iommufd = df->iommufd; in vfio_df_device_first_open()
520 ret = vfio_df_iommufd_bind(df); in vfio_df_device_first_open()
[all …]
H A Dvfio.h32 int vfio_df_open(struct vfio_device_file *df);
33 void vfio_df_close(struct vfio_device_file *df);
108 void vfio_df_group_close(struct vfio_device_file *df);
160 static inline void vfio_df_group_close(struct vfio_device_file *df) in vfio_df_group_close() argument
323 int vfio_df_iommufd_bind(struct vfio_device_file *df);
324 void vfio_df_iommufd_unbind(struct vfio_device_file *df);
340 static inline void vfio_df_iommufd_unbind(struct vfio_device_file *df) in vfio_df_iommufd_unbind() argument
352 int vfio_df_ioctl_attach_pt(struct vfio_device_file *df,
354 int vfio_df_ioctl_detach_pt(struct vfio_device_file *df,
378 long vfio_df_ioctl_bind_iommufd(struct vfio_device_file *df,
[all …]
H A Dgroup.c165 static int vfio_df_group_open(struct vfio_device_file *df) in vfio_df_group_open() argument
167 struct vfio_device *device = df->device; in vfio_df_group_open()
187 df->iommufd = device->group->iommufd; in vfio_df_group_open()
188 if (df->iommufd && vfio_device_is_noiommu(device) && device->open_count == 0) { in vfio_df_group_open()
195 vfio_iommufd_device_has_compat_ioas(device, df->iommufd)) { in vfio_df_group_open()
201 ret = vfio_df_open(df); in vfio_df_group_open()
205 if (df->iommufd && device->open_count == 1) { in vfio_df_group_open()
206 ret = vfio_iommufd_compat_attach_ioas(device, df->iommufd); in vfio_df_group_open()
215 smp_store_release(&df->access_granted, true); in vfio_df_group_open()
222 vfio_df_close(df); in vfio_df_group_open()
[all …]
H A Diommufd.c21 int vfio_df_iommufd_bind(struct vfio_device_file *df) in vfio_df_iommufd_bind() argument
23 struct vfio_device *vdev = df->device; in vfio_df_iommufd_bind()
24 struct iommufd_ctx *ictx = df->iommufd; in vfio_df_iommufd_bind()
32 return vdev->ops->bind_iommufd(vdev, ictx, &df->devid); in vfio_df_iommufd_bind()
55 void vfio_df_iommufd_unbind(struct vfio_device_file *df) in vfio_df_iommufd_unbind() argument
57 struct vfio_device *vdev = df->device; in vfio_df_iommufd_unbind()
/linux/arch/s390/hypfs/
H A Dhypfs_dbfs.c36 struct hypfs_dbfs_file *df; in dbfs_read() local
42 df = file_inode(file)->i_private; in dbfs_read()
43 if (mutex_lock_interruptible(&df->lock)) in dbfs_read()
46 data = hypfs_dbfs_data_alloc(df); in dbfs_read()
48 mutex_unlock(&df->lock); in dbfs_read()
51 rc = df->data_create(&data->buf, &data->buf_free_ptr, &data->size); in dbfs_read()
53 mutex_unlock(&df->lock); in dbfs_read()
57 mutex_unlock(&df->lock); in dbfs_read()
66 struct hypfs_dbfs_file *df = file_inode(file)->i_private; in dbfs_ioctl() local
69 mutex_lock(&df->lock); in dbfs_ioctl()
[all …]
/linux/scripts/gendwarfksyms/
H A Ddie.c74 struct die_fragment *df; in reset_die() local
76 list_for_each_entry_safe(df, tmp, &cd->fragments, list) { in reset_die()
77 if (df->type == FRAGMENT_STRING) in reset_die()
78 free(df->data.str); in reset_die()
79 free(df); in reset_die()
124 struct die_fragment *df; in append_item() local
126 df = xmalloc(sizeof(*df)); in append_item()
127 df->type = FRAGMENT_EMPTY; in append_item()
128 list_add_tail(&df->list, &cd->fragments); in append_item()
129 return df; in append_item()
[all …]
H A Dtypes.c361 struct die_fragment *df; in __type_expand() local
365 list_for_each_entry(df, &cache->fragments, list) { in __type_expand()
366 switch (df->type) { in __type_expand()
368 type_expansion_append(type, df->data.str, NULL); in __type_expand()
372 if (__die_map_get(df->data.addr, DIE_COMPLETE, in __type_expand()
374 __die_map_get(df->data.addr, DIE_UNEXPANDED, in __type_expand()
377 df->data.addr); in __type_expand()
391 if (list_is_last(&df->list, &cache->fragments) || in __type_expand()
392 list_next_entry(df, list)->type != in __type_expand()
/linux/drivers/devfreq/
H A Ddevfreq.c1407 struct devfreq *df = to_devfreq(dev); in name_show() local
1408 return sprintf(buf, "%s\n", dev_name(df->dev.parent)); in name_show()
1415 struct devfreq *df = to_devfreq(dev); in governor_show() local
1417 if (!df->governor) in governor_show()
1420 return sprintf(buf, "%s\n", df->governor->name); in governor_show()
1426 struct devfreq *df = to_devfreq(dev); in governor_store() local
1431 if (!df->governor) in governor_store()
1444 if (df->governor == governor) { in governor_store()
1447 } else if (IS_SUPPORTED_FLAG(df->governor->flags, IMMUTABLE) in governor_store()
1457 ret = df->governor->event_handler(df, DEVFREQ_GOV_STOP, NULL); in governor_store()
[all …]
H A Dgovernor_simpleondemand.c18 static int devfreq_simple_ondemand_func(struct devfreq *df, in devfreq_simple_ondemand_func() argument
26 struct devfreq_simple_ondemand_data *data = df->data; in devfreq_simple_ondemand_func()
28 err = devfreq_update_stats(df); in devfreq_simple_ondemand_func()
32 stat = &df->last_status; in devfreq_simple_ondemand_func()
H A Dgovernor_userspace.c23 static int devfreq_userspace_func(struct devfreq *df, unsigned long *freq) in devfreq_userspace_func() argument
25 struct userspace_data *data = df->governor_data; in devfreq_userspace_func()
30 *freq = df->previous_freq; /* No user freq specified yet */ in devfreq_userspace_func()
/linux/drivers/thermal/
H A Ddevfreq_cooling.c88 struct devfreq *df = dfc->devfreq; in devfreq_cooling_set_cur_state() local
89 struct device *dev = df->dev.parent; in devfreq_cooling_set_cur_state()
148 static unsigned long get_voltage(struct devfreq *df, unsigned long freq) in get_voltage() argument
150 struct device *dev = df->dev.parent; in get_voltage()
194 struct devfreq *df = dfc->devfreq; in devfreq_cooling_get_requested_power() local
202 mutex_lock(&df->lock); in devfreq_cooling_get_requested_power()
203 status = df->last_status; in devfreq_cooling_get_requested_power()
204 mutex_unlock(&df->lock); in devfreq_cooling_get_requested_power()
209 voltage = get_voltage(df, freq); in devfreq_cooling_get_requested_power()
215 res = dfc->power_ops->get_real_power(df, power, freq, voltage); in devfreq_cooling_get_requested_power()
[all …]
/linux/include/linux/
H A Ddevfreq_cooling.h38 int (*get_real_power)(struct devfreq *df, u32 *power,
45 of_devfreq_cooling_register_power(struct device_node *np, struct devfreq *df,
48 of_devfreq_cooling_register(struct device_node *np, struct devfreq *df);
49 struct thermal_cooling_device *devfreq_cooling_register(struct devfreq *df);
52 devfreq_cooling_em_register(struct devfreq *df,
58 of_devfreq_cooling_register_power(struct device_node *np, struct devfreq *df, in of_devfreq_cooling_register_power() argument
65 of_devfreq_cooling_register(struct device_node *np, struct devfreq *df) in of_devfreq_cooling_register() argument
71 devfreq_cooling_register(struct devfreq *df) in devfreq_cooling_register() argument
77 devfreq_cooling_em_register(struct devfreq *df, in devfreq_cooling_em_register() argument
H A Ddevfreq-governor.h95 static inline int devfreq_update_stats(struct devfreq *df) in devfreq_update_stats() argument
97 if (!df->profile->get_dev_status) in devfreq_update_stats()
100 return df->profile->get_dev_status(df->dev.parent, &df->last_status); in devfreq_update_stats()
/linux/drivers/pinctrl/pxa/
H A Dpinctrl-pxa2xx.c69 struct pxa_desc_function *df; in pxa_desc_by_func_group() local
75 for (df = pin->functions; df->name; df++) in pxa_desc_by_func_group()
76 if (!strcmp(df->name, func_name)) in pxa_desc_by_func_group()
77 return df; in pxa_desc_by_func_group()
144 struct pxa_desc_function *df; in pxa2xx_pmx_set_mux() local
150 df = pxa_desc_by_func_group(pctl, g->name, (pctl->functions + function)->name); in pxa2xx_pmx_set_mux()
151 if (!df) in pxa2xx_pmx_set_mux()
158 pin, df->muxval >> 1, df->muxval & 0x1); in pxa2xx_pmx_set_mux()
163 val = (val & ~(0x3 << shift)) | ((df->muxval >> 1) << shift); in pxa2xx_pmx_set_mux()
167 val = (val & ~BIT(pin % 32)) | ((df->muxval & 1) ? BIT(pin % 32) : 0); in pxa2xx_pmx_set_mux()
[all …]
/linux/drivers/gpu/drm/amd/amdgpu/
H A Ddf_v1_7.c34 adev->df.hash_status.hash_64k = false; in df_v1_7_sw_init()
35 adev->df.hash_status.hash_2m = false; in df_v1_7_sw_init()
36 adev->df.hash_status.hash_1g = false; in df_v1_7_sw_init()
72 fb_channel_number = adev->df.funcs->get_fb_channel_number(adev); in df_v1_7_get_hbm_channel_number()
85 adev->df.funcs->enable_broadcast_mode(adev, true); in df_v1_7_update_medium_grain_clock_gating()
100 adev->df.funcs->enable_broadcast_mode(adev, false); in df_v1_7_update_medium_grain_clock_gating()
H A Damdgpu_pmu.c236 if ((!pe->adev->df.funcs) || in amdgpu_perf_start()
237 (!pe->adev->df.funcs->pmc_start)) in amdgpu_perf_start()
247 target_cntr = pe->adev->df.funcs->pmc_start(pe->adev, in amdgpu_perf_start()
256 pe->adev->df.funcs->pmc_start(pe->adev, hwc->config, in amdgpu_perf_start()
275 if ((!pe->adev->df.funcs) || in amdgpu_perf_read()
276 (!pe->adev->df.funcs->pmc_get_count)) in amdgpu_perf_read()
284 pe->adev->df.funcs->pmc_get_count(pe->adev, in amdgpu_perf_read()
307 if ((!pe->adev->df.funcs) || in amdgpu_perf_stop()
308 (!pe->adev->df.funcs->pmc_stop)) in amdgpu_perf_stop()
314 pe->adev->df.funcs->pmc_stop(pe->adev, hwc->config, hwc->idx, in amdgpu_perf_stop()
[all …]
H A Ddf_v3_6.c218 adev->df.hash_status.hash_64k = false; in df_v3_6_query_hashes()
219 adev->df.hash_status.hash_2m = false; in df_v3_6_query_hashes()
220 adev->df.hash_status.hash_1g = false; in df_v3_6_query_hashes()
224 adev->df.funcs->get_fb_channel_number(adev) == 0xe) || in df_v3_6_query_hashes()
226 adev->df.funcs->get_fb_channel_number(adev) == 0x1e)) { in df_v3_6_query_hashes()
228 adev->df.hash_status.hash_64k = REG_GET_FIELD(tmp, in df_v3_6_query_hashes()
231 adev->df.hash_status.hash_2m = REG_GET_FIELD(tmp, in df_v3_6_query_hashes()
234 adev->df.hash_status.hash_1g = REG_GET_FIELD(tmp, in df_v3_6_query_hashes()
297 fb_channel_number = adev->df.funcs->get_fb_channel_number(adev); in df_v3_6_get_hbm_channel_number()
311 adev->df.funcs->enable_broadcast_mode(adev, true); in df_v3_6_update_medium_grain_clock_gating()
[all …]
H A Dumc_v6_7.h61 (((pa) >> 20) & 0x1ULL & adev->df.hash_status.hash_64k) ^ \
62 (((pa) >> 25) & 0x1ULL & adev->df.hash_status.hash_2m) ^ \
63 (((pa) >> 34) & 0x1ULL & adev->df.hash_status.hash_1g))
/linux/drivers/clk/rockchip/
H A Dclk.h797 df, go, gs, gf) \ argument
811 .div_flags = df, \
818 mf, do, ds, dw, df, go, gs, gf) \ argument
833 .div_flags = df, \
839 #define COMPOSITE_NOMUX(_id, cname, pname, f, mo, ds, dw, df, \ argument
851 .div_flags = df, \
858 df, dt, go, gs, gf) \ argument
869 .div_flags = df, \
895 ds, dw, df) \ argument
909 .div_flags = df, \
[all …]
/linux/tools/testing/selftests/net/
H A Dcmsg_ip.sh52 for df in 0 1; do
59 [ $ovr == "setsock" ] && m="-F $df"
60 [ $ovr == "cmsg" ] && m="-f $df"
61 [ $ovr == "both" ] && m="-F $df -f $df"
62 [ $ovr == "diff" ] && m="-F $((1 - df)) -f $df"
65 check_result $? $df "DONTFRAG $prot $ovr"
/linux/drivers/isdn/hardware/mISDN/
H A Dhfcpci.c461 struct dfifo *df; in receive_dmsg() local
464 df = &((union fifo_area *)(hc->hw.fifos))->d_chan.d_rx; in receive_dmsg()
465 while (((df->f1 & D_FREG_MASK) != (df->f2 & D_FREG_MASK)) && count--) { in receive_dmsg()
466 zp = &df->za[df->f2 & D_FREG_MASK]; in receive_dmsg()
474 df->f1, df->f2, in receive_dmsg()
480 (df->data[le16_to_cpu(zp->z1)])) { in receive_dmsg()
486 df->data[le16_to_cpu(zp->z1)]); in receive_dmsg()
490 df->f2 = ((df->f2 + 1) & MAX_D_FRAMES) | in receive_dmsg()
492 df->za[df->f2 & D_FREG_MASK].z2 = in receive_dmsg()
512 ptr1 = df->data + le16_to_cpu(zp->z2); in receive_dmsg()
[all …]
/linux/drivers/regulator/
H A Dad5398.c222 const struct ad5398_current_data_format *df = in ad5398_probe() local
243 chip->min_uA = df->min_uA; in ad5398_probe()
244 chip->max_uA = df->max_uA; in ad5398_probe()
245 chip->current_level = 1 << df->current_bits; in ad5398_probe()
246 chip->current_offset = df->current_offset; in ad5398_probe()
/linux/net/netfilter/
H A Dnfnetlink_osf.c57 bool df; member
181 ctx->df = ntohs(ip->frag_off) & IP_DF; in nf_osf_hdr_ctx_init()
220 list_for_each_entry_rcu(kf, &nf_osf_fingers[ctx.df], finger_entry) { in nf_osf_match()
280 list_for_each_entry_rcu(kf, &nf_osf_fingers[ctx.df], finger_entry) { in nf_osf_find()
345 list_for_each_entry(sf, &nf_osf_fingers[!!f->df], finger_entry) { in nfnl_osf_add_callback()
361 list_add_tail_rcu(&kf->finger_entry, &nf_osf_fingers[!!f->df]); in nfnl_osf_add_callback()
382 list_for_each_entry(sf, &nf_osf_fingers[!!f->df], finger_entry) { in nfnl_osf_remove_callback()

12345