1. 23 Mar, 2021 14 commits
  2. 22 Mar, 2021 5 commits
  3. 21 Mar, 2021 2 commits
    • LI Qingwu's avatar
      power: supply: bq27xxx: Add support for BQ78Z100 · 4eed7f5a
      LI Qingwu authored
      Add support for TI BQ78Z100, I2C interface gas gauge.
      It provides a fully integrated safety protection
      and authentication for 1 to 2-series cell Li-Ion and
      Li-Polymer battery packs.
      
      The patch was tested with BQ78Z100 equipment.
      
      CASE I:  Discharging:
      	POWER_SUPPLY_NAME=bq78z100-0
      	POWER_SUPPLY_STATUS=Discharging
      	POWER_SUPPLY_PRESENT=1
      	POWER_SUPPLY_VOLTAGE_NOW=3386000
      	POWER_SUPPLY_CURRENT_NOW=-5000
      	POWER_SUPPLY_CAPACITY=27
      	POWER_SUPPLY_CAPACITY_LEVEL=Normal
      	POWER_SUPPLY_TEMP=269
      	POWER_SUPPLY_TIME_TO_EMPTY_NOW=1249920
      	POWER_SUPPLY_TECHNOLOGY=Li-ion
      	POWER_SUPPLY_CHARGE_FULL=6494000
      	POWER_SUPPLY_CHARGE_NOW=1736000
      	POWER_SUPPLY_CHARGE_FULL_DESIGN=6000000
      	POWER_SUPPLY_CYCLE_COUNT=1
      	POWER_SUPPLY_POWER_AVG=-20000
      	POWER_SUPPLY_HEALTH=Good
      	POWER_SUPPLY_MANUFACTURER=Texas Instruments
      
      CASE II : No discharging current:
      	POWER_SUPPLY_NAME=bq78z100-0
      	POWER_SUPPLY_STATUS=Not charging
      	POWER_SUPPLY_PRESENT=1
      	POWER_SUPPLY_VOLTAGE_NOW=3386000
      	POWER_SUPPLY_CURRENT_NOW=0
      	POWER_SUPPLY_CAPACITY=27
      	POWER_SUPPLY_CAPACITY_LEVEL=Normal
      	POWER_SUPPLY_TEMP=270
      	POWER_SUPPLY_TECHNOLOGY=Li-ion
      	POWER_SUPPLY_CHARGE_FULL=6494000
      	POWER_SUPPLY_CHARGE_NOW=1734000
      	POWER_SUPPLY_CHARGE_FULL_DESIGN=6000000
      	POWER_SUPPLY_CYCLE_COUNT=1
      	POWER_SUPPLY_POWER_AVG=0
      	POWER_SUPPLY_HEALTH=Good
      	POWER_SUPPLY_MANUFACTURER=Texas Instruments
      Signed-off-by: default avatarLI Qingwu <Qing-wu.Li@leica-geosystems.com.cn>
      Reviewed-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
      Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
      4eed7f5a
    • LI Qingwu's avatar
      dt-bindings: power: bq27xxx: add bq78z100 · 83ee0681
      LI Qingwu authored
      Add bindings for TI BQ78Z100. An I2C interface gas gauge.
      It provides a fully integrated safety protection
      and authentication for 1 to 2-series cell Li-Ion and
      Li-Polymer battery packs.
      Signed-off-by: default avatarLI Qingwu <Qing-wu.Li@leica-geosystems.com.cn>
      Acked-by: default avatarRob Herring <robh@kernel.org>
      Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
      83ee0681
  4. 15 Mar, 2021 4 commits
  5. 14 Mar, 2021 1 commit
  6. 09 Mar, 2021 1 commit
  7. 06 Mar, 2021 11 commits
  8. 05 Mar, 2021 2 commits
    • Linus Torvalds's avatar
      Merge tag 'for-5.12/dm-fixes' of... · 63dcd69d
      Linus Torvalds authored
      Merge tag 'for-5.12/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm
      
      Pull device mapper fixes from Mike Snitzer:
       "Fix DM verity target's optional Forward Error Correction (FEC) for
        Reed-Solomon roots that are unaligned to block size"
      
      * tag 'for-5.12/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
        dm verity: fix FEC for RS roots unaligned to block size
        dm bufio: subtract the number of initial sectors in dm_bufio_get_device_size
      63dcd69d
    • Linus Torvalds's avatar
      Merge tag 'block-5.12-2021-03-05' of git://git.kernel.dk/linux-block · 47454caf
      Linus Torvalds authored
      Pull block fixes from Jens Axboe:
      
       - NVMe fixes:
            - more device quirks (Julian Einwag, Zoltán Böszörményi, Pascal
              Terjan)
            - fix a hwmon error return (Daniel Wagner)
            - fix the keep alive timeout initialization (Martin George)
            - ensure the model_number can't be changed on a used subsystem
              (Max Gurtovoy)
      
       - rsxx missing -EFAULT on copy_to_user() failure (Dan)
      
       - rsxx remove unused linux.h include (Tian)
      
       - kill unused RQF_SORTED (Jean)
      
       - updated outdated BFQ comments (Joseph)
      
       - revert work-around commit for bd_size_lock, since we removed the
         offending user in this merge window (Damien)
      
      * tag 'block-5.12-2021-03-05' of git://git.kernel.dk/linux-block:
        nvmet: model_number must be immutable once set
        nvme-fabrics: fix kato initialization
        nvme-hwmon: Return error code when registration fails
        nvme-pci: add quirks for Lexar 256GB SSD
        nvme-pci: mark Kingston SKC2000 as not supporting the deepest power state
        nvme-pci: mark Seagate Nytro XM1440 as QUIRK_NO_NS_DESC_LIST.
        rsxx: Return -EFAULT if copy_to_user() fails
        block/bfq: update comments and default value in docs for fifo_expire
        rsxx: remove unused including <linux/version.h>
        block: Drop leftover references to RQF_SORTED
        block: revert "block: fix bd_size_lock use"
      47454caf