Linux Hardware Monitor development
 help / color / mirror / Atom feed
 messages from 2025-04-19 16:14:07 to 2025-04-25 15:29:02 UTC [more...]

[RFC PATCH v2 00/34] MSR refactor with new MSR instructions support
 2025-04-25 15:28 UTC  (92+ messages)
` [RFC PATCH v2 01/34] x86/msr: Move rdtsc{,_ordered}() to <asm/tsc.h>
` [RFC PATCH v2 02/34] x86/msr: Remove rdpmc()
` [RFC PATCH v2 03/34] x86/msr: Rename rdpmcl() to rdpmcq()
` [RFC PATCH v2 04/34] x86/msr: Convert rdpmcq() into a function
` [RFC PATCH v2 05/34] x86/msr: Return u64 consistently in Xen PMC read functions
` [RFC PATCH v2 06/34] x86/msr: Use the alternatives mechanism to read PMC
` [RFC PATCH v2 07/34] x86/msr: Convert __wrmsr() uses to native_wrmsr{,q}() uses
` [RFC PATCH v2 08/34] x86/msr: Convert a native_wrmsr() use to native_wrmsrq()
` [RFC PATCH v2 09/34] x86/msr: Add the native_rdmsrq() helper
` [RFC PATCH v2 10/34] x86/msr: Convert __rdmsr() uses to native_rdmsrq() uses
` [RFC PATCH v2 11/34] x86/msr: Remove calling native_{read,write}_msr{,_safe}() in pmu_msr_{read,write}()
` [RFC PATCH v2 12/34] x86/msr: Remove pmu_msr_{read,write}()
` [RFC PATCH v2 13/34] x86/xen/msr: Remove the error pointer argument from set_reg()
` [RFC PATCH v2 14/34] x86/msr: refactor pv_cpu_ops.write_msr{_safe}()
` [RFC PATCH v2 15/34] x86/msr: Replace wrmsr(msr, low, 0) with wrmsrq(msr, low)
` [RFC PATCH v2 16/34] x86/msr: Change function type of native_read_msr_safe()
` [RFC PATCH v2 17/34] x86/cpufeatures: Add a CPU feature bit for MSR immediate form instructions
` [RFC PATCH v2 18/34] x86/opcode: Add immediate form MSR instructions
` [RFC PATCH v2 19/34] x86/extable: Add support for "
` [RFC PATCH v2 20/34] x86/extable: Implement EX_TYPE_FUNC_REWIND
` [RFC PATCH v2 21/34] x86/msr: Utilize the alternatives mechanism to write MSR
` [RFC PATCH v2 22/34] x86/msr: Utilize the alternatives mechanism to read MSR
` [RFC PATCH v2 23/34] x86/extable: Remove new dead code in ex_handler_msr()
` [RFC PATCH v2 24/34] x86/mce: Use native MSR API __native_{wr,rd}msrq()
` [RFC PATCH v2 25/34] x86/msr: Rename native_wrmsrq() to native_wrmsrq_no_trace()
` [RFC PATCH v2 26/34] x86/msr: Rename native_wrmsr() to native_wrmsr_no_trace()
` [RFC PATCH v2 27/34] x86/msr: Rename native_write_msr() to native_wrmsrq()
` [RFC PATCH v2 28/34] x86/msr: Rename native_write_msr_safe() to native_wrmsrq_safe()
` [RFC PATCH v2 29/34] x86/msr: Rename native_rdmsrq() to native_rdmsrq_no_trace()
` [RFC PATCH v2 30/34] x86/msr: Rename native_rdmsr() to native_rdmsr_no_trace()
` [RFC PATCH v2 31/34] x86/msr: Rename native_read_msr() to native_rdmsrq()
` [RFC PATCH v2 32/34] x86/msr: Rename native_read_msr_safe() to native_rdmsrq_safe()
` [RFC PATCH v2 33/34] x86/msr: Move the ARGS macros after the MSR read/write APIs
` [RFC PATCH v2 34/34] x86/msr: Convert native_rdmsr_no_trace() uses to native_rdmsrq_no_trace() uses

[PATCH v10 00/16] hwmon: (oxpsensors) Add devices, features, fix ABI and move to platform/x86
 2025-04-25 13:50 UTC  (18+ messages)
