/Linux-v4.19/arch/arm/mach-s3c24xx/ |
D | cpufreq-utils.c | 32 unsigned long refresh; in s3c2410_cpufreq_setrefresh() local 42 refresh = (cfg->freq.hclk / 100) * (board->refresh / 10); in s3c2410_cpufreq_setrefresh() 43 refresh = DIV_ROUND_UP(refresh, (1000 * 1000)); /* apply scale */ in s3c2410_cpufreq_setrefresh() 44 refresh = (1 << 11) + 1 - refresh; in s3c2410_cpufreq_setrefresh() 46 s3c_freq_dbg("%s: refresh value %lu\n", __func__, refresh); in s3c2410_cpufreq_setrefresh() 50 refval |= refresh; in s3c2410_cpufreq_setrefresh()
|
D | iotiming-s3c2412.c | 260 u32 refresh; in s3c2412_cpufreq_setrefresh() local 271 refresh = (cfg->freq.hclk / 100) * (board->refresh / 10); in s3c2412_cpufreq_setrefresh() 272 refresh = DIV_ROUND_UP(refresh, (1000 * 1000)); /* apply scale */ in s3c2412_cpufreq_setrefresh() 273 refresh &= ((1 << 16) - 1); in s3c2412_cpufreq_setrefresh() 275 s3c_freq_dbg("%s: refresh value %u\n", __func__, (unsigned int)refresh); in s3c2412_cpufreq_setrefresh() 277 __raw_writel(refresh, S3C2412_REFRESH); in s3c2412_cpufreq_setrefresh()
|
/Linux-v4.19/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() 364 sdram->twr, sdram->refresh, sdram->cas_latency); in sa1110_clk_init()
|
D | s3c2412-cpufreq.c | 148 unsigned long refresh; in s3c2412_cpufreq_setrefresh() local 151 board->refresh, cfg->freq.hclk); in s3c2412_cpufreq_setrefresh() 158 refresh = (board->refresh / 10); in s3c2412_cpufreq_setrefresh() 159 refresh *= (cfg->freq.hclk / 100); in s3c2412_cpufreq_setrefresh() 160 refresh /= (1 * 1000 * 1000); /* 10^6 */ in s3c2412_cpufreq_setrefresh() 162 s3c_freq_dbg("%s: setting refresh 0x%08lx\n", __func__, refresh); in s3c2412_cpufreq_setrefresh() 163 __raw_writel(refresh, S3C2412_REFRESH); in s3c2412_cpufreq_setrefresh()
|
/Linux-v4.19/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() 701 unsigned int xres = 0, yres = 0, bpp = default_bpp, refresh = 0; in fb_find_mode() local 713 refresh = simple_strtol(&name[i+1], NULL, in fb_find_mode() 780 (refresh) ? refresh : 60, in fb_find_mode() 788 cvt_mode.refresh = (refresh) ? refresh : 60; in fb_find_mode() 821 refresh = 1000; in fb_find_mode() 823 refresh = 60; in fb_find_mode() 835 int score = abs(db[i].refresh - refresh); in fb_find_mode() 843 db[i].refresh == refresh) in fb_find_mode() 921 mode->refresh = 0; in fb_var_to_videomode() [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() 1071 pr_debug("Adding %ux%u@%u\n", m[i].xres, m[i].yres, m[i].refresh); in fb_edid_add_monspecs() 1083 m[i].xres, m[i].yres, m[i].refresh); in fb_edid_add_monspecs() [all …]
|
/Linux-v4.19/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-v4.19/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
|
/Linux-v4.19/drivers/media/pci/cx18/ |
D | cx18-cards.c | 86 .refresh = 0x30c, 133 .refresh = 0x30c, 180 .refresh = 0x30c, 233 .refresh = 0x753, 286 .refresh = 0x3bd, 346 .refresh = 0x3bd, 402 .refresh = 0x753, 450 .refresh = 0x3bb, 499 .refresh = 0x3bb, 552 .refresh = 0x3bb,
|
/Linux-v4.19/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
|
/Linux-v4.19/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
|
/Linux-v4.19/drivers/fpga/ |
D | machxo2-spi.c | 141 static const u8 refresh[] = LSC_REFRESH; in machxo2_cleanup() local 158 tx[1].tx_buf = &refresh; in machxo2_cleanup() 159 tx[1].len = sizeof(refresh); in machxo2_cleanup() 293 static const u8 refresh[] = LSC_REFRESH; in machxo2_write_complete() local 318 tx[1].tx_buf = &refresh; in machxo2_write_complete() 319 tx[1].len = sizeof(refresh); in machxo2_write_complete()
|
/Linux-v4.19/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 | 38 or most optimal resolution/refresh rate for your setup will not work 43 - Adjusting the refresh rate is only possible with a VBE 3.0 compliant 45 compliant, while they simply ignore any refresh rate settings. 119 using this option implies that any refresh rate adjustments will 120 be ignored and the refresh rate will stay at your BIOS default (60 Hz). 157 Use the default refresh rate (60 Hz) if set to 1. 175 Uvesafb will set a video mode with the default refresh rate and timings
|
/Linux-v4.19/drivers/gpu/drm/i915/ |
D | intel_tv.c | 309 u16 refresh; /* in millihertz (for precision) */ member 381 .refresh = 59940, 424 .refresh = 59940, 466 .refresh = 59940, 509 .refresh = 59940, 553 .refresh = 50000, 598 .refresh = 50000, 640 .refresh = 59940, 664 .refresh = 50000, 688 .refresh = 60000, [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/display/ |
D | ht16k33.txt | 8 - refresh-rate-hz: Display update interval in HZ. 23 refresh-rate-hz = <20>;
|
/Linux-v4.19/arch/arm/mach-prima2/ |
D | sleep.S | 41 @ refresh bit 47 @ the RAM is going to self refresh mode
|
/Linux-v4.19/drivers/video/fbdev/ |
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 | amba-clcd-versatile.c | 16 .refresh = 60, 40 .refresh = 60, 65 .refresh = 116, 89 .refresh = 116, 114 .refresh = 390,
|
/Linux-v4.19/Documentation/devicetree/bindings/devfreq/ |
D | rk3399_dmc.txt | 36 self-refresh idle period in which memories are 37 placed into self-refresh mode if bus is idle 42 - rockchip,sr_mc_gate_idle : Defines the memory self-refresh and controller 44 into self-refresh mode and memory controller 48 - rockchip,srpd_lite_idle : Defines the self-refresh power down idle 50 self-refresh power down mode if bus is idle 55 memories are placed into self-refresh mode.
|
/Linux-v4.19/arch/arm/mach-nspire/ |
D | clcd.c | 21 .refresh = 60, 45 .refresh = 60,
|
/Linux-v4.19/arch/arm/mach-integrator/ |
D | impd1.c | 78 .refresh = 60, 106 .refresh = 0, 134 .refresh = 0, 166 .refresh = 0,
|