aboutsummaryrefslogtreecommitdiffstats
path: root/common
ModeNameSize
-rw-r--r--archcheck.cc4157logstatsplain
-rw-r--r--chain_utils.h2225logstatsplain
-rw-r--r--command.cc9809logstatsplain
-rw-r--r--command.h2257logstatsplain
-rw-r--r--design_utils.cc4508logstatsplain
-rw-r--r--design_utils.h3517logstatsplain
-rw-r--r--handle_error.cc2310logstatsplain
-rw-r--r--log.cc5476logstatsplain
-rw-r--r--log.h2827logstatsplain
-rw-r--r--nextpnr.cc9729logstatsplain
-rw-r--r--nextpnr.h14805logstatsplain
-rw-r--r--place_common.cc20595logstatsplain
-rw-r--r--place_common.h1968logstatsplain
-rw-r--r--placer1.cc19411logstatsplain
-rw-r--r--placer1.h1163logstatsplain
-rw-r--r--project.cc5079logstatsplain
-rw-r--r--project.h1586logstatsplain
-rw-r--r--pybindings.cc8883logstatsplain
-rw-r--r--pybindings.h2697logstatsplain
-rw-r--r--pycontainers.h15756logstatsplain
-rw-r--r--pywrappers.h11515logstatsplain
-rw-r--r--router1.cc37498logstatsplain
-rw-r--r--router1.h1239logstatsplain
-rw-r--r--rulecheck.cc2355logstatsplain
-rw-r--r--settings.h1933logstatsplain
-rw-r--r--timing.cc20986logstatsplain
-rw-r--r--timing.h1286logstatsplain
-rw-r--r--util.h3206logstatsplain
-rw-r--r--version.h.in92logstatsplain
">MSR_VIA_FCR, lo, hi); set_bit(X86_FEATURE_CX8, c->x86_capability); } /* Before Nehemiah, the C3's had 3dNOW! */ if (c->x86_model >=6 && c->x86_model <9) set_bit(X86_FEATURE_3DNOW, c->x86_capability); get_model_name(c); display_cacheinfo(c); } static void __init init_centaur(struct cpuinfo_x86 *c) { /* Bit 31 in normal CPUID used for nonstandard 3DNow ID; 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway */ clear_bit(0*32+31, c->x86_capability); if (c->x86 == 6) init_c3(c); } static unsigned int centaur_size_cache(struct cpuinfo_x86 * c, unsigned int size) { /* VIA C3 CPUs (670-68F) need further shifting. */ if ((c->x86 == 6) && ((c->x86_model == 7) || (c->x86_model == 8))) size >>= 8; /* VIA also screwed up Nehemiah stepping 1, and made it return '65KB' instead of '64KB' - Note, it seems this may only be in engineering samples. */ if ((c->x86==6) && (c->x86_model==9) && (c->x86_mask==1) && (size==65)) size -=1; return size; } static struct cpu_dev centaur_cpu_dev __initdata = { .c_vendor = "Centaur", .c_ident = { "CentaurHauls" }, .c_init = init_centaur, .c_size_cache = centaur_size_cache, }; int __init centaur_init_cpu(void) { cpu_devs[X86_VENDOR_CENTAUR] = &centaur_cpu_dev; return 0; } //early_arch_initcall(centaur_init_cpu);