Somehow both Anand and I ended up with international versions of Samsung’s Galaxy S 4, equipped with the first generation Exynos 5 Octa (5410) SoC. Anand bought an international model GT-I9500 while I held out for the much cooler SK Telecom Korean model SHV-E300S, including Samsung’s own SS222 LTE modem capable of working on band 17 (AT&T LTE) and Band 2,5 WCDMA in the US. Both of these came from Negri Electronics, a mobile device importer in the US.

For those of you who aren’t familiar with the Exynos 5 Octa in these devices, the SoC integrates four ARM Cortex A15 cores (1.6GHz) and four ARM Cortex A7 cores (1.2GHz) in a big.LITTLE configuration. GPU duties are handled by a PowerVR SGX 544MP3, capable of running at up to 533MHz.

We both had plans to do a deeper dive into the power and performance characteristics of one of the first major smartphone platforms to use ARM’s Cortex A15. As always, the insane pace of mobile got in the way and we both got pulled into other things.

More recently, a post over at Beyond3D from @AndreiF gave us reason to dust off our international SGS4s. Through some good old fashioned benchmarking, the poster alleged that Samsung was only exposing its 533MHz GPU clock to certain benchmarks - all other apps/games were limited to 480MHz. For the past few weeks we’ve been asked by many to look into this, what follows are our findings.

Characterizing GPU Behavior

Samsung awesomely exposes the current GPU clock without requiring root access. Simply run the following command over adb and it’ll return the current GPU frequency in MHz: 

adb shell cat /sys/module/pvrsrvkm/parameters/sgx_gpu_clk

Let’s hope this doesn’t get plugged, because it’s actually an extremely useful level of transparency that I wish more mobile platform vendors would offer. Running that command in a loop we can get real time updates on the GPU frequency while applications run different workloads.

Running any games, even the most demanding titles, returned a GPU frequency of 480MHz - just like @AndreiF alleged. Samsung never publicly claimed max GPU frequencies for the Exynos 5 Octa (our information came from internal sources), so no harm no foul thus far.


Running Epic Citadel - 480 MHz

Firing up GLBenchmark 2.5.1 however triggers a GPU clock not available elsewhere: 532MHz. The same is true for AnTuTu and Quadrant.


Running AnTuTu – 532 MHz SGX Clock

Interestingly enough, GFXBench 2.7.0 (formerly GLBenchmark 2.7.0) is unaffected. We confirmed with Kishonti, the makers of the benchmark, that the low level tests are identical between the two benchmarks. The results of the triangle throughput test offer additional confirmation for the frequency difference:

GT-I9500 Triangle Throughput Performance
Total System Power GPU Freq Run 1 Run 2 Run 3 Run 4 Run 5 Average
GFXBench 2.7.0 (GLBenchmark 2.7.0) 480MHz 37.9M Tris/s 37.9M Tris/s 37.7M Tris/s 37.7M Tris/s 38.3M Tris/s 37.9M Tris/s
GLBenchmark 2.5.1 532MHz 43.1M Tris/s 43.2M Tris/s 42.8M Tris/s 43.4M Tris/s 43.4M Tris/s 43.2M Tris/s
% Increase 10.8%           13.9%

We should see roughly an 11% increase in performance in GLBenchmark 2.5.1 over GFXBench 2.7.0, and we end up seeing a bit more than that. The reason for the difference? GLBenchmark 2.5.1 appears to be singled out as a benchmark that is allowed to run the GPU at the higher frequency/voltage setting.

The CPU is also Affected

The original post on B3D focused on GPU performance, but I was curious to see if CPU performance responded similarly to these benchmarks.

Using System Monitor I kept an eye on CPU frequency while running the same tests. Firing up GLBenchmark 2.5.1 causes a switch to the ARM Cortex A15 cluster, with a default frequency of 1.2GHz. The CPU clocks never drop below that, even when just sitting idle at the menu screen of the benchmark.

 
Left: GLBenchmark 2.5.1 (1.2 GHz), Right: GFXBench 2.7 (250 MHz - 500 MHz)

Run GFXBench 2.7 however and the SoC switches over to the Cortex A7s running at 500MHz (250MHz virtual frequency). It would appear that only GLB2.5.1 is allowed to run in this higher performance mode.

A quick check across AnTuTu, Linpack, Benchmark Pi, and Quadrant reveals the same behavior. The CPU governor is fixed at a certain point when either of those benchmarks is launched. 


Linpack for Android: Exynos 5 Octa all cores 1.6 GHz (left), Snapdragon 600 all cores 1.9 GHz (right)

