Lines Matching refs:this_leaf

355 static ssize_t show_cache_disable(struct cacheinfo *this_leaf, char *buf,  in show_cache_disable()  argument
359 struct amd_northbridge *nb = this_leaf->priv; in show_cache_disable()
373 struct cacheinfo *this_leaf = dev_get_drvdata(dev); \
374 return show_cache_disable(this_leaf, buf, slot); \
441 static ssize_t store_cache_disable(struct cacheinfo *this_leaf, in store_cache_disable() argument
447 struct amd_northbridge *nb = this_leaf->priv; in store_cache_disable()
452 cpu = cpumask_first(&this_leaf->shared_cpu_map); in store_cache_disable()
473 struct cacheinfo *this_leaf = dev_get_drvdata(dev); \
474 return store_cache_disable(this_leaf, buf, count, slot); \
482 struct cacheinfo *this_leaf = dev_get_drvdata(dev); in subcaches_show() local
483 int cpu = cpumask_first(&this_leaf->shared_cpu_map); in subcaches_show()
492 struct cacheinfo *this_leaf = dev_get_drvdata(dev); in subcaches_store() local
493 int cpu = cpumask_first(&this_leaf->shared_cpu_map); in subcaches_store()
517 struct cacheinfo *this_leaf = dev_get_drvdata(dev); in cache_private_attrs_is_visible() local
520 if (!this_leaf->priv) in cache_private_attrs_is_visible()
568 cache_get_priv_group(struct cacheinfo *this_leaf) in cache_get_priv_group() argument
570 struct amd_northbridge *nb = this_leaf->priv; in cache_get_priv_group()
572 if (this_leaf->level < 3 || !nb) in cache_get_priv_group()
581 static void amd_init_l3_cache(struct _cpuid4_info_regs *this_leaf, int index) in amd_init_l3_cache() argument
590 this_leaf->nb = node_to_amd_nb(node); in amd_init_l3_cache()
591 if (this_leaf->nb && !this_leaf->nb->l3_cache.indices) in amd_init_l3_cache()
592 amd_calc_l3_indices(this_leaf->nb); in amd_init_l3_cache()
599 cpuid4_cache_lookup_regs(int index, struct _cpuid4_info_regs *this_leaf) in cpuid4_cache_lookup_regs() argument
612 amd_init_l3_cache(this_leaf, index); in cpuid4_cache_lookup_regs()
616 amd_init_l3_cache(this_leaf, index); in cpuid4_cache_lookup_regs()
624 this_leaf->eax = eax; in cpuid4_cache_lookup_regs()
625 this_leaf->ebx = ebx; in cpuid4_cache_lookup_regs()
626 this_leaf->ecx = ecx; in cpuid4_cache_lookup_regs()
627 this_leaf->size = (ecx.split.number_of_sets + 1) * in cpuid4_cache_lookup_regs()
752 struct _cpuid4_info_regs this_leaf = {}; in init_intel_cacheinfo() local
755 retval = cpuid4_cache_lookup_regs(i, &this_leaf); in init_intel_cacheinfo()
759 switch (this_leaf.eax.split.level) { in init_intel_cacheinfo()
761 if (this_leaf.eax.split.type == CTYPE_DATA) in init_intel_cacheinfo()
762 new_l1d = this_leaf.size/1024; in init_intel_cacheinfo()
763 else if (this_leaf.eax.split.type == CTYPE_INST) in init_intel_cacheinfo()
764 new_l1i = this_leaf.size/1024; in init_intel_cacheinfo()
767 new_l2 = this_leaf.size/1024; in init_intel_cacheinfo()
768 num_threads_sharing = 1 + this_leaf.eax.split.num_threads_sharing; in init_intel_cacheinfo()
773 new_l3 = this_leaf.size/1024; in init_intel_cacheinfo()
774 num_threads_sharing = 1 + this_leaf.eax.split.num_threads_sharing; in init_intel_cacheinfo()
871 struct cacheinfo *this_leaf; in __cache_amd_cpumap_setup() local
883 this_leaf = this_cpu_ci->info_list + index; in __cache_amd_cpumap_setup()
888 &this_leaf->shared_cpu_map); in __cache_amd_cpumap_setup()
908 this_leaf = this_cpu_ci->info_list + index; in __cache_amd_cpumap_setup()
915 &this_leaf->shared_cpu_map); in __cache_amd_cpumap_setup()
928 struct cacheinfo *this_leaf, *sibling_leaf; in __cache_cpumap_setup() local
939 this_leaf = this_cpu_ci->info_list + index; in __cache_cpumap_setup()
942 cpumask_set_cpu(cpu, &this_leaf->shared_cpu_map); in __cache_cpumap_setup()
955 cpumask_set_cpu(i, &this_leaf->shared_cpu_map); in __cache_cpumap_setup()
960 static void ci_leaf_init(struct cacheinfo *this_leaf, in ci_leaf_init() argument
963 this_leaf->id = base->id; in ci_leaf_init()
964 this_leaf->attributes = CACHE_ID; in ci_leaf_init()
965 this_leaf->level = base->eax.split.level; in ci_leaf_init()
966 this_leaf->type = cache_type_map[base->eax.split.type]; in ci_leaf_init()
967 this_leaf->coherency_line_size = in ci_leaf_init()
969 this_leaf->ways_of_associativity = in ci_leaf_init()
971 this_leaf->size = base->size; in ci_leaf_init()
972 this_leaf->number_of_sets = base->ecx.split.number_of_sets + 1; in ci_leaf_init()
973 this_leaf->physical_line_partition = in ci_leaf_init()
975 this_leaf->priv = base->nb; in ci_leaf_init()
1009 struct cacheinfo *this_leaf = this_cpu_ci->info_list; in populate_cache_leaves() local
1017 ci_leaf_init(this_leaf++, &id4_regs); in populate_cache_leaves()