Home
last modified time | relevance | path

Searched full:ntc (Results 1 – 25 of 145) sorted by relevance

123456

/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/powerpc/power10/
Dmetrics.json106 …"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 was held at…
154 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction has been di…
160 …"BriefDescription": "Average cycles per completed instruction when the NTC instruction is waiting …
[all …]
Dpipeline.json10 …"BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch fo…
40 "BriefDescription": "The instruction was flushed after becoming next-to-complete (NTC)."
75 …"BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch be…
80 …"BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch be…
130 …"BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch du…
215 …"BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch be…
230 …"BriefDescription": "Cycles in which the oldest instruction in the pipeline (NTC) finishes. Note t…
245 …was not yet next-to-complete (NTC). PM_EXEC_STALL_NTC_FLUSH only includes instructions that were f…
265 …"BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch wh…
325 …"BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch be…
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/hwmon/
Dntc_thermistor.txt1 NTC Thermistor hwmon sensors
16 /* Usage of vendor name "ntc" is deprecated */
17 <DEPRECATED> "ntc,ncp15wb473"
18 <DEPRECATED> "ntc,ncp18wb473"
19 <DEPRECATED> "ntc,ncp21wb473"
20 <DEPRECATED> "ntc,ncp03wb473"
21 <DEPRECATED> "ntc,ncp15wl333"
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ixgbe/
Dixgbe_xsk.c232 u32 ntc = rx_ring->next_to_clean + 1; in ixgbe_inc_ntc() local
234 ntc = (ntc < rx_ring->count) ? ntc : 0; in ixgbe_inc_ntc()
235 rx_ring->next_to_clean = ntc; in ixgbe_inc_ntc()
236 prefetch(IXGBE_RX_DESC(rx_ring, ntc)); in ixgbe_inc_ntc()
451 u16 ntc = tx_ring->next_to_clean, ntu = tx_ring->next_to_use; in ixgbe_clean_xdp_tx_irq() local
458 tx_bi = &tx_ring->tx_buffer_info[ntc]; in ixgbe_clean_xdp_tx_irq()
459 tx_desc = IXGBE_TX_DESC(tx_ring, ntc); in ixgbe_clean_xdp_tx_irq()
461 while (ntc != ntu) { in ixgbe_clean_xdp_tx_irq()
477 ntc++; in ixgbe_clean_xdp_tx_irq()
478 if (unlikely(ntc == tx_ring->count)) { in ixgbe_clean_xdp_tx_irq()
[all …]
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ixgbe/
Dixgbe_xsk.c241 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 …]
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/hwmon/
Dntc-thermistor.yaml3 $id: http://devicetree.org/schemas/hwmon/ntc-thermistor.yaml#
6 title: NTC thermistor temperature sensors
12 Thermistors with negative temperature coefficient (NTC) are resistors that
80 - const: ntc,ncp15wb473
82 - const: ntc,ncp18wb473
84 - const: ntc,ncp21wb473
86 - const: ntc,ncp03wb473
88 - const: ntc,ncp15wl333
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/
Dice_xsk.c616 u16 ntc = xdp_ring->next_to_clean; in ice_clean_xdp_irq_zc() local
629 if (last_rs >= ntc) in ice_clean_xdp_irq_zc()
630 completed_frames = last_rs - ntc + 1; in ice_clean_xdp_irq_zc()
632 completed_frames = last_rs + cnt - ntc + 1; in ice_clean_xdp_irq_zc()
643 ntc = xdp_ring->next_to_clean; in ice_clean_xdp_irq_zc()
645 tx_buf = &xdp_ring->tx_buf[ntc]; in ice_clean_xdp_irq_zc()
655 ntc++; in ice_clean_xdp_irq_zc()
656 if (ntc >= xdp_ring->count) in ice_clean_xdp_irq_zc()
657 ntc = 0; in ice_clean_xdp_irq_zc()
846 u32 ntc = rx_ring->next_to_clean; in ice_clean_rx_irq_zc() local
[all …]
Dice_txrx_lib.c257 u32 ntc = xdp_ring->next_to_clean; in ice_clean_xdp_irq() local
266 idx = xdp_ring->tx_buf[ntc].rs_idx; in ice_clean_xdp_irq()
270 if (idx >= ntc) in ice_clean_xdp_irq()
271 ready_frames = idx - ntc + 1; in ice_clean_xdp_irq()
273 ready_frames = idx + cnt - ntc + 1; in ice_clean_xdp_irq()
284 struct ice_tx_buf *tx_buf = &xdp_ring->tx_buf[ntc]; in ice_clean_xdp_irq()
295 ntc++; in ice_clean_xdp_irq()
296 if (ntc == cnt) in ice_clean_xdp_irq()
297 ntc = 0; in ice_clean_xdp_irq()
300 tx_buf = &xdp_ring->tx_buf[ntc]; in ice_clean_xdp_irq()
[all …]
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/power/supply/
Dstericsson,ab8500-battery.txt12 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
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/i40e/
Di40e_xsk.c331 u32 ntc = rx_ring->next_to_clean + 1; in i40e_inc_ntc() local
333 ntc = (ntc < rx_ring->count) ? ntc : 0; in i40e_inc_ntc()
334 rx_ring->next_to_clean = ntc; in i40e_inc_ntc()
532 unsigned int ntc; in i40e_clean_xdp_tx_irq() local
546 ntc = tx_ring->next_to_clean; in i40e_clean_xdp_tx_irq()
549 tx_bi = &tx_ring->tx_bi[ntc]; in i40e_clean_xdp_tx_irq()
558 if (++ntc >= tx_ring->count) in i40e_clean_xdp_tx_irq()
559 ntc = 0; in i40e_clean_xdp_tx_irq()
644 u16 ntc = tx_ring->next_to_clean, ntu = tx_ring->next_to_use; in i40e_xsk_clean_tx_ring() local
649 while (ntc != ntu) { in i40e_xsk_clean_tx_ring()
[all …]
Di40e_adminq.c725 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 …]
/kernel/linux/linux-6.6/drivers/net/ethernet/hisilicon/hns3/hns3_common/
Dhclge_comm_cmd.c284 int ntc = ring->next_to_clean; in hclge_comm_ring_space() local
286 int used = (ntu - ntc + ring->desc_num) % ring->desc_num; in hclge_comm_ring_space()
310 int ntc = ring->next_to_clean; in hclge_comm_is_valid_csq_clean_head() local
313 if (ntu > ntc) in hclge_comm_is_valid_csq_clean_head()
314 return head >= ntc && head <= ntu; in hclge_comm_is_valid_csq_clean_head()
316 return head >= ntc || head <= ntu; in hclge_comm_is_valid_csq_clean_head()
409 int ntc) in hclge_comm_cmd_check_retval() argument
416 desc[handle] = hw->cmq.csq.desc[ntc]; in hclge_comm_cmd_check_retval()
417 ntc++; in hclge_comm_cmd_check_retval()
418 if (ntc >= hw->cmq.csq.desc_num) in hclge_comm_cmd_check_retval()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/iavf/
Diavf_adminq.c586 u16 ntc = asq->next_to_clean; in iavf_clean_asq() local
590 desc = IAVF_ADMINQ_DESC(*asq, ntc); in iavf_clean_asq()
591 details = IAVF_ADMINQ_DETAILS(*asq, ntc); in iavf_clean_asq()
592 while (rd32(hw, hw->aq.asq.head) != ntc) { in iavf_clean_asq()
594 "ntc %d head %d.\n", ntc, rd32(hw, hw->aq.asq.head)); in iavf_clean_asq()
605 ntc++; in iavf_clean_asq()
606 if (ntc == asq->count) in iavf_clean_asq()
607 ntc = 0; in iavf_clean_asq()
608 desc = IAVF_ADMINQ_DESC(*asq, ntc); in iavf_clean_asq()
609 details = IAVF_ADMINQ_DETAILS(*asq, ntc); in iavf_clean_asq()
[all …]
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/iavf/
Diavf_adminq.c584 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 …]
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/hns3pf/
Dhclge_cmd.c19 int ntc = ring->next_to_clean; in hclge_ring_space() local
20 int used = (ntu - ntc + ring->desc_num) % ring->desc_num; in hclge_ring_space()
28 int ntc = ring->next_to_clean; in is_valid_csq_clean_head() local
30 if (ntu > ntc) in is_valid_csq_clean_head()
31 return head >= ntc && head <= ntu; in is_valid_csq_clean_head()
33 return head >= ntc || head <= ntu; in is_valid_csq_clean_head()
225 int num, int ntc) in hclge_cmd_check_retval() argument
232 desc[handle] = hw->cmq.csq.desc[ntc]; in hclge_cmd_check_retval()
233 ntc++; in hclge_cmd_check_retval()
234 if (ntc >= hw->cmq.csq.desc_num) in hclge_cmd_check_retval()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/
Dice_xsk.c480 int ntc = rx_ring->next_to_clean + 1; in ice_bump_ntc() local
482 ntc = (ntc < rx_ring->count) ? ntc : 0; in ice_bump_ntc()
483 rx_ring->next_to_clean = ntc; in ice_bump_ntc()
484 prefetch(ICE_RX_DESC(rx_ring, ntc)); in ice_bump_ntc()
763 s16 ntc = xdp_ring->next_to_clean; in ice_clean_tx_irq_zc() local
769 tx_desc = ICE_TX_DESC(xdp_ring, ntc); in ice_clean_tx_irq_zc()
770 tx_buf = &xdp_ring->tx_buf[ntc]; in ice_clean_tx_irq_zc()
771 ntc -= xdp_ring->count; in ice_clean_tx_irq_zc()
791 ntc++; in ice_clean_tx_irq_zc()
793 if (unlikely(!ntc)) { in ice_clean_tx_irq_zc()
[all …]
Dice_controlq.c808 u16 ntc = sq->next_to_clean; in ice_clean_sq() local
812 desc = ICE_CTL_Q_DESC(*sq, ntc); in ice_clean_sq()
813 details = ICE_CTL_Q_DETAILS(*sq, ntc); in ice_clean_sq()
815 while (rd32(hw, cq->sq.head) != ntc) { in ice_clean_sq()
817 "ntc %d head %d.\n", ntc, rd32(hw, cq->sq.head)); in ice_clean_sq()
820 ntc++; in ice_clean_sq()
821 if (ntc == sq->count) in ice_clean_sq()
822 ntc = 0; in ice_clean_sq()
823 desc = ICE_CTL_Q_DESC(*sq, ntc); in ice_clean_sq()
824 details = ICE_CTL_Q_DETAILS(*sq, ntc); in ice_clean_sq()
[all …]
/kernel/linux/linux-6.6/Documentation/hwmon/
Dntc_thermistor.rst6 * 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.
/kernel/linux/linux-5.10/Documentation/hwmon/
Dntc_thermistor.rst6 * 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.
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/i40e/
Di40e_xsk.c660 unsigned int ntc; in i40e_clean_xdp_tx_irq() local
674 ntc = tx_ring->next_to_clean; in i40e_clean_xdp_tx_irq()
677 tx_bi = &tx_ring->tx_bi[ntc]; in i40e_clean_xdp_tx_irq()
686 if (++ntc >= tx_ring->count) in i40e_clean_xdp_tx_irq()
687 ntc = 0; in i40e_clean_xdp_tx_irq()
753 u16 ntc = rx_ring->next_to_clean; in i40e_xsk_clean_rx_ring() local
756 while (ntc != ntu) { in i40e_xsk_clean_rx_ring()
757 struct xdp_buff *rx_bi = *i40e_rx_bi(rx_ring, ntc); in i40e_xsk_clean_rx_ring()
760 ntc++; in i40e_xsk_clean_rx_ring()
761 if (ntc >= rx_ring->count) in i40e_xsk_clean_rx_ring()
[all …]
Di40e_adminq.c720 u16 ntc = asq->next_to_clean; in i40e_clean_asq() local
724 desc = I40E_ADMINQ_DESC(*asq, ntc); in i40e_clean_asq()
725 details = I40E_ADMINQ_DETAILS(*asq, ntc); in i40e_clean_asq()
726 while (rd32(hw, hw->aq.asq.head) != ntc) { in i40e_clean_asq()
728 "ntc %d head %d.\n", ntc, rd32(hw, hw->aq.asq.head)); in i40e_clean_asq()
738 ntc++; in i40e_clean_asq()
739 if (ntc == asq->count) in i40e_clean_asq()
740 ntc = 0; in i40e_clean_asq()
741 desc = I40E_ADMINQ_DESC(*asq, ntc); in i40e_clean_asq()
742 details = I40E_ADMINQ_DETAILS(*asq, ntc); in i40e_clean_asq()
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/power/supply/ab8500/
Dfg.txt35 measurement, 'btemp' signal is used when NTC(negative temperature
37 'batctrl' pin is used when NTC resister is internal to battery.
43 indicates: NTC resister is internal to battery, 'batctrl' is used
47 NTC resister is external to battery and 'btemp' signal is used
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/hns3vf/
Dhclgevf_cmd.c18 int ntc = ring->next_to_clean; in hclgevf_ring_space() local
22 used = (ntu - ntc + ring->desc_num) % ring->desc_num; in hclgevf_ring_space()
31 int ntc = ring->next_to_clean; in hclgevf_is_valid_csq_clean_head() local
33 if (ntu > ntc) in hclgevf_is_valid_csq_clean_head()
34 return head >= ntc && head <= ntu; in hclgevf_is_valid_csq_clean_head()
36 return head >= ntc || head <= ntu; in hclgevf_is_valid_csq_clean_head()
230 int ntc; in hclgevf_cmd_send() local
252 ntc = hw->cmq.csq.next_to_use; in hclgevf_cmd_send()
285 desc_to_use = &hw->cmq.csq.desc[ntc]; in hclgevf_cmd_send()
295 ntc++; in hclgevf_cmd_send()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/
Dhns3_trace.h75 __field(int, ntc)
84 __entry->ntc = ring->next_to_clean;
94 __entry->ntc, &__entry->desc_dma,
106 __field(int, ntc)
116 __entry->ntc = ring->next_to_clean;
127 __entry->ntc, &__entry->desc_dma, &__entry->buf_dma,
/kernel/linux/linux-6.6/drivers/net/ethernet/hisilicon/hns3/
Dhns3_trace.h74 __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,

123456