-
Notifications
You must be signed in to change notification settings - Fork 7.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
charger: add support for TI BQ25620 #87981
Open
parthitce
wants to merge
9
commits into
zephyrproject-rtos:main
Choose a base branch
from
linumiz:dev/ti/bq2562x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+1,486
−0
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add manufacturer property, which can point to constant string. Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
model name will be helpful when charger driver supports more then one device type. For example, BQ25620 and BQ25622 Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
7b43990
to
5ad8acb
Compare
Based on the USB battery charger specification 1.2, add the USB types. Primarily inherited the types and values from Linux include/linux/power_supply.h:enum power_supply_usb_type Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
chargers like BQ25620/BQ25622 supports a way to get the battery's present voltage and current values. Add property to support it. Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
Chargers like BQ25620/BQ25622 support a way to read chargers present current and voltage value. Add properties to read them. Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
based on battery current, battery voltage values internal ADC's in chargers like BQ25620/BQ25622 tracks dead batteries. Add support to new health status as dead. Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
As like fuel guage, charger properties reading and writing can also be possible to do multiple. Add a new interface API/syscall to read/ write multiple properties using array. Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
add BQ25620 and BQ25622 support Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
add support for TI's BQ25620. Although BQ25622 is same with additional feature sets, which isn't currently tested with this changes. Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com>
5ad8acb
to
475227a
Compare
Added the USB label here to indicate that there may be some discussion here related to how to implement the BC1.2 functionality of this chip. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area: Charger
area: USB
Universal Serial Bus
platform: TI SimpleLink
Texas Instruments SimpleLink MCU
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add support for Texas Instruments BQ25620 charger, which has the capability to handle upto 3.5A. As the device supports additional features which aren't part of current charger API, following API's introduced.
charger_get_props
andcharger_set_props
with array ofunion charger_propval
Signed-off-by: Parthiban Nallathambi parthiban@linumiz.com