/linux/arch/arm/ |
A D | Makefile | 81 tune-$(CONFIG_CPU_ARM720T) =-mtune=arm7tdmi 82 tune-$(CONFIG_CPU_ARM740T) =-mtune=arm7tdmi 84 tune-$(CONFIG_CPU_ARM940T) =-mtune=arm9tdmi 85 tune-$(CONFIG_CPU_ARM946E) =-mtune=arm9e 90 tune-$(CONFIG_CPU_FA526) =-mtune=arm9tdmi 93 tune-$(CONFIG_CPU_XSCALE) =-mtune=xscale 94 tune-$(CONFIG_CPU_XSC3) =-mtune=xscale 95 tune-$(CONFIG_CPU_FEROCEON) =-mtune=xscale 96 tune-$(CONFIG_CPU_V6) =-mtune=arm1136j-s 97 tune-$(CONFIG_CPU_V6K) =-mtune=arm1136j-s [all …]
|
/linux/arch/x86/ |
A D | Makefile_32.cpu | 5 tune = $(call cc-option,-mtune=$(1),$(2)) 19 cflags-$(CONFIG_MPENTIUMII) += -march=i686 $(call tune,pentium2) 20 cflags-$(CONFIG_MPENTIUMIII) += -march=i686 $(call tune,pentium3) 21 cflags-$(CONFIG_MPENTIUMM) += -march=i686 $(call tune,pentium3) 22 cflags-$(CONFIG_MPENTIUM4) += -march=i686 $(call tune,pentium4) 29 cflags-$(CONFIG_MEFFICEON) += -march=i686 $(call tune,pentium3) $(align) 35 cflags-$(CONFIG_MCORE2) += -march=i686 $(call tune,core2) 47 cflags-$(CONFIG_X86_GENERIC) += $(call tune,generic,$(call tune,i686))
|
/linux/arch/arc/ |
A D | Makefile | 14 tune-mcpu-def-$(CONFIG_ISA_ARCOMPACT) := -mcpu=arc700 15 tune-mcpu-def-$(CONFIG_ISA_ARCV2) := -mcpu=hs38 18 cflags-y += $(tune-mcpu-def-y) 20 tune-mcpu := $(shell echo $(CONFIG_ARC_TUNE_MCPU)) 21 ifneq ($(call cc-option,$(tune-mcpu)),) 22 cflags-y += $(tune-mcpu) 27 cflags-y += $(tune-mcpu-def-y)
|
/linux/drivers/phy/st/ |
A D | phy-stm32-usbphyc.c | 141 u32 tune; member 479 usbphyc_phy->tune |= LFSCAPEN; in stm32_usbphyc_phy_tuning() 482 usbphyc_phy->tune |= HSDRVSLEW; in stm32_usbphyc_phy_tuning() 488 usbphyc_phy->tune |= HSDRVDCCUR; in stm32_usbphyc_phy_tuning() 499 usbphyc_phy->tune |= FSDRVRFADJ; in stm32_usbphyc_phy_tuning() 502 usbphyc_phy->tune |= HSDRVRFRED; in stm32_usbphyc_phy_tuning() 529 usbphyc_phy->tune |= HDRXGNEQEN; in stm32_usbphyc_phy_tuning() 534 usbphyc_phy->tune |= FIELD_PREP(HSRXOFF, val); in stm32_usbphyc_phy_tuning() 540 usbphyc_phy->tune |= HSFALLPREEM; in stm32_usbphyc_phy_tuning() 543 usbphyc_phy->tune |= SHTCCTCTLPROT; in stm32_usbphyc_phy_tuning() [all …]
|
/linux/Documentation/devicetree/bindings/phy/ |
A D | phy-stm32-usbphyc.yaml | 86 # all optional parameters to tune the interface of the PHY (HS for High-Speed, FS for Full- 101 st,tune-hs-dc-level: 157 st,tune-squelch-level: 173 st,tune-hs-rx-offset: 253 st,tune-hs-dc-level = <2>; 258 st,tune-squelch-level = <3>; 259 st,tune-hs-rx-offset = <2>; 271 st,tune-hs-dc-level = <2>; 276 st,tune-squelch-level = <3>; 277 st,tune-hs-rx-offset = <2>;
|
/linux/drivers/media/tuners/ |
A D | mt2266.c | 122 u32 tune; in mt2266_set_params() local 135 tune = 2 * freq * (8192/16) / (FREF/16); in mt2266_set_params() 138 tune *= 2; in mt2266_set_params() 200 b[1] = (tune >> 8) & 0x1F; in mt2266_set_params() 201 b[2] = tune & 0xFF; in mt2266_set_params() 202 b[3] = tune >> 13; in mt2266_set_params() 206 (int) tune, (int) lnaband, in mt2266_set_params()
|
/linux/drivers/media/dvb-frontends/ |
A D | dib0090.c | 2044 const struct dib0090_tuning *tune = in dib0090_update_tuning_table_7090() local 2065 tune++; in dib0090_update_tuning_table_7090() 2068 | (tune->lna_bias & 0x7fff)); in dib0090_update_tuning_table_7090() 2070 | ((tune->lna_tune << 6) & 0x07c0)); in dib0090_update_tuning_table_7090() 2313 tune = dib0090_tuning_table; in dib0090_tune() 2315 tune = dib0090_p1g_tuning_table; in dib0090_tune() 2356 tune++; in dib0090_tune() 2360 state->current_tune_table_index = tune; in dib0090_tune() 2441 lo6 = tune->tuner_enable; in dib0090_tune() 2485 dib0090_write_reg(state, 0x0b, 0xb800 | (tune->lna_tune << 6) | (tune->switch_trim)); in dib0090_tune() [all …]
|
A D | dib0070.c | 325 const struct dib0070_tuning *tune; in dib0070_tune_digital() local 348 tune = dib0070s_tuning_table; in dib0070_tune_digital() 352 tune = dib0070_tuning_table; in dib0070_tune_digital() 359 while (freq > tune->max_freq) /* find the right one */ in dib0070_tune_digital() 360 tune++; in dib0070_tune_digital() 364 state->current_tune_table_index = tune; in dib0070_tune_digital()
|
A D | m88rs2000.c | 714 struct dvb_frontend_tune_settings *tune) in m88rs2000_get_tune_settings() argument 719 tune->min_delay_ms = 2000; in m88rs2000_get_tune_settings() 721 tune->min_delay_ms = 3000; in m88rs2000_get_tune_settings() 723 tune->step_size = c->symbol_rate / 16000; in m88rs2000_get_tune_settings() 724 tune->max_drift = c->symbol_rate / 2000; in m88rs2000_get_tune_settings()
|
A D | gp8psk-fe.c | 124 …c int gp8psk_fe_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) in gp8psk_fe_get_tune_settings() argument 126 tune->min_delay_ms = 800; in gp8psk_fe_get_tune_settings()
|
A D | cx22702.c | 565 struct dvb_frontend_tune_settings *tune) in cx22702_get_tune_settings() argument 567 tune->min_delay_ms = 1000; in cx22702_get_tune_settings()
|
/linux/drivers/media/usb/dvb-usb/ |
A D | dtt200u-fe.c | 139 … int dtt200u_fe_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) in dtt200u_fe_get_tune_settings() argument 141 tune->min_delay_ms = 1500; in dtt200u_fe_get_tune_settings() 142 tune->step_size = 0; in dtt200u_fe_get_tune_settings() 143 tune->max_drift = 0; in dtt200u_fe_get_tune_settings()
|
A D | vp7045-fe.c | 97 …c int vp7045_fe_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) in vp7045_fe_get_tune_settings() argument 99 tune->min_delay_ms = 800; in vp7045_fe_get_tune_settings()
|
A D | cinergyT2-fe.c | 218 struct dvb_frontend_tune_settings *tune) in cinergyt2_fe_get_tune_settings() argument 220 tune->min_delay_ms = 800; in cinergyt2_fe_get_tune_settings()
|
A D | vp702x-fe.c | 128 …c int vp702x_fe_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings *tune) in vp702x_fe_get_tune_settings() argument 131 tune->min_delay_ms = 2000; in vp702x_fe_get_tune_settings()
|
/linux/arch/nds32/ |
A D | Makefile | 17 KBUILD_CFLAGS +=$(arch-y) $(tune-y) 18 KBUILD_AFLAGS +=$(arch-y) $(tune-y)
|
/linux/tools/virtio/ringtest/ |
A D | README | 1 Partial implementation of various ring layouts, useful to tune virtio design.
|
/linux/Documentation/userspace-api/media/dvb/ |
A D | frontend_fcalls.rst | 24 fe-set-frontend-tune-mode
|
A D | dvbproperty.rst | 17 union with the parameters needed to tune for DVB-S, DVB-C, DVB-T and 50 **Example**: in order to set the hardware to tune into a DVB-C channel
|
A D | fe-set-frontend-tune-mode.rst | 31 - 0 - normal tune mode
|
/linux/drivers/media/pci/ddbridge/ |
A D | ddbridge-sx8.c | 412 static int tune(struct dvb_frontend *fe, bool re_tune, in tune() function 466 .tune = tune,
|
/linux/drivers/regulator/ |
A D | bd9576-regulator.c | 138 int tune; in bd957x_vout34_list_voltage() local 141 tune = multiplier * 10000; in bd957x_vout34_list_voltage() 144 return desc->fixed_uV - tune; in bd957x_vout34_list_voltage() 146 return desc->fixed_uV + tune; in bd957x_vout34_list_voltage()
|
/linux/include/uapi/sound/ |
A D | sfnt_info.h | 130 short tune; /* pitch tuning (in cents) */ member
|
/linux/fs/sysfs/ |
A D | Kconfig | 13 which driver each is bound to. sysfs can also be used to tune devices
|
/linux/block/ |
A D | Kconfig.iosched | 16 synchronous writes, it will self-tune queue depths to achieve that
|