[PATCH v9 0/7] Add support for the IEI WT61P803 PUZZLE MCU

From: Luka Kovacic
Date: Tue Aug 24 2021 - 08:46:44 EST


This patchset adds support for the IEI WT61P803 PUZZLE microcontroller,
which enables some board specific features like fan and LED control,
system power management and temperature sensor reading on some IEI
Puzzle series boards.

The first board to use this functionality is IEI Puzzle-M801 1U
Rackmount Network Appliance and is since v4 sent separately, as a
standalone patch.

Changes for v2:
- Use LAAs for local-mac-address and match reg values
- Code styling changes
- Error handling moved to the end of the function
- Define all magic numbers in the main header file
- Convert the driver to make it OF independent
- Refactor hwmon to use devm_hwmon_device_register_with_info()
- Reduce the number of mutex locks
- Allocate memory once for the response buffer
- Reduce managed memory allocations
Changes for v3:
- Move iei-wt61p803-puzzle driver sysfs interface documentation to testing
- Change some internal functions to static
- Sync dt-bindings examples with the IEI Puzzle-M801 board dts
- Remove obsolete device tree properties and correct LED functions
- Reverse christmas tree variable declaration order, where possible
- MAC address sysfs function rewrite
- Fixed struct members size, where reasonable (MFD driver)
- Add an error check for hwmon_dev
- Use devm_led_classdev_register_ext() in the LED driver
Changes for v4:
- Clean up sensible checks reported by checkpatch --strict
- Document the mutex lock usage in the LED driver
- Fix error handling and code styling issues in the HWMON driver
- Break up the patchset and send the IEI Puzzle-M801 board support
patch separately
Changes for v5:
- Remove the return before goto to also fwnode_handle_put(child)
when ret is 0 (LED driver)
- Change unsigned char arrays to static where applicable
- Fix unconventional line indentations
- Remove unnecessary checks in the HWMON driver
- Remove unnecessary type casts
- Clear up command array assignments, where the command array is
modified before it is sent
- Resolve a checksum calculation issue
- Add Luka Perkov to MAINTAINERS
Changes for v6:
- Use the container_of() macro to get the led_cdev parent struct
- Use %u instead of %lu in a printf() (LED driver)
Changes for v7:
- Use the correct vendor title (IEI instead of iEi)
- Add missing properties to dt-bindings and fix styling issues
- Styling changes in the IEI WT61P803 PUZZLE HWMON driver
- Add missing commas in array definitions
- Check reply_size, where possible
- Clean up kernel-doc comments
Changes for v8:
- Fix multiple style issues
- Reduce number of special allocations
- Remove unnecessary special state tracking with write/read commands
- Remove most of commands calls from probing of driver
- Add hwmon documentation file
- Replace some sprintf() calls with safer scnprintf()
- Remove unused defines
- Remove all explicit castings
- Shorter name of device for hwmon driver so snprintf() can
store device number
- Remove special kobj usage
- Use dev groups in place of deprecated device attributes
- Extend documentation for some descriptions of ABI documentation
- Add missing locking for response buffer in hwmon driver
- Fix inconsistency with license versions
- Check return value of iei_wt61p803_puzzle_sysfs_create()
- Remove unneeded initializations of reply_size variable in drivers
- Use define for fixed number of MAC addresses
- Reorder some variable declarations to follow preferred style
- Spell whole WoL acronym
- Drop __func__ from device error message
- Use sizeof() where it is possible
- Use hex_asc[] array for converting number to ascii value
- Remove unnecessary hwmon-sysfs.h include
- Stop being overly verbose when probing mfd driver
Changes for v9:
- Add hwmon documentation to index.rst
- Describe the temperature sensors in hwmon documentation
- Only describe 1 LED in the dt-bindings
- Use absoulute references in dt-bindings, instead of relative ones

Luka Kovacic (7):
dt-bindings: Add IEI vendor prefix and IEI WT61P803 PUZZLE driver
bindings
drivers: mfd: Add a driver for IEI WT61P803 PUZZLE MCU
drivers: hwmon: Add the IEI WT61P803 PUZZLE HWMON driver
drivers: leds: Add the IEI WT61P803 PUZZLE LED driver
Documentation/ABI: Add iei-wt61p803-puzzle driver sysfs interface
documentation
Documentation/hwmon: Add iei-wt61p803-puzzle hwmon driver
documentation
MAINTAINERS: Add an entry for the IEI WT61P803 PUZZLE driver

.../testing/sysfs-driver-iei-wt61p803-puzzle | 61 ++
.../hwmon/iei,wt61p803-puzzle-hwmon.yaml | 53 +
.../leds/iei,wt61p803-puzzle-leds.yaml | 39 +
.../bindings/mfd/iei,wt61p803-puzzle.yaml | 82 ++
.../devicetree/bindings/vendor-prefixes.yaml | 2 +
.../hwmon/iei-wt61p803-puzzle-hwmon.rst | 43 +
Documentation/hwmon/index.rst | 1 +
MAINTAINERS | 16 +
drivers/hwmon/Kconfig | 8 +
drivers/hwmon/Makefile | 1 +
drivers/hwmon/iei-wt61p803-puzzle-hwmon.c | 413 ++++++++
drivers/leds/Kconfig | 8 +
drivers/leds/Makefile | 1 +
drivers/leds/leds-iei-wt61p803-puzzle.c | 147 +++
drivers/mfd/Kconfig | 8 +
drivers/mfd/Makefile | 1 +
drivers/mfd/iei-wt61p803-puzzle.c | 908 ++++++++++++++++++
include/linux/mfd/iei-wt61p803-puzzle.h | 66 ++
18 files changed, 1858 insertions(+)
create mode 100644 Documentation/ABI/testing/sysfs-driver-iei-wt61p803-puzzle
create mode 100644 Documentation/devicetree/bindings/hwmon/iei,wt61p803-puzzle-hwmon.yaml
create mode 100644 Documentation/devicetree/bindings/leds/iei,wt61p803-puzzle-leds.yaml
create mode 100644 Documentation/devicetree/bindings/mfd/iei,wt61p803-puzzle.yaml
create mode 100644 Documentation/hwmon/iei-wt61p803-puzzle-hwmon.rst
create mode 100644 drivers/hwmon/iei-wt61p803-puzzle-hwmon.c
create mode 100644 drivers/leds/leds-iei-wt61p803-puzzle.c
create mode 100644 drivers/mfd/iei-wt61p803-puzzle.c
create mode 100644 include/linux/mfd/iei-wt61p803-puzzle.h

--
2.31.1