Power Measurement Using Performance Counters

Total Page:16

File Type:pdf, Size:1020Kb

Power Measurement Using Performance Counters Power Measurement Using Performance Counters October 2016 1 Introduction CPU's are based on complementary metal oxide semiconductor technology (CMOS). CMOS technology theoretically only dissipates power when switching of states occurs accounting for the Dynamic Power of CPU. There is however also leakage which is called Static Power. CPU Total Power Dissipation = Dynamic Power + Static Power Static power dissipation can be split up into two factors; • Subthreshold conduction • Tunnelling current through gate oxide layer. The tunnelling power dissipation is becoming a large factor with the size of processors getting smaller. The metal oxide layer becomes thinner and therefore easier for electrons to tunnel through the insulating layer. With the insulating layers getting thinner whilst the supply voltage is staying the same tunnelling is the largest factor of leakage. This is the main source of static power dissipation. Pstatic =m × V , where m = constant & V = CPU core voltage. Dynamic power dissipation can be split up into two factors causing power dissipation; • Transition • Short-circuit power dissipation Transition power arises from the voltage source charging up the gates as if it is a capacitor and then the capacitor discharging to the ground. This process yields the following equation with f = operating frequency, V= core voltage and C= capacitance of the circuit. 1 2 Ptransition = 2 ×CV f The objective of this study is to understand the variations in power and energy require- ments of core and uncore system components while executing different benchmarks. Objective 1: Identification of different types of power measurement counters (core and 1 uncore) available on the smartphone, laptop, desktop, and server grade hardware. Objective 2: 1. Measurement of CPU and system power (ideally broken down by dif- ferent components) in various workload scenarios. 2. Measurement of total energy consumption of CPU and system (ideally broken down by different components). 2 Case Study The experiments were carried on Desktop and Laptop machines. The configuration of the two machines is detailed below: 2.1 System Configuration Desktop S.N. Parameter System Specification 1. Model Name Dell Optiplex 9020 2. Processor Type Intel i7 3. CPU Max Frequency 4000 MHz 4. CPU Min Frequency 800 MHz 5. Number of Sockets 1 6. Number of Physical Cores 4 7. Number of Virtual Cores 8 8. L3 Cache 8 MB 9. Main Memory 8 GB Laptop S.N. Parameter System Specification 1. Model Name HP Pavilion Dv6 2. Processor Type Intel i5 3. CPU Max Frequency 2700 MHz 4. CPU Min Frequency 800 MHz 5. Number of Sockets 1 6. Number of Physical Cores 2 7. Number of Virtual Cores 4 8. L3 Cache 3 MB 9. Main Memory 8 GB 2.2 Performance Counters Performance counters are used to provide information as to how well the operating system or an application, service, or driver is performing. These counters are hardware registers attached with the processor which measures various programmable events occurring in the processor. Performance Monitoring Counters reveal considerable amount of information about power consumption. These counters monitor different events that take place when a processor executes instructions. 2 The various performance counters available on the desktop/ laptop machines are as de- scribed below: Instructions per Cycle (IPC): Power consumption of a processor is dependent on its activity. If the IPC is high, the processor will very likely consume more power. Fetch counters: IPC considers only the retired instructions, but processors execute many instructions speculatively. These are flushed due to branch mis-predictions but con- sume power. Hence, we keep track of number of Fetched instructions, Branch correct pre- dictions (BCP) and, Branch mis-predictions (BMP). Miss/Hit counters: Upon cache misses, the processor stalls. Thus, the events: L1 hit, L1 miss, L2 hit, L2 miss, page hit and, TLB miss may impact the power consumed. Retired instructions counters: Depending on the type of the retired instructions (Integer (INT), Floating-point (FP), Memory, Branch), different functional units are being exercised. If some of these are power-hungry (say FP), then, by monitoring the type of retired instructions, we would be able to estimate power more accurately. Stalls : Processors stall due to dependencies (data or resource conflicts). 2.3 Benchmarks Used Following benchmarks have been used for conducting the experiment: While(1): A simple while loop to keep the CPU busy and active set to iterate for some large number. Linpack: This Benchmark is a measure of a system's floating point computing power. HPLinpack has been used in the experiment. It shows how fast a computer solves a dense n by n system of linear equations Ax = b. 181.mcf: A benchmark derived from a program used for single-depot vehicle scheduling in public mass transportation. The program is written in C, the benchmark version uses almost exclusively integer arithmetic. The benchmark requires about 100 and 190 megabyte for a 32 and a 64 bit architecture, respectively. It is a cache-memory intensive benchmark. dd utility: DD is a command line utility for UNIX like operating systems. dd Utility offers the ability to backup and restore IMG files to memory cards and disks. This bench- mark has been used to copy a 10GB file from one location to other in the disk. The syntax is `dd if=hsource file namei of=htarget file namei [Options]'. 3 Methodology Used In this experiment, we have used Intel's Performance Counter Monitor(PCM) tool to measure system power and energy behavior for different workload scenarios. The Intel Performance Counter Monitor provides sample C++ routines and utilities to estimate the internal resource utilization. PCM tool reports energy consumed by the socket and DRAM in the last one second. The energy consumed by the system in the last one second is also a measure of power (energy per second). Intel's Performance Counter Monitor offers the 3 possibility to print the output as comma separated values (CSV format). The experimented has been done using two CPU governor modes: performance & powersave. A CPU governor controls how the CPU raises and lowers its frequency in response to the demands the user is placing on the device. CPU frequency scaling enables the operating system to scale the CPU frequency up or down in order to save power. The performance governor mode runs the CPU at maximum frequency whereas pow- ersave governor mode runs the CPU at the minimum frequency. For desktop machine: • Power Save Mode Frequency = 800 MHz • Performance Mode Frequency = 4 GHz For laptop machine: • Power Save Mode Frequency = 800 MHz • Performance Mode Frequency = 2.7 GHz 4 Experiment Results In this experiment, we have executed the multiple instances/ threads of every benchmark and compared the power and energy consumption (core and DRAM) of every benchmark in the two governor modes namely, performance and powersave. We have plotted four different characteristics for each benchmarks namely, runtime, core power, DRAM power and core energy for the two target machines. The different graphs for desktop machine are shown below: 1. Runtime Comparison Observation 1. For linpack benchmark in performance mode, runtime for 2 instances is nearly 2.5 times that for single instance. - As every core has its own FPU, so there must not be contention for FPU and hence runtime should have been similar. - Memory bus contention issue, Cache issue. - On reducing the problem size (number of equations to solve) so that data stays in the cache, difference in runtime for two cases is insignificant. - The runtime shown in the graph is for a problem size of 20000. 4 2. In case of cpu-intensive benchmarks(while loop, linpack, 181.mcf) - Runtime will depend on a fast CPU and become significantly slower if we don't have one. - Hence, there is a tremendous increase in runtime of benchmarks in powersave mode (slow cpu @800 Mhz). 3. For non-cpu intensive workload such as DD, - Hard drives won't be able to keep up with the processor anyway. - We won't gain any benefit from a fast processor. 2. Core Power Comparison Observation 1. Similar trends as in case of runtime of benchmarks. 2. When all cores the idle, changing frequency doesn't affect the core power consump- tion. 3. For while loop and 181.mcf benchmarks, core power consumption with performance 5 governor enabled is nearly 5.5 times that with powersave governor enabled. 4. For linpack benchmark, core power consumption with performance governor enabled is nearly 2.5 times that with powersave governor enabled. 5. For DD, core power consumption with both governors is almost similar as it stresses the disk subsystem which is relatively slow. 3. DRAM Power Comparison Observation 1. For while loop, there is not significant difference in DRAM power in two modes as it cpu-intensive and does not has memory-access instructions. { DRAM is in sleep mode most of the time. 2. For DD, DRAM power is similar in two modes. 3. DRAM power for linpack and 181.mcf in two modes is different. { Number of memory access instruction per unit time reduces with reduction in processor frequency. 6 7 The different graphs for the laptop machine are shown below: 1. Runtime Comparison Observation 1. In case of 181.mcf, runtime for two instances is significantly greater than that for single instance. { Cache size in laptop is 3 MB whereas in Desktop is 8 MB. 2. For linpack benchmark in performance mode, runtime for 2 instances is nearly 2.5 times that for single instance. { As every core has its own FPU, so there must not be contention for FPU and hence runtime should have been similar. { Memory bus contention issue, Cache issue 3. For dd, not runtime in two mode is similar as disk is the bottleneck.
Recommended publications
  • Hardware Monitoring
    HARDWARE MONITORING SECTION 7 HARDWARE MONITORING Walt Kester INTRODUCTION Today's computers require that hardware as well as software operate properly, in spite of the many things that can cause a system crash or lockup. The purpose of hardware monitoring is to monitor the critical items in a computing system and take corrective action should problems occur. Microprocessor supply voltage and temperature are two critical parameters. If the supply voltage drops below a specified minimum level, further operations should be halted until the voltage returns to acceptable levels. In some cases, it is desirable to reset the microprocessor under "brownout" conditions. It is also common practice to reset the microprocessor on power-up or power-down. Switching to a battery backup may be required if the supply voltage is low. Under low voltage conditions it is mandatory to inhibit the microprocessor from writing to external CMOS memory by inhibiting the Chip Enable signal to the external memory. Many microprocessors can be programmed to periodically output a "watchdog" signal. Monitoring this signal gives an indication that the processor and its software are functioning properly and that the processor is not stuck in an endless loop. The need for hardware monitoring has resulted in a number of ICs, traditionally called "microprocessor supervisory products," which perform some or all of the above functions. These devices range from simple manual reset generators (with debouncing) to complete microcontroller-based monitoring sub-systems with on-chip temperature sensors and ADCs. The ADM8691-series (see Figures 7.1 and 7.2) are examples of traditional microprocessor supervisory circuits.
    [Show full text]
  • Rog Strix Z390-E Gaming
    ROG STRIX Z390-E GAMING BIOS Manual Motherboard E14965 First Edition November 2018 Copyright© 2018 ASUSTeK COMPUTER INC. All Rights Reserved. No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language in any form or by any means, except documentation kept by the purchaser for backup purposes, without the express written permission of ASUSTeK COMPUTER INC. (“ASUS”). Product warranty or service will not be extended if: (1) the product is repaired, modified or altered, unless such repair, modification of alteration is authorized in writing by ASUS; or (2) the serial number of the product is defaced or missing. ASUS PROVIDES THIS MANUAL “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL ASUS, ITS DIRECTORS, OFFICERS, EMPLOYEES OR AGENTS BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES (INCLUDING DAMAGES FOR LOSS OF PROFITS, LOSS OF BUSINESS, LOSS OF USE OR DATA, INTERRUPTION OF BUSINESS AND THE LIKE), EVEN IF ASUS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES ARISING FROM ANY DEFECT OR ERROR IN THIS MANUAL OR PRODUCT. SPECIFICATIONS AND INFORMATION CONTAINED IN THIS MANUAL ARE FURNISHED FOR INFORMATIONAL USE ONLY, AND ARE SUBJECT TO CHANGE AT ANY TIME WITHOUT NOTICE, AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY ASUS. ASUS ASSUMES NO RESPONSIBILITY OR LIABILITY FOR ANY ERRORS OR INACCURACIES THAT MAY APPEAR IN THIS MANUAL, INCLUDING THE PRODUCTS AND SOFTWARE DESCRIBED IN IT.
    [Show full text]
  • Single-Phase PWM Controller for CPU / GPU Core Power Supply General Description Features
    RT8152E/F Single-Phase PWM Controller for CPU / GPU Core Power Supply General Description Features The RT8152E/F is a single phase PWM controller with l Single Phase PWM Controller with Integrated integrated MOSFET drivers. Moreover, it is compliant with MOSFET Driver Intel IMVP6.5 Voltage Regulator Specification to fulfill its l Low-Gain Compensator with CCRCOT Topology mobile CPU core and Render core voltage regulator (Constant Current Ripple Constant On Time) requirements. The RT8152E/F adopts G-NAVP (Green- l 7-bit DAC Native AVP), which is a Richtek's proprietary topology l 0.8% DAC Accuracy derived from finite DC gain compensator constant on-time l 1.5% or 11.5mV System Accuracy mode, making it an easy setting PWM controller meeting l Fixed VBOOT (For CPU Core Only) all Intel AVP (Active Voltage Positioning) mobile CPU/ l Differential Remote Voltage Sensing Render requirements. The output voltage of the RT8152E/ l G-NAVP Topology (Green-Native AVP) F is set by 7-bit VID code. The built-in high accuracy DAC l Programmable Output Transition Slew Rate Control converts the VID code ranging from 0V to 1.5V with l System Thermal Compensated AVP 12.5mV per step. The system accuracy of the controller l Ringing Free Mode at Light Load Condition can reach 1.5%. The part supports VID on-the-fly and mode l Fast Transient Response change on-the-fly functions that are fully compliant with l IMVP6.5 Compatible Power Management States IMVP6.5 specification. It operates in single phase and l Power Good diode emulation modes.
    [Show full text]
  • Analysis of the Power Consumption of a Multimedia Server Under Different DVFS Policies
    Analysis of the Power Consumption of a Multimedia Server under Different DVFS Policies Waltenegus Dargie Chair for Computer Networks Faculty of Computer Science Technical University of Dresden 01062 Dresden, Germany Email: [email protected] Abstract—Dynamic voltage and frequency scaling (DVFS) has [19]. Hence, reducing the voltage of the processor or memory been a useful power management strategy in embedded systems, by one fold will reduce the energy consumption of these mobile devices, and wireless sensor networks. Recently, it has subsystems by two fold. Likewise, reducing the operation fre- also been proposed for servers and data centers in conjunction with service consolidation and optimal resource-pool sizing. In quency will linearly reduce the energy consumption. There is, this paper, we experimentally investigate the scope and usefulness of course, a corresponding penalty in performance, but many of DVFS in a server environment. We set up a multimedia server argue that often Internet-based servers are over provisioned; which will be used in two different scenarios. In the first scenario, providing services at 30 to 70% of thier full capacity much the server will host requests to download video files of known and of the time [1] [14]. Consequntly, by operating these servers available formats. In the second scenario, videos of unavailable formats can be accepted; in which case the server employs a at lower frequencies (as well as voltages) when the workload transcoder to convert between AVI, MPEG and SLV formats is less time critical, it is possible to minimize the idle state before the videos are downloaded. The workload we generate has power consumption, which accounts for more than 50% of the a uniform arrival rate and an exponentially distributed video size.
    [Show full text]
  • Investigation of Alternative Power Architectures for CPU Voltage Regulators
    Investigation of Alternative Power Architectures for CPU Voltage Regulators Julu Sun Dissertation submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Electrical Engineering Fred C. Lee, Chairman Dusan Boroyevich Ming Xu William T. Baumann Carlos T.A. Suchicital Elaine P. Scott November 22nd, 2008 Blacksburg, Virginia Keywords: two-stage, voltage regulator, high power density, high efficiency Investigation of Alternative Power Architectures for CPU Voltage Regulators Abstract Since future microprocessors will have higher current in accordance with Moore’s law, there are still challenges for voltage regulators (VRs). Firstly, high efficiency is required not only for easy thermal management, but also for saving on electricity costs for data centers, or battery life extension for laptop computers. At the same time, high power density is required due to the increased power of the microprocessors. This is especially true for data centers, since more microprocessors are required within a given space (per rack). High power density is also required for laptop computers to reduce the size and the weight. To improve power density, a high frequency is required to shrink the size of the output inductors and output capacitors of the multi-phase buck VR. It has been demonstrated that the output bulk capacitors can be eliminated by raising the VR control bandwidth to around 350kHz. Assuming the bandwidth is one-third of the switching frequency, a VR should run at 1MHz to ensure a small size. However, the efficiency of a 12V VR is very poor at 1MHz due to high switching losses.
    [Show full text]
  • Introduction to Richtek VCORE Regulators
    Application Note Roland van Roy AN051 – May 2017 Introduction to Richtek VCORE Solutions ABSTRACT VCORE regulators are used to provide the power supply for the CPU core and graphics (GPU) core in computing applications like Desktop PC, Notebook PC, Server, Industrial PC, etc. The requirements for these supplies are quite different from standard POL regulators: CPU and GPU rails have extremely fast load changes, require Dynamic Voltage Positioning with high accuracy, require Load Line, can switch between several states of power saving and provide a variety of parameter sensing and monitoring. These systems make use of a serial Bus interface between the CPU and the voltage regulator, where the CPU will request different supply operating conditions based on CPU loading and operation modes. This application note explains the VCORE regulator application and the specific regulator operating conditions related to CPU & GPU commands. Richtek VCORE design advantages are explained and a guide is given how to find the right Richtek VCORE solution for a specific CPU family type. CONTENTS 1. Introduction .................................................................................................................................................................. 2 2. Basic Vcore regulator applications ................................................................................................................................. 2 3. VCORE regulator design aspects ...................................................................................................................................
    [Show full text]
  • System Power Management and Portable Power
    System Power Management and Portable Power Practical Power Solutions 1. Point-of-Load Power 2. System Power Management and Portable Power 3. Power for Mixed Analog/Digital Systems 4. Hardware Design Techniques Copyright © 2009 By Analog Devices, Inc. All rights reserved. This book, or parts thereof, must not be reproduced in any form without permission of the copyright owner. SECTION 2 SYSTEM POWER MANAGEMENT AND PORTABLE POWER Designing a Typical System Power Chain..........................................................................2.1 Microprocessor Supervisory Functions.........................................................................2.13 Power Supply Monitoring and Sequencing......................................................................2.20 Hot Swap Controllers..........................................................................................................2.32 Temperature Monitoring...................................................................................................2.42 Digital Isolation and Isolated Power...............................................................................2.48 Digital Power Applications.................................................................................................2.58 Powering Portable Systems..............................................................................................2.63 Technical References.......................................................................................................2.76 2.0 System Power Management
    [Show full text]
  • OC Guide Coffee Lake
    Coffee Lake Basic Overclocking Guide. The Coffee-Lake generation of processors represent a welcome (up to) 6-core family of parts with excellent IPC, z270-class memory controller and very good overclocking capability. Many 8700Ks run 5.0GHz and 4000+ ram speeds with little fuss. There is one design aspect that you either fix or live with and that is the TIM used at the die-IHS interfaced. In stock form the 8700K is a great 6 core cpu but can suffer from elevated temperatures. So, if you want to run 5+ GHz on this SKU, you’ll want to delid the CPU and replace Intel’s stock TIM with a liquid metal. Delided CPUs run 20+C cooler on average and as a result, usually overclock higher. Most delided 8700K can run 5.0GHz at less than 1.4V. Equipment used: ASUS Maximus X Apex Intel 8700K G.Skill 2x8GB 4400c19 ram kit (excellent B-die kit) Seasonic Prime 1000W PSU ASUS GTX 1080 Turbo Intel 750 SSD Koolance 380i CPU Water block Bitpower Full Cover GPU Water block GPU and CPU are cooled with a custom water loop (1x360 rad, 3 fans), the CPU is delidded with CLP between the die and IHS. Software: CPUZ HWiNFO64 SIV64 CoreTemp Real Bench There are two basic modes for overclocking for 24/7 use: Manual Override or fixed Vcore, and dynamically link voltage and frequency (Adaptive or Offset). Of course, each of these can be tuned for a specific user need or application, but let’s just get the basics down first.
    [Show full text]
  • Everything You Need to Know About the Motherboard Voltage Regulator Circuit
    Everything You Need to Know About The Motherboard Voltage Regulator Circuit Introduction If you are willing to learn more about motherboard quality you must deeply study the voltage regulator circuit, which is in charge of taking the voltage provided by the power supply – namely +12 V – and converting it into the appropriate voltage required by the CPU, memories, chipset and other circuits present. In this tutorial we will present an in- depth trip inside the motherboard voltage regulator circuit, showing you how to identify this circuit, how it works, what the most common projects are and how to identify good-quality components. The quality of the voltage regulator circuit is one of the best ways to have an idea about the overall motherboard quality and life-span for several reasons. A good voltage regulator won’t have any fluctuations or noise on its outputs, providing the CPU and other components with a clean and stable voltage, allowing them to work perfectly. A bad voltage regulator can lead to fluctuations or noise on the voltage that will lead to malfunctions like the computer crashing, resetting and presenting the infamous Blue Screen of Death on Windows. If this circuit uses low-quality electrolytic capacitors they will leak, swell or even explode. Frequently when a motherboard dies it is this circuit that goes bad. So having a good- quality voltage regulator circuit will ensure that you will have a stable system that will last for years. Recognizing this circuit is pretty easy. Since it is the only circuit on the motherboard that uses chokes (a kind of coil), locate the chokes and you will have located the voltage regulator circuit.
    [Show full text]
  • CPU Power Consumption Experiments and Results Analysis of Intel I7-4820K
    µSystems Research Group School of Electrical and Electronic Engineering CPU Power Consumption Experiments and Results Analysis of Intel i7-4820K Matthew Travers Technical Report Series NCL-EEE-MICRO-TR-2015-197 Matthew Travers: CPU Power Consumption Experiments and Results Analysis of Intel i7-4820K Contact: [email protected] NCL-EEE-MICRO-TR-2015-197 Copyright © 2015 Newcastle University µSystems Research Group School of Electrical and Electronic Engineering Merz Court Newcastle University Newcastle-upon-Tyne, NE1 7RU, UK http://async.org.uk NCL-EEE-MICRO-TR-2015-197, Newcastle University Matthew Travers: CPU Power Consumption Experiments and Results Analysis of Intel i7-4820K CPU Power Consumption Experiments and Results Analysis of Intel i7-4820K Matthew Travers June 2015 Abstract As we move into an ever more digital world, from communication techniques to data storage there has been an increase in the need of digital processors to process this information. We have come a long way since the early single core processors to a point where we can now have up to 8 cores in a single CPU (Central Processing Unit). Not only has the number of cores increased but the size has decreased and the speed increased. Whilst the world wants faster speeds this comes with a price, the price being power consumption. Power consumption is becoming a large factor to take into account since a lot of the processors being used today reside within mobile devices, for example mobile phones. These devices do not have an unlimited constant supply of electricity as they rely on batteries to operate and this is where a major problem is occurring.
    [Show full text]
  • CHAPTER 2 PIC® Microcontroller Low Power Tips 'N Tricks
    PIC® Microcontroller Low Power Tips ‘n Tricks CHAPTER 2 PIC® Microcontroller Low Power Tips ‘n Tricks Table Of Contents TIPS ‘N TRICKS INTRODUCTION Microchip continues to provide innovative products that are smaller, faster, easier to GENERAL LOW POWER TIPS ‘N TRICKS use and more reliable. The Flash-based PIC® TIP #1 Switching Off External Circuits/ microcontrollers (MCUs) are used in an wide Duty Cycle .......................................... 2-2 range of everyday products, from smoke TIP #2 Power Budgeting ................................ 2-3 detectors, hospital ID tags and pet containment TIP #3 Configuring Port Pins ......................... 2-4 systems, to industrial, automotive and medical TIP #4 Use High-Value Pull-Up Resistors ...... 2-4 products. TIP #5 Reduce Operating Voltage ................. 2-4 TIP #6 Use an External Source for PIC MCUs featuring nanoWatt technology CPU Core Voltage .............................. 2-5 implement a variety of important features which TIP #7 Battery Backup for PIC MCUs ........... 2-6 have become standard in PIC microcontrollers. Since the release of nanoWatt technology, DYNAMIC OPERATION TIPS ‘N TRICKS changes in MCU process technology and TIP #8 Enhanced PIC16 Mid-Range Core ..... 2-6 improvements in performance have resulted in TIP #9 Two-Speed Start-Up ........................... 2-7 new requirements for lower power. PIC MCUs TIP #10 Clock Switching .................................. 2-7 with nanoWatt eXtreme Low Power (nanoWatt TIP #11 Use Internal RC Oscillators ................ 2-7 XLP™) improve upon the original nanoWatt TIP #12 Internal Oscillator Calibration ............. 2-8 technology by dramatically reducing static TIP #13 Idle and Doze Modes ......................... 2-8 power consumption and providing new flexibility TIP #14 Use NOP and Idle Mode .....................
    [Show full text]
  • MAX17410 Dual-Phase, Quick-PWM Controller for IMVP6+ CPU Core
    19-4438; Rev 0; 1/09 EVALUATION KIT AVAILABLE Dual-Phase, Quick-PWM Controller for IMVP6+ CPU Core Power Supplies General Description Features MAX17410 The MAX17410 is a 2-/1-phase interleaved Quick- o Dual-/Single-Phase Interleaved Quick-PWM PWM™ step-down VID power-supply controller for Controller notebook IMVP6+ CPUs. True out-of-phase operation o ±0.5% VOUT Accuracy Over Line, Load, and reduces input ripple current requirements and output Temperature voltage ripple while easing component selection and o 7-Bit IMVP6+ DAC layout difficulties. The Quick-PWM control scheme pro- o Dynamic Phase Selection Optimizes Active/Sleep vides instantaneous response to fast load current Efficiency steps. Active voltage positioning reduces power dissi- o Transient Phase Overlap Reduces Output pation and bulk output capacitance requirements and Capacitance allows ideal positioning compensation for tantalum, o polymer, or ceramic bulk output capacitors. Active Voltage Positioning with Adjustable Gain o Accurate Lossless Current Balance The MAX17410 is intended for two different CPU core o applications: either bucking down the battery directly to Accurate Droop and Current Limit create the core voltage, or bucking down the +5V sys- o Remote Output and Ground Sense tem supply. The single-stage conversion method allows o Adjustable Output Slew-Rate Control this device to directly step down high-voltage batteries o Power-Good Window Comparator for the highest possible efficiency. Alternatively, 2-stage o conversion (stepping down the +5V system supply Power Monitor instead of the battery) at higher switching frequency o Programmable Thermal-Fault Protection provides the minimum possible physical size. o Phase Fault Output (PHASEGD) A slew-rate controller allows controlled transitions o Drives Large Synchronous Rectifier FETs between VID codes.
    [Show full text]