| /kernel/linux/linux-5.10/drivers/isdn/mISDN/ |
| D | layer2.c | 92 struct layer2 *l2 = fi->userdata; in l2m_debug() local 104 printk(KERN_DEBUG "%s l2 (sapi %d tei %d): %pV\n", in l2m_debug() 105 mISDNDevName4ch(&l2->ch), l2->sapi, l2->tei, &vaf); in l2m_debug() 111 l2headersize(struct layer2 *l2, int ui) in l2headersize() argument 113 return ((test_bit(FLG_MOD128, &l2->flag) && (!ui)) ? 2 : 1) + in l2headersize() 114 (test_bit(FLG_LAPD, &l2->flag) ? 2 : 1); in l2headersize() 118 l2addrsize(struct layer2 *l2) in l2addrsize() argument 120 return test_bit(FLG_LAPD, &l2->flag) ? 2 : 1; in l2addrsize() 124 l2_newid(struct layer2 *l2) in l2_newid() argument 128 id = l2->next_id++; in l2_newid() [all …]
|
| D | tei.c | 109 struct layer2 *l2; in da_deactivate() local 113 list_for_each_entry(l2, &mgr->layer2, list) { in da_deactivate() 114 if (l2->l2m.state > ST_L2_4) { in da_deactivate() 146 struct layer2 *l2; in da_timer() local 151 list_for_each_entry(l2, &mgr->layer2, list) { in da_timer() 152 if (l2->l2m.state > ST_L2_4) { in da_timer() 234 tm->l2->sapi, tm->l2->tei, &vaf); in tei_debug() 246 struct layer2 *l2; in get_free_id() local 248 list_for_each_entry(l2, &mgr->layer2, list) { in get_free_id() 249 if (l2->ch.nr > 63) { in get_free_id() [all …]
|
| /kernel/linux/linux-4.19/drivers/isdn/mISDN/ |
| D | layer2.c | 101 struct layer2 *l2 = fi->userdata; in l2m_debug() local 113 printk(KERN_DEBUG "%s l2 (sapi %d tei %d): %pV\n", in l2m_debug() 114 mISDNDevName4ch(&l2->ch), l2->sapi, l2->tei, &vaf); in l2m_debug() 120 l2headersize(struct layer2 *l2, int ui) in l2headersize() argument 122 return ((test_bit(FLG_MOD128, &l2->flag) && (!ui)) ? 2 : 1) + in l2headersize() 123 (test_bit(FLG_LAPD, &l2->flag) ? 2 : 1); in l2headersize() 127 l2addrsize(struct layer2 *l2) in l2addrsize() argument 129 return test_bit(FLG_LAPD, &l2->flag) ? 2 : 1; in l2addrsize() 133 l2_newid(struct layer2 *l2) in l2_newid() argument 137 id = l2->next_id++; in l2_newid() [all …]
|
| D | tei.c | 118 struct layer2 *l2; in da_deactivate() local 122 list_for_each_entry(l2, &mgr->layer2, list) { in da_deactivate() 123 if (l2->l2m.state > ST_L2_4) { in da_deactivate() 155 struct layer2 *l2; in da_timer() local 160 list_for_each_entry(l2, &mgr->layer2, list) { in da_timer() 161 if (l2->l2m.state > ST_L2_4) { in da_timer() 243 tm->l2->sapi, tm->l2->tei, &vaf); in tei_debug() 255 struct layer2 *l2; in get_free_id() local 257 list_for_each_entry(l2, &mgr->layer2, list) { in get_free_id() 258 if (l2->ch.nr > 63) { in get_free_id() [all …]
|
| /kernel/linux/linux-4.19/Documentation/devicetree/bindings/powerpc/fsl/ |
| D | l2cache.txt | 1 Freescale L2 Cache Controller 3 L2 cache is present in Freescale's QorIQ and QorIQ Qonverge platforms. 9 "fsl,8540-l2-cache-controller" 10 "fsl,8541-l2-cache-controller" 11 "fsl,8544-l2-cache-controller" 12 "fsl,8548-l2-cache-controller" 13 "fsl,8555-l2-cache-controller" 14 "fsl,8568-l2-cache-controller" 15 "fsl,b4420-l2-cache-controller" 16 "fsl,b4860-l2-cache-controller" [all …]
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/powerpc/fsl/ |
| D | l2cache.txt | 1 Freescale L2 Cache Controller 3 L2 cache is present in Freescale's QorIQ and QorIQ Qonverge platforms. 9 "fsl,8540-l2-cache-controller" 10 "fsl,8541-l2-cache-controller" 11 "fsl,8544-l2-cache-controller" 12 "fsl,8548-l2-cache-controller" 13 "fsl,8555-l2-cache-controller" 14 "fsl,8568-l2-cache-controller" 15 "fsl,b4420-l2-cache-controller" 16 "fsl,b4860-l2-cache-controller" [all …]
|
| /kernel/linux/linux-4.19/drivers/isdn/hisax/ |
| D | isdnl2.c | 107 static int l2addrsize(struct Layer2 *l2); 110 set_peer_busy(struct Layer2 *l2) { in set_peer_busy() argument 111 test_and_set_bit(FLG_PEER_BUSY, &l2->flag); in set_peer_busy() 112 if (!skb_queue_empty(&l2->i_queue) || in set_peer_busy() 113 !skb_queue_empty(&l2->ui_queue)) in set_peer_busy() 114 test_and_set_bit(FLG_L2BLOCK, &l2->flag); in set_peer_busy() 118 clear_peer_busy(struct Layer2 *l2) { in clear_peer_busy() argument 119 if (test_and_clear_bit(FLG_PEER_BUSY, &l2->flag)) in clear_peer_busy() 120 test_and_clear_bit(FLG_L2BLOCK, &l2->flag); in clear_peer_busy() 124 InitWin(struct Layer2 *l2) in InitWin() argument [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/amdzen1/ |
| D | cache.json | 15 …"BriefDescription": "The number of 64 byte instruction cache line was fulfilled from the L2 cache." 25 …fDescription": "The number of instruction fetches that miss in the L1 ITLB but hit in the L2 ITLB." 30 "BriefDescription": "The number of instruction fetches that miss in both the L1 and L2 TLBs." 58 …"BriefDescription": "IC line invalidated due to L2 invalidating probe (external or LS). The number… 75 …"BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). Data cache reads (including har… 81 "BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). Data cache stores.", 87 "BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). Data cache shared reads.", 93 "BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). Instruction cache reads.", 99 …fDescription": "All L2 Cache Requests (Breakdown 1 - Common). Data cache state change requests. Re… 105 "BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). PrefetchL2Cmd.", [all …]
|
| /kernel/linux/linux-5.10/drivers/memory/ |
| D | bt1-l2-ctl.c | 8 * Baikal-T1 CM2 L2-cache Control Block driver. 38 * struct l2_ctl - Baikal-T1 L2 Control block private data. 49 * enum l2_ctl_stall - Baikal-T1 L2-cache-RAM stall identifier. 61 * struct l2_ctl_device_attribute - Baikal-T1 L2-cache device attribute. 63 * @id: L2-cache stall field identifier. 77 static int l2_ctl_get_latency(struct l2_ctl *l2, enum l2_ctl_stall id, u32 *val) in l2_ctl_get_latency() argument 82 ret = regmap_read(l2->sys_regs, L2_CTL_REG, &data); in l2_ctl_get_latency() 103 static int l2_ctl_set_latency(struct l2_ctl *l2, enum l2_ctl_stall id, u32 val) in l2_ctl_set_latency() argument 130 ret = regmap_update_bits(l2->sys_regs, L2_CTL_REG, mask, data); in l2_ctl_set_latency() 134 return regmap_read_poll_timeout(l2->sys_regs, L2_CTL_REG, data, in l2_ctl_set_latency() [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/amdzen2/ |
| D | cache.json | 5 …"BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). Data cache reads (including har… 11 "BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). Data cache stores.", 17 "BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). Data cache shared reads.", 23 "BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). Instruction cache reads.", 29 …fDescription": "All L2 Cache Requests (Breakdown 1 - Common). Data cache state change requests. Re… 35 "BriefDescription": "All L2 Cache Requests (Breakdown 1 - Common). PrefetchL2Cmd.", 41 …tion": "All L2 Cache Requests (Breakdown 1 - Common). L2 Prefetcher. All prefetches accepted by L2… 64 "BriefDescription": "All L2 Cache Requests (Breakdown 2 - Rare). Data cache read sized.", 70 …"BriefDescription": "All L2 Cache Requests (Breakdown 2 - Rare). Data cache read sized non-cacheab… 76 "BriefDescription": "All L2 Cache Requests (Breakdown 2 - Rare). Instruction cache read sized.", [all …]
|
| /kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/bonnell/ |
| D | cache.json | 8 "BriefDescription": "Cycles L2 address bus is in use." 16 "BriefDescription": "Cycles the L2 cache data bus is busy." 24 "BriefDescription": "Cycles the L2 transfers data to the core." 32 "BriefDescription": "L2 cache misses." 40 "BriefDescription": "L2 cache misses." 48 "BriefDescription": "L2 cache misses." 56 "BriefDescription": "L2 cache line modifications." 64 "BriefDescription": "L2 cache lines evicted." 72 "BriefDescription": "L2 cache lines evicted." 80 "BriefDescription": "L2 cache lines evicted." [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/bonnell/ |
| D | cache.json | 8 "BriefDescription": "Cycles L2 address bus is in use." 16 "BriefDescription": "Cycles the L2 cache data bus is busy." 24 "BriefDescription": "Cycles the L2 transfers data to the core." 32 "BriefDescription": "L2 cache misses." 40 "BriefDescription": "L2 cache misses." 48 "BriefDescription": "L2 cache misses." 56 "BriefDescription": "L2 cache line modifications." 64 "BriefDescription": "L2 cache lines evicted." 72 "BriefDescription": "L2 cache lines evicted." 80 "BriefDescription": "L2 cache lines evicted." [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/goldmont/ |
| D | cache.json | 4 …"PublicDescription": "Counts memory requests originating from the core that miss in the L2 cache.", 10 "BriefDescription": "L2 cache request misses" 14 …": "Counts memory requests originating from the core that reference a cache line in the L2 cache.", 20 "BriefDescription": "L2 cache requests" 24 …L2 XQ rejects due to a full or near full condition which likely indicates back pressure from the i… 170 "PublicDescription": "Counts load uops retired that hit in the L2 cache.", 176 "BriefDescription": "Load uops retired that hit L2 (Precise event capable)", 194 "PublicDescription": "Counts load uops retired that miss in the L2 cache.", 200 "BriefDescription": "Load uops retired that missed L2 (Precise event capable)", 230 … ignored. A memory load can hit (or miss) the L1 cache, hit (or miss) the L2 cache, hit DRAM, hit… [all …]
|
| /kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/goldmont/ |
| D | cache.json | 4 …"PublicDescription": "Counts memory requests originating from the core that miss in the L2 cache.", 10 "BriefDescription": "L2 cache request misses" 14 …": "Counts memory requests originating from the core that reference a cache line in the L2 cache.", 20 "BriefDescription": "L2 cache requests" 24 …L2 XQ rejects due to a full or near full condition which likely indicates back pressure from the i… 162 "PublicDescription": "Counts load uops retired that hit in the L2 cache.", 168 "BriefDescription": "Load uops retired that hit L2 (Precise event capable)" 184 "PublicDescription": "Counts load uops retired that miss in the L2 cache.", 190 "BriefDescription": "Load uops retired that missed L2 (Precise event capable)" 217 … ignored. A memory load can hit (or miss) the L1 cache, hit (or miss) the L2 cache, hit DRAM, hit… [all …]
|
| D | memory.json | 36 …d, and read for ownership (RFO) requests (demand & prefetch) that miss the L2 cache and targets no… 44 …d, and read for ownership (RFO) requests (demand & prefetch) that miss the L2 cache and targets no… 49 …ounts reads for ownership (RFO) requests (demand & prefetch) that miss the L2 cache and targets no… 57 …ounts reads for ownership (RFO) requests (demand & prefetch) that miss the L2 cache and targets no… 62 …"PublicDescription": "Counts data reads (demand & prefetch) that miss the L2 cache and targets non… 70 …"BriefDescription": "Counts data reads (demand & prefetch) that miss the L2 cache and targets non-… 75 …"PublicDescription": "Counts data reads generated by L1 or L2 prefetchers that miss the L2 cache a… 83 …"BriefDescription": "Counts data reads generated by L1 or L2 prefetchers that miss the L2 cache an… 88 …"PublicDescription": "Counts requests to the uncore subsystem that miss the L2 cache and targets n… 96 …"BriefDescription": "Counts requests to the uncore subsystem that miss the L2 cache and targets no… [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/arm64/arm/cortex-a76-n1/ |
| D | cache.json | 9 …LB refill. This event counts any refill of the instruction L1 TLB from the L2 TLB. This includes r… 27 … data TLB refill. This event counts any refill of the data L1 TLB from the L2 TLB. This includes r… 39 …e-Back. This event counts any write-back of data from the L1 data cache to L2 or L3. This counts b… 45 …tion": "L2 data cache access. This event counts any transaction from L1 which looks up in the L2 c… 48 "BriefDescription": "L2 data cache access" 51 …L2 data cache refill. This event counts any cacheable transaction from L1 which causes data to be … 54 "BriefDescription": "L2 data cache refill" 57 …L2 data cache write-back. This event counts any write-back of data from the L2 cache to outside th… 60 "BriefDescription": "L2 data cache write-back" 63 …L2 data cache allocation without refill. This event counts any full cache line write into the L2 c… [all …]
|
| /kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/goldmontplus/ |
| D | cache.json | 4 …"PublicDescription": "Counts memory requests originating from the core that miss in the L2 cache.", 12 "BriefDescription": "L2 cache request misses" 16 …": "Counts memory requests originating from the core that reference a cache line in the L2 cache.", 24 "BriefDescription": "L2 cache requests" 28 …L2 XQ rejects due to a full or near full condition which likely indicates back pressure from the i… 184 "PublicDescription": "Counts load uops retired that hit in the L2 cache.", 191 "BriefDescription": "Load uops retired that hit L2 (Precise event capable)" 208 "PublicDescription": "Counts load uops retired that miss in the L2 cache.", 215 "BriefDescription": "Load uops retired that missed L2 (Precise event capable)" 244 … ignored. A memory load can hit (or miss) the L1 cache, hit (or miss) the L2 cache, hit DRAM, hit… [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/goldmontplus/ |
| D | cache.json | 4 …"PublicDescription": "Counts memory requests originating from the core that miss in the L2 cache.", 12 "BriefDescription": "L2 cache request misses" 16 …": "Counts memory requests originating from the core that reference a cache line in the L2 cache.", 24 "BriefDescription": "L2 cache requests" 28 …L2 XQ rejects due to a full or near full condition which likely indicates back pressure from the i… 192 "PublicDescription": "Counts load uops retired that hit in the L2 cache.", 199 "BriefDescription": "Load uops retired that hit L2 (Precise event capable)", 218 "PublicDescription": "Counts load uops retired that miss in the L2 cache.", 225 "BriefDescription": "Load uops retired that missed L2 (Precise event capable)", 257 … ignored. A memory load can hit (or miss) the L1 cache, hit (or miss) the L2 cache, hit DRAM, hit… [all …]
|
| /kernel/linux/linux-5.10/arch/powerpc/sysdev/ |
| D | fsl_85xx_l2ctlr.c | 5 * QorIQ (P1/P2) L2 controller init for Cache-SRAM instantiation 75 dev_err(&dev->dev, "Missing L2 cache-size\n"); in mpc85xx_l2ctlr_of_probe() 81 return 0; /* fall back to L2 cache only */ in mpc85xx_l2ctlr_of_probe() 92 dev_err(&dev->dev, "Can't map L2 controller\n"); in mpc85xx_l2ctlr_of_probe() 152 dev_info(&dev->dev, "MPC85xx L2 controller unloaded\n"); in mpc85xx_l2ctlr_of_remove() 159 .compatible = "fsl,p2020-l2-cache-controller", 162 .compatible = "fsl,p2010-l2-cache-controller", 165 .compatible = "fsl,p1020-l2-cache-controller", 168 .compatible = "fsl,p1011-l2-cache-controller", 171 .compatible = "fsl,p1013-l2-cache-controller", [all …]
|
| /kernel/linux/linux-4.19/arch/powerpc/sysdev/ |
| D | fsl_85xx_l2ctlr.c | 4 * QorIQ (P1/P2) L2 controller init for Cache-SRAM instantiation 88 dev_err(&dev->dev, "Missing L2 cache-size\n"); in mpc85xx_l2ctlr_of_probe() 94 return 0; /* fall back to L2 cache only */ in mpc85xx_l2ctlr_of_probe() 105 dev_err(&dev->dev, "Can't map L2 controller\n"); in mpc85xx_l2ctlr_of_probe() 165 dev_info(&dev->dev, "MPC85xx L2 controller unloaded\n"); in mpc85xx_l2ctlr_of_remove() 172 .compatible = "fsl,p2020-l2-cache-controller", 175 .compatible = "fsl,p2010-l2-cache-controller", 178 .compatible = "fsl,p1020-l2-cache-controller", 181 .compatible = "fsl,p1011-l2-cache-controller", 184 .compatible = "fsl,p1013-l2-cache-controller", [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/knightslanding/ |
| D | cache.json | 8 … a cache line (cacheable requests) exlcuding SW prefetches filling only to L2 cache and L1 evictio… 16 … number of MEC requests that were not accepted into the L2Q because of any L2 queue reject condit… 24 "BriefDescription": "Counts the total number of L2 cache references." 32 "BriefDescription": "Counts the number of L2 cache misses" 59 "BriefDescription": "Counts the number of load micro-ops retired that hit in the L2", 69 "BriefDescription": "Counts the number of load micro-ops retired that miss in the L2", 135 … data forwarded from its Far(not in the same quadrant as the request)-other tile's L2 in M state.", 146 …rwarded from its Far(not in the same quadrant as the request)-other tile's L2 in E/F state. Valid … 157 … responses from a snoop request hit with data forwarded from its Near-other tile's L2 in M state.", 168 …esponses from a snoop request hit with data forwarded from its Near-other tile's L2 in E/F state.", [all …]
|
| /kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/knightslanding/ |
| D | cache.json | 8 … a cache line (cacheable requests) exlcuding SW prefetches filling only to L2 cache and L1 evictio… 16 … number of MEC requests that were not accepted into the L2Q because of any L2 queue reject condit… 24 "BriefDescription": "Counts the total number of L2 cache references." 32 "BriefDescription": "Counts the number of L2 cache misses" 59 "BriefDescription": "Counts the number of load micro-ops retired that hit in the L2", 69 "BriefDescription": "Counts the number of load micro-ops retired that miss in the L2", 135 …data forwarded from its Far(not in the same quadrant as the request)-other tile's L2 in M state. ", 146 …rwarded from its Far(not in the same quadrant as the request)-other tile's L2 in E/F state. Valid … 157 …responses from a snoop request hit with data forwarded from its Near-other tile's L2 in M state. ", 168 …sponses from a snoop request hit with data forwarded from its Near-other tile's L2 in E/F state. ", [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/silvermont/ |
| D | cache.json | 3 …L2 XQ rejects due to a full or near full condition which likely indicates back pressure from the I… 9 … "BriefDescription": "Counts the number of request from the L2 that were not accepted into the XQ" 12 … eviction when the address conflicts incoming external snoops. (Note that L2 prefetcher requests … 21 …his event counts requests originating from the core that references a cache line in the L2 cache.", 27 "BriefDescription": "L2 cache requests from this core" 30 …licDescription": "This event counts the total number of L2 cache references and the number of L2 c… 36 "BriefDescription": "L2 cache request misses" 132 "PublicDescription": "This event counts the number of load ops retired that hit in the L2.", 138 "BriefDescription": "Loads hit L2" 142 … "PublicDescription": "This event counts the number of load ops retired that miss in the L2.", [all …]
|
| /kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/silvermont/ |
| D | cache.json | 3 …L2 XQ rejects due to a full or near full condition which likely indicates back pressure from the I… 9 … "BriefDescription": "Counts the number of request from the L2 that were not accepted into the XQ" 12 … eviction when the address conflicts incoming external snoops. (Note that L2 prefetcher requests … 21 …his event counts requests originating from the core that references a cache line in the L2 cache.", 27 "BriefDescription": "L2 cache requests from this core" 30 …licDescription": "This event counts the total number of L2 cache references and the number of L2 c… 36 "BriefDescription": "L2 cache request misses" 132 "PublicDescription": "This event counts the number of load ops retired that hit in the L2.", 138 "BriefDescription": "Loads hit L2" 142 … "PublicDescription": "This event counts the number of load ops retired that miss in the L2.", [all …]
|
| /kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/broadwellde/ |
| D | cache.json | 5 "BriefDescription": "Demand Data Read miss L2, no rejects", 8 …ion": "This event counts the number of demand Data Read requests that miss L2 cache. Only not reje… 15 "BriefDescription": "RFO requests that miss L2 cache.", 24 "BriefDescription": "L2 cache misses when fetching instructions.", 33 "BriefDescription": "Demand requests that miss L2 cache.", 42 "BriefDescription": "L2 prefetch requests that miss L2 cache", 45 …tion": "This event counts the number of requests from the L2 hardware prefetchers that miss L2 cac… 52 "BriefDescription": "All requests that miss L2 cache.", 61 "BriefDescription": "Demand Data Read requests that hit L2 cache", 64 …"PublicDescription": "This event counts the number of demand Data Read requests that hit L2 cache.… [all …]
|