Difference between revisions of "Jetson/Jetson TK1 Power"

From eLinux.org
Jump to: navigation, search
(Added some info about replacing the fan with a heatsink)
(Powering with a battery: Gave several options for battery power)
Line 32: Line 32:
  
 
== Powering with a battery ==
 
== Powering with a battery ==
 +
The Jetson TK1 accepts a standard [http://www.pololu.com/product/2448 2.1mm DC barrel plug] for power.
  
[http://www.pololu.com/product/2448 Compatible plug]
+
As mentioned above, Jetson TK1 expects between 11V to 13V. So there are several options for powering the Jetson TK1 by batteries:
  
[http://www.pololu.com/product/2117 Slightly under-powered step-up converter]
+
=== DC-DC step-up converter with a battery ===
 +
A DC-DC step-up converter can convert a low voltage into a stable 12V DC. Some suitable step-up converters range from a [http://www.pololu.com/product/2117 $4 20W step-up converter] (that might be slightly too weak for many use cases) to a [http://www.pololu.com/product/2568 $14 60W step-up converter] (that is able to push Jetson TK1 to its full limits). Both of these step-up converters will work from a LiIon/LiPo battery cell or a few AA batteries or a 5V USB portable charger. (Note that most USB portable chargers can only produce 5W to 10W, so are unlikely to power the whole Jetson TK1 unless if you replace the fan and don't run intensive code).
  
[http://www.pololu.com/product/2568 More powerful step-up converter]
+
=== Direct connection to a rechargeable battery pack ===
 
+
It is also possible to combine several battery cells in series to have roughly 12V for powering the board directly without a step-up or step-down converter. However the voltage output of a battery varies quite a lot when it is fully charged compared to fully drained, so you need to make sure the voltage will always be within the recommended voltage range. Several batteriy options are:
Both of these step-up converters will work either from a USB battery or directly off a LiPo battery. Note that most USB batteries can only produce 5V@2.1A ~= 10W at best, which is less than the TK1 draws at max power consumption.
+
* '''Lithium Ion or Lithium Polymer''': A LiIon/LiPo "3.7V" rechargeable battery is usually near 3.7V on average but actually gives 4.2V when charged and around 3.3V when discharged. (The battery is likely to be damaged whenever it falls below 3.0V per cell). So to power a Jetson TK1 board, you can use 3 LiIon/LiPo cells in series, and use a battery voltage cutout circuit at 10V to ensure the batteries & board aren't damaged when the batteries run too low.
 +
* '''Nickel-Cadmium or Nickel-Metal-Hydride''': A NiCad or NiMh AA "1.2V" rechargeable battery gives about 1.3V when fully charged and drops to about 1.0V when consumed. So to power a Jetson TK1 you could use 10 rechargeable AA batteries in series. Note that a non-rechargeable AA battery gives 1.5V per cell whereas a rechargeable AA gives 1.2V per cell, so if you want to use non-rechargeable consumable batteries for some reason then you should use 8 x AA instead of 10 x rechargeable AA batteries.
 +
* '''Lead-Acid (car battery)''': A car battery is roughly 12V but the actual voltage can reach upto 14.4V. So if you want to plug the Jetson TK1 into your car battery then it is highly recommended to use a 12V voltage regulator to ensure the voltage to the board will not be too high, and also use a fuse to ensure nothing catches on fire if there is a short-circuit.

Revision as of 23:08, 6 June 2014

Jetson TK1 power draw

The Tegra K1 SOC is aimed at tablets and thus uses between 2W to 5W of power during typical use, but this varies greatly depending on how much you manage to push the 4 CPU cores, 192 GPU cores, DRAM, camera ISP and codec hardware to their limits. That is just for the SOC, so clearly the Jetson TK1 board requires a lot more power than this if you will also use various expansion ports & accessories.

The Jetson TK1 board is rated for 12VDC input, and has been tested with voltages between 10.8V to 13.2V. Note that SATA disks require a fairly precise 12V, so you shouldn't be using voltages at those ranges if you will use SATA hard drives. It is known that the Jetson TK1 board won't turn on at less than 9.5V and it will likely be damaged at 16V or above. It may be possible to power the Jetson TK1 board somewhere in the 9.5V to 10.8V range or the 13.2V to 16V range but NVIDIA has not tested this.

The absolute max power draw of Jetson TK1 if you push everything to the limit and use every port including SATA and PCIe is 4.8A @ 12V (60W). So you can probably get by with smaller 20W or 40W power supplies if you don't use too many accessories, but a 60W power supply will ensure you never have any lack of power onboard.

Replacing the fan with a heatsink

The Jetson TK1 board comes with a 12V 1.1A (13.2W) fan+heatsink combo on the SOC, to ensure the board is always safe to touch by humans even when running the CPU & GPU at max performance for long durations. But some users many way to remove the fan and replace it will a passive heatsink, to reduce power or to get rid of the fan noise.

The Tegra K1 SOC is designed for tablets that use a small heatsink or heatspreader plate, thus clearly it doesn't require a powerful fan. But tablets aren't expected to run at full performance for long periods, and you also can't touch the SOC of a tablet with your bare fingers, so NVIDIA decided to use a fan for Jetson TK1. If you wish to replace the fan with a heatsink, take into account that if you will be pushing the SOC to its limits for long durations, the SOC might be using 10W or more of power that you must dissipate with a large heatsink and/or external fan and/or attaching a heatspreader to the metal case of your overall device, otherwise the Tegra thermal management may reduce the available speed to ensure it wont overheat.

It hasn't been tested by NVIDIA, but rough estimatations suggest that a 1.5" x 1.5" x 0.8" Aluminium heatsink (such as an Aluminium Malico MBH33002 or Copper Malico CMBA054949 north-bridge heatsink) would allow running intense code continuously while not getting hot enough for the SOC to limit its performance or burn human skin.

Limiting power use

Note: Debugfs and non-upstream sysfs nodes aren't guaranteed to remain unchanged in future releases.

Reducing power if display isn't required

As root:

echo -1 > /sys/kernel/debug/tegra_hdmi/hotplug
echo 4 > /sys/class/graphics/fb0/blank

Restricting to low-power core only

Restricting the CPU to the low power companion core can significantly reduce peak power (if running on a power-limited battery pack, for example). It is still a Cortex-A15 core with NEON and 32KB L1 cache and 512KB L2 private cache, but obviously at lower performance than the 4 main cores. As root:

echo 0 > /sys/devices/system/cpu/cpuquiet/tegra_cpuquiet/enable
echo LP > /sys/kernel/cluster/active

Powering with a battery

The Jetson TK1 accepts a standard 2.1mm DC barrel plug for power.

As mentioned above, Jetson TK1 expects between 11V to 13V. So there are several options for powering the Jetson TK1 by batteries:

DC-DC step-up converter with a battery

A DC-DC step-up converter can convert a low voltage into a stable 12V DC. Some suitable step-up converters range from a $4 20W step-up converter (that might be slightly too weak for many use cases) to a $14 60W step-up converter (that is able to push Jetson TK1 to its full limits). Both of these step-up converters will work from a LiIon/LiPo battery cell or a few AA batteries or a 5V USB portable charger. (Note that most USB portable chargers can only produce 5W to 10W, so are unlikely to power the whole Jetson TK1 unless if you replace the fan and don't run intensive code).

Direct connection to a rechargeable battery pack

It is also possible to combine several battery cells in series to have roughly 12V for powering the board directly without a step-up or step-down converter. However the voltage output of a battery varies quite a lot when it is fully charged compared to fully drained, so you need to make sure the voltage will always be within the recommended voltage range. Several batteriy options are:

  • Lithium Ion or Lithium Polymer: A LiIon/LiPo "3.7V" rechargeable battery is usually near 3.7V on average but actually gives 4.2V when charged and around 3.3V when discharged. (The battery is likely to be damaged whenever it falls below 3.0V per cell). So to power a Jetson TK1 board, you can use 3 LiIon/LiPo cells in series, and use a battery voltage cutout circuit at 10V to ensure the batteries & board aren't damaged when the batteries run too low.
  • Nickel-Cadmium or Nickel-Metal-Hydride: A NiCad or NiMh AA "1.2V" rechargeable battery gives about 1.3V when fully charged and drops to about 1.0V when consumed. So to power a Jetson TK1 you could use 10 rechargeable AA batteries in series. Note that a non-rechargeable AA battery gives 1.5V per cell whereas a rechargeable AA gives 1.2V per cell, so if you want to use non-rechargeable consumable batteries for some reason then you should use 8 x AA instead of 10 x rechargeable AA batteries.
  • Lead-Acid (car battery): A car battery is roughly 12V but the actual voltage can reach upto 14.4V. So if you want to plug the Jetson TK1 into your car battery then it is highly recommended to use a 12V voltage regulator to ensure the voltage to the board will not be too high, and also use a fuse to ensure nothing catches on fire if there is a short-circuit.