Home
last modified time | relevance | path

Searched refs:dfc (Results 1 - 23 of 23) sorted by relevance

/kernel/linux/linux-5.10/drivers/thermal/
H A Ddevfreq_cooling.c71 struct devfreq_cooling_device *dfc = cdev->devdata; in devfreq_cooling_get_max_state() local
73 *state = dfc->freq_table_size - 1; in devfreq_cooling_get_max_state()
81 struct devfreq_cooling_device *dfc = cdev->devdata; in devfreq_cooling_get_cur_state() local
83 *state = dfc->cooling_state; in devfreq_cooling_get_cur_state()
91 struct devfreq_cooling_device *dfc = cdev->devdata; in devfreq_cooling_set_cur_state() local
92 struct devfreq *df = dfc->devfreq; in devfreq_cooling_set_cur_state()
96 if (state == dfc->cooling_state) in devfreq_cooling_set_cur_state()
101 if (state >= dfc->freq_table_size) in devfreq_cooling_set_cur_state()
104 freq = dfc->freq_table[state]; in devfreq_cooling_set_cur_state()
106 dev_pm_qos_update_request(&dfc in devfreq_cooling_set_cur_state()
123 freq_get_state(struct devfreq_cooling_device *dfc, unsigned long freq) freq_get_state() argument
174 get_static_power(struct devfreq_cooling_device *dfc, unsigned long freq) get_static_power() argument
203 get_dynamic_power(struct devfreq_cooling_device *dfc, unsigned long freq, unsigned long voltage) get_dynamic_power() argument
222 get_total_power(struct devfreq_cooling_device *dfc, unsigned long freq, unsigned long voltage) get_total_power() argument
234 struct devfreq_cooling_device *dfc = cdev->devdata; devfreq_cooling_get_requested_power() local
294 struct devfreq_cooling_device *dfc = cdev->devdata; devfreq_cooling_state2power() local
311 struct devfreq_cooling_device *dfc = cdev->devdata; devfreq_cooling_power2state() local
374 devfreq_cooling_gen_tables(struct devfreq_cooling_device *dfc) devfreq_cooling_gen_tables() argument
464 struct devfreq_cooling_device *dfc; of_devfreq_cooling_register_power() local
559 struct devfreq_cooling_device *dfc; devfreq_cooling_unregister() local
[all...]
/kernel/linux/linux-6.6/drivers/thermal/
H A Ddevfreq_cooling.c67 struct devfreq_cooling_device *dfc = cdev->devdata; in devfreq_cooling_get_max_state() local
69 *state = dfc->max_state; in devfreq_cooling_get_max_state()
77 struct devfreq_cooling_device *dfc = cdev->devdata; in devfreq_cooling_get_cur_state() local
79 *state = dfc->cooling_state; in devfreq_cooling_get_cur_state()
87 struct devfreq_cooling_device *dfc = cdev->devdata; in devfreq_cooling_set_cur_state() local
88 struct devfreq *df = dfc->devfreq; in devfreq_cooling_set_cur_state()
93 if (state == dfc->cooling_state) in devfreq_cooling_set_cur_state()
98 if (state > dfc->max_state) in devfreq_cooling_set_cur_state()
101 if (dfc->em_pd) { in devfreq_cooling_set_cur_state()
102 perf_idx = dfc in devfreq_cooling_set_cur_state()
181 struct devfreq_cooling_device *dfc = cdev->devdata; devfreq_cooling_get_requested_power() local
247 struct devfreq_cooling_device *dfc = cdev->devdata; devfreq_cooling_state2power() local
263 struct devfreq_cooling_device *dfc = cdev->devdata; devfreq_cooling_power2state() local
317 devfreq_cooling_gen_tables(struct devfreq_cooling_device *dfc, int num_opps) devfreq_cooling_gen_tables() argument
367 struct devfreq_cooling_device *dfc; of_devfreq_cooling_register_power() local
527 struct devfreq_cooling_device *dfc; devfreq_cooling_unregister() local
[all...]
/kernel/linux/linux-6.6/fs/xfs/libxfs/
H A Dxfs_defer.c710 struct xfs_defer_capture *dfc; in xfs_defer_ops_capture() local
722 dfc = kmem_zalloc(sizeof(*dfc), KM_NOFS); in xfs_defer_ops_capture()
723 INIT_LIST_HEAD(&dfc->dfc_list); in xfs_defer_ops_capture()
724 INIT_LIST_HEAD(&dfc->dfc_dfops); in xfs_defer_ops_capture()
727 list_splice_init(&tp->t_dfops, &dfc->dfc_dfops); in xfs_defer_ops_capture()
728 dfc->dfc_tpflags = tp->t_flags & XFS_TRANS_LOWMODE; in xfs_defer_ops_capture()
732 dfc->dfc_blkres = tp->t_blk_res - tp->t_blk_res_used; in xfs_defer_ops_capture()
733 dfc->dfc_rtxres = tp->t_rtx_res - tp->t_rtx_res_used; in xfs_defer_ops_capture()
736 dfc in xfs_defer_ops_capture()
766 xfs_defer_ops_capture_abort( struct xfs_mount *mp, struct xfs_defer_capture *dfc) xfs_defer_ops_capture_abort() argument
798 struct xfs_defer_capture *dfc; xfs_defer_ops_capture_and_commit() local
828 xfs_defer_ops_continue( struct xfs_defer_capture *dfc, struct xfs_trans *tp, struct xfs_defer_resources *dres) xfs_defer_ops_continue() argument
[all...]
/kernel/linux/linux-5.10/fs/xfs/libxfs/
H A Dxfs_defer.c633 struct xfs_defer_capture *dfc; in xfs_defer_ops_capture() local
639 dfc = kmem_zalloc(sizeof(*dfc), KM_NOFS); in xfs_defer_ops_capture()
640 INIT_LIST_HEAD(&dfc->dfc_list); in xfs_defer_ops_capture()
641 INIT_LIST_HEAD(&dfc->dfc_dfops); in xfs_defer_ops_capture()
646 list_splice_init(&tp->t_dfops, &dfc->dfc_dfops); in xfs_defer_ops_capture()
647 dfc->dfc_tpflags = tp->t_flags & XFS_TRANS_LOWMODE; in xfs_defer_ops_capture()
651 dfc->dfc_blkres = tp->t_blk_res - tp->t_blk_res_used; in xfs_defer_ops_capture()
652 dfc->dfc_rtxres = tp->t_rtx_res - tp->t_rtx_res_used; in xfs_defer_ops_capture()
655 dfc in xfs_defer_ops_capture()
671 xfs_defer_ops_release( struct xfs_mount *mp, struct xfs_defer_capture *dfc) xfs_defer_ops_release() argument
696 struct xfs_defer_capture *dfc; xfs_defer_ops_capture_and_commit() local
724 xfs_defer_ops_continue( struct xfs_defer_capture *dfc, struct xfs_trans *tp, struct xfs_inode **captured_ipp) xfs_defer_ops_continue() argument
[all...]
/kernel/linux/linux-5.10/arch/m68k/sun3/
H A Dleds.c8 unsigned char dfc; in sun3_leds() local
10 GET_DFC(dfc); in sun3_leds()
13 SET_DFC(dfc); in sun3_leds()
/kernel/linux/linux-6.6/arch/m68k/sun3/
H A Dleds.c8 unsigned char dfc; in sun3_leds() local
10 GET_DFC(dfc); in sun3_leds()
13 SET_DFC(dfc); in sun3_leds()
/kernel/linux/linux-5.10/drivers/media/platform/davinci/
H A Ddm355_ccdc.c359 * write an entry in the dfc table.
361 static int ccdc_write_dfc_entry(int index, struct ccdc_vertical_dft *dfc) in ccdc_write_dfc_entry() argument
367 regw(dfc->dft_corr_vert[index], DFCMEM0); in ccdc_write_dfc_entry()
368 regw(dfc->dft_corr_horz[index], DFCMEM1); in ccdc_write_dfc_entry()
369 regw(dfc->dft_corr_sub1[index], DFCMEM2); in ccdc_write_dfc_entry()
370 regw(dfc->dft_corr_sub2[index], DFCMEM3); in ccdc_write_dfc_entry()
371 regw(dfc->dft_corr_sub3[index], DFCMEM4); in ccdc_write_dfc_entry()
398 static int ccdc_config_vdfc(struct ccdc_vertical_dft *dfc) in ccdc_config_vdfc() argument
404 val = dfc->gen_dft_en & CCDC_DFCCTL_GDFCEN_MASK; in ccdc_config_vdfc()
407 if (!dfc in ccdc_config_vdfc()
[all...]
H A Disif.c44 .dfc = {
659 if (isif_config_dfc(&module_params->dfc) < 0) in isif_config_raw()
/kernel/linux/linux-5.10/include/linux/
H A Ddevfreq_cooling.h67 void devfreq_cooling_unregister(struct thermal_cooling_device *dfc);
91 devfreq_cooling_unregister(struct thermal_cooling_device *dfc) in devfreq_cooling_unregister() argument
/kernel/linux/linux-6.6/include/linux/
H A Ddevfreq_cooling.h50 void devfreq_cooling_unregister(struct thermal_cooling_device *dfc);
84 devfreq_cooling_unregister(struct thermal_cooling_device *dfc) in devfreq_cooling_unregister() argument
/kernel/linux/linux-5.10/arch/m68k/include/asm/
H A Dsun3mmu.h156 unsigned char dfc; in sun3_put_context() local
157 GET_DFC(dfc); in sun3_put_context()
160 SET_DFC(dfc); in sun3_put_context()
/kernel/linux/linux-6.6/arch/m68k/include/asm/
H A Dsun3mmu.h156 unsigned char dfc; in sun3_put_context() local
157 GET_DFC(dfc); in sun3_put_context()
160 SET_DFC(dfc); in sun3_put_context()
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/
H A Diskeleton.S204 | load sfc/dfc
210 2: movec.l %dfc,%d2
211 movec.l %d0,%dfc
226 | restore sfc/dfc
227 movec.l %d2,%dfc
/kernel/linux/linux-6.6/arch/m68k/ifpsp060/
H A Diskeleton.S204 | load sfc/dfc
210 2: movec.l %dfc,%d2
211 movec.l %d0,%dfc
226 | restore sfc/dfc
227 movec.l %d2,%dfc
/kernel/linux/linux-6.6/fs/xfs/
H A Dxfs_log_recover.c2462 struct xfs_defer_capture *dfc, *next; in xlog_finish_defer_ops() local
2466 list_for_each_entry_safe(dfc, next, capture_list, dfc_list) { in xlog_finish_defer_ops()
2476 resv.tr_logres = dfc->dfc_logres; in xlog_finish_defer_ops()
2480 error = xfs_trans_alloc(mp, &resv, dfc->dfc_blkres, in xlog_finish_defer_ops()
2481 dfc->dfc_rtxres, XFS_TRANS_RESERVE, &tp); in xlog_finish_defer_ops()
2491 list_del_init(&dfc->dfc_list); in xlog_finish_defer_ops()
2492 xfs_defer_ops_continue(dfc, tp, &dres); in xlog_finish_defer_ops()
2509 struct xfs_defer_capture *dfc; in xlog_abort_defer_ops() local
2512 list_for_each_entry_safe(dfc, next, capture_list, dfc_list) { in xlog_abort_defer_ops()
2513 list_del_init(&dfc in xlog_abort_defer_ops()
[all...]
/kernel/linux/linux-5.10/arch/m68k/kernel/
H A Dsun3-head.S42 movec %d0, %dfc
H A Dentry.S342 /* save fs (sfc,%dfc) (may be pointing to kernel memory) */
429 /* restore fs (sfc,%dfc) */
432 movec %a0,%dfc
/kernel/linux/linux-6.6/arch/m68k/kernel/
H A Dsun3-head.S42 movec %d0, %dfc
H A Dentry.S343 /* save fs (sfc,%dfc) (may be pointing to kernel memory) */
430 /* restore fs (sfc,%dfc) */
433 movec %a0,%dfc
/kernel/linux/linux-5.10/fs/xfs/
H A Dxfs_log_recover.c2442 struct xfs_defer_capture *dfc, *next; in xlog_finish_defer_ops() local
2447 list_for_each_entry_safe(dfc, next, capture_list, dfc_list) { in xlog_finish_defer_ops()
2456 resv.tr_logres = dfc->dfc_logres; in xlog_finish_defer_ops()
2460 error = xfs_trans_alloc(mp, &resv, dfc->dfc_blkres, in xlog_finish_defer_ops()
2461 dfc->dfc_rtxres, XFS_TRANS_RESERVE, &tp); in xlog_finish_defer_ops()
2471 list_del_init(&dfc->dfc_list); in xlog_finish_defer_ops()
2472 xfs_defer_ops_continue(dfc, tp, &ip); in xlog_finish_defer_ops()
2493 struct xfs_defer_capture *dfc; in xlog_abort_defer_ops() local
2496 list_for_each_entry_safe(dfc, next, capture_list, dfc_list) { in xlog_abort_defer_ops()
2497 list_del_init(&dfc in xlog_abort_defer_ops()
[all...]
/kernel/linux/linux-5.10/include/media/davinci/
H A Disif.h410 struct isif_dfc dfc; member
/kernel/linux/linux-5.10/drivers/hwmon/
H A Dlm90.c1655 int local_ext, conalert, chen, dfc; in lm90_detect() local
1662 dfc = i2c_smbus_read_byte_data(client, TMP461_REG_DFC); in lm90_detect()
1667 (dfc & 0xfc) == 0x00) { in lm90_detect()
/kernel/linux/linux-6.6/drivers/hwmon/
H A Dlm90.c2426 int local_ext, conalert, chen, dfc; in lm90_detect_ti() local
2433 dfc = i2c_smbus_read_byte_data(client, TMP461_REG_DFC); in lm90_detect_ti()
2436 (chen & 0xfc) == 0x00 && (dfc & 0xfc) == 0x00) { in lm90_detect_ti()

Completed in 21 milliseconds