Interestingly enough, the same behavior (on the CPU side) can be found on Qualcomm versions of the Galaxy S 4 as well. In these select benchmarks, the CPU is set to the maximum CPU frequency available at app launch and stays there for the duration, all cores are plugged in as well, regardless of load, as soon as the application starts.

Note that the CPU behavior is different from what we saw on the GPU side however. These CPU frequencies are available for all apps to use, they are simply forced to maximum (and in the case of Snapdragon, all cores are plugged in) in the case of these benchmarks. The 532MHz max GPU frequency on the other hand is only available to these specific benchmarks.

Digging Deeper

At this point the benchmarks allowed to run at higher GPU frequencies would seem arbitrary. AnTuTu, GLBenchmark 2.5.1 and Quadrant get fixed CPU frequencies and a 532MHz max GPU clock, while GFXBench 2.7 and Epic Citadel don’t. Poking around I came across the application changing the DVFS behavior to allow these frequency changes – TwDVFSApp.apk. Opening the file in a hex editor and looking at strings inside (or just running strings on the .odex file) pointed at what appeared to be hard coded profiles/exceptions for certain applications. The string "BenchmarkBooster" is a particularly telling one:

You can see specific Android java naming conventions immediately in the highlighted section. Quadrant standard, advanced, and professional, linpack (free, not paid), Benchmark Pi, and AnTuTu are all called out specifically. Nothing for GLBenchmark 2.5.1 though, despite its similar behavior. 

We can also see the files that get touched by TwDVFSApp while it is running: 

//sys/class/devfreq/exynos5-busfreq-int/min_freq
//sys/class/devfreq/exynos5-busfreq-mif/min_freq
+/sys/class/thermal/thermal_zone0/boost_mode
2/sys/devices/platform/pvrsrvkm.0/sgx_dvfs_min_lock

When the TwDVFSApp application grants special DVFS status to an application, the boost_mode file goes from value 0 to 1, making it easy to check if an affected application is running. For example, launching and closing Benchmark Pi:

shell@android:/sys/class/thermal/thermal_zone0 $ cat boost_mode                
1
shell@android:/sys/class/thermal/thermal_zone0 $ cat boost_mode                
0

There are strings for Fusion3 (the Snapdragon 600 + MDM9x15 combo) and Adonis (the codename for Exynos 5 Octa): 

doBoostAll
doBoostForAdonis
doBoostForAdonis::
doBoostForFusion3
doBoostForFusion3::

What's even more interesting is the fact that it seems as though TwDVFSApp seems to have an architecture for other benchmark applications not specifically in the whitelist to request for BenchmarkBoost mode as an intent, since the application is also a broadcast receiver. 

6Lcom/sec/android/app/twdvfs/TwDVFSBroadcastReceiver$1;
6Lcom/sec/android/app/twdvfs/TwDVFSBroadcastReceiver$2;
?Lcom/sec/android/app/twdvfs/TwDVFSBroadcastReceiver$IntentInfo;
4Lcom/sec/android/app/twdvfs/TwDVFSBroadcastReceiver;
boostIntent
5com.sec.android.intent.action.DVFS_FG_PROCESS_CHANGED
*com.sec.android.intent.action.SSRM_REQUEST

So we not only can see the behavior and empirically test to see what applications are affected, but also have what appears to be the whitelist and how the TwDVFSApp application grants special DVFS to certain applications.

Why this Matters & What’s Next

None of this ultimately impacts us. We don’t use AnTuTu, BenchmarkPi or Quadrant, and moved off of GLBenchmark 2.5.1 as soon as 2.7 was available (we dropped Linpack a while ago). The rest of our suite isn’t impacted by the aggressive CPU governor and GPU frequency optimizations on the Exynos 5 Octa based SGS4s. What this does mean however is that you should be careful about comparing Exynos 5 Octa based Galaxy S 4s using any of the affected benchmarks to other devices and drawing conclusions based on that. This seems to be purely an optimization to produce repeatable (and high) results in CPU tests, and deliver the highest possible GPU performance benchmarks. 

We’ve said for years now that the mobile revolution has/will mirror the PC industry, and thus it’s no surprise to see optimizations like this employed. Just because we’ve seen things like this happen in the past however doesn’t mean they should happen now.

It's interesting that this is sort of the reverse of what we saw GPU vendors do in FurMark. For those of you who aren't familiar, FurMark is a stress testing tool that tries to get your platform to draw as much power as possible. In order to avoid creating a situation where thermals were higher than they'd be while playing a normal game (and to avoid damaging graphics cards without thermal protection), we saw GPU vendors limit the clock frequency of their GPUs when they detected these power-virus style of apps. In a mobile device I'd expect even greater sensitivity to something like this. I suspect we'll eventually get to that point. I'd also add that just like we've seen this sort of thing many times in the PC space, the same is likely true for mobile. The difficulty is in uncovering when something strange is going on.

