Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drivers/rtc/rtc-palmas.c: support for backup battery charging

Palmas series device like TPS65913, TPS80036 supports the backup battery
for powering the RTC when no other energy source is available.

The backup battery is optional, connected to the VBACKUP pin, and can be
nonrechargeable or rechargeable. The rechargeable battery can be charged
from the system supply using the backup battery charger.

Add support for enabling charging of this backup battery. Also add the DT
binding document and the new properties to have this support.

Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Reviewed-by: Felipe Balbi <balbi@ti.com>
Acked-by: Kumar Gala <galak@codeaurora.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Laxman Dewangan and committed by
Linus Torvalds
666a584d 8af750e3

+68
+33
Documentation/devicetree/bindings/rtc/rtc-palmas.txt
··· 1 + Palmas RTC controller bindings 2 + 3 + Required properties: 4 + - compatible: 5 + - "ti,palmas-rtc" for palma series of the RTC controller 6 + - interrupt-parent: Parent interrupt device, must be handle of palmas node. 7 + - interrupts: Interrupt number of RTC submodule on device. 8 + 9 + Optional properties: 10 + 11 + - ti,backup-battery-chargeable: The Palmas series device like TPS65913 or 12 + TPS80036 supports the backup battery for powering the RTC when main 13 + battery is removed or in very low power state. The backup battery 14 + can be chargeable or non-chargeable. This flag will tells whether 15 + battery is chargeable or not. If charging battery then driver can 16 + enable the charging. 17 + - ti,backup-battery-charge-high-current: Enable high current charging in 18 + backup battery. Device supports the < 100mA and > 100mA charging. 19 + The high current will be > 100mA. Absence of this property will 20 + charge battery to lower current i.e. < 100mA. 21 + 22 + Example: 23 + palmas: tps65913@58 { 24 + ... 25 + palmas_rtc: rtc { 26 + compatible = "ti,palmas-rtc"; 27 + interrupt-parent = <&palmas>; 28 + interrupts = <8 0>; 29 + ti,backup-battery-chargeable; 30 + ti,backup-battery-charge-high-current; 31 + }; 32 + ... 33 + };
+35
drivers/rtc/rtc-palmas.c
··· 238 238 struct palmas *palmas = dev_get_drvdata(pdev->dev.parent); 239 239 struct palmas_rtc *palmas_rtc = NULL; 240 240 int ret; 241 + bool enable_bb_charging = false; 242 + bool high_bb_charging; 243 + 244 + if (pdev->dev.of_node) { 245 + enable_bb_charging = of_property_read_bool(pdev->dev.of_node, 246 + "ti,backup-battery-chargeable"); 247 + high_bb_charging = of_property_read_bool(pdev->dev.of_node, 248 + "ti,backup-battery-charge-high-current"); 249 + } 241 250 242 251 palmas_rtc = devm_kzalloc(&pdev->dev, sizeof(struct palmas_rtc), 243 252 GFP_KERNEL); ··· 262 253 263 254 palmas_rtc->dev = &pdev->dev; 264 255 platform_set_drvdata(pdev, palmas_rtc); 256 + 257 + if (enable_bb_charging) { 258 + unsigned reg = PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG; 259 + 260 + if (high_bb_charging) 261 + reg = 0; 262 + 263 + ret = palmas_update_bits(palmas, PALMAS_PMU_CONTROL_BASE, 264 + PALMAS_BACKUP_BATTERY_CTRL, 265 + PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG, reg); 266 + if (ret < 0) { 267 + dev_err(&pdev->dev, 268 + "BACKUP_BATTERY_CTRL update failed, %d\n", ret); 269 + return ret; 270 + } 271 + 272 + ret = palmas_update_bits(palmas, PALMAS_PMU_CONTROL_BASE, 273 + PALMAS_BACKUP_BATTERY_CTRL, 274 + PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN, 275 + PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN); 276 + if (ret < 0) { 277 + dev_err(&pdev->dev, 278 + "BACKUP_BATTERY_CTRL update failed, %d\n", ret); 279 + return ret; 280 + } 281 + } 265 282 266 283 /* Start RTC */ 267 284 ret = palmas_update_bits(palmas, PALMAS_RTC_BASE, PALMAS_RTC_CTRL_REG,