/linux-4.1.27/drivers/hwmon/ |
D | lm75.c | 82 u8 resolution; /* In bits, between 9 and 12 */ member 100 static inline long lm75_reg_to_mc(s16 temp, u8 resolution) in lm75_reg_to_mc() argument 102 return ((temp >> (16 - resolution)) * 1000) >> (resolution - 8); in lm75_reg_to_mc() 114 *temp = lm75_reg_to_mc(data->temp[0], data->resolution); in lm75_read_temp() 129 data->resolution)); in show_temp() 141 u8 resolution; in set_temp() local 152 resolution = data->resolution_limits; in set_temp() 154 resolution = data->resolution; in set_temp() 158 data->temp[nr] = DIV_ROUND_CLOSEST(temp << (resolution - 8), in set_temp() 159 1000) << (16 - resolution); in set_temp() [all …]
|
D | sch56xx-common.c | 274 unsigned int resolution; in watchdog_set_timeout() local 280 resolution = 1; in watchdog_set_timeout() 282 resolution = 60; in watchdog_set_timeout() 284 if (timeout < resolution || timeout > (resolution * 255)) in watchdog_set_timeout() 287 if (resolution == 1) in watchdog_set_timeout() 308 data->watchdog_preset = DIV_ROUND_UP(timeout, resolution); in watchdog_set_timeout() 309 wddev->timeout = data->watchdog_preset * resolution; in watchdog_set_timeout()
|
D | fschmd.c | 715 int ret, resolution; in watchdog_set_timeout() local 720 resolution = 2; in watchdog_set_timeout() 722 resolution = 60; in watchdog_set_timeout() 724 if (timeout < resolution || timeout > (resolution * 255)) in watchdog_set_timeout() 733 if (resolution == 2) in watchdog_set_timeout() 738 data->watchdog_preset = DIV_ROUND_UP(timeout, resolution); in watchdog_set_timeout() 748 ret = data->watchdog_preset * resolution; in watchdog_set_timeout()
|
/linux-4.1.27/sound/core/seq/ |
D | seq_timer.c | 39 tmr->tick.resolution = (tmr->tempo * 1000) / tmr->ppq; in snd_seq_timer_set_tick_resolution() 45 tmr->tick.resolution = (tmr->tempo / tmr->ppq) * 1000; in snd_seq_timer_set_tick_resolution() 46 tmr->tick.resolution += s; in snd_seq_timer_set_tick_resolution() 48 if (tmr->tick.resolution <= 0) in snd_seq_timer_set_tick_resolution() 49 tmr->tick.resolution = 1; in snd_seq_timer_set_tick_resolution() 136 unsigned long resolution, in snd_seq_timer_interrupt() argument 154 resolution *= ticks; in snd_seq_timer_interrupt() 157 resolution = (resolution >> 16) * tmr->skew + in snd_seq_timer_interrupt() 158 (((resolution & 0xffff) * tmr->skew) >> 16); in snd_seq_timer_interrupt() 162 snd_seq_inc_time_nsec(&tmr->cur_time, resolution); in snd_seq_timer_interrupt() [all …]
|
D | seq_timer.h | 29 unsigned long resolution; /* time per tick in nsec */ member 69 unsigned long resolution) in snd_seq_timer_update_tick() argument 71 if (tick->resolution > 0) { in snd_seq_timer_update_tick() 72 tick->fraction += resolution; in snd_seq_timer_update_tick() 73 tick->cur_tick += (unsigned int)(tick->fraction / tick->resolution); in snd_seq_timer_update_tick() 74 tick->fraction %= tick->resolution; in snd_seq_timer_update_tick()
|
D | seq_clientmgr.c | 1776 timer.u.alsa.resolution = tmr->preferred_resolution; in snd_seq_ioctl_get_queue_timer() 1816 tmr->preferred_resolution = timer.u.alsa.resolution; in snd_seq_ioctl_set_queue_timer()
|
/linux-4.1.27/sound/core/ |
D | hrtimer.c | 36 static unsigned int resolution; variable 53 oruns = hrtimer_forward_now(hrt, ns_to_ktime(t->sticks * resolution)); in snd_hrtimer_callback() 94 hrtimer_start(&stime->hrt, ns_to_ktime(t->sticks * resolution), in snd_hrtimer_start() 134 resolution = tp.tv_nsec; in snd_hrtimer_init() 145 timer->hw.resolution = resolution; in snd_hrtimer_init() 146 timer->hw.ticks = NANO_SEC / resolution; in snd_hrtimer_init()
|
D | timer.c | 390 return timer->hw.resolution; in snd_timer_resolution() 399 unsigned long resolution = 0; in snd_timer_notify1() local 412 resolution = snd_timer_resolution(ti); in snd_timer_notify1() 414 ti->ccallback(ti, event, &tstamp, resolution); in snd_timer_notify1() 425 ts->ccallback(ts, event + 100, &tstamp, resolution); in snd_timer_notify1() 673 unsigned long resolution, ticks; in snd_timer_tasklet() local 690 resolution = ti->resolution; in snd_timer_tasklet() 695 ti->callback(ti, resolution, ticks); in snd_timer_tasklet() 711 unsigned long resolution, ticks; in snd_timer_interrupt() local 726 resolution = timer->hw.c_resolution(timer); in snd_timer_interrupt() [all …]
|
D | timer_compat.c | 31 u32 resolution; member 54 info.resolution = t->hw.resolution; in snd_timer_user_info_compat() 62 u32 resolution; member 81 status.resolution = snd_timer_resolution(tu->timeri); in snd_timer_user_status_compat()
|
D | rtctimer.c | 147 timer->hw.resolution = NANO_SEC / rtctimer_freq; in rtctimer_init()
|
D | pcm_timer.c | 94 .resolution = 0,
|
/linux-4.1.27/drivers/iio/adc/ |
D | mcp320x.c | 55 unsigned int resolution; member 164 *val2 = adc->chip_info->resolution; in mcp320x_read_raw() 240 .resolution = 10 245 .resolution = 10 250 .resolution = 10 255 .resolution = 10 260 .resolution = 12 265 .resolution = 12 270 .resolution = 12 275 .resolution = 12
|
/linux-4.1.27/Documentation/timers/ |
D | hrtimers.txt | 2 hrtimers - subsystem for high-resolution kernel timers 5 This patch introduces a new subsystem for high-resolution kernel timers. 9 back and forth trying to integrate high-resolution and high-precision 11 such high-resolution timer implementations in practice, we came to the 18 - the forced handling of low-resolution and high-resolution timers in 30 necessitate a more complex handling of high resolution timers, which 62 high-resolution timer subsystem as well. 64 While this subsystem does not offer high-resolution clock sources just 65 yet, the hrtimer subsystem can be easily extended with high-resolution 73 resolution and low precision use cases - once the precision-sensitive [all …]
|
D | highres.txt | 1 High resolution timers and dynamic ticks design notes 25 - high resolution timer functionality 79 functionality like high resolution timers or dynamic ticks. 99 accounting, profiling, and high resolution timers. 128 utilize the high resolution and dynamic tick functionalities without any change 130 enabling of high resolution timers and dynamic ticks is simply provided by 138 high resolution timer functionality 141 During system boot it is not possible to use the high resolution timer 146 the high resolution functionality can work. Up to the point where hrtimers are 147 initialized, the system works in the usual low resolution periodic mode. The [all …]
|
D | 00-INDEX | 4 - High resolution timers and dynamic ticks design notes 10 - subsystem for high-resolution kernel timers
|
D | timekeeping.txt | 16 on this timeline, providing facilities such as high-resolution timers. 34 The clock source shall have as high resolution as possible, and the frequency 133 it will fall back to using jiffies, making its maximum resolution 1/HZ of the
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | hwtimer.c | 64 acpi_status acpi_get_timer_resolution(u32 * resolution) in acpi_get_timer_resolution() argument 68 if (!resolution) { in acpi_get_timer_resolution() 73 *resolution = 24; in acpi_get_timer_resolution() 75 *resolution = 32; in acpi_get_timer_resolution()
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
D | das1800.c | 208 int resolution; /* bits of ai resolution */ member 225 .resolution = 12, 236 .resolution = 12, 247 .resolution = 12, 258 .resolution = 12, 269 .resolution = 16, 280 .resolution = 16, 291 .resolution = 12, 302 .resolution = 12, 313 .resolution = 12, [all …]
|
D | das800.c | 103 int resolution; member 176 .resolution = 12, 182 .resolution = 12, 188 .resolution = 12, 194 .resolution = 12, 200 .resolution = 12, 206 .resolution = 12, 212 .resolution = 16, 249 if (thisboard->resolution == 16) in das800_enable() 396 if (thisboard->resolution == 12 && gain > 0) in das800_ai_do_cmd() [all …]
|
/linux-4.1.27/drivers/staging/iio/resolver/ |
D | ad2s1210.c | 90 u8 resolution; member 179 ad2s1210_res_pins[(st->resolution - 10)/2][0]); in ad2s1210_set_resolution_pin() 181 ad2s1210_res_pins[(st->resolution - 10)/2][1]); in ad2s1210_set_resolution_pin() 315 st->resolution in ad2s1210_store_control() 319 if (data != st->resolution) in ad2s1210_store_control() 337 return sprintf(buf, "%d\n", st->resolution); in ad2s1210_show_resolution() 376 st->resolution in ad2s1210_store_resolution() 380 if (data != st->resolution) in ad2s1210_store_resolution() 502 pos >>= 16 - st->resolution; in ad2s1210_read_raw() 509 vel >>= 16 - st->resolution; in ad2s1210_read_raw() [all …]
|
/linux-4.1.27/include/sound/ |
D | timer.h | 58 unsigned long resolution; /* average timer resolution for one tick in nsec */ member 102 unsigned long ticks, unsigned long resolution); 106 unsigned long resolution); 111 unsigned long resolution; /* current resolution for tasklet */ member
|
/linux-4.1.27/drivers/watchdog/ |
D | bcm_kona_wdt.c | 39 #define SECS_TO_TICKS(x, w) ((x) << (w)->resolution) 40 #define TICKS_TO_SECS(x, w) ((x) >> (w)->resolution) 57 int resolution; member 131 res, wdt->resolution, in bcm_kona_wdt_dbg_show() 215 if (wdt->resolution > SECWDOG_MAX_RES) in bcm_kona_wdt_set_resolution_reg() 219 wdt->resolution << SECWDOG_CLKS_SHIFT); in bcm_kona_wdt_set_resolution_reg() 312 wdt->resolution = SECWDOG_DEFAULT_RESOLUTION; in bcm_kona_wdt_probe()
|
/linux-4.1.27/Documentation/hwmon/ |
D | ds1621 | 83 also pin compatible with the DS1621 and provide multi-resolution support. 94 DS1631 - 93ms..750ms for 9..12 bits resolution, respectively. 95 DS1721 - 93ms..750ms for 9..12 bits resolution, respectively. 96 DS1731 - 93ms..750ms for 9..12 bits resolution, respectively. 115 As mentioned above, the DS1631, DS1721, and DS1731 provide multi-resolution 126 At initial device power-on, the default resolution is set to 12-bits. 128 The resolution mode for the DS1631, DS1721, or DS1731 can be changed from 130 will normalize the range of input values to the device maximum resolution 179 Mathematically, the resolution can be derived from the conversion time 186 -> 'g(x)' = the resolution in degrees C per LSB.
|
D | lm73 | 25 LSB: 0.25, 0.125, 0.0625, and 0.3125. Changing the resolution mode 27 From userspace, the desired resolution can be specified as a function of 30 maximum times defined for the resolution in the datasheet. 73 Mathematically, the resolution can be derived from the conversion time 79 resolution in degrees C per LSB.
|
D | mcp3021 | 23 converter (ADC) with 10-bit resolution. The MCP3221 has 12-bit resolution.
|
D | adc128d818 | 25 measurement has a resolution of 0.5 degrees; the limits have a resolution 32 inputs can measure voltages between 0 and 2.55 volts, with a resolution
|
D | nct7904 | 33 0.125 degree resolution) 36 0.125 degree resolution)
|
D | w83793 | 42 If your motherboard maker used the reference design, the resolution of 43 voltage0-2 is 2mV, resolution of voltage3/4/5 is 16mV, 8mV for voltage6, 44 24mV for voltage7/8. Temp1-4 have a 0.25 degree Celsius resolution, 45 temp5-6 have a 1 degree Celsiis resolution.
|
D | lm80 | 38 +125 degrees. The current temperature measurement has a resolution of 39 0.0625 degrees; the limits have a resolution of 1 degree. 52 inputs can measure voltages between 0 and 2.55 volts, with a resolution
|
D | sht21 | 42 The driver uses the default resolution settings of 12 bit for humidity and 14 46 e.g. maximum two measurements per second at the given resolution.
|
D | lm70 | 39 temperature data (0.0625 degrees celsius resolution). 42 data (0.03125 degrees celsius resolution).
|
D | tmp401 | 37 sensor resolution can be set to 0.5, 0.25, 0.125 or 0.0625 degree (not 38 supported by the driver so far, so using the default resolution of 0.5
|
D | lm90 | 151 increased resolution of the remote temperature measurement. 178 * Lower resolution for remote temperature 181 * Better local resolution 185 * Better local resolution 195 * Better local resolution 211 * Better local resolution 216 resolution of 0.125 degree for both temperatures.
|
D | k8temp | 35 Temperatures are measured in degrees Celsius and measurement resolution is 36 1 degree C. It is expected that future CPU will have better resolution. The
|
D | adm9240 | 74 with resolution of 0.5 degrees Celsius. High and low temperature limits 75 are 8-bit signed data with resolution of one degree Celsius. 109 - resolution of the low speed limit may be reduced 127 nr label nominal maximum resolution
|
D | tmp103 | 18 temperatures to a resolution of 1°C. The TMP103 is specified for
|
D | adt7410 | 33 resolution of 13 bits (0.0625°C) or 16 bits (0.0078°C). The sensor provides an 59 The device is set to 16 bit resolution and comparator mode.
|
D | lm78 | 39 between -55 and +125 degrees, with a resolution of 1 degree. 52 inputs can measure voltages between 0 and 4.08 volts, with a resolution
|
D | gl518sm | 55 measures voltages between 0.000 and 5.865 volt, with a resolution of 0.023 57 a resolution of 0.019 volt. Note that revision 0x00 chips do not support
|
D | asc7621 | 22 specification. First enhancement is temperature reading resolution. We 32 sheet says 10-bits of resolution, although you may find the lower bits 38 when compared to the competition, in addition to the higher resolution 111 - 0.25C digital temperature sensor resolution
|
D | smsc47m192 | 31 Voltages and temperatures are measured by an 8-bit ADC, the resolution 35 each voltage channel is 0V ... 255/192*(nominal voltage), the resolution
|
D | da9055 | 12 resolution and track and hold circuitry combined with an analogue input
|
D | w83l786ng | 30 Temperatures are measured in degrees Celsius and measurement resolution is 1
|
D | htu21 | 38 The driver uses the default resolution settings of 12 bit for humidity and 14
|
D | sis5595 | 71 resolution of 1 degree. 84 inputs can measure voltages between 0 and 4.08 volts, with a resolution of
|
D | nct6683 | 21 Temperatures are measured in degrees Celsius. Measurement resolution is
|
D | pc87427 | 55 standard), so the resolution and range depend on the type of sensor
|
D | da9052 | 12 resolution and track and hold circuitry combined with an analogue input
|
D | sht15 | 62 flag to indicate the temp/humidity resolution to use (default to false).
|
D | adt7462 | 42 with 0.25 degC resolution.
|
D | mc13783-adc | 22 A/D converter has a resolution of 2.25mV.
|
D | adt7470 | 44 degC resolution.
|
D | dme1737 | 68 The voltage inputs are sampled with 12-bit resolution and have internal 117 Temperatures are measured with 12-bit resolution and reported in millidegree 137 Fan RPMs are measured with 16-bit resolution. The chip provides inputs for 6
|
D | w83627ehf | 64 Temperatures are measured in degrees Celsius and measurement resolution is 1 66 resolution is 1 degC for W83667HG-B and 0.0 degC for NCT6775F and NCT6776F.
|
D | lm75 | 88 therefore be instantiated explicitly. Higher resolution up to 12-bit
|
D | lm63 | 76 and better PWM resolution. For LM96163, the external temperature sensor type is
|
D | k10temp | 62 sysfs. It is measured in degrees Celsius with a resolution of 1/8th degree.
|
D | via686a | 56 has a different resolution and range.
|
D | coretemp | 27 Temperature is measured in degrees Celsius and measurement resolution is
|
D | adt7475 | 86 with a resolution of 0.25 degree Celsius. Temperature readings can be
|
D | adm1026 | 46 be asserted. The current temperature and limits have a resolution of 1
|
D | adm1021 | 79 are possible between -65 and +127 degrees, with a resolution of one degree.
|
D | w83792d | 45 Temperatures are measured in degrees Celsius and measurement resolution is 1
|
D | w83791d | 64 Temperatures are measured in degrees Celsius and measurement resolution is 1
|
D | f71805f | 102 resolution is much lower than you would expect, the step between different
|
D | nct6775 | 57 Temperatures are measured in degrees Celsius and measurement resolution is
|
D | w83781d | 89 main temperature sensors has a resolution of 1 degree; the other sensor(s) 104 inputs can measure voltages between 0 and 4.08 volts, with a resolution
|
D | lm85 | 103 measure temperatures with 0.25 degC resolution. They also provide an offset
|
D | it87 | 177 inputs can measure voltages between 0 and 4.08 volts, with a resolution of
|
/linux-4.1.27/drivers/input/mouse/ |
D | lifebook.c | 232 static void lifebook_set_resolution(struct psmouse *psmouse, unsigned int resolution) in lifebook_set_resolution() argument 237 if (resolution == 0 || resolution > 400) in lifebook_set_resolution() 238 resolution = 400; in lifebook_set_resolution() 240 p = params[resolution / 100]; in lifebook_set_resolution() 242 psmouse->resolution = 50 << p; in lifebook_set_resolution()
|
D | psmouse.h | 67 unsigned int resolution; member 74 void (*set_resolution)(struct psmouse *psmouse, unsigned int resolution); 115 void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution);
|
D | logips2pp.c | 182 static void ps2pp_set_resolution(struct psmouse *psmouse, unsigned int resolution) in ps2pp_set_resolution() argument 184 if (resolution > 400) { in ps2pp_set_resolution() 192 psmouse->resolution = 800; in ps2pp_set_resolution() 194 psmouse_set_resolution(psmouse, resolution); in ps2pp_set_resolution()
|
D | psmouse-base.c | 59 module_param_named(resolution, psmouse_resolution, uint, 0644); 60 MODULE_PARM_DESC(resolution, "Resolution, in dpi."); 84 PSMOUSE_DEFINE_ATTR(resolution, S_IWUSR | S_IRUGO, 85 (void *) offsetof(struct psmouse, resolution), 428 void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution) in psmouse_set_resolution() argument 433 if (resolution == 0 || resolution > 200) in psmouse_set_resolution() 434 resolution = 200; in psmouse_set_resolution() 436 p = params[resolution / 50]; in psmouse_set_resolution() 438 psmouse->resolution = 25 << p; in psmouse_set_resolution() 1217 psmouse->set_resolution(psmouse, psmouse->resolution); in psmouse_initialize() [all …]
|
D | focaltech.c | 380 void focaltech_set_resolution(struct psmouse *psmouse, unsigned int resolution) in focaltech_set_resolution() argument
|
/linux-4.1.27/lib/fonts/ |
D | Kconfig | 28 This is the "high resolution" font for the VGA frame buffer (the one 34 Given the resolution provided by the frame buffer device, answer N 41 This is the "high resolution" font for the VGA frame buffer (the one 94 This is the high resolution console font for Sun machines. Say Y. 100 This is the high resolution console font for Sun machines with very 108 This is a high resolution console font for machines with very
|
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/ |
D | ti,bq24735.txt | 14 must be between 128mA and 8.128A with a 64mA step resolution. The POR value 18 must be between 1.024V and 19.2V with a 16mV step resolution. The POR value 22 value must be between 128mA and 8.064A with a 128mA step resolution. The
|
/linux-4.1.27/Documentation/misc-devices/ |
D | isl29003 | 19 provides 16-bit resolution while rejecting 50Hz and 60Hz flicker caused by 22 The driver allows to set the lux range, the bit resolution, the operational 45 resolution:
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | mms114.txt | 7 - x-size: horizontal resolution of touchscreen 8 - y-size: vertical resolution of touchscreen
|
D | pixcir_i2c_ts.txt | 8 - touchscreen-size-x: horizontal resolution of touchscreen (in pixels) 9 - touchscreen-size-y: vertical resolution of touchscreen (in pixels)
|
D | auo_pixcir_ts.txt | 9 - x-size: horizontal resolution of touchscreen 10 - y-size: vertical resolution of touchscreen
|
D | zforce_ts.txt | 9 - x-size: horizontal resolution of touchscreen 10 - y-size: vertical resolution of touchscreen
|
D | chipone_icn8318.txt | 10 - touchscreen-size-x : horizontal resolution of touchscreen (in pixels) 11 - touchscreen-size-y : vertical resolution of touchscreen (in pixels)
|
D | touchscreen.txt | 4 - touchscreen-size-x : horizontal resolution of touchscreen 6 - touchscreen-size-y : vertical resolution of touchscreen
|
D | brcm,iproc-touchscreen.txt | 47 - touchscreen-size-x: horizontal resolution of touchscreen (in pixels) 48 - touchscreen-size-y: vertical resolution of touchscreen (in pixels)
|
/linux-4.1.27/include/video/ |
D | auo_k190xfb.h | 40 int resolution; member 102 int resolution; member
|
/linux-4.1.27/drivers/hid/ |
D | hid-uclogic.c | 792 s32 resolution; in uclogic_tablet_enable() local 833 resolution = le16_to_cpu(buf[UCLOGIC_PRM_RESOLUTION]); in uclogic_tablet_enable() 834 if (resolution == 0) { in uclogic_tablet_enable() 839 1000 / resolution; in uclogic_tablet_enable() 841 1000 / resolution; in uclogic_tablet_enable()
|
D | hid-logitech-hidpp.c | 701 unsigned int resolution; member 722 input_abs_set_res(input_dev, ABS_MT_POSITION_X, wd->resolution); in wtp_populate_input() 724 input_abs_set_res(input_dev, ABS_MT_POSITION_Y, wd->resolution); in wtp_populate_input() 890 wd->resolution = raw_info.res; in wtp_get_config() 891 if (!wd->resolution) in wtp_get_config() 892 wd->resolution = WTP_MANUAL_RESOLUTION; in wtp_get_config()
|
/linux-4.1.27/drivers/media/i2c/m5mols/ |
D | m5mols_core.c | 501 u32 *resolution) in __find_resolution() argument 525 *resolution = match->reg; in __find_resolution() 570 u32 resolution = 0; in m5mols_set_fmt() local 573 ret = __find_resolution(sd, format, &type, &resolution); in m5mols_set_fmt() 589 info->resolution = resolution; in m5mols_set_fmt() 699 ret = m5mols_write(sd, PARM_MON_SIZE, info->resolution); in m5mols_start_monitor()
|
D | m5mols_capture.c | 123 ret = m5mols_write(sd, CAPP_MAIN_IMAGE_SIZE, info->resolution); in m5mols_start_capture()
|
D | m5mols.h | 242 u8 resolution; member
|
/linux-4.1.27/Documentation/fb/ |
D | sm501.txt | 9 Specify resolution as
|
D | aty128fb.txt | 19 if you use same resolution as you used in textmode. 26 Switching modes is done using the video=aty128fb:<resolution>... modedb
|
D | sh7760fb.txt | 16 * The driver does not support changing resolution while loaded 24 resolution is <= 320 pixels.
|
D | intel810.txt | 28 - Supports a variable range of horizontal and vertical resolution and 59 select horizontal resolution in pixels. (This parameter will be 66 select vertical resolution in scanlines. If Discrete Video Timings 75 select virtual vertical resolution in scanlines. If (0) or none
|
D | gxfb.txt | 25 Switching modes is done using gxfb.mode_option=<resolution>... boot
|
D | lxfb.txt | 25 Switching modes is done using lxfb.mode_option=<resolution>... boot
|
D | sisfb.txt | 16 sisfb is eg. useful if you want a high-resolution text console. Besides that, 94 resolution is used. If you want to switch to a different mode, use the fbset 98 type is LCD, in which case it defaults to the LCD's native resolution. If
|
D | cirrusfb.txt | 49 * Hint for AXP: Use -accel false -vyres -1 when changing resolution
|
D | matroxfb.txt | 19 if you use same resolution as you used in textmode. 28 If you want, for example, enable a resolution of 1280x1024x24bpp you should 89 driver is possible, but you must not enable DRI - if you do, resolution and 90 color depth of your X desktop must match resolution and color depths of your 240 xres:X - horizontal resolution, in pixels. Default is derived from `vesa' 242 yres:X - vertical resolution, in pixel lines. Default is derived from `vesa'
|
D | framebuffer.txt | 138 up in the resolution determined by /dev/fb0 (or $FRAMEBUFFER, if set). You 140 resolution (using the Virtual keyword) though. This is the default for the 145 file. This allows for on-the-fly resolution switching while retaining the 179 If the screen resolution is 640x480, it will take
|
D | api.txt | 182 __u32 xres; /* visible resolution */ 184 __u32 xres_virtual; /* virtual resolution */ 187 __u32 yoffset; /* resolution */
|
D | tridentfb.txt | 23 switch resolution which the chip does not support at some depths for
|
D | viafb.txt | 173 3. When console is depending on viafbinfo1, dynamically change resolution 186 # fbset <resolution-vertical_sync>
|
D | pxafb.txt | 19 The resolution of the display in pixels
|
D | uvesafb.txt | 37 or most optimal resolution/refresh rate for your setup will not work
|
/linux-4.1.27/kernel/time/ |
D | hrtimer.c | 77 .resolution = KTIME_LOW_RES, 83 .resolution = KTIME_LOW_RES, 89 .resolution = KTIME_LOW_RES, 95 .resolution = KTIME_LOW_RES, 682 base->clock_base[i].resolution = KTIME_HIGH_RES; in hrtimer_switch_to_hres() 817 if (interval.tv64 < timer->base->resolution.tv64) in hrtimer_forward() 818 interval.tv64 = timer->base->resolution.tv64; in hrtimer_forward() 959 tim = ktime_add_safe(tim, base->resolution); in __hrtimer_start_range_ns() 1193 *tp = ktime_to_timespec(cpu_base->clock_base[base].resolution); in hrtimer_get_res()
|
D | timer_list.c | 126 (unsigned long long)ktime_to_ns(base->resolution)); in print_base()
|
D | Kconfig | 194 This option enables high resolution timer support. If your
|
/linux-4.1.27/include/uapi/sound/ |
D | asound.h | 691 unsigned long resolution; /* average period resolution in ns */ member 707 unsigned long resolution; /* current period resolution in ns */ member 724 unsigned long resolution; /* average period resolution in ns */ member 743 unsigned int resolution; /* current period resolution in ns */ member 767 unsigned int resolution; member
|
D | asequencer.h | 522 unsigned int resolution; /* resolution in Hz */ member
|
/linux-4.1.27/sound/isa/gus/ |
D | gus_timer.c | 129 .resolution = 80000, 138 .resolution = 320000,
|
/linux-4.1.27/drivers/input/ |
D | Kconfig | 110 int "Horizontal screen resolution" 116 screen resolution you are using to correctly scale the data. If 120 int "Vertical screen resolution" 126 screen resolution you are using to correctly scale the data. If
|
D | evdev.c | 1035 abs.resolution = 0; in evdev_do_ioctl()
|
/linux-4.1.27/Documentation/devicetree/bindings/iio/adc/ |
D | at91_adc.txt | 18 - atmel,adc-res-names: Contains one identifier string for each resolution 26 resolution will be used.
|
/linux-4.1.27/sound/pci/emu10k1/ |
D | timer.c | 71 .resolution = 20833, /* 1 sample @ 48KHZ = 20.833...us */
|
/linux-4.1.27/drivers/media/pci/cx23885/ |
D | cx23888-ir.c | 801 p->resolution = clock_divider_to_resolution(rxclk_divider); in cx23888_ir_rx_s_parameters() 802 o->resolution = p->resolution; in cx23888_ir_rx_s_parameters() 919 p->resolution = clock_divider_to_resolution(txclk_divider); in cx23888_ir_tx_s_parameters() 920 o->resolution = p->resolution; in cx23888_ir_tx_s_parameters()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-bus-iio-frequency-adf4350 | 5 Stores channel Y frequency resolution/channel spacing in Hz.
|
D | sysfs-block-dm | 33 queue. The resolution of this deadline is in
|
D | sysfs-driver-hid-roccat-kovaplus | 40 profile_settings holds information like resolution, sensitivity
|
D | sysfs-driver-hid-roccat-pyra | 14 profile_settings holds information like resolution, sensitivity
|
D | sysfs-driver-hid-roccat-savu | 29 button settings. profile holds informations like resolution, sensitivity
|
D | sysfs-driver-hid-roccat-koneplus | 51 profile_settings holds information like resolution, sensitivity
|
D | sysfs-driver-hid-roccat-konepure | 60 profile_settings holds information like resolution, sensitivity
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-adc-ad7280a | 18 36.9 minutes. The resolution of the timer is 71.5 sec.
|
D | sysfs-bus-iio-light | 19 Hardware dependent ADC resolution of the ambient light sensor
|
/linux-4.1.27/drivers/media/i2c/cx25840/ |
D | cx25840-ir.c | 828 p->resolution = clock_divider_to_resolution(rxclk_divider); in cx25840_ir_rx_s_parameters() 829 o->resolution = p->resolution; in cx25840_ir_rx_s_parameters() 1004 p->resolution = clock_divider_to_resolution(txclk_divider); in cx25840_ir_tx_s_parameters() 1005 o->resolution = p->resolution; in cx25840_ir_tx_s_parameters()
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | 00-INDEX | 10 - nfs client, and DNS resolution for fs_locations.
|
/linux-4.1.27/drivers/atm/ |
D | eni.h | 43 int resolution; /* shaping divider */ member
|
D | eni.c | 1153 (tx->resolution << MID_SEG_RATE_SHIFT) | in do_tx() 1366 tx->resolution = res; in reserve_or_set_tx() 1987 (tx->resolution << MID_SEG_RATE_SHIFT), dsc); in eni_change_qos()
|
/linux-4.1.27/Documentation/video4linux/ |
D | README.davinci-vpbe | 50 API to set timings in VENC for a specific display resolution. As of this 64 timings for the resolution supported and setting the dot clock. So we could
|
D | README.cpia2 | 84 the images will all be about the size in the table, regardless of resolution.
|
D | uvcvideo.txt | 194 Query the resolution of the control, i.e. the step size of the
|
D | vivid.txt | 350 select an HDMI timing is based on the format resolution: for resolutions 402 select an HDMI timing is based on the format resolution: for resolutions 899 - the video resolution of the video input must match that of the video output. 971 less. So for a source resolution of 1280x720 the minimum the scaler can do is
|
/linux-4.1.27/Documentation/devicetree/bindings/ |
D | xilinx.txt | 241 - resolution = <xres yres> : pixel resolution of framebuffer. Some 242 implementations use a different resolution. 244 - virt-resolution = <xvirt yvirt> : Size of framebuffer in memory.
|
/linux-4.1.27/drivers/gpu/drm/panel/ |
D | Kconfig | 39 TFT-LCD modules. The panel has a 2560x1600 resolution and uses
|
/linux-4.1.27/drivers/video/console/ |
D | Kconfig | 86 Select 80 if you use a 640x480 resolution by default. 96 Select 25 if you use a 640x480 resolution by default.
|
/linux-4.1.27/arch/avr32/boards/atngw100/ |
D | Kconfig | 46 prompt "LCD panel resolution on EVKLCD10X"
|
/linux-4.1.27/Documentation/devicetree/bindings/drm/tilcdc/ |
D | panel.txt | 17 should be the preferred/default resolution. Refer to
|
/linux-4.1.27/Documentation/devicetree/bindings/media/ |
D | s5p-mfc.txt | 4 supports high resolution decoding and encoding functionalities.
|
/linux-4.1.27/drivers/xen/ |
D | efi.c | 54 tc->resolution = efi_data(op).u.get_time.resolution; in xen_efi_get_time()
|
/linux-4.1.27/arch/arm/plat-omap/ |
D | Kconfig | 97 timer provides more intra-tick resolution than the 32KHz timer, 108 intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is
|
/linux-4.1.27/drivers/video/fbdev/ |
D | auo_k1900fb.c | 73 init_param |= AUOK1900_INIT_RESOLUTION(par->resolution); in auok1900_init()
|
D | auo_k1901fb.c | 112 init_param |= AUOK1901_INIT_RESOLUTION(par->resolution); in auok1901_init()
|
D | auo_k190x.c | 446 struct panel_info *panel = &panel_table[par->resolution]; in auok190xfb_check_var() 1053 panel = &panel_table[board->resolution]; in auok190x_common_probe() 1055 par->resolution = board->resolution; in auok190x_common_probe()
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | display-timing.txt | 18 - hactive, vactive: display resolution
|
/linux-4.1.27/sound/drivers/opl3/ |
D | opl3_lib.c | 235 .resolution = 80000, 244 .resolution = 320000,
|
/linux-4.1.27/include/linux/ |
D | isdnif.h | 245 __u8 resolution; member
|
D | hrtimer.h | 150 ktime_t resolution; member
|
D | input.h | 463 INPUT_GENERATE_ABS_ACCESSORS(res, resolution)
|
D | efi.h | 153 u32 resolution; member
|
/linux-4.1.27/Documentation/ |
D | SecurityBugs | 23 bug submitter to bug resolution as well as disclosure. We prefer
|
D | oops-tracing.txt | 36 may find that booting with a higher resolution (eg, vga=791) 147 faults. In order to have full support for address resolution at least 157 Two types of address resolution are performed by klogd. The first is
|
D | svga.txt | 134 0x1000 to 0x7fff - modes specified by resolution. The code has a "0xRRCC" 195 text screen resolution instead of peeking it from BIOS variables. Don't use 232 2.1 (30-Jan-96) VESA modes moved to 0x200-0x3ff. Mode selection by resolution
|
D | printk-formats.txt | 52 'f' specifiers perform this resolution and then provide the same
|
D | rbtree.txt | 26 The high-resolution timer code uses an rbtree to organize outstanding
|
/linux-4.1.27/drivers/isdn/i4l/ |
D | isdn_ttyfax.c | 704 char *rp = &f->resolution; in isdn_tty_cmd_FCLASS2() 750 char *rp = &f->resolution; in isdn_tty_cmd_FCLASS2() 834 char *rp = &f->resolution; in isdn_tty_cmd_FCLASS2()
|
/linux-4.1.27/Documentation/input/ |
D | atarikbd.txt | 11 resolution. 14 keyswitches, mouse resolution, etc. can be accommodated. 45 The mouse port should be capable of supporting a mouse with resolution of 62 resolution are returned to the host computer. 95 highest resolution available, and merely generates a pair of cursor key events 159 maintained down to a resolution of one second. 273 it does NOT affect the resolution of the data returned to the host. This
|
D | elantech.txt | 196 D: 1 = disable dynamic resolution 542 R: 1 = enable real hardware resolution
|
D | alps.txt | 166 given axis. Thus the bitmap packet can be used for low-resolution multi-touch
|
/linux-4.1.27/Documentation/ABI/obsolete/ |
D | sysfs-driver-hid-roccat-koneplus | 42 profile_settings holds information like resolution, sensitivity
|
D | sysfs-driver-hid-roccat-kovaplus | 60 profile_settings holds information like resolution, sensitivity
|
D | sysfs-driver-hid-roccat-pyra | 57 profile_settings holds information like resolution, sensitivity
|
/linux-4.1.27/Documentation/usb/ |
D | mtouchusb.txt | 48 The controller screen resolution is now 0 to 16384 for both X and Y reporting
|
D | usbmon.txt | 115 - Timestamp in microseconds, a decimal number. The timestamp's resolution
|
/linux-4.1.27/arch/mips/loongson/ |
D | Kconfig | 104 switched on you can not use high resolution timers.
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | PROBLEMS | 60 full resolution in 32-bit mode.
|
/linux-4.1.27/fs/ext4/ |
D | Kconfig | 14 allocation, persistent preallocation, high resolution time stamps,
|
/linux-4.1.27/drivers/char/ |
D | efirtc.c | 358 cap.resolution, cap.accuracy, cap.sets_to_zero); in efi_rtc_proc_show()
|
/linux-4.1.27/Documentation/devicetree/ |
D | overlay-notes.txt | 7 Documentation/devicetree/dynamic-resolution-notes.txt[2]
|
/linux-4.1.27/include/xen/interface/ |
D | platform.h | 147 uint32_t resolution; member
|
/linux-4.1.27/Documentation/isdn/ |
D | INTERFACE.fax | 36 - resolution
|
/linux-4.1.27/drivers/scsi/bfa/ |
D | bfa_fc.h | 289 resolution:1, /* ms/ns ED_TOV resolution */ member 303 resolution:1, /* ms/ns ED_TOV resolution */ member
|
/linux-4.1.27/drivers/misc/ |
D | isl29003.c | 259 static DEVICE_ATTR(resolution, S_IWUSR | S_IRUGO,
|
D | Kconfig | 235 other platforms. They have a better resolution and max interval 257 MFGPTs have a better resolution and max interval than the
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-trace.txt | 138 For symbols resolution you may need to install debugging symbols.
|
/linux-4.1.27/Documentation/networking/ |
D | dns_resolver.txt | 51 basic dname to IPv4/IPv6 address resolution, the following line should be
|
D | timestamping.txt | 9 control message as struct timeval (usec resolution). 13 timestamp as struct timespec (nsec resolution). 38 Its struct timespec allows for higher resolution (ns) timestamps than the
|
D | de4x5.txt | 100 The downside is the 1 'jiffies' (10ms) resolution.
|
D | README.sb1000 | 119 see if the networking is running but the DNS resolution is where the
|
/linux-4.1.27/tools/perf/config/ |
D | utilities.mak | 165 # relative path resolution is requested, as determined
|
/linux-4.1.27/include/media/ |
D | v4l2-subdev.h | 460 u32 resolution; /* ns */ member
|
/linux-4.1.27/include/acpi/ |
D | acpixf.h | 838 acpi_get_timer_resolution(u32 *resolution))
|
/linux-4.1.27/include/uapi/linux/ |
D | input.h | 73 __s32 resolution; 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/fs/cifs/ |
D | Kconfig | 160 utilities to provide server name resolution (host names to
|
/linux-4.1.27/tools/power/x86/turbostat/ |
D | turbostat.c | 2222 unsigned int resolution; in print_thermal() local 2228 resolution = (msr >> 27) & 0xF; in print_thermal() 2230 cpu, msr, tcc_activation_temp - dts, resolution); in print_thermal()
|
/linux-4.1.27/drivers/input/serio/ |
D | Kconfig | 139 The SDC itself contains a 10ms resolution timer/clock capable
|
/linux-4.1.27/drivers/isdn/hardware/eicon/ |
D | divacapi.h | 456 byte resolution; member
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | Assabet | 231 Boot script timeout (1000ms resolution): 3
|
/linux-4.1.27/Documentation/filesystems/ |
D | path-lookup.txt | 4 Path resolution is the finding a dentry corresponding to a path name string, by 334 scalability of path resolution.
|
/linux-4.1.27/sound/pci/ |
D | azt3328.c | 2243 .resolution = 977, /* 1000000/1024000 = 0.9765625us */ 2263 snd_azf3328_timer_hw.resolution *= seqtimer_scaling; in snd_azf3328_timer()
|
/linux-4.1.27/Documentation/watchdog/ |
D | watchdog-kernel-api.txt | 156 because the watchdog does not necessarily has a 1 second resolution).
|
/linux-4.1.27/Documentation/dvb/ |
D | avermedia.txt | 46 For a PAL TV signal encoded at a resolution of 768x576 24-bit
|
/linux-4.1.27/arch/cris/ |
D | Kconfig | 106 timer1 to get sub jiffie resolution timers (primarily one-shot
|
/linux-4.1.27/sound/isa/ad1816a/ |
D | ad1816a_lib.c | 436 .resolution = 10000,
|
/linux-4.1.27/Documentation/device-mapper/ |
D | cache.txt | 160 Discard bitset resolution
|
/linux-4.1.27/drivers/media/tuners/ |
D | mxl5005s.c | 305 static u32 MXL_Ceiling(u32 value, u32 resolution); 3584 static u32 MXL_Ceiling(u32 value, u32 resolution) in MXL_Ceiling() argument 3586 return value / resolution + (value % resolution > 0 ? 1 : 0); in MXL_Ceiling()
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-encoder-api.txt | 92 Select video stream encoding resolution.
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | timekeeping.txt | 543 the kernel time, which is expressed in the theoretically high resolution 567 back into nanosecond resolution values.
|
/linux-4.1.27/Documentation/development-process/ |
D | 6.Followthrough | 126 Other times, conflict resolution will involve working with the other
|