Home
last modified time | relevance | path

Searched refs:sets (Results 1 – 25 of 518) sorted by relevance

12345678910>>...21

/Linux-v4.19/arch/mips/mm/
Dc-octeon.c198 c->icache.sets = 64 << ((config1 >> 22) & 7); in probe_octeon()
202 c->icache.sets * c->icache.ways * c->icache.linesz; in probe_octeon()
206 c->dcache.sets = 2; /* CN5XXX has two Dcache sets */ in probe_octeon()
208 c->dcache.sets = 1; /* CN3XXX has one Dcache set */ in probe_octeon()
211 c->dcache.sets * c->dcache.ways * c->dcache.linesz; in probe_octeon()
218 c->icache.sets = 8; in probe_octeon()
221 icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; in probe_octeon()
225 c->dcache.sets = 8; in probe_octeon()
226 dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; in probe_octeon()
232 c->icache.sets = 16; in probe_octeon()
[all …]
Dsc-mips.c154 unsigned long sets, line_sz, assoc; in mips_sc_probe_cm3() local
159 sets = cfg & CM_GCR_L2_CONFIG_SET_SIZE; in mips_sc_probe_cm3()
160 sets >>= __ffs(CM_GCR_L2_CONFIG_SET_SIZE); in mips_sc_probe_cm3()
161 if (sets) in mips_sc_probe_cm3()
162 c->scache.sets = 64 << sets; in mips_sc_probe_cm3()
172 c->scache.waysize = c->scache.sets * c->scache.linesz; in mips_sc_probe_cm3()
214 c->scache.sets = 64 << tmp; in mips_sc_probe()
232 c->scache.waysize = c->scache.sets * c->scache.linesz; in mips_sc_probe()
Dc-r4k.c1337 c->icache.sets = 64 << ((config1 >> 22) & 7); in probe_pcache()
1339 icache_size = c->icache.sets * in probe_pcache()
1349 c->dcache.sets = 64 << ((config1 >> 13) & 7); in probe_pcache()
1351 dcache_size = c->dcache.sets * in probe_pcache()
1362 c->icache.sets = 16; in probe_pcache()
1365 icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; in probe_pcache()
1369 c->dcache.sets = 8; in probe_pcache()
1370 dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; in probe_pcache()
1392 c->icache.sets = 32 << (((config1 >> 22) + 1) & 7); in probe_pcache()
1395 icache_size = c->icache.sets * in probe_pcache()
[all …]
/Linux-v4.19/arch/arm64/boot/dts/ti/
Dk3-am654.dtsi43 i-cache-sets = <256>;
46 d-cache-sets = <128>;
57 i-cache-sets = <256>;
60 d-cache-sets = <128>;
71 i-cache-sets = <256>;
74 d-cache-sets = <128>;
85 i-cache-sets = <256>;
88 d-cache-sets = <128>;
98 cache-sets = <512>;
107 cache-sets = <512>;
/Linux-v4.19/arch/arm64/boot/dts/arm/
Djuno-r2.dts94 i-cache-sets = <256>;
97 d-cache-sets = <256>;
111 i-cache-sets = <256>;
114 d-cache-sets = <256>;
128 i-cache-sets = <256>;
131 d-cache-sets = <128>;
145 i-cache-sets = <256>;
148 d-cache-sets = <128>;
162 i-cache-sets = <256>;
165 d-cache-sets = <128>;
[all …]
Djuno.dts93 i-cache-sets = <256>;
96 d-cache-sets = <256>;
110 i-cache-sets = <256>;
113 d-cache-sets = <256>;
127 i-cache-sets = <256>;
130 d-cache-sets = <128>;
144 i-cache-sets = <256>;
147 d-cache-sets = <128>;
161 i-cache-sets = <256>;
164 d-cache-sets = <128>;
[all …]
Djuno-r1.dts94 i-cache-sets = <256>;
97 d-cache-sets = <256>;
111 i-cache-sets = <256>;
114 d-cache-sets = <256>;
128 i-cache-sets = <256>;
131 d-cache-sets = <128>;
145 i-cache-sets = <256>;
148 d-cache-sets = <128>;
162 i-cache-sets = <256>;
165 d-cache-sets = <128>;
[all …]
/Linux-v4.19/fs/nls/
DKconfig43 native language character sets. These character sets are stored
55 native language character sets. These character sets are stored
67 native language character sets. These character sets are stored
80 native language character sets. These character sets are stored in
96 native language character sets. These character sets are stored in
111 native language character sets. These character sets are stored in
122 native language character sets. These character sets are stored in
133 native language character sets. These character sets are stored in
144 native language character sets. These character sets are stored in
155 native language character sets. These character sets are stored in
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/arm/uniphier/
Dcache-uniphier.txt9 - reg: offsets and lengths of the register sets for the device. It should
14 - cache-sets: specifies the number of associativity sets of the cache
33 cache-sets = <256>;
45 cache-sets = <512>;
57 cache-sets = <512>;
/Linux-v4.19/arch/sh/kernel/cpu/sh4/
Dprobe.c40 boot_cpu_data.icache.sets = 256; in cpu_probe()
49 boot_cpu_data.dcache.sets = 512; in cpu_probe()
208 boot_cpu_data.icache.sets = (size >> 6); in cpu_probe()
216 boot_cpu_data.dcache.sets = (size >> 6); in cpu_probe()
254 boot_cpu_data.scache.sets = size / in cpu_probe()
259 (boot_cpu_data.scache.sets * in cpu_probe()
/Linux-v4.19/arch/powerpc/kernel/
Dsetup_64.c463 u32 bsize, u32 sets) in init_cache_info() argument
466 info->sets = sets; in init_cache_info()
475 if (sets == 0) in init_cache_info()
478 info->assoc = size / (sets * lsize); in init_cache_info()
499 u32 size, lsize, bsize, sets; in parse_cache_info() local
503 sets = -1u; in parse_cache_info()
510 sets = be32_to_cpu(*setsp); in parse_cache_info()
528 if (sets == 1) in parse_cache_info()
529 sets = 0; in parse_cache_info()
530 else if (sets == 0) in parse_cache_info()
[all …]
/Linux-v4.19/arch/arc/mm/
Dtlb.c258 int num_tlb = mmu->sets * mmu->ways; in local_flush_tlb_all()
735 unsigned int ver:8, ways:4, sets:4, u_itlb:8, u_dtlb:8; in read_decode_mmu_bcr() member
737 unsigned int u_dtlb:8, u_itlb:8, sets:4, ways:4, ver:8; in read_decode_mmu_bcr()
743 unsigned int ver:8, ways:4, sets:4, res:3, sasid:1, pg_sz:4, in read_decode_mmu_bcr() member
746 unsigned int u_dtlb:4, u_itlb:4, pg_sz:4, sasid:1, res:3, sets:4, in read_decode_mmu_bcr()
769 mmu->sets = 1 << mmu2->sets; in read_decode_mmu_bcr()
776 mmu->sets = 1 << mmu3->sets; in read_decode_mmu_bcr()
786 mmu->sets = 64 << mmu4->n_entry; in read_decode_mmu_bcr()
809 p_mmu->sets * p_mmu->ways, p_mmu->sets, p_mmu->ways, in arc_mmu_mumbojumbo()
921 for (set = 0; set < mmu->sets; set++) { in do_tlb_overlap_fault()
/Linux-v4.19/drivers/mtd/nand/raw/
Ds3c2410.c1026 struct s3c2410_nand_set *sets; in s3c24xx_nand_probe_dt() local
1044 sets = devm_kcalloc(&pdev->dev, pdata->nr_sets, sizeof(*sets), in s3c24xx_nand_probe_dt()
1046 if (!sets) in s3c24xx_nand_probe_dt()
1049 pdata->sets = sets; in s3c24xx_nand_probe_dt()
1052 sets->name = (char *)child->name; in s3c24xx_nand_probe_dt()
1053 sets->of_node = child; in s3c24xx_nand_probe_dt()
1054 sets->nr_chips = 1; in s3c24xx_nand_probe_dt()
1058 sets++; in s3c24xx_nand_probe_dt()
1085 struct s3c2410_nand_set *sets; in s3c24xx_nand_probe() local
1141 if (!plat->sets || plat->nr_sets < 1) { in s3c24xx_nand_probe()
[all …]
/Linux-v4.19/Documentation/networking/
Dgeneric-hdlc.txt52 * v35 | rs232 | x21 | t1 | e1 - sets physical interface for a given port
59 * rate - sets clock rate in bps (for "int" or "txint" clock only)
64 * hdlc - sets raw HDLC (IP-only) mode
65 nrz / nrzi / fm-mark / fm-space / manchester - sets transmission code
67 crc16-itu (CRC16 with ITU-T polynomial) / crc16-itu-pr0 - sets parity
72 * cisco - sets Cisco HDLC mode (IP, IPv6 and IPX supported)
77 * ppp - sets synchronous PPP mode
79 * x25 - sets X.25 mode
/Linux-v4.19/arch/sparc/mm/
Dleon_mm.c247 unsigned int ssize, sets; in leon_flush_needed() local
255 sets = (cregs.dccr & LEON3_XCCR_SETS_MASK) >> 24; in leon_flush_needed()
260 sets > 3 ? "unknown" : setStr[sets], ssize); in leon_flush_needed()
261 if ((ssize <= (PAGE_SIZE / 1024)) && (sets == 0)) { in leon_flush_needed()
/Linux-v4.19/arch/nds32/kernel/
Dsetup.c102 L1_cache_info[ICACHE].sets = CACHE_SET(ICACHE); in dump_cpu_info()
105 L1_cache_info[ICACHE].sets / 1024; in dump_cpu_info()
107 L1_cache_info[ICACHE].sets, L1_cache_info[ICACHE].ways, in dump_cpu_info()
111 L1_cache_info[DCACHE].sets = CACHE_SET(DCACHE); in dump_cpu_info()
114 L1_cache_info[DCACHE].sets / 1024; in dump_cpu_info()
116 L1_cache_info[DCACHE].sets, L1_cache_info[DCACHE].ways, in dump_cpu_info()
/Linux-v4.19/arch/sh/kernel/cpu/sh3/
Dprobe.c65 boot_cpu_data.dcache.sets = 128; in cpu_probe()
72 boot_cpu_data.dcache.sets = 256; in cpu_probe()
96 boot_cpu_data.dcache.sets = 512; in cpu_probe()
/Linux-v4.19/Documentation/ABI/testing/
Dsysfs-driver-fsi-master-gpio7 value of 0 (the default) sets normal mode, where the
8 driver performs FSI bus transactions, 1 sets external mode,
/Linux-v4.19/arch/sh/kernel/cpu/sh5/
Dprobe.c43 boot_cpu_data.icache.sets = 256; in cpu_probe()
47 boot_cpu_data.icache.way_size = boot_cpu_data.icache.sets * in cpu_probe()
/Linux-v4.19/arch/sh/kernel/cpu/sh2/
Dprobe.c39 boot_cpu_data.dcache.sets = 256; in cpu_probe()
60 boot_cpu_data.dcache.sets = 256; in cpu_probe()
/Linux-v4.19/arch/sh/mm/
Dcache.c251 c->alias_mask = ((c->sets - 1) << c->entry_shift) & ~(PAGE_SIZE - 1); in compute_alias()
262 boot_cpu_data.icache.sets, in emit_cache_params()
270 boot_cpu_data.dcache.sets, in emit_cache_params()
283 boot_cpu_data.scache.sets, in emit_cache_params()
337 (boot_cpu_data.dcache.sets == 512)) { in cpu_cache_init()
/Linux-v4.19/Documentation/devicetree/bindings/riscv/
Dcpus.txt102 i-cache-sets = <128>;
118 d-cache-sets = <64>;
120 d-tlb-sets = <1>;
124 i-cache-sets = <64>;
126 i-tlb-sets = <1>;
/Linux-v4.19/arch/mips/loongson64/loongson-3/
Dsmp.c490 [sets] "r" (cpu_data[smp_processor_id()].dcache.sets)); in loongson3a_r1_play_dead()
572 [sets] "r" (cpu_data[smp_processor_id()].dcache.sets), in loongson3a_r2r3_play_dead()
573 [vsets] "r" (cpu_data[smp_processor_id()].vcache.sets)); in loongson3a_r2r3_play_dead()
635 [sets] "r" (cpu_data[smp_processor_id()].dcache.sets)); in loongson3b_play_dead()
/Linux-v4.19/drivers/net/wireless/ti/wlcore/
Dscan.c390 struct cfg80211_match_set *sets = req->match_sets; in wlcore_scan_sched_scan_ssid_list() local
398 if (sets[i].ssid.ssid_len > 0) in wlcore_scan_sched_scan_ssid_list()
434 if (!sets[i].ssid.ssid_len) in wlcore_scan_sched_scan_ssid_list()
438 cmd->ssids[cmd->n_ssids].len = sets[i].ssid.ssid_len; in wlcore_scan_sched_scan_ssid_list()
440 sets[i].ssid.ssid, sets[i].ssid.ssid_len); in wlcore_scan_sched_scan_ssid_list()
/Linux-v4.19/Documentation/acpi/
DDSD-properties-rules.txt38 Property sets may be hierarchical. That is, a property set may contain
45 Valid property sets must follow the guidance given by the Device Properties UUID
52 return property sets which do not follow that rule from _DSD in data packages
78 It often is useful to make _DSD return property sets that follow Device Tree
82 account in the first place and returning invalid property sets from _DSD must be
89 In any case, property sets following DT bindings literally should not be

12345678910>>...21