What Samsung needs to do going forward is either open up these settings for all users/applications (e.g. offer a configurable setting that fixes the CPU governor in a high performance mode, and unlocks the 532MHz GPU frequency) or remove the optimization altogether. The risk of doing nothing is that we end up in an arms race between all of the SoC and device makers where non-insignificant amounts of time and engineering effort is spent on gaming the benchmarks rather than improving user experience. Optimizing for user experience is all that’s necessary, good benchmarks benefit indirectly - those that don’t will eventually become irrelevant.

Comments Locked

111 Comments

View All Comments

  • darwinosx - Tuesday, July 30, 2013 - link

    Samsung is a scumbag company that is investigated for illegal behavior even in South Korea where they have a lot of power. Nothing they do should surprise anyone.
  • Lonyo - Tuesday, July 30, 2013 - link

    Apple is a scumbag company that is investigated for illegal behaviour even in the USA where they have a lot of influence/mindshare. Nothing they do should surprise anyone.

    See how easy it is?
  • eallan - Tuesday, July 30, 2013 - link

    Point me to a story where apply pays reviewers or does this.
  • RichDavis - Tuesday, July 30, 2013 - link

    Like what? The ebook issue? That was decided by one person. Personally, I've read through the same thing they were and I wouldn't think that Apple was doing anything illegal. All Jobs was doing was to make it a fair market. What companies TYPICALLY do is set a retail price, set a wholesale price to resellers and let the resellers sell it for whatever they want. This is just trying to create a equal playing field. That's all Jobs was suggesting. he wasn't doing anything more than that, and since Jobs wasn't there to defend his statements, a judge is just trying to squeeze money out of Apple because Apple has lots of money. Now, in terms of routing profits from doing business in other countries into Ireland. Other companies such as Microsoft, Google and others do the same thing. There is NOTHING wrong about it. The reason why they do it is because the profits they made in other countries have already been taxed by the various countries they did business in. To constantly bring money back and forth between other countries and the US, they have to pay taxes on it and it's very difficult to manage their finances. BUT, Apple does invest the profits they make in other countries and that is brought into the US and it is taxed. Apple pays a VERY reasonable percentage in taxes. If you look at Apple's income statements, they pay a decent percentage of their gross profits in taxes. Last year they paid out about $14 BILLION in taxes. That's more than Google made in Net Profits for the year.

    Apple have never been sued for Monopolistic business practices like MIcrosoft got continually nailed for. Nor did Apple get nailed for price fixing, which Samsung has been convicted of TWICE, once for memory price fixing and another time for monitors. They should get nailed again for raising prices to Apple on the processors they mfg because Apple went to other suppliers for other components. samsung also should be nailed for conflict of interest and unfair business practices since they sell components to various other companies and then they turn around and compete with similar products. That's COMPLETELY wrong. Nothing right about doing that. That's like Intel going around selling Intel computers competing against their own customers.
  • DigitalFreak - Tuesday, July 30, 2013 - link

    Oh do shut up, you twat.
  • PeteH - Tuesday, July 30, 2013 - link

    What a compelling argument. The wisdom of your words has undoubtedly opened many eyes to the rightness of your position. Bravo to you sir, bravo!
  • TedKord - Tuesday, July 30, 2013 - link

    The ebook situation WAS price-fixing, and they did get nailed for it.
  • psuedonymous - Wednesday, July 31, 2013 - link

    "What companies TYPICALLY do is set a retail price, set a wholesale price to resellers and let the resellers sell it for whatever they want. This is just trying to create a equal playing field. That's all Jobs was suggesting."
    Actually, the opposite is the case. Amazon were previously using that model for ebook sales, but Apple colluded with publishers to move to a different model, where the publisher sets the final sale rice, and gives the reseller a fixed cut of that final price. This, combined with agreements requiring Apple always have the lowest (or equal to lowest) sale price meant that Amazon was prevented from selling ebooks from those publishers for less than Apple was, and publishers got to see prices higher than Amazon's previously established baseline.

    THAT was why Apple was slapped down in every court that has seen the case (US and EU), and why all the publishers involved settled to avoid more costly losses.
  • RichDavis - Tuesday, July 30, 2013 - link

    Samsung pays much more in lobbying money in the US than Apple does. In fact, Apple spends the least for most of these large computer/software companies. Microsoft spends more in lobbying, so do other high tech companies, but generally Apple doesn't like greasing the palms of politicians by contributing to political campaigns.
  • BC2009 - Tuesday, July 30, 2013 - link

    Seeing the replies to your comment, it apparently wasn't as "easy" as you say. You've been pretty much shut down.

Log in

Don't have an account? Sign up now