Skip to content

Commit

Permalink
drivers: misc/power: Implement USB2 fast charge mode
Browse files Browse the repository at this point in the history
echo 0 /sys/kernel/fast_charge/force_fast_charge (disable)
echo 1 /sys/kernel/fast_charge/force_fast_charge (enable)

Enables force charging up to 900mA in usb2 mode

Signed-off-by: engstk <eng.stk@sapo.pt>
  • Loading branch information
engstk authored and David112x committed May 16, 2024
1 parent d247b53 commit 288767b
Show file tree
Hide file tree
Showing 5 changed files with 144 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/misc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,12 @@ config LDO_WL2866D
---help---
This option enables multi ldo wl2866d.

config FORCE_FAST_CHARGE
bool "Force faster charge rate for USB"
default n
help
This allows users to override default charge rate for USB

config BATTERY_SAVER
bool "Battery saver mode for kernelspace"
help
Expand Down
2 changes: 2 additions & 0 deletions drivers/misc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,5 @@ obj-$(CONFIG_OKL4_LINK_SHBUF) += okl4-link-shbuf.o
obj-$(CONFIG_AW8624_HAPTIC) += aw8624_haptic/
obj-$(CONFIG_DRV2624_HAPTIC) += drv2624_haptic/
obj-$(CONFIG_LDO_WL2866D) += wl2866d.o

obj-$(CONFIG_FORCE_FAST_CHARGE) += fastchg.o
103 changes: 103 additions & 0 deletions drivers/misc/fastchg.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
/*
* Author: Chad Froebel <chadfroebel@gmail.com>
*
* Port to guacamole: engstk <eng.stk@sapo.pt>
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/

/*
* Possible values for "force_fast_charge" are :
*
* 0 - Disabled (default)
* 1 - Force faster charge
*/

#include <linux/kobject.h>
#include <linux/sysfs.h>
#include <linux/fastchg.h>
#include <linux/string.h>
#include <linux/module.h>

int force_fast_charge = 0;

static int __init get_fastcharge_opt(char *ffc)
{
if (strcmp(ffc, "0") == 0) {
force_fast_charge = 0;
} else if (strcmp(ffc, "1") == 0) {
force_fast_charge = 1;
} else {
force_fast_charge = 0;
}
return 1;
}

__setup("ffc=", get_fastcharge_opt);

static ssize_t force_fast_charge_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf)
{
size_t count = 0;
count += sprintf(buf, "%d\n", force_fast_charge);
return count;
}

static ssize_t force_fast_charge_store(struct kobject *kobj, struct kobj_attribute *attr, const char *buf, size_t count)
{
sscanf(buf, "%d ", &force_fast_charge);
if (force_fast_charge < 0 || force_fast_charge > 1)
force_fast_charge = 0;

return count;
}

static struct kobj_attribute force_fast_charge_attribute =
__ATTR(force_fast_charge, 0664, force_fast_charge_show, force_fast_charge_store);

static struct attribute *force_fast_charge_attrs[] = {
&force_fast_charge_attribute.attr,
NULL,
};

static struct attribute_group force_fast_charge_attr_group = {
.attrs = force_fast_charge_attrs,
};

/* Initialize fast charge sysfs folder */
static struct kobject *force_fast_charge_kobj;

int force_fast_charge_init(void)
{
int force_fast_charge_retval;

force_fast_charge_kobj = kobject_create_and_add("fast_charge", kernel_kobj);
if (!force_fast_charge_kobj) {
return -ENOMEM;
}

force_fast_charge_retval = sysfs_create_group(force_fast_charge_kobj, &force_fast_charge_attr_group);

if (force_fast_charge_retval)
kobject_put(force_fast_charge_kobj);

if (force_fast_charge_retval)
kobject_put(force_fast_charge_kobj);

return (force_fast_charge_retval);
}

void force_fast_charge_exit(void)
{
kobject_put(force_fast_charge_kobj);
}

module_init(force_fast_charge_init);
module_exit(force_fast_charge_exit);
11 changes: 11 additions & 0 deletions drivers/power/supply/qcom/smb5-lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
#include "storm-watch.h"
#include "schgm-flash.h"

#ifdef CONFIG_FORCE_FAST_CHARGE
#include <linux/fastchg.h>
#endif

#define smblib_err(chg, fmt, ...) \
printk_deferred(KERN_ERR"%s: %s: " fmt, chg->name, \
__func__, ##__VA_ARGS__) \
Expand Down Expand Up @@ -1702,6 +1706,13 @@ static int set_sdp_current(struct smb_charger *chg, int icl_ua)
u8 icl_options;
const struct apsd_result *apsd_result = smblib_get_apsd_result(chg);

#ifdef CONFIG_FORCE_FAST_CHARGE
if (force_fast_charge > 0 && icl_ua == USBIN_500MA)
{
icl_ua = USBIN_900MA;
}
#endif

/* power source is SDP */
switch (icl_ua) {
case USBIN_100MA:
Expand Down
22 changes: 22 additions & 0 deletions include/linux/fastchg.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* Author: Chad Froebel <chadfroebel@gmail.com>
*
* Port to guacamole: engstk <eng.stk@sapo.pt>
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/

#ifndef _LINUX_FASTCHG_H
#define _LINUX_FASTCHG_H

extern int force_fast_charge;

#endif

0 comments on commit 288767b

Please sign in to comment.