Home
last modified time | relevance | path

Searched refs:refresh (Results 1 – 25 of 169) sorted by relevance

1234567

/Linux-v4.19/arch/arm/mach-s3c24xx/
Dcpufreq-utils.c32 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()
Diotiming-s3c2412.c260 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/
Dsa1110-cpufreq.c43 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()
Ds3c2412-cpufreq.c148 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/
Dfbcvt.c38 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()
Dmodedb.c606 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 …]
Dfbmon.c381 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/
Dsleep.S54 @ 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/
Dviamode.c355 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()
Dviamode.h59 int refresh);
61 int refresh);
Dioctl.h98 unsigned short refresh; member
119 u32 refresh; member
/Linux-v4.19/drivers/media/pci/cx18/
Dcx18-cards.c86 .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/
Dsysfs-driver-hid-picolcd31 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/
Dsleep24xx.S73 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/
Dmachxo2-spi.c141 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/
Dmodedb.txt23 <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]
Duvesafb.txt38 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/
Dintel_tv.c309 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/
Dht16k33.txt8 - refresh-rate-hz: Display update interval in HZ.
23 refresh-rate-hz = <20>;
/Linux-v4.19/arch/arm/mach-prima2/
Dsleep.S41 @ refresh bit
47 @ the RAM is going to self refresh mode
/Linux-v4.19/drivers/video/fbdev/
Dfsl-diu-fb.c62 .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 …]
Damba-clcd-versatile.c16 .refresh = 60,
40 .refresh = 60,
65 .refresh = 116,
89 .refresh = 116,
114 .refresh = 390,
/Linux-v4.19/Documentation/devicetree/bindings/devfreq/
Drk3399_dmc.txt36 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/
Dclcd.c21 .refresh = 60,
45 .refresh = 60,
/Linux-v4.19/arch/arm/mach-integrator/
Dimpd1.c78 .refresh = 60,
106 .refresh = 0,
134 .refresh = 0,
166 .refresh = 0,

1234567