Charging Plugs

  • Thread starter Thread starter Deleted User 298457
  • Start date Start date
Yes but Samsung Fast Charge 2.0 seems to be a weird spec that not all PPS chargers support.
Yes and no.

Samsung has a specific spec for SFC2.0.... 11V @ 4.05A for their 45W. PPS.

Though there isn't another phone I've seen that does PPS @45W.

Pixel does 23W and Samsung has a lower tier 25W.
 
Last edited:
Super fast charging is built on PPS - all PPS chargers should be compatible.
You'd think so, but then lots of them state that they aren't like this one.


USB-C PD45W and 25W PPS Super Fast Charging​

  • Super Fast Charging for Galaxy S23 Ultra/ S23 Plus / S23 / S22 Ultra / S22 Plus / S22/ S21 Ultra / S21 Plus / S21 S20 Series / Z Flip 4 / Z Fold 4 / Z Flip 3 / Z Fold 3 / Note 10 Plus / Galaxy Tab S7 / Tab S7 Plus
  • *Supports Super Fast Charging but does not support 45W super fast charging 2.0
 
You'd think so, but then lots of them state that they aren't like this one.

It's because it doesn't supply enough current. As long as the charger supports PPS and can deliver 4.05A or above it'll do SFC2.0.

For example the Aukey 90W multi port charger will do the job. It's a great charger

AUKEY PA-B6S Omnia 90W​


Any PPS 100W charger will be fine too as they are 5A.
 
Last edited:
From what I've seen if the charger tells the phone the maximum current is < 3 A it displays SFC, and > 3 A it will show SFC 2.0.

The maximum battery charging power in either mode is still limited to ~27 W, so I wouldn't worry too much either way.
 
From what I've seen if the charger tells the phone the maximum current is < 3 A it displays SFC, and > 3 A it will show SFC 2.0.

The maximum battery charging power in either mode is still limited to ~27 W, so I wouldn't worry too much either way.
From yoir theory this charger should trigger SFC2.0 as it does 3.5A. But it doesn't.

Spigen ArcStation Pro USB C 45W Charger GaN PD 3.0 Fast Wall Charger for Samsung Galaxy S23 S22 S21 Ultra Plus Z Fold Flip 4 3 iPad Macbook Air Steam Deck (Cable included/USB-C PD PPS Charging) https://amzn.eu/d/ceXu8Rr



You need PPS 4.05A or above.
 
Last edited:
I don't have enough chargers here to test it fully, but that might be right actually. That said, it's worth pointing out that the 'SFC 2.0' display is purely software. There aren't two charging modes, it simply just once maximum supported current crosses a threshold, the display changes.

I have a 35 W SFC charger and a 45 W SFC 2.0 charger here. On my Tab S8 ultra, the SFC (1.0) charger did 9.42 V @ 3.03 A (28.5 W), the SFC 2.0 charger did 9.51 V @ 3.3 A (31.4 W). If you assume the same 11 V rating for SFC 1.0, then maximum current should be 2.27 A, but in SFC 1.0 mode the tablet pulled the full 3 A that the 35 W charger is rated for.

EDIT: And just to confirm that SFC 1.0 rating, this 25 W Samsung charger here: https://www.samsung.com/uk/mobile-accessories/wall-charger-super-fast-charging-25w-ep-ta800xbeggb/ is only rated for 2.25 A for 3.0 - 11.0 V. SFC devices will just pull whatever they can in practice.
 
Last edited:
SFC is 25W peak and SFC2.0 is indeed 45W peak.

Plenty of demos on YouTube.

They do hit near those peak figures but that'll be when on a low battery percentage range. And wattage drops off as the battery fills, as usual.

Edit. Also the S23U is the only device that really leans into the 45W charging. The older S22U and other devices barely stayed in the 45W range charging so it was a waste of a charger anyway.
 
Last edited:
Except I just plugged a SFC capable device into a SFC capable charger and got nearly 29 W ;). There's no cap. The charger driver in the phone and charger negotiate the maximum current and use it. I know why the Youtube videos get the results they do, but it mostly isn't because of why they think.

The great thing with Samsung phones is the kernel source code is available, so you can just read the configured values right out the kernel. No guess work or questionable test results involved.

Why does an S23 Ultra charger faster than an S22 Ultra in 45 W mode? It's input current limit is higher:

S22U:
Code:
        pca9468,input-current-limit = <2550000>; /* 2.55A */
        pca9468,charging-current = <6000000>; /* 6A */
        pca9468,input-itopoff = <500000>; /* 500mA */
        pca9468,sense-resistance = <0>; /* 5mOhm */
        pca9468,switching-frequency = <3>; /* 980KHz */
        pca9468,ntc-threshold = <0>; /* disable */
        pca9468,ta-mode = <1>; /* 2:1 charging mode */

S23U:
Code:
        pca9481,input-current-limit = <3000000>; /* 3.0A */
        pca9481,charging-current = <6000000>; /* 6.0A */
        pca9481,input-itopoff = <500000>; /* 500mA */
        pca9481,sense-resistance = <2>; /* 5mOhm */
        pca9481,sense-config = <0>;    /* Bottom side */
        pca9481,switching-frequency = <1000>; /* 1000kHz */
        pca9481,ntc0-threshold = <1110000>; /* 1.11V */
        pca9481,ntc1-threshold = <495000>;    /* 0.495V */
        pca9481,ntc-en = <0>; /* Disable NTC protection function */
        pca9481,chg-mode = <1>; /* 2:1 direct charging mode */

Both phones operate in a switched capacitor 2:1 direct charging mode, which means input current is doubled and the input voltage halved. Input current on the S22 U is 2.55 A, so maximum battery charging current is 5.1 A (limit is set to 6 A, but can never be reached). The S23U does achieve a 3 A input, so can achieve the full 6 A at the battery. It's charging 17.6% faster. But this begs the question, how fast is the S23U actually charging? Well, you can find out it's maximum battery voltage too, right here:

Code:
    battery,chg_float_voltage = <0x1130>;

Thats 4.40 V. So the maximum charging power that can ever be applied is 4.40 V * 6 A = 26.4 W.

The reason why input power to the phone can reach ~40 W is because the phone will charge the battery at maximum power, then use excess power from the charger to run the phone. During boot-up, restart and charger connection, this causes lots of background tasks and app updates to fire which causes several minutes of high power draw. After that, input power is mostly just battery input power which is why it drops to close to 30 W. This is why the 25 W chargers aren't much slower, they lose out during that first few minutes where the phone is busy, but after that they can charge the battery just about as fast as any 45 W charger can.

It's a interesting question to pose wether ~26 W at the battery is really 45 W charging at all, or if because the phone could draw ~40 W at any moment then it really is 45 W. That explains why you see the behaviour you do anyway

As one last aside to the SFC 1.0 vs 2.0. Did you know that if you use a 3 A cable with a 45 W charger (which should trigger SFC 1.0), the phone has a catch case to tell you it's SFC 2.0 anyway? :p

Code:
        if ((pdo_type == APDO_TYPE) &&
            (sec_pd_get_apdo_prog_volt(pdo_type, max_volt) > battery->pdata->apdo_max_volt))
            temp_power = battery->pdata->apdo_max_volt * max_curr; /* Protect to show sfc2.0 with 45w ta + 3a cable */
 
Last edited:
Back
Top Bottom