Commit a76a6c18 authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Jiri Kosina

HID: sony: Report more accurate DS4 power status.

This patch moves the power supply status logic to DS3/DS4 parse_report,
to allow for more accurate DS4 status reporting.

The DS4 power status code was actually incorrect, but reported okay'ish
data in most cases. There was a different interpretation of the battery_info
values 0-10 or 0-9 depending on cable state. It added +1 to extend the range
to 0-10. This is actually incorrect, there is no different range. Values
higher than 11 actually indicates 'full' and 14/15 'error' for which we
reported 100% and a valid power state.

Moving the status logic to parse_report avoids having to pass more state
to the generic sony_battery_get_property and simplifies the code.
Signed-off-by: default avatarRoderick Colenbrander <roderick.colenbrander@sony.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent d5530d82
...@@ -562,9 +562,8 @@ struct sony_sc { ...@@ -562,9 +562,8 @@ struct sony_sc {
u8 hotplug_worker_initialized; u8 hotplug_worker_initialized;
u8 state_worker_initialized; u8 state_worker_initialized;
u8 defer_initialization; u8 defer_initialization;
u8 cable_state;
u8 battery_charging;
u8 battery_capacity; u8 battery_capacity;
int battery_status;
u8 led_state[MAX_LEDS]; u8 led_state[MAX_LEDS];
u8 led_delay_on[MAX_LEDS]; u8 led_delay_on[MAX_LEDS];
u8 led_delay_off[MAX_LEDS]; u8 led_delay_off[MAX_LEDS];
...@@ -892,7 +891,8 @@ static void sixaxis_parse_report(struct sony_sc *sc, u8 *rd, int size) ...@@ -892,7 +891,8 @@ static void sixaxis_parse_report(struct sony_sc *sc, u8 *rd, int size)
static const u8 sixaxis_battery_capacity[] = { 0, 1, 25, 50, 75, 100 }; static const u8 sixaxis_battery_capacity[] = { 0, 1, 25, 50, 75, 100 };
unsigned long flags; unsigned long flags;
int offset; int offset;
u8 cable_state, battery_capacity, battery_charging; u8 battery_capacity;
int battery_status;
/* /*
* The sixaxis is charging if the battery value is 0xee * The sixaxis is charging if the battery value is 0xee
...@@ -904,19 +904,16 @@ static void sixaxis_parse_report(struct sony_sc *sc, u8 *rd, int size) ...@@ -904,19 +904,16 @@ static void sixaxis_parse_report(struct sony_sc *sc, u8 *rd, int size)
if (rd[offset] >= 0xee) { if (rd[offset] >= 0xee) {
battery_capacity = 100; battery_capacity = 100;
battery_charging = !(rd[offset] & 0x01); battery_status = (rd[offset] & 0x01) ? POWER_SUPPLY_STATUS_FULL : POWER_SUPPLY_STATUS_CHARGING;
cable_state = 1;
} else { } else {
u8 index = rd[offset] <= 5 ? rd[offset] : 5; u8 index = rd[offset] <= 5 ? rd[offset] : 5;
battery_capacity = sixaxis_battery_capacity[index]; battery_capacity = sixaxis_battery_capacity[index];
battery_charging = 0; battery_status = POWER_SUPPLY_STATUS_DISCHARGING;
cable_state = 0;
} }
spin_lock_irqsave(&sc->lock, flags); spin_lock_irqsave(&sc->lock, flags);
sc->cable_state = cable_state;
sc->battery_capacity = battery_capacity; sc->battery_capacity = battery_capacity;
sc->battery_charging = battery_charging; sc->battery_status = battery_status;
spin_unlock_irqrestore(&sc->lock, flags); spin_unlock_irqrestore(&sc->lock, flags);
if (sc->quirks & SIXAXIS_CONTROLLER) { if (sc->quirks & SIXAXIS_CONTROLLER) {
...@@ -944,7 +941,8 @@ static void dualshock4_parse_report(struct sony_sc *sc, u8 *rd, int size) ...@@ -944,7 +941,8 @@ static void dualshock4_parse_report(struct sony_sc *sc, u8 *rd, int size)
struct input_dev *input_dev = hidinput->input; struct input_dev *input_dev = hidinput->input;
unsigned long flags; unsigned long flags;
int n, m, offset, num_touch_data, max_touch_data; int n, m, offset, num_touch_data, max_touch_data;
u8 cable_state, battery_capacity, battery_charging; u8 cable_state, battery_capacity;
int battery_status;
u16 timestamp; u16 timestamp;
/* When using Bluetooth the header is 2 bytes longer, so skip these. */ /* When using Bluetooth the header is 2 bytes longer, so skip these. */
...@@ -1049,29 +1047,52 @@ static void dualshock4_parse_report(struct sony_sc *sc, u8 *rd, int size) ...@@ -1049,29 +1047,52 @@ static void dualshock4_parse_report(struct sony_sc *sc, u8 *rd, int size)
*/ */
offset = data_offset + DS4_INPUT_REPORT_BATTERY_OFFSET; offset = data_offset + DS4_INPUT_REPORT_BATTERY_OFFSET;
cable_state = (rd[offset] >> 4) & 0x01; cable_state = (rd[offset] >> 4) & 0x01;
battery_capacity = rd[offset] & 0x0F;
/* /*
* When a USB power source is connected the battery level ranges from * Interpretation of the battery_capacity data depends on the cable state.
* 0 to 10, and when running on battery power it ranges from 0 to 9. * When no cable is connected (bit4 is 0):
* A battery level above 10 when plugged in means charge completed. * - 0:10: percentage in units of 10%.
* When a cable is plugged in:
* - 0-10: percentage in units of 10%.
* - 11: battery is full
* - 14: not charging due to Voltage or temperature error
* - 15: charge error
*/ */
if (!cable_state || battery_capacity > 10) if (cable_state) {
battery_charging = 0; u8 battery_data = rd[offset] & 0xf;
else
battery_charging = 1; if (battery_data < 10) {
/* Take the mid-point for each battery capacity value,
* because on the hardware side 0 = 0-9%, 1=10-19%, etc.
* This matches official platform behavior, which does
* the same.
*/
battery_capacity = battery_data * 10 + 5;
battery_status = POWER_SUPPLY_STATUS_CHARGING;
} else if (battery_data == 10) {
battery_capacity = 100;
battery_status = POWER_SUPPLY_STATUS_CHARGING;
} else if (battery_data == 11) {
battery_capacity = 100;
battery_status = POWER_SUPPLY_STATUS_FULL;
} else { /* 14, 15 and undefined values */
battery_capacity = 0;
battery_status = POWER_SUPPLY_STATUS_UNKNOWN;
}
} else {
u8 battery_data = rd[offset] & 0xf;
if (!cable_state) if (battery_data < 10)
battery_capacity++; battery_capacity = battery_data * 10 + 5;
if (battery_capacity > 10) else /* 10 */
battery_capacity = 10; battery_capacity = 100;
battery_capacity *= 10; battery_status = POWER_SUPPLY_STATUS_DISCHARGING;
}
spin_lock_irqsave(&sc->lock, flags); spin_lock_irqsave(&sc->lock, flags);
sc->cable_state = cable_state;
sc->battery_capacity = battery_capacity; sc->battery_capacity = battery_capacity;
sc->battery_charging = battery_charging; sc->battery_status = battery_status;
spin_unlock_irqrestore(&sc->lock, flags); spin_unlock_irqrestore(&sc->lock, flags);
/* /*
...@@ -2300,12 +2321,12 @@ static int sony_battery_get_property(struct power_supply *psy, ...@@ -2300,12 +2321,12 @@ static int sony_battery_get_property(struct power_supply *psy,
struct sony_sc *sc = power_supply_get_drvdata(psy); struct sony_sc *sc = power_supply_get_drvdata(psy);
unsigned long flags; unsigned long flags;
int ret = 0; int ret = 0;
u8 battery_charging, battery_capacity, cable_state; u8 battery_capacity;
int battery_status;
spin_lock_irqsave(&sc->lock, flags); spin_lock_irqsave(&sc->lock, flags);
battery_charging = sc->battery_charging;
battery_capacity = sc->battery_capacity; battery_capacity = sc->battery_capacity;
cable_state = sc->cable_state; battery_status = sc->battery_status;
spin_unlock_irqrestore(&sc->lock, flags); spin_unlock_irqrestore(&sc->lock, flags);
switch (psp) { switch (psp) {
...@@ -2319,13 +2340,7 @@ static int sony_battery_get_property(struct power_supply *psy, ...@@ -2319,13 +2340,7 @@ static int sony_battery_get_property(struct power_supply *psy,
val->intval = battery_capacity; val->intval = battery_capacity;
break; break;
case POWER_SUPPLY_PROP_STATUS: case POWER_SUPPLY_PROP_STATUS:
if (battery_charging) val->intval = battery_status;
val->intval = POWER_SUPPLY_STATUS_CHARGING;
else
if (battery_capacity == 100 && cable_state)
val->intval = POWER_SUPPLY_STATUS_FULL;
else
val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
break; break;
default: default:
ret = -EINVAL; ret = -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment