Searched refs:model (Results 26 - 50 of 557) sorted by relevance

1234567891011>>

/linux-master/arch/x86/kernel/cpu/
H A Dmatch.c15 * contains vendor (X86_VENDOR_*), family, model and feature bits or
43 m->vendor | m->family | m->model | m->steppings | m->feature;
49 if (m->model != X86_MODEL_ANY && c->x86_model != m->model)
/linux-master/sound/pci/ctxfi/
H A Dcthardware.c20 enum CTCARDS model, struct hw **rhw)
40 (*rhw)->model = model;
19 create_hw_obj(struct pci_dev *pci, enum CHIPTYP chip_type, enum CTCARDS model, struct hw **rhw) argument
/linux-master/drivers/mtd/nand/raw/
H A Dnand_jedec.c90 sanitize_string(p->model, sizeof(p->model));
91 chip->parameters.model = kstrdup(p->model, GFP_KERNEL);
92 if (!chip->parameters.model) {
/linux-master/sound/firewire/tascam/
H A Dtascam.c48 char model[9]; local
58 /* Pick up model name from certain addresses. */
63 model[i] = c;
65 model[i] = '\0';
68 if (strcmp(model, model_specs[i].name) == 0) {
77 strcpy(tscm->card->shortname, model);
78 strcpy(tscm->card->mixername, model);
80 "TASCAM %s, GUID %08x%08x at %s, S%d", model,
/linux-master/sound/firewire/oxfw/
H A Doxfw.c54 char model[32]; local
58 model, sizeof(model));
62 return match_string(models, ARRAY_SIZE(models), model) >= 0;
70 char model[32]; local
81 /* get model name from unit directory */
83 model, sizeof(model));
105 m = model;
137 int vendor, model; local
[all...]
/linux-master/drivers/parisc/
H A Dled.c55 unsigned long model:16; /* DISPLAY_MODEL_XXXX */ member in struct:pdc_chassis_lcd_info_ret_block
80 .model = DISPLAY_MODEL_NONE,
103 if (lcd_info.model != DISPLAY_MODEL_LCD)
389 * @model: model type, one of the DISPLAY_MODEL_XXXX values
396 int __init register_led_driver(int model, unsigned long cmd_reg, unsigned long data_reg) argument
405 lcd_info.model = model; /* store the values */
408 switch (lcd_info.model) {
436 pr_err("led: Unknown LCD/LED model typ
[all...]
/linux-master/sound/pci/oxygen/
H A Doxygen_pcm.c129 (chip->model.device_config & CAPTURE_2_FROM_AC97_1))
135 if (chip->model.device_config & CAPTURE_1_FROM_SPDIF) {
146 runtime->hw.channels_max = chip->model.dac_channels_pcm;
149 if (chip->model.pcm_hardware_filter)
150 chip->model.pcm_hardware_filter(channel, &runtime->hw);
330 mclks = chip->model.dac_mclks;
332 mclks = chip->model.adc_mclks;
360 chip->model.adc_i2s_format |
370 chip->model.set_adc_params(chip, hw_params);
387 (chip->model
[all...]
H A Doxygen.c203 data->dacs = chip->model.dac_channels_pcm / 2;
759 chip->model = model_generic;
763 chip->model.init = meridian_init;
764 chip->model.mixer_init = meridian_mixer_init;
765 chip->model.resume = meridian_resume;
766 chip->model.set_adc_params = set_ak5385_params;
767 chip->model.dump_registers = dump_ak4396_registers;
768 chip->model.device_config = PLAYBACK_0_TO_I2S |
773 chip->model.device_config |= AC97_CD_INPUT;
776 chip->model
[all...]
H A Doxygen_lib.c49 if (chip->model.uart_input)
50 chip->model.uart_input(chip);
183 if (chip->model.gpio_changed)
184 chip->model.gpio_changed(chip);
229 if (chip->model.dump_registers)
230 chip->model.dump_registers(chip, buffer);
278 * This function gets called only when a known card model has
359 chip->dac_volume[i] = chip->model.dac_volume_min;
376 chip->model.function_flags,
388 chip->model
[all...]
H A Dxonar_pcm179x.c258 if ((chip->model.function_flags & OXYGEN_FUNCTION_2WIRE_SPI_MASK) ==
382 data->pcm179x.dacs = chip->model.dac_channels_mixer / 2;
383 data->pcm179x.h6 = chip->model.dac_channels_mixer > 2;
413 data->dacs = chip->model.dac_channels_mixer / 2;
414 data->h6 = chip->model.dac_channels_mixer > 2;
462 data->h6 = chip->model.dac_channels_mixer > 2;
1280 chip->model = model_xonar_d2;
1281 chip->model.shortname = "Xonar D2";
1284 chip->model = model_xonar_d2;
1285 chip->model
[all...]
/linux-master/drivers/media/i2c/ccs/
H A Dccs.h126 #define CCS_IDENT_FQ(manufacturer, model, rev, fl, _name, _quirk) \
128 .model_id = model, \
134 #define CCS_IDENT_LQ(manufacturer, model, rev, _name, _quirk) \
136 .model_id = model, \
142 #define CCS_IDENT_L(manufacturer, model, rev, _name) \
144 .model_id = model, \
149 #define CCS_IDENT_Q(manufacturer, model, rev, _name, _quirk) \
151 .model_id = model, \
157 #define CCS_IDENT(manufacturer, model, rev, _name) \
159 .model_id = model, \
[all...]
/linux-master/drivers/gpu/drm/etnaviv/
H A Detnaviv_hwdb.c10 .model = 0x400,
42 .model = 0x520,
73 .model = 0x7000,
105 .model = 0x7000,
137 .model = 0x7000,
168 .model = 0x7000,
200 .model = 0x8000,
232 .model = 0x8000,
274 if (etnaviv_chip_identities[i].model == ident->model
[all...]
/linux-master/arch/powerpc/platforms/chrp/
H A Dsetup.c103 const char *model = ""; local
107 model = of_get_property(root, "model", NULL);
108 seq_printf(m, "machine\t\t: CHRP %s\n", model);
111 if (model && !strncmp(model, "IBM,LongTrail", 13)) {
124 model = "4 MB";
127 model = "8 MB";
130 model = "16 MB";
133 model
199 const char *model; local
[all...]
/linux-master/arch/arm64/kernel/
H A Dcpu_errata.c47 u32 model; local
51 model = read_cpuid_id();
52 model &= MIDR_IMPLEMENTOR_MASK | (0xf00 << MIDR_PARTNUM_SHIFT) |
55 return model == entry->midr_range.model;
124 #define CAP_MIDR_RANGE(model, v_min, r_min, v_max, r_max) \
126 .midr_range = MIDR_RANGE(model, v_min, r_min, v_max, r_max)
128 #define CAP_MIDR_ALL_VERSIONS(model) \
130 .midr_range = MIDR_ALL_VERSIONS(model)
135 #define ERRATA_MIDR_RANGE(model, v_mi
[all...]
/linux-master/drivers/perf/
H A Darm-cci.c35 #define CCI_PMU_CNTR_SIZE(model) ((model)->cntr_size)
36 #define CCI_PMU_CNTR_BASE(model, idx) ((idx) * CCI_PMU_CNTR_SIZE(model))
40 #define CCI_PMU_MAX_HW_CNTRS(model) \
41 ((model)->num_hw_cntrs + (model)->fixed_hw_cntrs)
104 const struct cci_pmu_model *model; member in struct:cci_pmu
362 if (ev_code >= cci_pmu->model->event_ranges[if_type].min &&
363 ev_code <= cci_pmu->model
1398 const struct cci_pmu_model *model = cci_pmu->model; local
1594 const struct cci_pmu_model *model; local
[all...]
/linux-master/drivers/cpufreq/
H A Dspeedstep-centrino.c40 __u8 x86_model; /* model */
237 struct cpu_model *model; local
239 for(model = models; model->cpu_id != NULL; model++)
240 if (centrino_verify_cpu_id(cpu, model->cpu_id) &&
241 (model->model_name == NULL ||
242 strcmp(cpu->x86_model_id, model->model_name) == 0))
245 if (model->cpu_id == NULL) {
247 pr_debug("no support for CPU model \"
[all...]
/linux-master/arch/x86/platform/geode/
H A Dnet5501.c124 unsigned char *model = rombase + boards[i].offset; local
126 if (!memcmp(model, boards[i].sig, boards[i].len)) {
128 KBUILD_MODNAME, model);
/linux-master/arch/loongarch/kernel/
H A Denv.c44 char *model; local
46 /* Parsing cpuname from DTS model property */
48 ret = of_property_read_string(root, "model", (const char **)&model);
51 loongson_sysconf.cpuname = strsep(&model, " ");
/linux-master/arch/m68k/include/asm/
H A Dmachdep.h18 extern void (*mach_get_model) (char *model);
/linux-master/tools/perf/arch/x86/util/
H A Dheader.c29 int family = -1, model = -1, step = -1; local
39 model = (a >> 4) & 0xf; /* Bits 7 - 4 */
46 /* extended model */
48 model += ((a >> 16) & 0xf) << 4;
50 nb = scnprintf(buffer, sz, fmt, vendor, family, model, step);
78 /* Full CPUID format for x86 is vendor-family-model-stepping */
109 "vendor-family-model-stepping\n", id);
/linux-master/include/media/
H A Dtveeprom.h43 * @tuner_hauppauge_model: Hauppauge's code for the device model number.
50 * @tuner2_hauppauge_model: tuner 2 Hauppauge's code for the device model
60 * @model: Hauppauge's model number
86 u32 model; member in struct:tveeprom
/linux-master/drivers/input/mouse/
H A Dlogips2pp.c32 u8 model; member in struct:ps2pp_info
207 static const struct ps2pp_info *get_model_info(unsigned char model) argument
260 if (model == ps2pp_list[i].model)
267 * Set up input device's properties based on the detected mouse model.
353 * and its exact model and try turning on extended protocol for ones
362 u8 model, buttons; local
374 model = ((param[0] >> 4) & 0x07) | ((param[0] << 3) & 0x78);
377 if (!model || !buttons)
380 model_info = get_model_info(model);
[all...]
/linux-master/arch/powerpc/boot/dts/fsl/
H A Dpq3-etsec2-0.dtsi47 model = "eTSEC";
H A Dpq3-etsec2-1.dtsi47 model = "eTSEC";
H A Dpq3-etsec2-2.dtsi46 model = "eTSEC";

Completed in 207 milliseconds

1234567891011>>