Lines Matching defs:model

78  * Second index by (model & 0x3) for family 0fh,
232 * Table for mapping AMD Family 0xf and AMD Family 0x10 model/stepping
235 * The first member of this array that matches a given family, extended model
236 * plus model range, and stepping range will be considered a match.
253 * Rev B includes model 0x4 stepping 0 and model 0x5 stepping 0 and 1.
258 * Rev C0 includes model 0x4 stepping 8 and model 0x5 stepping 8
262 * Rev CG is the rest of extended model 0x0 - i.e., everything
267 * Rev D has extended model 0x1.
271 * Rev E has extended model 0x2.
272 * Extended model 0x3 is unused but available to grow into.
280 * Rev G has extended model 0x6.
289 * Rev A has model 0 and stepping 0/1/2 for DR-{A0,A1,A2}.
290 * Give all of model 0 stepping range to rev A.
295 * Rev B has model 2 and steppings 0/1/0xa/2 for DR-{B0,B1,BA,B2}.
296 * Give all of model 2 stepping range to rev B.
314 * Give all of model 8 and 9 stepping 0 to rev D0.
320 * Give all of model 8 and 9 stepping range >= 1 to rev D1.
326 * Give all of model A stepping range to rev E.
356 synth_amd_info(uint_t family, uint_t model, uint_t step,
369 model >= rmp->rm_modello && model <= rmp->rm_modelhi &&
399 *skt_p = amd_skts[rmp->rm_sktidx][model & 0x3];
441 _cpuid_skt(uint_t vendor, uint_t family, uint_t model, uint_t step)
447 synth_amd_info(family, model, step, &skt, NULL, NULL);
459 _cpuid_sktstr(uint_t vendor, uint_t family, uint_t model, uint_t step)
467 synth_amd_info(family, model, step, &skt, NULL, NULL);
487 _cpuid_chiprev(uint_t vendor, uint_t family, uint_t model, uint_t step)
493 synth_amd_info(family, model, step, NULL, &chiprev, NULL);
505 _cpuid_chiprevstr(uint_t vendor, uint_t family, uint_t model, uint_t step)
511 synth_amd_info(family, model, step, NULL, NULL, &revstr);