/linux-4.1.27/arch/arm/mach-s3c24xx/ |
D | cpufreq-utils.c | 36 unsigned long refresh; in s3c2410_cpufreq_setrefresh() local 46 refresh = (cfg->freq.hclk / 100) * (board->refresh / 10); in s3c2410_cpufreq_setrefresh() 47 refresh = DIV_ROUND_UP(refresh, (1000 * 1000)); /* apply scale */ in s3c2410_cpufreq_setrefresh() 48 refresh = (1 << 11) + 1 - refresh; in s3c2410_cpufreq_setrefresh() 50 s3c_freq_dbg("%s: refresh value %lu\n", __func__, refresh); in s3c2410_cpufreq_setrefresh() 54 refval |= refresh; in s3c2410_cpufreq_setrefresh()
|
D | iotiming-s3c2412.c | 266 u32 refresh; in s3c2412_cpufreq_setrefresh() local 277 refresh = (cfg->freq.hclk / 100) * (board->refresh / 10); in s3c2412_cpufreq_setrefresh() 278 refresh = DIV_ROUND_UP(refresh, (1000 * 1000)); /* apply scale */ in s3c2412_cpufreq_setrefresh() 279 refresh &= ((1 << 16) - 1); in s3c2412_cpufreq_setrefresh() 281 s3c_freq_dbg("%s: refresh value %u\n", __func__, (unsigned int)refresh); in s3c2412_cpufreq_setrefresh() 283 __raw_writel(refresh, S3C2412_REFRESH); in s3c2412_cpufreq_setrefresh()
|
D | mach-mini2440.c | 113 _yres,margin_top,margin_bottom,vsync, refresh) \ argument 125 ((refresh) * \
|
D | mach-osiris.c | 354 .refresh = 7800, /* refresh period is 7.8usec */
|
D | mach-bast.c | 541 .refresh = 7800, /* 7.8usec */
|
/linux-4.1.27/arch/cris/arch-v32/mach-fs/ |
D | dram_init.S | 64 ; Set timing parameters (refresh off to avoid Guinness TR 83) 96 ; Start refresh 107 .byte regk_bif_core_ref ; refresh 108 .byte regk_bif_core_ref ; refresh 109 .byte regk_bif_core_ref ; refresh 110 .byte regk_bif_core_ref ; refresh 111 .byte regk_bif_core_ref ; refresh 112 .byte regk_bif_core_ref ; refresh 113 .byte regk_bif_core_ref ; refresh 114 .byte regk_bif_core_ref ; refresh
|
D | Kconfig | 73 refresh (a.k.a 8K refresh). The default value implies
|
/linux-4.1.27/drivers/cpufreq/ |
D | sa1110-cpufreq.c | 43 u_short refresh; /* refresh time for array (us) */ member 60 .refresh = 64000, 69 .refresh = 64000, 78 .refresh = 64000, 86 .refresh = 64000, 95 .refresh = 64000, 104 .refresh = 64000, 113 .refresh = 64000, 218 u_int ns_row = (sdram->refresh * 1000) >> sdram->rows; in sdram_update_refresh() 363 sdram->twr, sdram->refresh, sdram->cas_latency); in sa1110_clk_init()
|
D | s3c2412-cpufreq.c | 146 unsigned long refresh; in s3c2412_cpufreq_setrefresh() local 149 board->refresh, cfg->freq.hclk); in s3c2412_cpufreq_setrefresh() 156 refresh = (board->refresh / 10); in s3c2412_cpufreq_setrefresh() 157 refresh *= (cfg->freq.hclk / 100); in s3c2412_cpufreq_setrefresh() 158 refresh /= (1 * 1000 * 1000); /* 10^6 */ in s3c2412_cpufreq_setrefresh() 160 s3c_freq_dbg("%s: setting refresh 0x%08lx\n", __func__, refresh); in s3c2412_cpufreq_setrefresh() 161 __raw_writel(refresh, S3C2412_REFRESH); in s3c2412_cpufreq_setrefresh()
|
D | s5pv210-cpufreq.c | 104 unsigned long refresh; /* DRAM refresh counter * 1000 */ member 217 tmp1 = s5pv210_dram_conf[ch].refresh; in s5pv210_set_refresh() 543 s5pv210_dram_conf[0].refresh = (__raw_readl(dmc_base[0] + 0x30) * 1000); in s5pv210_cpu_init() 546 s5pv210_dram_conf[1].refresh = (__raw_readl(dmc_base[1] + 0x30) * 1000); in s5pv210_cpu_init()
|
D | s3c24xx-cpufreq-debugfs.c | 54 seq_printf(seq, "SDRAM refresh %u ns\n", brd->refresh); in board_show()
|
/linux-4.1.27/drivers/video/fbdev/core/ |
D | fbcvt.c | 38 u32 refresh; member 228 cvt->xres, cvt->yres, cvt->refresh); in fb_cvt_print_name() 273 mode->refresh = cvt->f_refresh; in fb_cvt_convert_to_mode() 322 cvt.refresh = mode->refresh; in fb_find_mode_cvt() 323 cvt.f_refresh = cvt.refresh; in fb_find_mode_cvt() 326 if (!cvt.xres || !cvt.yres || !cvt.refresh) { in fb_find_mode_cvt() 331 if (!(cvt.refresh == 50 || cvt.refresh == 60 || cvt.refresh == 70 || in fb_find_mode_cvt() 332 cvt.refresh == 85)) { in fb_find_mode_cvt() 346 if (cvt.refresh != 60) { in fb_find_mode_cvt()
|
D | modedb.c | 606 mode->xres, mode->yres, bpp, mode->refresh); in fb_try_mode() 699 unsigned int xres = 0, yres = 0, bpp = default_bpp, refresh = 0; in fb_find_mode() local 710 refresh = simple_strtol(&name[i+1], NULL, in fb_find_mode() 769 (refresh) ? refresh : 60, in fb_find_mode() 777 cvt_mode.refresh = (refresh) ? refresh : 60; in fb_find_mode() 810 refresh = 1000; in fb_find_mode() 812 refresh = 60; in fb_find_mode() 822 if (refresh_specified && db[i].refresh == refresh) in fb_find_mode() 825 if (abs(db[i].refresh - refresh) < diff) { in fb_find_mode() 826 diff = abs(db[i].refresh - refresh); in fb_find_mode() [all …]
|
D | fbmon.c | 381 static void calc_mode_timings(int xres, int yres, int refresh, in calc_mode_timings() argument 392 refresh, var, NULL); in calc_mode_timings() 396 mode->refresh = refresh; in calc_mode_timings() 512 int xres, yres = 0, refresh, ratio; in get_std_timing() local 537 refresh = (block[1] & 0x3f) + 60; in get_std_timing() 538 DPRINTK(" %dx%d@%dHz\n", xres, yres, refresh); in get_std_timing() 540 calc_mode_timings(xres, yres, refresh, mode); in get_std_timing() 584 mode->refresh = PIXEL_CLOCK/((H_ACTIVE + H_BLANKING) * in get_detailed_timing() 1070 pr_debug("Adding %ux%u@%u\n", m[i].xres, m[i].yres, m[i].refresh); in fb_edid_add_monspecs() 1082 m[i].xres, m[i].yres, m[i].refresh); in fb_edid_add_monspecs() [all …]
|
D | fbsysfs.c | 124 m, mode->xres, mode->yres, v, mode->refresh); in mode_string()
|
/linux-4.1.27/arch/cris/arch-v10/lib/ |
D | dram_init.S | 127 .byte 2 ; refresh 129 .byte 2 ; refresh 131 .byte 2 ; refresh 133 .byte 2 ; refresh 135 .byte 2 ; refresh 137 .byte 2 ; refresh 139 .byte 2 ; refresh 141 .byte 2 ; refresh
|
/linux-4.1.27/arch/arm/mach-pxa/ |
D | sleep.S | 54 @ prepare SDRAM refresh settings 58 @ enable SDRAM self-refresh mode 95 @ prepare SDRAM refresh settings 99 @ enable SDRAM self-refresh mode 107 @ as possible to eliminate messing about with the refresh clock 159 @ external accesses after SDRAM is put in self-refresh mode 160 @ (see Errata 38 ...hangs when entering self-refresh mode) 165 @ put SDRAM into self-refresh
|
/linux-4.1.27/drivers/video/fbdev/via/ |
D | viamode.c | 355 int hres, int vres, int refresh) in get_best_mode() argument 364 if (!best || abs(modes[i].refresh - refresh) < in get_best_mode() 365 abs(best->refresh - refresh)) in get_best_mode() 372 const struct fb_videomode *viafb_get_best_mode(int hres, int vres, int refresh) in viafb_get_best_mode() argument 375 hres, vres, refresh); in viafb_get_best_mode() 379 int refresh) in viafb_get_best_rb_mode() argument 382 hres, vres, refresh); in viafb_get_best_rb_mode()
|
D | viamode.h | 59 int refresh); 61 int refresh);
|
D | ioctl.h | 98 unsigned short refresh; member 119 u32 refresh; member
|
D | viafbdev.c | 202 int depth, refresh; in viafb_check_var() local 253 refresh = viafb_get_refresh(var->xres, var->yres, in viafb_check_var() 258 viafb_get_best_mode(var->xres, var->yres, refresh)); in viafb_check_var() 269 int refresh; in viafb_set_par() local 290 refresh = get_var_refresh(&info->var); in viafb_set_par() 293 viafb_refresh1 = refresh; in viafb_set_par() 296 viafb_refresh = refresh; in viafb_set_par() 438 u.viamode.refresh = (u32) viafb_hotplug_refresh; in viafb_ioctl() 532 u.active_dev.refresh = viafb_refresh; in viafb_ioctl()
|
D | hw.c | 2021 if (abs(best->refresh - long_refresh) > 3) { in viafb_get_refresh() 2028 return best->refresh; in viafb_get_refresh()
|
/linux-4.1.27/drivers/video/fbdev/ |
D | amba-clcd-versatile.c | 10 .refresh = 60, 34 .refresh = 60, 59 .refresh = 116, 83 .refresh = 116, 108 .refresh = 390,
|
D | fsl-diu-fb.c | 62 .refresh = 60, 76 .refresh = 60, 90 .refresh = 60, 104 .refresh = 72, 118 .refresh = 75, 132 .refresh = 90, 146 .refresh = 100, 160 .refresh = 60, 174 .refresh = 60, 188 .refresh = 60, [all …]
|
D | sh_mobile_hdmi.c | 839 mode->refresh, *parent_rate); in sh_hdmi_rate_error() 950 if (f_refresh == mode->refresh || (!f_refresh && !rate_error)) in sh_hdmi_read_edid() 998 if (found->xres == 640 && found->yres == 480 && found->refresh == 60) in sh_hdmi_read_edid() 1000 else if (found->xres == 720 && found->yres == 480 && found->refresh == 60) in sh_hdmi_read_edid() 1002 else if (found->xres == 720 && found->yres == 576 && found->refresh == 50) in sh_hdmi_read_edid() 1004 else if (found->xres == 1280 && found->yres == 720 && found->refresh == 60) in sh_hdmi_read_edid() 1006 else if (found->xres == 1920 && found->yres == 1080 && found->refresh == 24) in sh_hdmi_read_edid() 1008 else if (found->xres == 1920 && found->yres == 1080 && found->refresh == 50) in sh_hdmi_read_edid() 1010 else if (found->xres == 1920 && found->yres == 1080 && found->refresh == 60) in sh_hdmi_read_edid() 1018 found->yres, found->refresh, PICOS2KHZ(found->pixclock) * 1000, in sh_hdmi_read_edid()
|
D | pxa168fb.c | 261 if (!m || !m->pixclock || !m->refresh) { in set_clock_divider() 569 u32 total_w, total_h, refresh; in pxa168fb_init_mode() local 576 refresh = DEFAULT_REFRESH; in pxa168fb_init_mode() 597 do_div(div_result, total_w * total_h * refresh); in pxa168fb_init_mode()
|
D | acornfb.c | 678 .refresh = 60, 993 hs = modedb[i].refresh * in acornfb_probe() 998 modedb[i].refresh >= fb_info.monspecs.vfmin && in acornfb_probe() 999 modedb[i].refresh <= fb_info.monspecs.vfmax && in acornfb_probe()
|
D | mx3fb.c | 139 .refresh = 60, 157 .refresh = 60, 175 .refresh = 60, 191 .refresh = 60, 207 .refresh = 50, 223 .refresh = 60,
|
D | jz4740_fb.c | 428 mode->refresh = rate / vt / ht; in jzfb_set_par() 431 rate = mode->refresh * (vt + 2 * mode->xres) * ht; in jzfb_set_par() 433 rate = mode->refresh * vt * ht; in jzfb_set_par()
|
D | gxt4500.c | 163 .refresh = 60,
|
D | udlfb.c | 1021 mode->refresh); in dlfb_is_valid_mode() 1338 fb_vmode.refresh = 60; in dlfb_setup_modes()
|
D | amba-clcd.c | 577 mode->refresh); in clcdfb_snprintf_mode()
|
D | gbefb.c | 158 .refresh = 60,
|
D | cyber2000fb.c | 1340 .refresh = 60,
|
D | s3c-fb.c | 1069 div *= mode->refresh ? : 60; in s3c_fb_missing_pixclock()
|
D | smscufx.c | 1588 fb_vmode.refresh = 60; in ufx_setup_modes()
|
D | sm501fb.c | 50 .refresh = 60,
|
D | sh_mobile_lcdcfb.c | 2436 .refresh = 60,
|
D | Kconfig | 737 such as refresh rate adjustment. 1136 and vertical resolutions, and vertical refresh rates without having
|
/linux-4.1.27/drivers/media/pci/cx18/ |
D | cx18-cards.c | 91 .refresh = 0x30c, 138 .refresh = 0x30c, 185 .refresh = 0x30c, 238 .refresh = 0x753, 291 .refresh = 0x3bd, 351 .refresh = 0x3bd, 407 .refresh = 0x753, 455 .refresh = 0x3bb, 504 .refresh = 0x3bb, 557 .refresh = 0x3bb,
|
D | cx18-cards.h | 119 u32 refresh; member
|
D | cx18-firmware.c | 342 cx18_write_reg(cx, cx->card->ddr.refresh, CX18_DDR_REFRESH); in cx18_init_memory()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-driver-hid-picolcd | 31 Description: Make it possible to adjust defio refresh rate. 33 Reading: returns list of available refresh rates (expressed in Hz), 34 the active refresh rate being enclosed in brackets ('[' and ']') 36 Writing: accepts new refresh rate expressed in integer Hz
|
D | sysfs-bus-rbd | 86 refresh
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | sleep24xx.S | 73 orr r4, r4, #0x40 @ enable self refresh on idle req 84 bic r4, r4, #0x40 @ now clear self refresh bit. 88 nop @ start auto refresh only after clk ok
|
D | sram34xx.S | 167 bl sdram_in_selfrefresh @ put SDRAM in self refresh, idle SDRC 201 orr r12, r12, #SRFRONIDLEREQ_MASK @ enable self refresh on idle
|
D | sram243x.S | 155 ldr r6, omap243x_srs_sdrc_rfr_ctrl @ get addr of refresh reg 300 str r1, [r4] @ update refresh timing
|
D | sram242x.S | 155 ldr r6, omap242x_srs_sdrc_rfr_ctrl @ get addr of refresh reg 300 str r1, [r4] @ update refresh timing
|
D | sleep34xx.S | 238 orr r5, r5, #0x40 @ enable self refresh on idle req
|
/linux-4.1.27/arch/avr32/boards/atngw100/ |
D | evklcd10x.c | 36 .refresh = 50, 74 .refresh = 50, 112 .refresh = 60,
|
D | mrmt.c | 63 .refresh = 59.94, 106 .refresh = 59.94,
|
/linux-4.1.27/Documentation/fb/ |
D | modedb.txt | 23 <xres>x<yres>[M][R][-<bpp>][@<refresh>][i][m][eDd] 24 <name>[-<bpp>][@<refresh>] 26 with <xres>, <yres>, <bpp> and <refresh> decimal numbers and <name> a string. 30 <bpp> and <refresh>, if specified) the timings will be calculated using 61 and coordinated set of standard formats, display refresh rates, and 72 pixelclock, the horizontal sync frequency, or the vertical refresh rate. 107 - acceptable refresh rates are 50, 60, 70 or 85 Hz only 108 - if reduced blanking, the refresh rate must be at 60Hz 131 video=<driver>:<xres>x<yres>[-<bpp>][@refresh]
|
D | uvesafb.txt | 37 or most optimal resolution/refresh rate for your setup will not work 42 - Adjusting the refresh rate is only possible with a VBE 3.0 compliant 44 compliant, while they simply ignore any refresh rate settings. 118 using this option implies that any refresh rate adjustments will 119 be ignored and the refresh rate will stay at your BIOS default (60 Hz). 156 Use the default refresh rate (60 Hz) if set to 1. 174 Uvesafb will set a video mode with the default refresh rate and timings
|
D | sm501.txt | 10 "<xres>x<yres>[-<bpp>][@<refresh>]"
|
D | intel810.txt | 29 vertical refresh rates if the VESA Generalized Timing Formula is 104 in Hz. You can also use this option to lock your monitor's refresh 167 o. <xres>x<yres>[-<bpp>][@<refresh>] 188 will use 2 MB of System RAM. MTRR support will be enabled. The refresh rate
|
D | gxfb.txt | 46 <x>x<y>[-<bpp>][@<refresh>]
|
D | lxfb.txt | 46 <x>x<y>[-<bpp>][@<refresh>]
|
D | pvr2fb.txt | 32 mode:X - default video mode with format [xres]x[yres]-<bpp>@<refresh rate>
|
D | sh7760fb.txt | 75 .refresh = 60,
|
D | intelfb.txt | 28 b. "mode=<xres>x<yres>[-<bpp>][@<refresh>]"
|
D | vesafb.txt | 95 booting linux. If you are not happy with the 60 Hz refresh rate, you
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_modes.c | 746 int refresh = 0; in drm_mode_vrefresh() local 750 refresh = mode->vrefresh; in drm_mode_vrefresh() 757 refresh = (calc_val + vtotal / 2) / vtotal; in drm_mode_vrefresh() 760 refresh *= 2; in drm_mode_vrefresh() 762 refresh /= 2; in drm_mode_vrefresh() 764 refresh /= mode->vscan; in drm_mode_vrefresh() 766 return refresh; in drm_mode_vrefresh() 1230 unsigned int xres = 0, yres = 0, bpp = 32, refresh = 0; in drm_mode_parse_command_line_for_connector() local 1253 refresh = simple_strtol(&name[i+1], NULL, 10); in drm_mode_parse_command_line_for_connector() 1357 mode->refresh = refresh; in drm_mode_parse_command_line_for_connector() [all …]
|
D | drm_fb_helper.c | 1308 if (mode->vrefresh != cmdline_mode->refresh) in drm_pick_cmdline_mode()
|
D | drm_crtc.c | 841 mode->refresh_specified ? mode->refresh : 60, in drm_connector_get_cmdline_mode()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | intel_tv.c | 355 int refresh; /* in millihertz (for precision) */ member 420 .refresh = 59940, 463 .refresh = 59940, 505 .refresh = 59940, 548 .refresh = 59940, 592 .refresh = 50000, 637 .refresh = 50000, 679 .refresh = 59940, 703 .refresh = 50000, 727 .refresh = 60000, [all …]
|
/linux-4.1.27/arch/arm/mach-imx/ |
D | eukrea_mbimxsd35-baseboard.c | 47 .refresh = 60, 63 .refresh = 60, 80 .refresh = 60,
|
D | mach-vpr200.c | 57 .refresh = 60, 73 .refresh = 60,
|
D | mach-pcm043.c | 47 .refresh = 60, 63 .refresh = 60,
|
D | mach-pcm037.c | 448 .refresh = 60, 465 .refresh = 60, 481 .refresh = 60,
|
D | mx31lilly-db.c | 166 .refresh = 64,
|
D | mach-armadillo5x0.c | 338 .refresh = 60, 353 .refresh = 56,
|
D | mach-mx21ads.c | 227 .refresh = 60,
|
D | mach-mx27ads.c | 258 .refresh = 60,
|
D | mach-pca100.c | 320 .refresh = 60,
|
D | mach-mx27_3ds.c | 422 .refresh = 60,
|
D | mach-mx35_3ds.c | 67 .refresh = 55,
|
D | mach-mx31_3ds.c | 262 .refresh = 60,
|
/linux-4.1.27/arch/arm/mach-prima2/ |
D | sleep.S | 41 @ refresh bit 47 @ the RAM is going to self refresh mode
|
/linux-4.1.27/arch/arm/mach-nspire/ |
D | clcd.c | 21 .refresh = 60, 45 .refresh = 60,
|
/linux-4.1.27/arch/arm/mach-integrator/ |
D | impd1.c | 79 .refresh = 60, 107 .refresh = 0, 135 .refresh = 0, 167 .refresh = 0,
|
/linux-4.1.27/arch/frv/kernel/ |
D | sleep.S | 85 # when dram is in self-refresh state. 135 # put SDRAM in self-refresh mode 146 # put the SDRAM into self-refresh mode 152 # wait for SDRAM to reach self-refresh mode 189 # wake SDRAM from self-refresh mode
|
D | cmode.S | 118 # self-refresh mode. Execute the dummy load to all memory 154 # (14) Release the self-refresh of SDRAM.
|
/linux-4.1.27/tools/power/cpupower/utils/ |
D | version-gen.sh | 18 git update-index -q --refresh
|
/linux-4.1.27/arch/sh/boards/mach-hp6xx/ |
D | pm_wakeup.S | 28 ! enable refresh
|
/linux-4.1.27/arch/avr32/boards/merisc/ |
D | display.c | 20 .refresh = 44,
|
/linux-4.1.27/arch/arm/plat-samsung/include/plat/ |
D | cpu-freq.h | 120 unsigned int refresh; member
|
/linux-4.1.27/drivers/gpu/drm/panel/ |
D | panel-sharp-lq101r1sx01.c | 44 unsigned int refresh = drm_mode_vrefresh(sharp->mode); in sharp_wait_frames() local 46 if (WARN_ON(frames > refresh)) in sharp_wait_frames() 49 msleep(1000 / (refresh / frames)); in sharp_wait_frames()
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-upload.txt | 36 - Write 0x80000640 to register 0x07F8 to init the Encoder SDRAM's refresh to 1us. 38 - Write 0x80000640 to register 0x08F8 to init the Decoder SDRAM's refresh to 1us.
|
D | fw-memory.txt | 85 0x07F8: Encoder SDRAM refresh 93 0x08F8: Decoder SDRAM refresh
|
D | fw-encoder-api.txt | 582 Event (0=refresh encoder input)
|
/linux-4.1.27/arch/arm/mach-omap1/ |
D | sleep.S | 81 @ prepare to put SDRAM into self-refresh manually 166 @ prepare to put SDRAM into self-refresh manually 236 @ Prepare to put SDRAM into self-refresh manually
|
/linux-4.1.27/arch/unicore32/kernel/ |
D | sleep.S | 99 @ prepare DDR2 refresh settings 120 @ put DDR2 into self-refresh
|
/linux-4.1.27/tools/thermal/tmon/ |
D | tmon.c | 85 refresh(); in tmon_cleanup() 112 refresh(); in tmon_sig_handler()
|
D | tui.c | 188 refresh(); in setup_windows() 196 refresh(); in resize_handler()
|
/linux-4.1.27/drivers/staging/media/dt3155v4l/ |
D | Kconfig | 16 bool "Selects CCIR/50Hz vertical refresh"
|
/linux-4.1.27/arch/avr32/boards/atstk1000/ |
D | setup.c | 33 .refresh = 75,
|
/linux-4.1.27/drivers/staging/xgifb/ |
D | XGI_main_26.c | 559 if (XGIfb_vrate[i].refresh == rate) { in XGIfb_search_refresh_rate() 562 } else if (XGIfb_vrate[i].refresh > rate) { in XGIfb_search_refresh_rate() 563 if ((XGIfb_vrate[i].refresh - rate) <= 3) { in XGIfb_search_refresh_rate() 565 rate, XGIfb_vrate[i].refresh); in XGIfb_search_refresh_rate() 569 XGIfb_vrate[i].refresh; in XGIfb_search_refresh_rate() 570 } else if (((rate - XGIfb_vrate[i - 1].refresh) in XGIfb_search_refresh_rate() 575 XGIfb_vrate[i-1].refresh); in XGIfb_search_refresh_rate() 579 XGIfb_vrate[i - 1].refresh; in XGIfb_search_refresh_rate() 582 } else if ((rate - XGIfb_vrate[i].refresh) <= 2) { in XGIfb_search_refresh_rate() 584 rate, XGIfb_vrate[i].refresh); in XGIfb_search_refresh_rate()
|
D | XGI_main.h | 184 u16 refresh; member
|
/linux-4.1.27/arch/arm/mach-s3c64xx/ |
D | mach-smartq5.c | 127 .refresh = 80,
|
D | mach-smartq7.c | 143 .refresh = 80,
|
/linux-4.1.27/Documentation/devicetree/bindings/fb/ |
D | sm501fb.txt | 17 <xres>x<yres>[-<bpp>][@<refresh>]
|
/linux-4.1.27/drivers/video/fbdev/mmp/panel/ |
D | tpo_tj032md01bw.c | 111 .refresh = 60,
|
/linux-4.1.27/tools/perf/ui/browsers/ |
D | header.c | 85 .refresh = ui_browser__argv_refresh, in ui__list_menu()
|
D | map.c | 106 .refresh = ui_browser__rb_tree_refresh, in map__browse()
|
D | scripts.c | 120 .refresh = ui_browser__list_head_refresh, in script_browse()
|
D | hists.c | 414 int delay_secs = hbt ? hbt->refresh : 0; in hist_browser__run() 1204 browser->b.refresh = hist_browser__refresh; in hist_browser__new() 1432 int delay_secs = hbt ? hbt->refresh : 0; in perf_evsel__hists_browse() 1884 int delay_secs = hbt ? hbt->refresh : 0; in perf_evsel_menu__run() 1987 .refresh = ui_browser__list_head_refresh, in __perf_evlist__tui_browse_hists()
|
D | annotate.c | 671 int delay_secs = hbt ? hbt->refresh : 0; in annotate_browser__run() 900 .refresh = annotate_browser__refresh, in symbol__tui_annotate()
|
/linux-4.1.27/tools/perf/ui/ |
D | browser.h | 23 unsigned int (*refresh)(struct ui_browser *browser); member
|
D | browser.c | 308 row = browser->refresh(browser); in __ui_browser__refresh()
|
/linux-4.1.27/net/atm/ |
D | mpoa_caches.h | 47 void (*refresh)(struct mpoa_client *client); member
|
D | mpc.c | 1435 mpc->in_ops->refresh(mpc); in mpc_cache_check()
|
/linux-4.1.27/arch/arm/mach-netx/ |
D | nxeb500hmi.c | 40 .refresh = 60,
|
D | nxdb500.c | 40 .refresh = 60,
|
/linux-4.1.27/drivers/video/fbdev/mmp/fb/ |
D | mmpfb.c | 243 mode->refresh = videomode->refresh; in fbmode_to_mmpmode() 269 videomode->refresh = mode->refresh; in mmpmode_to_fbmode()
|
/linux-4.1.27/arch/avr32/boards/hammerhead/ |
D | setup.c | 51 .refresh = 75,
|
/linux-4.1.27/arch/sh/boards/mach-sh7763rdp/ |
D | setup.c | 113 .refresh = 60,
|
/linux-4.1.27/drivers/staging/sm750fb/ |
D | readme | 33 refresh rate, kernel driver will defaulty use 16bpp and 60hz
|
/linux-4.1.27/arch/s390/include/asm/ |
D | pci_clp.h | 131 u8 refresh : 1; /* TLB refresh mode */ member
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/tegra/ |
D | nvidia,tegra20-pmc.txt | 29 0 (LP0): CPU + Core voltage off and DRAM in self-refresh 30 1 (LP1): CPU voltage off and DRAM in self-refresh
|
/linux-4.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_ipp.h | 102 __u32 refresh; member
|
D | exynos_drm_drv.h | 97 unsigned int refresh; member
|
D | exynos_drm_plane.c | 137 exynos_plane->refresh = crtc->mode.vrefresh; in exynos_plane_mode_set()
|
D | exynos_drm_gsc.c | 1556 set_wb.refresh = property->refresh_rate; in gsc_ippdrv_start()
|
D | exynos_drm_fimc.c | 1512 set_wb.refresh = property->refresh_rate; in fimc_ippdrv_start()
|
/linux-4.1.27/arch/avr32/boards/mimc200/ |
D | setup.c | 49 .refresh = 72,
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/4xx/ |
D | cpm.txt | 39 refresh mode and any additional power
|
/linux-4.1.27/arch/arm/mach-sa1100/ |
D | sleep.S | 133 @ Step 5 clear DRAM refresh control register
|
/linux-4.1.27/arch/arm/mach-lpc32xx/ |
D | phy3250.c | 63 .refresh = 60,
|
/linux-4.1.27/Documentation/auxdisplay/ |
D | cfag12864b | 99 Although the LCD won't get updated until the next refresh time arrives.
|
/linux-4.1.27/arch/arm/mach-mmp/ |
D | aspenite.c | 188 .refresh = 60,
|
/linux-4.1.27/include/drm/ |
D | drm_modes.h | 159 int refresh; member
|
/linux-4.1.27/tools/perf/ui/tui/ |
D | util.c | 63 .refresh = ui_browser__argv_refresh, in ui__popup_menu()
|
/linux-4.1.27/include/video/ |
D | mmp_disp.h | 109 u32 refresh; member
|
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/ |
D | CPUfreq.txt | 66 SDRAM refresh rate.
|
/linux-4.1.27/arch/avr32/boards/favr-32/ |
D | setup.c | 108 .refresh = 50,
|
/linux-4.1.27/drivers/net/hyperv/ |
D | netvsc_drv.c | 826 bool notify, refresh = false; in netvsc_link_change() local 845 refresh = true; in netvsc_link_change() 851 if (refresh) in netvsc_link_change()
|
/linux-4.1.27/arch/arm/mach-tegra/ |
D | sleep-tegra20.S | 392 str r1, [r0, #EMC_SELF_REF] @ take DRAM out of self refresh 516 bne emcself @ loop until DDR in self-refresh
|
D | sleep-tegra30.S | 454 str r1, [r0, #EMC_SELF_REF] @ take DRAM out of self refresh 786 bne emcself @ loop until DDR in self-refresh
|
/linux-4.1.27/scripts/kconfig/ |
D | nconf.gui.c | 172 refresh(); in print_in_middle() 538 refresh(); in refresh_all_windows()
|
D | nconf.c | 1026 refresh(); in do_match() 1059 refresh(); in do_match() 1558 refresh(); in main()
|
/linux-4.1.27/include/linux/ |
D | perf_event.h | 642 extern int perf_event_refresh(struct perf_event *event, int refresh); 936 static inline int perf_event_refresh(struct perf_event *event, int refresh) in perf_event_refresh() argument
|
D | fb.h | 767 u32 refresh; /* optional */ member
|
/linux-4.1.27/arch/x86/boot/compressed/ |
D | eboot.c | 878 u32 w, h, depth, refresh; in setup_uga32() local 890 &w, &h, &depth, &refresh); in setup_uga32() 923 u32 w, h, depth, refresh; in setup_uga64() local 935 &w, &h, &depth, &refresh); in setup_uga64()
|
/linux-4.1.27/arch/mips/jz4740/ |
D | board-qi_lb60.c | 279 .refresh = 30,
|
/linux-4.1.27/arch/cris/arch-v32/ |
D | Kconfig | 177 refresh (a.k.a 8K refresh). The default value implies
|
/linux-4.1.27/drivers/video/fbdev/savage/ |
D | savagefb.h | 160 unsigned int mode, refresh; member
|
D | savagefb_driver.c | 2241 cvt_mode.refresh = 60; in savagefb_probe()
|
/linux-4.1.27/tools/perf/util/ |
D | hist.h | 301 int refresh; member
|
/linux-4.1.27/arch/s390/pci/ |
D | pci_clp.c | 62 zdev->tlb_refresh = response->refresh; in clp_store_query_pci_fngrp()
|
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/ |
D | sec_null.c | 374 .refresh = null_ctx_refresh,
|
D | sec_plain.c | 952 .refresh = plain_ctx_refresh,
|
D | sec.c | 665 LASSERT(ctx->cc_ops->refresh); in sptlrpc_req_refresh_ctx() 666 ctx->cc_ops->refresh(ctx); in sptlrpc_req_refresh_ctx()
|
/linux-4.1.27/drivers/video/fbdev/sis/ |
D | sis_main.c | 404 int i, j, xres, yres, refresh, index; in sisfb_interpret_edid() local 479 refresh = (buffer[index + 1] & 0x3f) + 60; in sisfb_interpret_edid() 484 (refresh == sisfb_ddcfmodes[j].v)) { in sisfb_interpret_edid() 692 if(sisfb_vrate[i].refresh == rate) { in sisfb_search_refresh_rate() 695 } else if(sisfb_vrate[i].refresh > rate) { in sisfb_search_refresh_rate() 696 if((sisfb_vrate[i].refresh - rate) <= 3) { in sisfb_search_refresh_rate() 698 rate, sisfb_vrate[i].refresh); in sisfb_search_refresh_rate() 700 ivideo->refresh_rate = sisfb_vrate[i].refresh; in sisfb_search_refresh_rate() 702 ((rate - sisfb_vrate[i-1].refresh) <= 2)) { in sisfb_search_refresh_rate() 704 rate, sisfb_vrate[i-1].refresh); in sisfb_search_refresh_rate() [all …]
|
D | sis_main.h | 413 u16 refresh; member
|
/linux-4.1.27/Documentation/power/ |
D | states.txt | 65 into the self-refresh mode to retain its contents. All of the steps carried out
|
D | opp.txt | 75 WARNING: Users of OPP library should refresh their availability count using 80 care to refresh the cpufreq table in cases of these operations.
|
/linux-4.1.27/Documentation/arm/ |
D | tcm.txt | 53 - Idle loops where all external RAM is set to self-refresh
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-top.txt | 209 Display refresh delay.
|
/linux-4.1.27/Documentation/device-mapper/ |
D | snapshot.txt | 107 --refresh); but if it is left active it will simply return I/O errors.
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/ |
D | lustre_sec.h | 377 int (*refresh) (struct ptlrpc_cli_ctx *ctx); member
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-rt-group.txt | 28 resolution, or the time it takes to handle the budget refresh itself.
|
/linux-4.1.27/arch/arm/mach-shmobile/ |
D | board-armadillo800eva.c | 532 .refresh = 60,
|
/linux-4.1.27/scripts/kconfig/lxdialog/ |
D | util.c | 358 refresh(); in end_dialog()
|
/linux-4.1.27/drivers/block/drbd/ |
D | drbd_main.c | 3769 long refresh; in _drbd_fault_random() local 3772 get_random_bytes(&refresh, sizeof(refresh)); in _drbd_fault_random() 3773 rsp->state += refresh; in _drbd_fault_random()
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm90 | 270 transaction completion, effectively doubling the register cache refresh time.
|
/linux-4.1.27/tools/perf/ |
D | builtin-top.c | 567 .refresh = top->delay_secs, in display_thread_tui()
|
/linux-4.1.27/kernel/events/ |
D | core.c | 2351 static int _perf_event_refresh(struct perf_event *event, int refresh) in _perf_event_refresh() argument 2359 atomic_add(refresh, &event->event_limit); in _perf_event_refresh() 2368 int perf_event_refresh(struct perf_event *event, int refresh) in perf_event_refresh() argument 2374 ret = _perf_event_refresh(event, refresh); in perf_event_refresh()
|
/linux-4.1.27/drivers/video/fbdev/aty/ |
D | aty128fb.c | 125 .refresh = 60,
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | timekeeping.txt | 45 IBM PC, and historically were connected to control RAM refresh and the PC
|
/linux-4.1.27/Documentation/filesystems/ |
D | xfs-delayed-logging-design.txt | 522 permanent reservation on the space, but we still need to make sure we refresh
|
/linux-4.1.27/drivers/block/ |
D | rbd.c | 3985 static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.1992-1997 | 1283 (scan_scsis): Get SDpnt from scsi_init_malloc, and refresh
|
/linux-4.1.27/Documentation/networking/ |
D | arcnet-hardware.txt | 295 video games, as it occurs exactly once per screen refresh, but
|