/Linux-v6.1/tools/perf/pmu-events/arch/powerpc/power10/ |
D | metrics.json | 100 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at… 106 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at… 112 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at… 118 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at… 124 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at… 130 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at… 136 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at… 142 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at… 148 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction has been di… 154 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction is waiting … [all …]
|
D | frontend.json | 10 …"BriefDescription": "Cycles in which the NTC instruction is held at dispatch for any other reason." 35 …"BriefDescription": "Cycles in which the NTC instruction is held at dispatch because of power mana… 40 …"BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the STF mappe… 80 …"BriefDescription": "Cycles in which the NTC instruction is held at dispatch due to Issue queue fu… 115 …"BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the XVFC mapp… 140 …struction(s) that was not yet NTC. PM_EXEC_STALL_NTC_FLUSH only includes instructions that were fl… 160 …"BriefDescription": "Cycles in which the NTC instruction is held at dispatch while waiting on the … 185 …"BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the mapper/SR… 235 "BriefDescription": "Cycles in which the NTC instruction is held at dispatch for any reason." 240 …"BriefDescription": "Cycles in which the NTC instruction is held at dispatch because of a synchron…
|
/Linux-v6.1/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_xsk.c | 241 u32 ntc = rx_ring->next_to_clean + 1; in ixgbe_inc_ntc() local 243 ntc = (ntc < rx_ring->count) ? ntc : 0; in ixgbe_inc_ntc() 244 rx_ring->next_to_clean = ntc; in ixgbe_inc_ntc() 245 prefetch(IXGBE_RX_DESC(rx_ring, ntc)); in ixgbe_inc_ntc() 464 u16 ntc = tx_ring->next_to_clean, ntu = tx_ring->next_to_use; in ixgbe_clean_xdp_tx_irq() local 471 tx_bi = &tx_ring->tx_buffer_info[ntc]; in ixgbe_clean_xdp_tx_irq() 472 tx_desc = IXGBE_TX_DESC(tx_ring, ntc); in ixgbe_clean_xdp_tx_irq() 474 while (ntc != ntu) { in ixgbe_clean_xdp_tx_irq() 490 ntc++; in ixgbe_clean_xdp_tx_irq() 491 if (unlikely(ntc == tx_ring->count)) { in ixgbe_clean_xdp_tx_irq() [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/hwmon/ |
D | ntc-thermistor.yaml | 3 $id: http://devicetree.org/schemas/hwmon/ntc-thermistor.yaml# 6 title: NTC thermistor temperature sensors 13 Thermistors with negative temperature coefficient (NTC) are resistors that 81 - const: ntc,ncp15wb473 83 - const: ntc,ncp18wb473 85 - const: ntc,ncp21wb473 87 - const: ntc,ncp03wb473 89 - const: ntc,ncp15wl333
|
/Linux-v6.1/drivers/net/ethernet/intel/ice/ |
D | ice_xsk.c | 547 int ntc = rx_ring->next_to_clean + 1; in ice_bump_ntc() local 549 ntc = (ntc < rx_ring->count) ? ntc : 0; in ice_bump_ntc() 550 rx_ring->next_to_clean = ntc; in ice_bump_ntc() 551 prefetch(ICE_RX_DESC(rx_ring, ntc)); in ice_bump_ntc() 788 u16 ntc = xdp_ring->next_to_clean; in ice_clean_xdp_irq_zc() local 800 if (last_rs >= ntc) in ice_clean_xdp_irq_zc() 801 xsk_frames = last_rs - ntc + 1; in ice_clean_xdp_irq_zc() 803 xsk_frames = last_rs + cnt - ntc + 1; in ice_clean_xdp_irq_zc() 812 ntc = xdp_ring->next_to_clean; in ice_clean_xdp_irq_zc() 814 tx_buf = &xdp_ring->tx_buf[ntc]; in ice_clean_xdp_irq_zc() [all …]
|
D | ice_controlq.c | 865 u16 ntc = sq->next_to_clean; in ice_clean_sq() local 869 desc = ICE_CTL_Q_DESC(*sq, ntc); in ice_clean_sq() 870 details = ICE_CTL_Q_DETAILS(*sq, ntc); in ice_clean_sq() 872 while (rd32(hw, cq->sq.head) != ntc) { in ice_clean_sq() 873 ice_debug(hw, ICE_DBG_AQ_MSG, "ntc %d head %d.\n", ntc, rd32(hw, cq->sq.head)); in ice_clean_sq() 876 ntc++; in ice_clean_sq() 877 if (ntc == sq->count) in ice_clean_sq() 878 ntc = 0; in ice_clean_sq() 879 desc = ICE_CTL_Q_DESC(*sq, ntc); in ice_clean_sq() 880 details = ICE_CTL_Q_DETAILS(*sq, ntc); in ice_clean_sq() [all …]
|
D | ice_txrx_lib.c | 231 u16 ntc = xdp_ring->next_to_clean; in ice_clean_xdp_irq() local 243 tx_buf = &xdp_ring->tx_buf[ntc]; in ice_clean_xdp_irq() 257 ntc++; in ice_clean_xdp_irq() 258 if (ntc >= xdp_ring->count) in ice_clean_xdp_irq() 259 ntc = 0; in ice_clean_xdp_irq() 266 xdp_ring->next_to_clean = ntc; in ice_clean_xdp_irq()
|
/Linux-v6.1/drivers/net/ethernet/hisilicon/hns3/hns3_common/ |
D | hclge_comm_cmd.c | 267 int ntc = ring->next_to_clean; in hclge_comm_ring_space() local 269 int used = (ntu - ntc + ring->desc_num) % ring->desc_num; in hclge_comm_ring_space() 293 int ntc = ring->next_to_clean; in hclge_comm_is_valid_csq_clean_head() local 296 if (ntu > ntc) in hclge_comm_is_valid_csq_clean_head() 297 return head >= ntc && head <= ntu; in hclge_comm_is_valid_csq_clean_head() 299 return head >= ntc || head <= ntu; in hclge_comm_is_valid_csq_clean_head() 376 int ntc) in hclge_comm_cmd_check_retval() argument 383 desc[handle] = hw->cmq.csq.desc[ntc]; in hclge_comm_cmd_check_retval() 384 ntc++; in hclge_comm_cmd_check_retval() 385 if (ntc >= hw->cmq.csq.desc_num) in hclge_comm_cmd_check_retval() [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/power/supply/ |
D | stericsson,ab8500-battery.txt | 12 measurement, 'btemp' signal is used when NTC(negative temperature 14 'batctrl' pin is used when NTC resister is internal to battery. 20 indicates: NTC resister is internal to battery, 'batctrl' is used 24 NTC resister is external to battery and 'btemp' signal is used
|
/Linux-v6.1/drivers/net/ethernet/intel/iavf/ |
D | iavf_adminq.c | 584 u16 ntc = asq->next_to_clean; in iavf_clean_asq() local 588 desc = IAVF_ADMINQ_DESC(*asq, ntc); in iavf_clean_asq() 589 details = IAVF_ADMINQ_DETAILS(*asq, ntc); in iavf_clean_asq() 590 while (rd32(hw, hw->aq.asq.head) != ntc) { in iavf_clean_asq() 592 "ntc %d head %d.\n", ntc, rd32(hw, hw->aq.asq.head)); in iavf_clean_asq() 603 ntc++; in iavf_clean_asq() 604 if (ntc == asq->count) in iavf_clean_asq() 605 ntc = 0; in iavf_clean_asq() 606 desc = IAVF_ADMINQ_DESC(*asq, ntc); in iavf_clean_asq() 607 details = IAVF_ADMINQ_DETAILS(*asq, ntc); in iavf_clean_asq() [all …]
|
/Linux-v6.1/Documentation/hwmon/ |
D | ntc_thermistor.rst | 6 * Murata NTC Thermistors NCP15WB473, NCP18WB473, NCP21WB473, NCP03WB473, 16 * EPCOS NTC Thermistors B57330V2103 22 Other NTC thermistors can be supported simply by adding compensation 32 The NTC (Negative Temperature Coefficient) thermistor is a simple thermistor 36 The NTC driver provides lookup tables with a linear approximation function 111 Note that each NTC thermistor has only _one_ thermistor; thus, only temp1 exists.
|
/Linux-v6.1/drivers/net/ethernet/intel/i40e/ |
D | i40e_xsk.c | 593 unsigned int ntc; in i40e_clean_xdp_tx_irq() local 607 ntc = tx_ring->next_to_clean; in i40e_clean_xdp_tx_irq() 610 tx_bi = &tx_ring->tx_bi[ntc]; in i40e_clean_xdp_tx_irq() 619 if (++ntc >= tx_ring->count) in i40e_clean_xdp_tx_irq() 620 ntc = 0; in i40e_clean_xdp_tx_irq() 687 u16 ntc = rx_ring->next_to_clean; in i40e_xsk_clean_rx_ring() local 690 for ( ; ntc != ntu; ntc = (ntc + 1) & count_mask) { in i40e_xsk_clean_rx_ring() 691 struct xdp_buff *rx_bi = *i40e_rx_bi(rx_ring, ntc); in i40e_xsk_clean_rx_ring() 703 u16 ntc = tx_ring->next_to_clean, ntu = tx_ring->next_to_use; in i40e_xsk_clean_tx_ring() local 708 while (ntc != ntu) { in i40e_xsk_clean_tx_ring() [all …]
|
D | i40e_adminq.c | 725 u16 ntc = asq->next_to_clean; in i40e_clean_asq() local 729 desc = I40E_ADMINQ_DESC(*asq, ntc); in i40e_clean_asq() 730 details = I40E_ADMINQ_DETAILS(*asq, ntc); in i40e_clean_asq() 731 while (rd32(hw, hw->aq.asq.head) != ntc) { in i40e_clean_asq() 733 "ntc %d head %d.\n", ntc, rd32(hw, hw->aq.asq.head)); in i40e_clean_asq() 743 ntc++; in i40e_clean_asq() 744 if (ntc == asq->count) in i40e_clean_asq() 745 ntc = 0; in i40e_clean_asq() 746 desc = I40E_ADMINQ_DESC(*asq, ntc); in i40e_clean_asq() 747 details = I40E_ADMINQ_DETAILS(*asq, ntc); in i40e_clean_asq() [all …]
|
/Linux-v6.1/drivers/net/ethernet/hisilicon/hns3/ |
D | hns3_trace.h | 74 __field(int, ntc) 83 __entry->ntc = ring->next_to_clean; 93 __entry->ntc, &__entry->desc_dma, 105 __field(int, ntc) 115 __entry->ntc = ring->next_to_clean; 126 __entry->ntc, &__entry->desc_dma, &__entry->buf_dma,
|
/Linux-v6.1/drivers/hwmon/ |
D | ntc_thermistor.c | 3 * ntc_thermistor.c - NTC Thermistors 69 * The following compensation tables are from the specification of Murata NTC 220 * The following compensation tables are from the specifications in EPCOS NTC 311 #define NTC_TYPE(ntc, compensation) \ argument 312 [(ntc)] = { .comp = (compensation), .n_comp = ARRAY_SIZE(compensation) } 628 dev_err(dev, "Required data to use NTC driver not supplied.\n"); in ntc_thermistor_probe() 679 /* Usage of vendor name "ntc" is deprecated */ 680 { .compatible = "ntc,ncp03wb473", 682 { .compatible = "ntc,ncp15wb473", 684 { .compatible = "ntc,ncp15wl333", [all …]
|
/Linux-v6.1/drivers/power/supply/ |
D | tps65217_charger.c | 50 * tps65217 rev. G, p. 31 (see p. 32 for NTC schematic) in tps65217_config_charger() 52 * The device can be configured to support a 100k NTC (B = 3960) by in tps65217_config_charger() 57 * information. If 100k NTC setting is required, please contact the in tps65217_config_charger() 62 * NTC TYPE (for battery temperature measurement) in tps65217_config_charger() 72 "failed to set 100k NTC setting: %d\n", ret); in tps65217_config_charger()
|
/Linux-v6.1/arch/mips/kernel/ |
D | mips-mt.c | 56 int ntc; in mips_mt_regdump() local 70 ntc = ((mvpconf0 & MVPCONF0_PTC) >> MVPCONF0_PTC_SHIFT) + 1; in mips_mt_regdump() 73 for (tc = 0; tc < ntc; tc++) { in mips_mt_regdump() 95 for (tc = 0; tc < ntc; tc++) { in mips_mt_regdump()
|
D | smp-mt.c | 185 unsigned int mvpconf0, ntc, tc, ncpu = 0; in vsmp_smp_setup() local 204 ntc = (mvpconf0 & MVPCONF0_PTC) >> MVPCONF0_PTC_SHIFT; in vsmp_smp_setup() 211 for (tc = 0; tc <= ntc; tc++) { in vsmp_smp_setup()
|
/Linux-v6.1/drivers/net/ethernet/intel/igc/ |
D | igc_dump.c | 134 netdev_info(netdev, "Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n"); in igc_rings_dump() 183 next_desc = " NTC/U"; in igc_rings_dump() 187 next_desc = " NTC"; in igc_rings_dump() 212 netdev_info(netdev, "Queue [NTU] [NTC]\n"); in igc_rings_dump() 267 next_desc = " NTC"; in igc_rings_dump()
|
/Linux-v6.1/arch/arm64/boot/dts/qcom/ |
D | sc7180-trogdor-coachz-r1.dts | 18 * CoachZ rev1 is stuffed with a 47k NTC as charger thermistor which currently 39 * CoachZ rev1 is stuffed with a 47k NTC as thermistor for skin temperature,
|
D | sc7180-trogdor-pompom-r2.dts | 18 * Pompom rev2 is stuffed with a 47k NTC as charger thermistor which currently
|
D | sc7180-trogdor-pompom-r1.dts | 21 * Pompom rev1 is stuffed with a 47k NTC as charger thermistor which currently
|
/Linux-v6.1/drivers/net/ethernet/mscc/ |
D | ocelot_fdma.c | 492 u16 ntc; in ocelot_fdma_tx_cleanup() local 501 ntc = tx_ring->next_to_clean; in ocelot_fdma_tx_cleanup() 502 dcb = &tx_ring->dcbs[ntc]; in ocelot_fdma_tx_cleanup() 506 buf = &tx_ring->bufs[ntc]; in ocelot_fdma_tx_cleanup() 514 tx_ring->next_to_clean = ocelot_fdma_idx_next(ntc, in ocelot_fdma_tx_cleanup()
|
/Linux-v6.1/tools/perf/pmu-events/arch/powerpc/power9/ |
D | metrics.json | 169 …"BriefDescription": "Cycles in which the NTC instruction is not allowed to complete because it was… 187 …"BriefDescription": "Cycles in which the NTC instruction is not allowed to complete because any of… 229 … "BriefDescription": "Cycles in which the NTC instruciton is held at dispatch for any reason", 259 …"BriefDescription": "the NTC instruction is being held at dispatch because it is a tbegin instruct… 406 …"BriefDescription": "Cycles in which the oldest instruction in the pipeline (NTC) finishes. This e… 412 "BriefDescription": "Completion stall due to ntc flush", 418 …"BriefDescription": "The NTC instruction is being held at dispatch because it lost arbitration ont… 424 …"BriefDescription": "The NTC instruction is being held at dispatch because there are no slots in t… 430 …"BriefDescription": "The NTC instruction is being held at dispatch during regular pipeline cycles,…
|
/Linux-v6.1/drivers/net/ethernet/intel/ixgbevf/ |
D | ixgbevf.h | 288 u16 ntc = ring->next_to_clean; in ixgbevf_desc_unused() local 291 return ((ntc > ntu) ? 0 : ring->count) + ntc - ntu - 1; in ixgbevf_desc_unused()
|