Home
last modified time | relevance | path

Searched refs:settings (Results 1 – 200 of 396) sorted by relevance

12

/linux-4.1.27/drivers/spi/
Dspi-xcomm.c36 uint16_t settings; member
46 uint16_t settings; in spi_xcomm_sync_config() local
49 settings = spi_xcomm->settings; in spi_xcomm_sync_config()
50 settings |= len << SPI_XCOMM_SETTINGS_LEN_OFFSET; in spi_xcomm_sync_config()
53 put_unaligned_be16(settings, &buf[1]); in spi_xcomm_sync_config()
74 struct spi_device *spi, struct spi_transfer *t, unsigned int *settings) in spi_xcomm_setup_transfer() argument
84 *settings |= SPI_XCOMM_SETTINGS_CLOCK_DIV_64; in spi_xcomm_setup_transfer()
86 *settings |= SPI_XCOMM_SETTINGS_CLOCK_DIV_16; in spi_xcomm_setup_transfer()
88 *settings |= SPI_XCOMM_SETTINGS_CLOCK_DIV_4; in spi_xcomm_setup_transfer()
94 *settings |= SPI_XCOMM_SETTINGS_CPOL; in spi_xcomm_setup_transfer()
[all …]
/linux-4.1.27/drivers/media/pci/zoran/
Dzoran_card.c731 struct zoran_jpg_settings *settings, in zoran_check_jpg_settings() argument
739 ZR_DEVNAME(zr), __func__, settings->decimation, settings->HorDcm, in zoran_check_jpg_settings()
740 settings->VerDcm, settings->TmpDcm); in zoran_check_jpg_settings()
744 ZR_DEVNAME(zr), __func__, settings->img_x, settings->img_y, in zoran_check_jpg_settings()
745 settings->img_width, settings->img_height); in zoran_check_jpg_settings()
747 switch (settings->decimation) { in zoran_check_jpg_settings()
750 settings->HorDcm = 1; in zoran_check_jpg_settings()
751 settings->VerDcm = 1; in zoran_check_jpg_settings()
752 settings->TmpDcm = 1; in zoran_check_jpg_settings()
753 settings->field_per_buff = 2; in zoran_check_jpg_settings()
[all …]
Dzoran_driver.c168 zoran_v4l2_calc_bufsize (struct zoran_jpg_settings *settings) in zoran_v4l2_calc_bufsize() argument
170 __u8 div = settings->VerDcm * settings->HorDcm * settings->TmpDcm; in zoran_v4l2_calc_bufsize()
1680 struct zoran_jpg_settings settings; in zoran_try_fmt_vid_out() local
1687 settings = fh->jpg_settings; in zoran_try_fmt_vid_out()
1691 settings.TmpDcm = 1; in zoran_try_fmt_vid_out()
1693 settings.TmpDcm = 2; in zoran_try_fmt_vid_out()
1694 settings.decimation = 0; in zoran_try_fmt_vid_out()
1696 settings.VerDcm = 2; in zoran_try_fmt_vid_out()
1698 settings.VerDcm = 1; in zoran_try_fmt_vid_out()
1700 settings.HorDcm = 4; in zoran_try_fmt_vid_out()
[all …]
Dzoran_card.h47 struct zoran_jpg_settings *settings,
/linux-4.1.27/drivers/cpufreq/
Dsa1100-cpufreq.c131 struct sa1100_dram_regs *settings = sa1100_dram_settings; in sa1100_update_dram_timings() local
134 while (settings->speed != 0) { in sa1100_update_dram_timings()
135 if (new_speed == settings->speed) in sa1100_update_dram_timings()
138 settings++; in sa1100_update_dram_timings()
141 if (settings->speed == 0) { in sa1100_update_dram_timings()
158 MDCAS2 = settings->mdcas2; in sa1100_update_dram_timings()
159 MDCAS1 = settings->mdcas1; in sa1100_update_dram_timings()
160 MDCAS0 = settings->mdcas0; in sa1100_update_dram_timings()
161 MDCNFG = settings->mdcnfg; in sa1100_update_dram_timings()
173 MDCAS0 = settings->mdcas0; in sa1100_update_dram_timings()
[all …]
/linux-4.1.27/net/irda/ircomm/
Dircomm_param.c167 param->pv.i = self->settings.service_type; in ircomm_param_service_type()
184 self->settings.service_type = IRCOMM_CENTRONICS; in ircomm_param_service_type()
186 self->settings.service_type = IRCOMM_9_WIRE; in ircomm_param_service_type()
188 self->settings.service_type = IRCOMM_3_WIRE; in ircomm_param_service_type()
190 self->settings.service_type = IRCOMM_3_WIRE_RAW; in ircomm_param_service_type()
193 self->settings.service_type); in ircomm_param_service_type()
206 (self->settings.service_type != IRCOMM_3_WIRE_RAW)) in ircomm_param_service_type()
233 self->settings.port_type = (__u8) param->pv.i; in ircomm_param_port_type()
236 self->settings.port_type); in ircomm_param_port_type()
258 strncpy(self->settings.port_name, param->pv.c, 32); in ircomm_param_port_name()
[all …]
Dircomm_tty_ioctl.c85 self->settings.data_rate = baud; in ircomm_tty_change_speed()
91 self->settings.flow_control |= IRCOMM_RTS_CTS_IN; in ircomm_tty_change_speed()
98 self->settings.flow_control &= ~IRCOMM_RTS_CTS_IN; in ircomm_tty_change_speed()
131 self->settings.data_format = cval; in ircomm_tty_change_speed()
163 self->settings.dte &= ~(IRCOMM_DTR|IRCOMM_RTS); in ircomm_tty_set_termios()
170 self->settings.dte |= IRCOMM_DTR; in ircomm_tty_set_termios()
173 self->settings.dte |= IRCOMM_RTS; in ircomm_tty_set_termios()
201 result = ((self->settings.dte & IRCOMM_RTS) ? TIOCM_RTS : 0) in ircomm_tty_tiocmget()
202 | ((self->settings.dte & IRCOMM_DTR) ? TIOCM_DTR : 0) in ircomm_tty_tiocmget()
203 | ((self->settings.dce & IRCOMM_CD) ? TIOCM_CAR : 0) in ircomm_tty_tiocmget()
[all …]
Dircomm_tty.c118 self->settings.dte |= IRCOMM_RTS | IRCOMM_DTR; in ircomm_port_raise_dtr_rts()
120 self->settings.dte &= ~(IRCOMM_RTS | IRCOMM_DTR); in ircomm_port_raise_dtr_rts()
129 return self->settings.dce & IRCOMM_CD; in ircomm_port_carrier_raised()
477 self->settings.service_type = IRCOMM_9_WIRE; /* 9 wire as default */ in ircomm_tty_open()
479 self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI; /* Default line settings */ in ircomm_tty_open()
484 self->settings.service_type = IRCOMM_3_WIRE_RAW; /* Default */ in ircomm_tty_open()
839 self->settings.dte &= ~IRCOMM_RTS; in ircomm_tty_throttle()
840 self->settings.dte |= IRCOMM_DELTA_RTS; in ircomm_tty_throttle()
869 self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS); in ircomm_tty_unthrottle()
1027 status = self->settings.dce; in ircomm_tty_check_modem_status()
[all …]
Dircomm_tty_attach.c195 memset(&self->settings, 0, sizeof(struct ircomm_params)); in ircomm_tty_detach_cable()
309 self->settings.data_rate); in ircomm_tty_send_initial_parameters()
310 if (!self->settings.data_rate) in ircomm_tty_send_initial_parameters()
311 self->settings.data_rate = 9600; in ircomm_tty_send_initial_parameters()
313 self->settings.data_format); in ircomm_tty_send_initial_parameters()
314 if (!self->settings.data_format) in ircomm_tty_send_initial_parameters()
315 self->settings.data_format = IRCOMM_WSIZE_8; /* 8N1 */ in ircomm_tty_send_initial_parameters()
318 self->settings.flow_control); in ircomm_tty_send_initial_parameters()
322 self->settings.dte = IRCOMM_DTR | IRCOMM_RTS; in ircomm_tty_send_initial_parameters()
331 if (self->settings.service_type == IRCOMM_3_WIRE) { in ircomm_tty_send_initial_parameters()
[all …]
/linux-4.1.27/drivers/hid/
Dhid-roccat-kone.c98 static void kone_set_settings_checksum(struct kone_settings *settings) in kone_set_settings_checksum() argument
101 unsigned char *address = (unsigned char *)settings; in kone_set_settings_checksum()
106 settings->checksum = cpu_to_le16(checksum); in kone_set_settings_checksum()
164 struct kone_settings const *settings) in kone_set_settings() argument
169 settings, sizeof(struct kone_settings)); in kone_set_settings()
283 memcpy(buf, ((char const *)&kone->settings) + off, count); in kone_sysfs_read_settings()
308 difference = memcmp(buf, &kone->settings, sizeof(struct kone_settings)); in kone_sysfs_write_settings()
317 old_profile = kone->settings.startup_profile; in kone_sysfs_write_settings()
318 memcpy(&kone->settings, buf, sizeof(struct kone_settings)); in kone_sysfs_write_settings()
320 kone_profile_activated(kone, kone->settings.startup_profile); in kone_sysfs_write_settings()
[all …]
Dhid-roccat-pyra.c82 struct pyra_settings const *settings) in pyra_set_settings() argument
85 PYRA_COMMAND_SETTINGS, settings, in pyra_set_settings()
257 struct pyra_settings const *settings; in pyra_sysfs_write_settings() local
262 settings = (struct pyra_settings const *)buf; in pyra_sysfs_write_settings()
263 if (settings->startup_profile >= ARRAY_SIZE(pyra->profile_settings)) in pyra_sysfs_write_settings()
268 retval = pyra_set_settings(usb_dev, settings); in pyra_sysfs_write_settings()
274 profile_activated(pyra, settings->startup_profile); in pyra_sysfs_write_settings()
277 roccat_report.value = settings->startup_profile + 1; in pyra_sysfs_write_settings()
286 PYRA_SYSFS_R(settings, SETTINGS);
288 __BIN_ATTR(settings, (S_IWUSR | S_IRUGO),
[all …]
Dhid-roccat-kone.h215 struct kone_settings settings; member
/linux-4.1.27/drivers/pinctrl/mvebu/
Dpinctrl-mvebu.c42 struct mvebu_mpp_ctrl_setting *settings; member
90 if (config == grp->settings[n].val) { in mvebu_pinctrl_find_setting_by_val()
92 grp->settings[n].variant)) in mvebu_pinctrl_find_setting_by_val()
93 return &grp->settings[n]; in mvebu_pinctrl_find_setting_by_val()
105 if (strcmp(name, grp->settings[n].name) == 0) { in mvebu_pinctrl_find_setting_by_name()
107 grp->settings[n].variant)) in mvebu_pinctrl_find_setting_by_name()
108 return &grp->settings[n]; in mvebu_pinctrl_find_setting_by_name()
119 if (grp->settings[n].flags & in mvebu_pinctrl_find_gpio_setting()
122 grp->settings[n].variant)) in mvebu_pinctrl_find_gpio_setting()
123 return &grp->settings[n]; in mvebu_pinctrl_find_gpio_setting()
[all …]
Dpinctrl-mvebu.h89 struct mvebu_mpp_ctrl_setting *settings; member
163 .settings = (struct mvebu_mpp_ctrl_setting[]){ \
/linux-4.1.27/drivers/net/wan/
Dhdlc_fr.c138 fr_proto settings; member
353 if (state(hdlc)->settings.lmi == LMI_NONE) in pvc_open()
370 if (state(hdlc)->settings.lmi == LMI_NONE) in pvc_close()
373 if (state(hdlc)->settings.dce) { in pvc_close()
474 int lmi = state(hdlc)->settings.lmi; in fr_lmi_send()
475 int dce = state(hdlc)->settings.dce; in fr_lmi_send()
578 if (state(hdlc)->settings.lmi == LMI_NONE) { in fr_set_link_state()
592 if (!state(hdlc)->settings.dce) in fr_set_link_state()
607 if (state(hdlc)->settings.dce) { in fr_timer()
610 state(hdlc)->settings.t392 * HZ); in fr_timer()
[all …]
Dhdlc_cisco.c54 cisco_proto settings; member
268 time_after(jiffies, st->last_poll + st->settings.timeout * HZ)) { in cisco_timer()
278 st->timer.expires = jiffies + st->settings.interval * HZ; in cisco_timer()
350 if (copy_to_user(cisco_s, &state(hdlc)->settings, size)) in cisco_ioctl()
377 memcpy(&state(hdlc)->settings, &new_settings, size); in cisco_ioctl()
Dc101.c64 sync_serial_settings settings; member
158 switch(port->settings.clock_type) { in c101_set_iface()
254 if (copy_to_user(line, &port->settings, size)) in c101_ioctl()
274 memcpy(&port->settings, &new_line, size); /* Update settings */ in c101_ioctl()
380 card->settings.clock_type = CLOCK_EXT; in c101_run()
Dpci200syn.c72 sync_serial_settings settings; member
129 switch(port->settings.clock_type) { in pci200_set_iface()
209 if (copy_to_user(line, &port->settings, size)) in pci200_ioctl()
230 memcpy(&port->settings, &new_line, size); /* Update settings */ in pci200_ioctl()
398 port->settings.clock_type = CLOCK_EXT; in pci200_pci_init_one()
Ddscc4.c238 sync_serial_settings settings; member
996 sync_serial_settings *settings = &dpriv->settings; in dscc4_loopback_check() local
998 if (settings->loopback && (settings->clock_type != CLOCK_INT)) { in dscc4_loopback_check()
1313 const size_t size = sizeof(dpriv->settings); in dscc4_ioctl()
1329 if (copy_to_user(line, &dpriv->settings, size)) in dscc4_ioctl()
1341 if (copy_from_user(&dpriv->settings, line, size)) in dscc4_ioctl()
1371 sync_serial_settings *settings = &dpriv->settings; in dscc4_clock_setting() local
1375 bps = settings->clock_rate; in dscc4_clock_setting()
1381 if (settings->clock_rate != bps) { in dscc4_clock_setting()
1383 dev->name, settings->clock_rate, bps); in dscc4_clock_setting()
[all …]
Dpc300too.c84 sync_serial_settings settings; member
130 switch(port->settings.clock_type) { in pc300_set_iface()
217 if (copy_to_user(line, &port->settings, size)) in pc300_ioctl()
255 memcpy(&port->settings, &new_line, size); /* Update settings */ in pc300_ioctl()
458 port->settings.clock_type = CLOCK_EXT; in pc300_pci_init_one()
Dn2.c101 sync_serial_settings settings; member
176 switch(port->settings.clock_type) { in n2_set_iface()
272 if (copy_to_user(line, &port->settings, size)) in n2_ioctl()
292 memcpy(&port->settings, &new_line, size); /* Update settings */ in n2_ioctl()
473 port->settings.clock_type = CLOCK_EXT; in n2_run()
Dhd64572.c378 if (port->settings.clock_rate > 0) { in sca_set_port()
385 tmc = CLOCK_BASE / brv / port->settings.clock_rate; in sca_set_port()
395 port->settings.clock_rate = CLOCK_BASE / brv / tmc; in sca_set_port()
399 port->settings.clock_rate = CLOCK_BASE / (256 * 512); in sca_set_port()
414 if (port->settings.loopback) in sca_set_port()
439 if (port->settings.loopback) in sca_open()
Dhd64570.c415 if (port->settings.clock_rate > 0) { in sca_set_port()
422 tmc = CLOCK_BASE / brv / port->settings.clock_rate; in sca_set_port()
432 port->settings.clock_rate = CLOCK_BASE / brv / tmc; in sca_set_port()
436 port->settings.clock_rate = CLOCK_BASE / (256 * 512); in sca_set_port()
450 if (port->settings.loopback) in sca_set_port()
475 if (port->settings.loopback) in sca_open()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-driver-hid-roccat-pyra13 press of a button. A profile is split in settings and buttons.
17 settings back to the mouse. The data has to be 13 bytes long.
29 press of a button. A profile is split in settings and buttons.
40 …onfig num>.<interface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/pyra/roccatpyra<minor>/settings
43 Description: When read, this file returns the settings stored in the mouse.
46 When written, this file lets write settings back to the mouse.
Dsysfs-driver-hid-roccat-savu5 press of a button. A profile is split into general settings and
6 button settings. buttons holds informations about button layout.
28 press of a button. A profile is split into general settings and
29 button settings. profile holds informations like resolution, sensitivity
32 settings back to the mouse. The data has to be 43 bytes long.
Dsysfs-driver-hid-roccat-kovaplus24 press of a button. A profile is split in settings and buttons.
39 press of a button. A profile is split in settings and buttons.
43 settings back to the mouse. The data has to be 16 bytes long.
Dsysfs-driver-hid-roccat-lua4 Description: When written, cpi, button and light settings can be configured.
Dsysfs-driver-hid-multitouch6 When read, this attribute returns the current settings (see
Dsysfs-driver-hid-roccat-koneplus35 press of a button. A profile is split in settings and buttons.
50 press of a button. A profile is split in settings and buttons.
54 settings back to the mouse. The data has to be 43 bytes long.
Dsysfs-driver-hid-roccat-kone55 …onfig num>.<interface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/kone/roccatkone<minor>/settings
58 Description: When read, this file returns the settings stored in the mouse.
61 When written, this file lets write settings back to the mouse.
Dsysfs-driver-hid-roccat-konepure44 press of a button. A profile is split in settings and buttons.
59 press of a button. A profile is split in settings and buttons.
63 settings back to the mouse. The data has to be 31 bytes long.
Dsysfs-class-led8 non-zero brightness settings. The value is between 0 and
Ddebugfs-driver-genwqe76 The driver ensures that the settings are done just before
Dsysfs-driver-hid-roccat-ryos86 Profile index for which this settings occur is included in
143 light settings.
Dsysfs-bus-fcoe11 per-port settings and finally write to the fcoe_ctlr_device's
/linux-4.1.27/drivers/isdn/hisax/
DKconfig98 non-standard IRQ/port/shmem settings.
108 non-standard IRQ/port settings.
132 non-standard IRQ/port settings.
155 non-standard IRQ/port settings.
165 non-standard IRQ/port settings.
175 non-standard IRQ/port settings.
186 non-standard IRQ/port settings.
196 non-standard IRQ/port settings.
207 non-standard IRQ/port settings.
216 non-standard IRQ/port settings.
[all …]
/linux-4.1.27/Documentation/misc-devices/
Dad525x_dpot.txt6 work with the immediate resistance settings as well as update the saved startup
7 settings. Access to the factory programmed tolerance is also provided, but
8 interpretation of this settings is required by the end application according to
22 The tolerance files are the read-only factory programmed tolerance settings
/linux-4.1.27/drivers/powercap/
DKconfig9 capping settings to user space in a consistent way. Usually, it consists
10 of multiple control types that determine which settings may be exposed and
27 In RAPL, the platform level settings are divided into domains for
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Dda9063.txt17 modified to match the chip's OTP settings).
25 - regulators : This node defines the settings for the LDOs and BUCKs. The
50 - rtc : This node defines settings for the Real-Time Clock associated with
54 - watchdog : This node defines settings for the Watchdog timer associated
Dmax8998.txt90 /* Buck 1 DVS settings */
97 /* Buck 2 DVS settings */
Ds2mpa01.txt37 The following BUCKs share ramp settings:
/linux-4.1.27/drivers/net/phy/
Dphy.c139 static const struct phy_setting settings[] = { variable
197 #define MAX_NUM_SETTINGS ARRAY_SIZE(settings)
213 while (idx < ARRAY_SIZE(settings) && in phy_find_setting()
214 (settings[idx].speed != speed || settings[idx].duplex != duplex)) in phy_find_setting()
232 while (idx < MAX_NUM_SETTINGS && !(settings[idx].setting & features)) in phy_find_valid()
253 return settings[idx].speed == speed && settings[idx].duplex == duplex && in phy_check_valid()
254 (settings[idx].setting & features); in phy_check_valid()
277 phydev->speed = settings[idx].speed; in phy_sanitize_settings()
278 phydev->duplex = settings[idx].duplex; in phy_sanitize_settings()
/linux-4.1.27/Documentation/devicetree/bindings/arm/tegra/
Dnvidia,tegra20-emc.txt14 Child device nodes describe the memory settings for different configurations and clock rates.
29 next level of nodes below the emc table are used to specify which settings
30 apply for which ram-code settings.
45 This is a table containing the EMC register settings for the various
59 early boot by selecting one out of possible 4 memory settings based
/linux-4.1.27/drivers/iio/adc/
Dad7923.c63 unsigned int settings; member
142 st->settings; in ad7923_update_scan_mode()
198 st->settings; in ad7923_scan_direct()
219 if (!(st->settings & AD7923_RANGE)) in ad7923_get_range()
285 st->settings = AD7923_CODING | AD7923_RANGE | in ad7923_probe()
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/4xx/
Dndfc.txt9 - bank-settings : NDFC bank configuration register value (default 0).
20 bank-settings = <0x80002222>;
/linux-4.1.27/drivers/block/
Dpktcdvd.c111 return (sector + pd->offset) & ~(sector_t)(pd->settings.size - 1); in get_zone()
609 pkt = pkt_alloc_packet_data(pd->settings.size >> 2); in pkt_grow_pktlist()
925 if ((pd->settings.size << 9) / CD_FRAMESIZE in pkt_set_segment_merging()
932 } else if ((pd->settings.size << 9) / PAGE_SIZE in pkt_set_segment_merging()
1249 pd->current_sector = zone + pd->settings.size; in pkt_handle_queue()
1251 BUG_ON(pkt->frames != pd->settings.size >> 2); in pkt_handle_queue()
1561 pd->settings.fp ? "Fixed" : "Variable", in pkt_print_settings()
1562 pd->settings.size >> 2, in pkt_print_settings()
1563 pd->settings.block_mode == 8 ? '1' : '2'); in pkt_print_settings()
1721 wp->fp = pd->settings.fp; in pkt_set_write_settings()
[all …]
/linux-4.1.27/drivers/pci/pcie/aer/
DKconfig20 bool "PCI Express ECRC settings control"
23 Used to override firmware/bios settings for PCI Express ECRC
/linux-4.1.27/Documentation/ABI/obsolete/
Dsysfs-driver-hid-roccat-pyra25 Please use binary attribute "settings" which provides this information.
44 press of a button. A profile is split in settings and buttons.
56 press of a button. A profile is split in settings and buttons.
59 When read, these files return the respective profile settings.
72 Please use binary attribute "settings" which provides this information.
Dsysfs-driver-hid-roccat-koneplus29 press of a button. A profile is split in settings and buttons.
41 press of a button. A profile is split in settings and buttons.
44 When read, these files return the respective profile settings.
Dsysfs-driver-hid-roccat-kovaplus47 press of a button. A profile is split in settings and buttons.
59 press of a button. A profile is split in settings and buttons.
62 When read, these files return the respective profile settings.
/linux-4.1.27/drivers/usb/serial/
Dkl5kusb105.c130 struct klsi_105_port_settings *settings) in klsi_105_chg_port_settings() argument
140 settings, in klsi_105_chg_port_settings()
148 settings->pktlen, settings->baudrate, settings->databits, in klsi_105_chg_port_settings()
149 settings->unknown1, settings->unknown2); in klsi_105_chg_port_settings()
/linux-4.1.27/drivers/edac/
Dhighbank_mc_edac.c159 const struct hb_mc_settings *settings; in highbank_mc_probe() local
213 settings = id->data; in highbank_mc_probe()
214 drvdata->mc_err_base = base + settings->err_offset; in highbank_mc_probe()
215 drvdata->mc_int_base = base + settings->int_offset; in highbank_mc_probe()
/linux-4.1.27/Documentation/sound/oss/
DWaveArtist6 nn30 read registers nn, where nn = 00 - 09 for mixer settings
9 rr32 write the mixer settings in pairs, where rr = nn/2
10 xx33 reset all settings to default
Dmwave97 REM If hardware settings are changed, please change this line as well.
169 problem with the SB1.5 (CD sound) or SBPRO (Mixers) settings. No one knows why
DREADME.OSS289 software selectable IRQ and DMA settings. If the (power on default) values
359 work now. "Proper" means that I/O, IRQ and DMA settings are the same as in
360 DOS. The hard part is to find which settings were used. See the documentation of
644 configure the driver use I/O, IRQ and DMA settings
657 the driver to use I/O, IRQ and DMA settings which are known to work.
659 Using different settings is possible but not recommended since it may cause
694 settings. If sound driver is configured to use the same settings, everything
887 the same settings with DOS/Windows and Linux is recommended. Using
899 DMA settings. Since the possible/default settings have changed between various
948 - If you use the same I/O, IRQ and DMA settings in Linux, the
[all …]
DALS32 If isapnptools is used to wake up the sound card (as in 2.2.x), the settings
/linux-4.1.27/drivers/media/dvb-frontends/
Dtc90522.c522 struct dvb_frontend_tune_settings *settings) in tc90522_get_tune_settings() argument
525 settings->min_delay_ms = 250; in tc90522_get_tune_settings()
526 settings->step_size = 1000; in tc90522_get_tune_settings()
527 settings->max_drift = settings->step_size * 2; in tc90522_get_tune_settings()
529 settings->min_delay_ms = 400; in tc90522_get_tune_settings()
530 settings->step_size = 142857; in tc90522_get_tune_settings()
531 settings->max_drift = settings->step_size; in tc90522_get_tune_settings()
Das102_fe.c302 struct dvb_frontend_tune_settings *settings) { in as102_fe_get_tune_settings() argument
304 settings->min_delay_ms = 1000; in as102_fe_get_tune_settings()
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dfsl,imx-pinctrl.txt7 different PAD settings (like pull up, keeper, etc) the IOMUXC controls
8 also the PAD settings parameters.
17 mode) this pin can work on and the 'config' configures various pad settings
73 /* shared pinctrl settings */
Datmel,at91-pinctrl.txt7 different PAD settings (like pull up, keeper, etc) the contoller controls
8 also the PAD settings parameters.
17 mode) this pin can work on and the 'config' configures various pad settings
133 /* shared pinctrl settings */
Dfsl,imx51-pinctrl.txt12 config settings.
Dfsl,imx6q-pinctrl.txt12 config settings.
Dfsl,imx53-pinctrl.txt12 config settings.
Dfsl,imx35-pinctrl.txt12 config settings.
Dfsl,imx6dl-pinctrl.txt12 config settings.
Dfsl,imx6sl-pinctrl.txt12 config settings.
Dfsl,imx6sx-pinctrl.txt13 Reference Manual for detailed CONFIG settings.
Dfsl,vf610-pinctrl.txt12 datasheet for the valid pad config settings.
Drockchip,pinctrl.txt16 settings such as pull-up, etc.
/linux-4.1.27/arch/nios2/platform/
DKconfig.platform3 comment "Memory settings"
96 comment "Cache settings"
99 bool "Custom cache settings"
101 This option allows you to tweak the cache settings used during early
/linux-4.1.27/Documentation/usb/
Diuu_phoenix.txt42 - clockmode will provide 3 different base settings commonly adopted by
71 Don't worry about the serial settings, the serial emulation
74 use this settings to deduce de boost but is that feature
Dlinux.inf50 ; Optional registry settings. You can modify as needed.
/linux-4.1.27/arch/arm/mach-pxa/
Dsleep.S54 @ prepare SDRAM refresh settings
95 @ prepare SDRAM refresh settings
108 @ as the system will restore with the original speed settings
/linux-4.1.27/drivers/hwmon/
Dabituguru3.c194 u8 settings[48][3]; member
853 value = data->settings[sensor->port][attr->nr]; in show_value()
890 (!attr->nr || (data->settings[port][0] & attr->nr))) in show_alarm()
902 if (data->settings[data->sensors[attr->index].port][0] & attr->nr) in show_mask()
1116 data->settings[i], 3) != 3) in abituguru3_update_device()
1129 data->settings[32 + i], 2) != 2) in abituguru3_update_device()
/linux-4.1.27/Documentation/devicetree/bindings/media/
Drcar_vin.txt22 The per-board settings:
27 These settings are used to work out video input format and widths
Dst-rc.txt18 - pinctrl-names, pinctrl-0: the pincontrol settings to configure muxing
/linux-4.1.27/Documentation/scsi/
Dtmscsim.txt40 module parameters (chapter 5) are ignored! However, you can change settings
142 the attached devices and their settings.
161 Note that the settings MaxID and MaxLUN are not zero- but one-based, which
196 (1) Change driver settings:
205 (2) Change device settings: You write a config line to the driver. The Nr
211 with the given settings (Sync, TagQ).
252 settings to see if everything changed as requested.
257 With the DC390, the driver reads its EEPROM settings and tries to use them.
258 But you may want to override the settings prior to being able to change the
261 possibility to adjust settings before you are able to write to the
[all …]
Ddc395x.txt21 The driver uses the settings from the EEPROM set in the SCSI BIOS
32 ("safe") default settings. This sets:
DBusLogic.txt95 requested and negotiated with each target device. AutoSCSI settings for
279 Default" settings that are conservative and do not allow for UltraSCSI speed
284 may be used to load "Optimum Performance" settings which allow UltraSCSI
287 the "Optimum Performance" settings are loaded.
297 When configured to factory default settings, the BT-948/958/958D will only
332 factory default settings of the BT-948/958/958D enumerate the host adapters
345 settings that are conservative and do not allow for UltraSCSI speed to be
350 used to load "Optimum Performance" settings which allow UltraSCSI speed to be
353 "Optimum Performance" settings are loaded.
Dncr53c8xx.txt755 burst:255 get burst length from initial IO register settings.
786 irqm:1 same as initial settings (assumed BIOS settings)
852 (#x >> 4) : maximum number of successive settings of IARB if the initiator
871 burst length from BIOS settings burst:255
875 differential support from BIOS settings diff:1
876 irq mode from BIOS settings irqm:1
1196 The TYAN 1365 documentation revision 1.2 is not correct about such settings.
1372 Negotiated NCR settings
1420 Negotiated NCR settings
1466 NVRAM boot order settings can do this as well as change the order the same
[all …]
Din2000.txt141 despite the fact that the card could handle settings of 376 or
149 *********** DIP switch settings **************
Dqlogicfas.txt40 with SCSI, there are other settings which can tune the bus.
/linux-4.1.27/Documentation/scheduler/
Dsched-rt-group.txt12 2.1 System-wide settings
21 Fiddling with these settings can result in an unstable system, the knobs are
84 2.1 System wide settings
87 The system wide settings are configured under the /proc virtual file system:
138 Group settings are checked against the following limits in order to keep the
Dsched-deadline.txt12 4.1 System-wide settings
25 Fiddling with these settings can result in an unpredictable or even unstable
231 writable control files located in procfs (for system wide settings).
232 Notice that per-group settings (controlled through cgroupfs) are still not
248 4.1 System wide settings
251 The system wide settings are configured under the /proc virtual file system.
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/
Dmsm-poweroff.txt6 settings.
/linux-4.1.27/Documentation/devicetree/bindings/drm/tilcdc/
Dslave.txt8 - pinctrl-names, pinctrl-0: the pincontrol settings to configure
Dtfp410.txt8 - pinctrl-names, pinctrl-0: the pincontrol settings to configure
Dpanel.txt26 - pinctrl-names, pinctrl-0: the pincontrol settings to configure
/linux-4.1.27/arch/avr32/boards/atstk1000/
DKconfig29 bool "Non-default STK1002/STK1003/STK1004 jumper settings"
32 default settings. If you need to use certain peripherals,
/linux-4.1.27/Documentation/arm/pxa/
Dmfp.txt12 Unlike the GPIO alternate function settings on PXA25x and PXA27x, a new MFP
87 same name, different meaning and settings on different processors). E.g.
194 the actual API invoked to convert these definitions into register settings and
278 Register settings on PXA3xx for a pin configuration is actually very
281 ones and the low power mode ones, to allow different settings.
284 settings on PXA2xx is a bit complicated: many registers are involved,
/linux-4.1.27/drivers/ide/
Dide-proc.c292 d = drive->settings; in ide_settings_proc_show()
412 if (drive->settings) in ide_settings_proc_write()
413 setting = ide_find_setting(drive->settings, name); in ide_settings_proc_write()
650 drive->settings = driver->proc_devsets(drive); in ide_proc_register_driver()
678 drive->settings = NULL; in ide_proc_unregister_driver()
/linux-4.1.27/include/net/irda/
Dircomm_tty.h69 struct ircomm_params settings; member
/linux-4.1.27/security/yama/
DKconfig7 system-wide security settings beyond regular Linux discretionary
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
Di40e_common.c3196 struct i40e_filter_control_settings *settings) in i40e_validate_filter_settings() argument
3204 switch (settings->fcoe_filt_num) { in i40e_validate_filter_settings()
3212 fcoe_filt_size <<= (u32)settings->fcoe_filt_num; in i40e_validate_filter_settings()
3218 switch (settings->fcoe_cntx_num) { in i40e_validate_filter_settings()
3224 fcoe_cntx_size <<= (u32)settings->fcoe_cntx_num; in i40e_validate_filter_settings()
3231 switch (settings->pe_filt_num) { in i40e_validate_filter_settings()
3244 pe_filt_size <<= (u32)settings->pe_filt_num; in i40e_validate_filter_settings()
3250 switch (settings->pe_cntx_num) { in i40e_validate_filter_settings()
3262 pe_cntx_size <<= (u32)settings->pe_cntx_num; in i40e_validate_filter_settings()
3288 struct i40e_filter_control_settings *settings) in i40e_set_filter_control() argument
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dps2keyb-mouse-apbps2.txt7 bootloader settings.
Delants_i2c.txt14 - pinctrl-0: a phandle pointing to the pin settings for the device (see
Delan_i2c.txt14 - pinctrl-0: a phandle pointing to the pin settings for the device (see
/linux-4.1.27/Documentation/x86/
Dpat.txt5 page level granularity. PAT is complementary to the MTRR settings which allows
9 such attribute settings allowed. Added flexibility comes with guidelines for
154 This list shows physical address ranges and various PAT settings used to
Dzero-page.txt3 real-mode setup code of the kernel. References/settings to it mainly
/linux-4.1.27/drivers/net/ethernet/intel/i40evf/
Di40e_prototype.h85 struct i40e_filter_control_settings *settings);
/linux-4.1.27/drivers/pinctrl/
Dcore.c701 INIT_LIST_HEAD(&state->settings); in create_state()
766 list_add_tail(&setting->node, &state->settings); in add_setting()
916 list_for_each_entry_safe(setting, n2, &state->settings, node) { in pinctrl_free()
1000 list_for_each_entry(setting, &p->state->settings, node) { in pinctrl_select_state()
1010 list_for_each_entry(setting, &state->settings, node) { in pinctrl_select_state()
1036 list_for_each_entry(setting2, &state->settings, node) { in pinctrl_select_state()
1515 list_for_each_entry(setting, &state->settings, node) { in pinctrl_show()
Dpinctrl-single.c1008 struct pcs_conf_vals **conf, unsigned long **settings) in pcs_add_conf2() argument
1021 add_setting(settings, param, value[0] >> shift); in pcs_add_conf2()
1027 struct pcs_conf_vals **conf, unsigned long **settings) in pcs_add_conf4() argument
1047 add_setting(settings, param, ret); in pcs_add_conf4()
1057 unsigned long *settings = NULL, *s = NULL; in pcs_parse_pinconf() local
1096 settings = devm_kzalloc(pcs->dev, sizeof(unsigned long) * nconfs, in pcs_parse_pinconf()
1098 if (!settings) in pcs_parse_pinconf()
1100 s = &settings[0]; in pcs_parse_pinconf()
1110 m->data.configs.configs = settings; in pcs_parse_pinconf()
Dcore.h84 struct list_head settings; member
/linux-4.1.27/Documentation/i2c/busses/
Di2c-ismt18 Available bus frequency settings:
Di2c-viapro65 If none of these show up, you should look in the BIOS for settings like
/linux-4.1.27/block/
DMakefile6 blk-flush.o blk-settings.o blk-ioc.o blk-map.o \
/linux-4.1.27/drivers/net/wireless/ti/wl18xx/
Dconf.h67 u8 settings; member
/linux-4.1.27/drivers/staging/rtl8723au/os_dep/
Dioctl_cfg80211.c2784 struct cfg80211_ap_settings *settings) in cfg80211_rtw_start_ap() argument
2790 __func__, ndev->name, settings->hidden_ssid, in cfg80211_rtw_start_ap()
2791 settings->auth_type); in cfg80211_rtw_start_ap()
2793 ret = rtw_add_beacon(adapter, settings->beacon.head, in cfg80211_rtw_start_ap()
2794 settings->beacon.head_len, settings->beacon.tail, in cfg80211_rtw_start_ap()
2795 settings->beacon.tail_len); in cfg80211_rtw_start_ap()
2798 settings->hidden_ssid; in cfg80211_rtw_start_ap()
2800 if (settings->ssid && settings->ssid_len) { in cfg80211_rtw_start_ap()
2806 memcpy(pbss_network->Ssid.ssid, (void *)settings->ssid, in cfg80211_rtw_start_ap()
2807 settings->ssid_len); in cfg80211_rtw_start_ap()
[all …]
/linux-4.1.27/Documentation/networking/
Dcxgb.txt35 settings to achieve the highest performance during various types of network
112 includes the optimal settings for your system.
254 network settings.
291 It may be possible to work outside AMD's recommended PCI-X settings, try
293 have issues with these settings, please revert to the "safe" settings
D3c509.txt38 Overriding card settings
41 IRQ, and transceiver settings, although this capability shouldn't generally be
107 8 transceiver type and duplex mode taken from card's EEPROM config settings
112 full-duplex mode, no matter what the card's detected EEPROM settings might be.
Dtlan.txt93 You also need to set both speed and duplex settings when forcing
111 3. Try forcing different speed/duplex settings
Dphy.txt13 settings were chosen, and to configure what settings are allowed.
199 forced settings.
204 settings in the PHY.
262 config_aneg: Changes the speed/duplex/negotiation settings
264 read_status: Reads the current speed/duplex/negotiation settings
Ds2io.txt100 a. By default, the driver respects BIOS settings for PCI bus parameters.
121 a. By default, the driver respects BIOS settings for PCI bus parameters.
Dbatman-adv.txt65 All mesh wide settings can be found in batman's own interface
183 interfaces to the kernel module settings.
De1000.txt51 This parameter is a bit-mask that specifies the speed and duplex settings
73 Default Value: Reads flow control settings from the EEPROM
153 NOTE: When e1000 is loaded with default settings and multiple adapters
166 RX_POLLING (NAPI) and default driver settings.
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Drenesas,r8a7740-cpg-clocks.txt20 - renesas,mode: board-specific settings of the MD_CK* bits
Drenesas,cpg-div6-clocks.txt19 settings must be specified as "<0>".
/linux-4.1.27/net/bluetooth/
Dmgmt.c607 u32 settings = 0; in get_supported_settings() local
609 settings |= MGMT_SETTING_POWERED; in get_supported_settings()
610 settings |= MGMT_SETTING_BONDABLE; in get_supported_settings()
611 settings |= MGMT_SETTING_DEBUG_KEYS; in get_supported_settings()
612 settings |= MGMT_SETTING_CONNECTABLE; in get_supported_settings()
613 settings |= MGMT_SETTING_DISCOVERABLE; in get_supported_settings()
617 settings |= MGMT_SETTING_FAST_CONNECTABLE; in get_supported_settings()
618 settings |= MGMT_SETTING_BREDR; in get_supported_settings()
619 settings |= MGMT_SETTING_LINK_SECURITY; in get_supported_settings()
622 settings |= MGMT_SETTING_SSP; in get_supported_settings()
[all …]
/linux-4.1.27/Documentation/sound/alsa/
Dcompress_offload.txt105 correspond to valid settings, and to minimize the risks of
113 settings, this routine returns the minimum buffer size handled by the
123 comply to the settings
126 This routines returns the actual settings used by the DSP. Changes to
127 the settings should remain the exception.
DControlNames.txt105 IEC958 [...] [Playback|Capture] PCM Stream /* the settings assigned to a PCM stream */
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
Dcfg80211.c3975 struct cfg80211_ap_settings *settings) in brcmf_cfg80211_start_ap() argument
3994 settings->chandef.chan->hw_value, in brcmf_cfg80211_start_ap()
3995 settings->chandef.center_freq1, settings->chandef.width, in brcmf_cfg80211_start_ap()
3996 settings->beacon_interval, settings->dtim_period); in brcmf_cfg80211_start_ap()
3998 settings->ssid, settings->ssid_len, settings->auth_type, in brcmf_cfg80211_start_ap()
3999 settings->inactivity_timeout); in brcmf_cfg80211_start_ap()
4005 country_ie = brcmf_parse_tlvs((u8 *)settings->beacon.tail, in brcmf_cfg80211_start_ap()
4006 settings->beacon.tail_len, in brcmf_cfg80211_start_ap()
4011 if (settings->ssid == NULL || settings->ssid_len == 0) { in brcmf_cfg80211_start_ap()
4014 (u8 *)&settings->beacon.head[ie_offset], in brcmf_cfg80211_start_ap()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/
Dchipone_icn8318.txt15 - pinctrl-0: : a phandle pointing to the pin settings for the
Dedt-ft5x06.txt32 - pinctrl-0: a phandle pointing to the pin settings for the
/linux-4.1.27/Documentation/hwmon/
Dpowr122017 includes voltage monitoring for 14 inputs as well as trim settings
Dw83l786ng19 behavior is no chip reset to preserve BIOS settings
Dhtu2138 The driver uses the default resolution settings of 12 bit for humidity and 14
Dsht2142 The driver uses the default resolution settings of 12 bit for humidity and 14
Dmax665056 different settings, you can set the following parameters:
Dabituguru361 neither is writing any of the sensor settings and writing / reading the
Damc682199 different settings, you can set the following parameters:
Dlm8734 and low alarm settings. A high limit produces an alarm when the value
/linux-4.1.27/include/linux/
Dpktcdvd.h168 struct packet_settings settings; member
/linux-4.1.27/Documentation/frv/
Dconfiguring.txt17 There are a number of settings in the "Processor type and features" section of
67 There are also a number of settings in the "Kernel Hacking" section of the
Dclock.txt27 Determining current and possible settings
/linux-4.1.27/sound/soc/codecs/
Dmax98090.c1842 } settings[6]; /* One for each dmic divisor. */ member
1848 .settings = {
1859 .settings = {
1870 .settings = {
1881 .settings = {
1892 .settings = {
1965 dmic_freq = dmic_table[pclk_index].settings[micclk_index].freq; in max98090_configure_dmic()
1966 dmic_comp = dmic_table[pclk_index].settings[micclk_index].comp[i]; in max98090_configure_dmic()
/linux-4.1.27/arch/avr32/boards/hammerhead/
DKconfig27 also go through the ALSA settings to get it working.
/linux-4.1.27/Documentation/
Demail-clients.txt180 It should work with default settings.
224 You may have to pass additional flags or change the settings of your
227 /usr/bin) to the text editor field in "external editor" settings. If you
233 - Edit your Thunderbird config settings so that it won't use format=flowed.
Dxz.txt76 so don't hesitate to use custom settings. Example:
91 the fastest settings, so it isn't clear if LZMA2 encoder is wanted
/linux-4.1.27/Documentation/ioctl/
Dhdio.txt23 HDIO_GET_KEEPSETTINGS get keep-settings-on-reset flag
44 HDIO_SET_KEEPSETTINGS keep ioctl settings on reset
264 HDIO_GET_KEEPSETTINGS get keep-settings-on-reset flag
274 The value of the current "keep settings" flag
278 When set, indicates that kernel should restore settings
283 HDIO_SET_KEEPSETTINGS keep ioctl settings on reset
425 The value of the current acoustic settings
1006 New value for drive acoustic settings
/linux-4.1.27/Documentation/memory-devices/
Dti-emif.txt29 parameters and other settings during frequency, voltage and
/linux-4.1.27/Documentation/devicetree/bindings/iio/
Dst-sensors.txt20 Sensors may also have applicable pin control settings, those use the
/linux-4.1.27/Documentation/devicetree/bindings/i2c/
Di2c-mpc.txt20 - fsl,preserve-clocking : boolean; if defined, the clock settings
/linux-4.1.27/arch/powerpc/boot/dts/
Dmpc8548cds_32b.dts81 * mpc8548cds.dtsi must be last to ensure board_pci0 overrides pci0 settings
Dmpc8572ds.dts85 * mpc8572ds.dtsi must be last to ensure board_pci0 overrides pci0 settings
Dp2020ds.dts84 * p2020ds.dtsi must be last to ensure board_pci0 overrides pci0 settings
Dmpc8548cds_36b.dts81 * mpc8548cds.dtsi must be last to ensure board_pci0 overrides pci0 settings
Dmpc8572ds_36b.dts85 * mpc8572ds.dtsi must be last to ensure board_pci0 overrides pci0 settings
Dmpc8544ds.dts102 * mpc8544ds.dtsi must be last to ensure board_pci3 overrides pci3 settings
/linux-4.1.27/Documentation/video4linux/bttv/
DREADME.WINVIEW26 To use the driver I use the following options, the tuner and pll settings might
/linux-4.1.27/arch/mips/txx9/
DKconfig120 bool "Keep firmware settings"
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Dbrcm,bcm7038-l1-intc.txt18 - No polarity/level/edge settings
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-tape.1995-2002181 * via /proc/ide/hdc/settings
183 * can be changed using /proc/ide/hdx/settings
230 * to /proc/ide/hd?/settings.
255 * Set the minimum /proc/ide/hd?/settings values for "pipeline",
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Dcs42l56.txt40 0 = Adapt to Volume Mode. Voltage level determined by the sum of the relevant volume settings.
Dfsl,esai.txt37 means all the settings for Receiving would be
/linux-4.1.27/Documentation/devicetree/bindings/video/
Dexynos7-decon.txt37 - display-timings: timing settings for DECON, as described in document [1].
Dsamsung-fimd.txt44 - display-timings: timing settings for FIMD, as described in document [1].
/linux-4.1.27/arch/arm/boot/dts/
Ds3c2416-pinctrl.dtsi2 * Samsung S3C2416 pinctrl settings
Dste-href-ab8505.dtsi17 /* Hog a few default settings */
Dimx6qdl-microsom-ar8035.dtsi91 * Use the GPIO settings to avoid changing the
/linux-4.1.27/Documentation/arm/
DCCN.txt34 not require any other settings.
/linux-4.1.27/net/wireless/
Dtrace.h475 struct cfg80211_ap_settings *settings),
476 TP_ARGS(wiphy, netdev, settings),
493 CHAN_DEF_ASSIGN(&settings->chandef);
494 __entry->beacon_interval = settings->beacon_interval;
495 __entry->dtim_period = settings->dtim_period;
496 __entry->hidden_ssid = settings->hidden_ssid;
497 __entry->wpa_ver = settings->crypto.wpa_versions;
498 __entry->privacy = settings->privacy;
499 __entry->auth_type = settings->auth_type;
500 __entry->inactivity_timeout = settings->inactivity_timeout;
[all …]
/linux-4.1.27/net/mac80211/
Dmesh.c686 csa->settings.chandef.chan->center_freq); in ieee80211_mesh_build_beacon()
687 bcn->csa_current_counter = csa->settings.count; in ieee80211_mesh_build_beacon()
689 *pos++ = csa->settings.count; in ieee80211_mesh_build_beacon()
698 *pos++ |= csa->settings.block_tx ? in ieee80211_mesh_build_beacon()
1099 memcpy(&tmp_csa_settings->settings, csa_settings, in ieee80211_mesh_csa_beacon()
/linux-4.1.27/Documentation/i2c/muxes/
Di2c-mux-gpio24 according to the settings of the GPIO pins 1..N.
/linux-4.1.27/Documentation/devicetree/bindings/soc/qcom/
Dqcom,gsbi.txt5 configuration settings. The mode setting will govern the input/output mode of
/linux-4.1.27/Documentation/leds/
Dleds-lp5523.txt54 Each channel contains led current settings.
Dledtrig-oneshot.txt5 no clear trap points to put standard led-on and led-off settings. Using this
Dleds-lp5521.txt45 Each channel has its own led current settings.
Dleds-lp5562.txt62 Like LP5521 and LP5523/55231, LP5562 provides LED current settings.
Dleds-class.txt12 brightness support so will just be turned on for non-zero brightness settings.
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dethernet.txt24 and is useful for determining certain configuration settings such as
Dmicrel-ksz90x1.txt7 Note that these settings are applied after any phy-specific fixup from
Dgpmc-eth.txt45 - gpmc,XXX Additional GPMC timings and settings parameters. See
/linux-4.1.27/Documentation/DocBook/
D.kernel-api.xml.cmd2 …blk-core.c block/blk-core.c block/blk-map.c block/blk-sysfs.c block/blk-settings.c block/blk-exec.…
/linux-4.1.27/arch/blackfin/mach-bf609/
Dpm.c123 …nst bfrom_SysControl)(uint32_t action_flags, struct STRUCT_ROM_SYSCTRL *settings, void *reserved) …
/linux-4.1.27/arch/arm/kvm/
Dinit.S78 @ settings as the non-secure TTBCR and with T0SZ == 0.
/linux-4.1.27/drivers/net/wireless/p54/
DKconfig58 for calibration, country and interface settings.
/linux-4.1.27/drivers/media/usb/pwc/
Dphilips.txt43 When you load the module you can set some default settings for the
110 This settings takes 2 integers, that define the on/off time for the LED
228 settings after open() with the Video4Linux ioctl() calls. The default of
/linux-4.1.27/Documentation/pcmcia/
Ddriver-changes.txt5 automatically, though the driver may still override the settings
16 as it mirrors pcmcia_disable_device(). Configuration settings are now
/linux-4.1.27/Documentation/i2c/
Di2c-stub54 Optional bank settings. They tell which bits in which register
/linux-4.1.27/Documentation/video4linux/
Dcafe_ccic30 camera settings.
Dcpia2_overview.txt18 values is the only way to control the camera. Some settings are
DREADME.davinci-vpbe47 board specific settings (specified in board-xxx-evm.c). This allows
Domap3isp.txt53 In general, the settings given to the OMAP 3 ISP take effect at the beginning
56 is run one frame at a time. Applying the settings is done between the frames.
/linux-4.1.27/arch/unicore32/kernel/
Dsleep.S99 @ prepare DDR2 refresh settings
/linux-4.1.27/tools/perf/Documentation/
Dandroid.txt68 IV. Environment settings for running perf
/linux-4.1.27/Documentation/devicetree/bindings/mtd/
Dgpmc-nor.txt30 - gpmc,XXX Additional GPMC timings and settings parameters. See
/linux-4.1.27/Documentation/EDID/
DHOWTO.txt32 replace the settings with your own data and add a new target to the
/linux-4.1.27/Documentation/serial/
Drocket.txt107 software control. The DIP switch settings for the I/O address must be
115 the only place where the DIP switch settings should differ between the
Dtty.txt140 settings have changed. New settings are in
141 tty->termios. Previous settings should be passed in
/linux-4.1.27/Documentation/vm/
Dpage_migration99 4. The new page is prepped with some settings from the old page so that
100 accesses to the new page will discover a page with the correct settings.
/linux-4.1.27/drivers/memory/
DKconfig41 parameters and other settings during frequency, voltage and
/linux-4.1.27/Documentation/virtual/kvm/devices/
Dvm.txt6 struct kvm_device_attr as other devices, but targets VM-wide settings
/linux-4.1.27/Documentation/wimax/
DREADME.wimax48 debug settings.
/linux-4.1.27/drivers/media/dvb-core/
Ddvb_frontend.h288 int (*get_tune_settings)(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* settings);
/linux-4.1.27/Documentation/devicetree/bindings/leds/
Dleds-lp55xx.txt14 Each child has own specific current settings
/linux-4.1.27/Documentation/devicetree/bindings/drm/imx/
Dldb.txt38 - pinctrl-0 : a phandle pointing to LVDS pin settings on i.MX53,
/linux-4.1.27/Documentation/security/
DYama.txt49 The sysctl settings (writable only with CAP_SYS_PTRACE) are:
/linux-4.1.27/drivers/s390/net/
Dqeth_core_sys.c563 rc = sprintf(buf, (sw_info.settings & QETH_SWITCH_FORW_802_1 ? in qeth_dev_switch_attrs_show()
567 (sw_info.settings & QETH_SWITCH_FORW_REFL_RELAY ? in qeth_dev_switch_attrs_show()
/linux-4.1.27/Documentation/PCI/
DPCIEBUS-HOWTO.txt208 other service driver's configuration settings.
217 configuration settings.
/linux-4.1.27/Documentation/isdn/
DREADME.audio28 AT+Vxx=? Show possible settings.

12