` [PATCH v10 01/16] hwmon: (oxp-sensors) Distinguish the X1 variants
` [PATCH v10 02/16] hwmon: (oxp-sensors) Add all OneXFly variants
` [PATCH v10 03/16] platform/x86: oxpec: Move hwmon/oxp-sensors to platform/x86
` [PATCH v10 04/16] ABI: testing: sysfs-class-oxp: add missing documentation
` [PATCH v10 05/16] ABI: testing: sysfs-class-oxp: add tt_led attribute documentation
` [PATCH v10 06/16] platform/x86: oxpec: Rename ec group to tt_toggle
` [PATCH v10 07/16] platform/x86: oxpec: Add turbo led support to X1 devices
` [PATCH v10 08/16] platform/x86: oxpec: Move pwm_enable read to its own function
` [PATCH v10 09/16] platform/x86: oxpec: Move pwm value read/write to separate functions
` [PATCH v10 10/16] platform/x86: oxpec: Move fan speed read to separate function
` [PATCH v10 11/16] platform/x86: oxpec: Adhere to sysfs-class-hwmon and enable pwm on 2
` [PATCH v10 12/16] platform/x86: oxpec: Follow reverse xmas convention for tt_toggle
` [PATCH v10 13/16] power: supply: add inhibit-charge-awake to charge_behaviour
` [PATCH v10 14/16] platform/x86: oxpec: Add charge threshold and behaviour to OneXPlayer
` [PATCH v10 15/16] platform/x86: oxpec: Rename rval to ret in tt_toggle
` [PATCH v10 16/16] platform/x86: oxpec: Convert defines to using tabs

[PATCH v3 00/14] MSR code cleanup part one
 2025-04-25 12:52 UTC  (18+ messages)
` [PATCH v3 01/14] x86/msr: Move rdtsc{,_ordered}() to <asm/tsc.h>
` [PATCH v3 02/14] x86/msr: Remove rdpmc()
` [PATCH v3 03/14] x86/msr: Rename rdpmcl() to rdpmc()
` [PATCH v3 04/14] x86/msr: Convert the rdpmc() macro into an always inline function
` [PATCH v3 05/14] x86/msr: Return u64 consistently in Xen PMC read functions
` [PATCH v3 06/14] x86/msr: Convert __wrmsr() uses to native_wrmsr{,q}() uses
` [PATCH v3 07/14] x86/msr: Add the native_rdmsrq() helper
` [PATCH v3 08/14] x86/msr: Convert __rdmsr() uses to native_rdmsrq() uses
` [PATCH v3 09/14] x86/xen/msr: Remove calling native_{read,write}_msr{,_safe}() in pmu_msr_{read,write}()
` [PATCH v3 10/14] x86/xen/msr: Remove pmu_msr_{read,write}()
` [PATCH v3 11/14] x86/xen/msr: Remove the error pointer argument from set_seg()
` [PATCH v3 12/14] x86/pvops/msr: refactor pv_cpu_ops.write_msr{,_safe}()
` [PATCH v3 13/14] x86/msr: Replace wrmsr(msr, low, 0) with wrmsrq(msr, low)
` [PATCH v3 14/14] x86/msr: Change the function type of native_read_msr_safe()

[PATCH v8 0/1] platform/x86: Introduce dasharo-acpi platform driver
 2025-04-25 11:21 UTC  (2+ messages)
` [PATCH v8 1/1] "

[PATCH v10 0/7] Add Nuvoton NCT6694 MFD drivers
 2025-04-25 11:13 UTC  (9+ messages)
` [PATCH v10 1/7] mfd: Add core driver for Nuvoton NCT6694
` [PATCH v10 2/7] gpio: Add Nuvoton NCT6694 GPIO support
` [PATCH v10 3/7] i2c: Add Nuvoton NCT6694 I2C support
` [PATCH v10 4/7] can: Add Nuvoton NCT6694 CANFD support
` [PATCH v10 5/7] watchdog: Add Nuvoton NCT6694 WDT support
` [PATCH v10 6/7] hwmon: Add Nuvoton NCT6694 HWMON support
` [PATCH v10 7/7] rtc: Add Nuvoton NCT6694 RTC support

[PATCH v9 00/15] hwmon: (oxpsensors) Add devices, features, fix ABI and move to platform/x86
 2025-04-25 11:05 UTC  (7+ messages)
` [PATCH v9 14/15] platform/x86: oxpec: Add charge threshold and behaviour to OneXPlayer
` [PATCH v9 15/15] platform/x86: oxpec: Rename rval to ret in tt_toggle

[PATCH v4 00/13] Introduce parity_odd() and refactor redundant parity code
 2025-04-25  8:51 UTC  (9+ messages)
` [PATCH v4 02/13] media: media/test_drivers: Replace open-coded parity calculation with parity_odd()
` [PATCH v4 03/13] media: pci: cx18-av-vbi: "
` [PATCH v4 04/13] media: saa7115: "

PMBus memory overflow
 2025-04-25  8:16 UTC  (14+ messages)

[PATCH] hwmon: (asus-ec-sensors) check sensor index in read_string()
 2025-04-24 22:35 UTC  (3+ messages)

[groeck-staging:hwmon-next] BUILD SUCCESS 8debd8511dd9376fab33bff62500a5a71937420a
 2025-04-24 15:39 UTC 

[PATCH v6 1/2] hwmon: (pmbus/tps53679) Add support for TPS53685
 2025-04-24 13:42 UTC  (2+ messages)
  ` [PATCH v6] "

[PATCH] hwmon: convert to use maple tree register cache
 2025-04-24  1:08 UTC 

[groeck-staging:testing] BUILD SUCCESS fcb21e1fc1ac1aa8eacf7d6972f75d7f462c51c4
 2025-04-23 17:41 UTC 

[groeck-staging:fixes] BUILD SUCCESS 6ef0f7e503876480f6b0dbadaccf3bd0dc9f9a3f
 2025-04-23 17:38 UTC 

[groeck-staging:hwmon-staging] BUILD SUCCESS 7e801aa73daa456c4404fde177d3fc397661abf0
 2025-04-23 17:38 UTC 

[PATCH v6] hwmon: (max77705) add initial support
 2025-04-23 14:22 UTC  (2+ messages)

[PATCH 1/2] dt-bindings: hwmon: ti,tmp102: document optional V+ supply property
 2025-04-23 14:17 UTC  (7+ messages)
` [PATCH 2/2] hwmon: (tmp102): add vcc regulator support

[PATCH v7 0/1] platform/x86: Introduce dasharo-acpi platform driver
 2025-04-23 12:08 UTC  (3+ messages)
` [PATCH v7 1/1] "

[PATCH 0/2] hwmon: (spd5118) adjust sensor behaviors under SPD write protection
 2025-04-23  3:33 UTC  (5+ messages)
` [PATCH 2/2] hwmon: (spd5118) restrict writes "

[PATCH] hwmon: (aht10) Drop doctype annotations from static functions
 2025-04-23  1:28 UTC  (3+ messages)

[PATCH v5] hwmon: (pmbus/tps53679) Add support for TPS53685
 2025-04-22 14:01 UTC  (3+ messages)

[PATCH v3 0/2] Add support for LT3074 low voltage linear regulator
 2025-04-22 13:25 UTC  (9+ messages)
` [PATCH v3 1/2] dt-bindings: hwmon: pmbus: add lt3074
` [PATCH v3 2/2] hwmon: (pmbus/lt3074): add support for lt3074

[PATCH] hwmon: (dell-smm) Add the Dell OptiPlex 7050 to the DMI whitelist
 2025-04-21 18:25 UTC  (3+ messages)

[PATCH v8 0/7] Add Nuvoton NCT6694 MFD drivers
 2025-04-21 11:00 UTC  (10+ messages)
` [PATCH v8 1/7] mfd: Add core driver for Nuvoton NCT6694

[PATCH v5] hwmon: (max77705) add initial support
 2025-04-20 16:06 UTC  (4+ messages)

[PATCH 0/5] hwmon: (spd5118) Add I3C support
 2025-04-19 16:13 UTC  (6+ messages)
` [PATCH 1/5] hwmon: (spd5118) Split into common and I2C specific code
` [PATCH 2/5] hwmon: (spd5118) Name chips taking the specification literally
` [PATCH 3/5] hwmon: (spd5118) Support 16-bit addressing for NVMEM accesses
` [PATCH 4/5] hwmon: (spd5118) Detect and support 16-bit register addressing
` [RFT PATCH 5/5] hwmon: (spd5118) Add I3C support


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox