aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/regmap
AgeCommit message (Expand)AuthorFilesLines
2025-10-23regmap: slimbus: fix bus_context pointer in regmap init callsAlexey Klimov1-4/+2
2025-08-28regmap: use int type to store negative error codesQianfeng Rong1-4/+7
2025-08-13regmap: Remove superfluous check for !config in __regmap_init()Geert Uytterhoeven1-1/+1
2025-08-10regmap: mmio: Add missing MODULE_DESCRIPTION()Luis Henriques1-0/+1
2025-08-09Merge tag 'regmap-fix-v6.17-merge-window' of git://git.kernel.org/pub/scm/lin...Linus Torvalds1-9/+21
2025-08-01regmap: irq: Avoid lockdep warnings with nested regmap-irq chipsMark Brown1-1/+10
2025-08-01regmap: irq: Free the regmap-irq mutexMark Brown1-8/+11
2025-07-28Merge tag 'regmap-v6.17' of git://git.kernel.org/pub/scm/linux/kernel/git/bro...Linus Torvalds2-11/+1
2025-07-04regmap: get rid of redundant debugfs_file_{get,put}()Al Viro1-10/+0
2025-06-29regmap: fix potential memory leak of regmap_busAbdun Nihaal1-0/+2
2025-06-08regmap: kunit: Constify regmap_range_cfg arrayKrzysztof Kozlowski1-1/+1
2025-05-22regmap: irq: Add support for chips without separate IRQ statusMathieu Dubois-Briand1-31/+68
2025-05-21regmap-irq: Use dedicated interrupt wake settersAndy Shevchenko1-2/+2
2025-05-20regmap: Move selecting for REGMAP_MDIO and REGMAP_IRQAndrew Davis1-2/+2
2025-04-30regcache: Use sort()'s default swap() implementationThorsten Blum1-12/+1
2025-03-29Merge tag 'regmap-v6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/bro...Linus Torvalds2-7/+7
2025-02-27regcache: Add support for sorting defaults arraysCharles Keepax1-0/+31
2025-02-06regmap: irq: Use one way of setting all bits in the registerAndy Shevchenko1-1/+1
2025-02-05regmap-irq: Add missing kfree()Jiasheng Jiang1-0/+2
2025-02-03regmap: Reorder 'struct regmap'Christophe JAILLET1-6/+6
2025-01-07Expand SoundWire MBQ register map supportMark Brown1-22/+197
2025-01-07regmap: sdw-mbq: Add support for SDCA deferred controlsCharles Keepax1-14/+115
2025-01-07regmap: sdw-mbq: Add support for further MBQ register sizesCharles Keepax1-20/+94
2024-12-11regmap: regmap_multi_reg_read(): make register list constRichard Fitzgerald1-2/+2
2024-12-09regmap: Merge up v6.12-rc2Mark Brown1-2/+14
2024-12-02regmap: Cleanup and microoptimizationMark Brown2-6/+5
2024-12-02regmap: cache: rbtree: use krealloc_array() to replace krealloc()Andy Shevchenko1-6/+4
2024-12-02regmap: cache: mapple: use kmalloc_array() to replace kmalloc()Andy Shevchenko1-4/+3
2024-12-02regmap: place foo / 8 and foo % 8 closer to each otherAndy Shevchenko1-2/+2
2024-12-02regmap: Use BITS_TO_BYTES()Andy Shevchenko1-4/+3
2024-12-02regmap: cache: Use BITS_TO_BYTES()Andy Shevchenko1-1/+1
2024-12-02regmap: detach regmap from dev on regmap_exitCosmin Tanislav1-0/+12
2024-12-02regmap: Use correct format specifier for logging range errorsMark Brown1-2/+2
2024-11-01regmap: irq: Set lockdep class for hierarchical IRQ domainsAndy Shevchenko1-0/+4
2024-10-31regmap: maple: Provide lockdep (sub)class for maple tree's internal lockCristian Ciocaltea3-0/+5
2024-10-29regmap: kunit: Fix repeated test paramCheng-Cheng Lo1-1/+1
2024-10-29regmap: Merge up fixes from v6.12-rc3Mark Brown1-1/+1
2024-10-02move asm/unaligned.h to linux/unaligned.hAl Viro1-1/+1
2024-09-30regmap: Specifically test writing 0 as a value to sparse cachesMark Brown1-0/+43
2024-09-30regmap-irq: Consistently use memset32() in regmap_irq_thread()Andy Shevchenko1-4/+1
2024-09-02regmap: kunit: Add coverage of spinlocked regmapsMark Brown1-1/+16
2024-08-28regcache: use map->alloc_flags also for allocating cacheMarek Szyprowski3-3/+3
2024-08-23regmap: Use locking during kunit testsMark Brown1-2/+0
2024-08-23regmap: Hold the regmap lock when allocating and freeing the cacheMark Brown2-0/+5
2024-08-13regmap: Allow setting IRQ domain name suffixMatti Vaittinen1-11/+26
2024-07-27Merge tag 'regmap-fix-v6.11-merge-window' of git://git.kernel.org/pub/scm/lin...Linus Torvalds1-1/+2
2024-07-22regmap: maple: work around gcc-14.1 false-positive warningArnd Bergmann1-1/+2
2024-07-15Merge tag 'spi-v6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/brooni...Linus Torvalds1-2/+1
2024-07-11regmap: kunit: Add test cases for regmap_multi_reg_(read,write}()Guenter Roeck1-0/+73
2024-07-10regmap: Implement regmap_multi_reg_read()Mark Brown1-35/+68
2024-07-10regmap: Implement regmap_multi_reg_read()Guenter Roeck1-35/+68
2024-07-08regmap-irq: handle const struct regmap_irq_sub_irq_mapThomas Weißschuh1-1/+1
2024-06-24regmap: add missing MODULE_DESCRIPTION() macrosJeff Johnson8-0/+8
2024-06-14regmap-i2c: add missing MODULE_DESCRIPTION() macroJeff Johnson1-0/+1
2024-06-07regmap: Switch to use kmemdup_array()Mark Brown3-11/+10
2024-06-07regmap: kunit: Use array_size() and sizeof(*ptr) consistentlyAndy Shevchenko1-6/+6
2024-06-07regmap: maple: Switch to use kmemdup_array()Andy Shevchenko1-7/+6
2024-06-07regmap: cache: Switch to use kmemdup_array()Andy Shevchenko1-2/+2
2024-06-07regmap: cache: Use correct type of the rb_for_each() parameterAndy Shevchenko1-1/+1
2024-06-07regmap: Switch to use kmemdup_array()Andy Shevchenko1-1/+1
2024-06-05regmap: spi: Fix potential off-by-one when calculating reserved sizeAndy Shevchenko1-2/+1
2024-06-03regmap: Merge up fixesMark Brown1-1/+2
2024-05-31regmap: kunit: add missing MODULE_DESCRIPTION()Jeff Johnson1-0/+1
2024-05-27regmap: kunit: Fix memory leaks in gen_regmap() and gen_raw_regmap()Richard Fitzgerald1-27/+45
2024-05-27regmap-i2c: Subtract reg size from max_writeJim Wylder1-1/+2
2024-05-23Merge tag 'regmap-fix-v6.10-merge-window' of git://git.kernel.org/pub/scm/lin...Linus Torvalds1-1/+8
2024-05-22tracing/treewide: Remove second parameter of __assign_str()Steven Rostedt (Google)1-9/+9
2024-05-17regmap: kunit: Fix array overflow in stride() testRichard Fitzgerald1-1/+8
2024-04-15regmap: kunit: Fix an NULL vs IS_ERR() checkDan Carpenter1-3/+3
2024-04-10regmap: spi: Add missing MODULE_DESCRIPTION()Andy Shevchenko1-0/+1
2024-04-10regmap: Drop capitalisation in MODULE_DESCRIPTION()Andy Shevchenko4-4/+4
2024-04-09regmap: kunit: Add some test cases and a few smallMark Brown6-254/+803
2024-04-08regmap: kunit: Add test cases for regmap_read_bypassed()Richard Fitzgerald1-0/+131
2024-04-08regmap: kunit: Add cache-drop test with multiple cache blocksRichard Fitzgerald1-0/+103
2024-04-08regmap: kunit: Replace a kmalloc/kfree() pair with KUnit-managed allocRichard Fitzgerald1-3/+1
2024-04-08regmap: kunit: Use a KUnit action to call regmap_exit()Richard Fitzgerald1-55/+7
2024-04-08regmap: kunit: Add more cache-sync testsRichard Fitzgerald1-4/+122
2024-04-08regmap: kunit: Add more cache-drop testsRichard Fitzgerald1-0/+135
2024-04-08regmap: kunit: Run non-sparse cache tests at non-zero register addressesRichard Fitzgerald1-29/+57
2024-04-08regmap: kunit: Run sparse cache tests at non-zero register addressesRichard Fitzgerald1-22/+45
2024-04-08regmap: kunit: Introduce struct for test case parametersRichard Fitzgerald1-116/+95
2024-04-08regmap: kunit: Create a struct device for the regmapRichard Fitzgerald4-42/+87
2024-04-08regmap: kunit: Fix warnings of implicit casts to __le16 and __be16Richard Fitzgerald1-7/+7
2024-04-08regmap: Add regmap_read_bypassed()Richard Fitzgerald1-0/+37
2024-03-29regmap: maple: Fix uninitialized symbol 'ret' warningsRichard Fitzgerald1-2/+2
2024-03-27regmap: maple: Fix cache corruption in regcache_maple_drop()Richard Fitzgerald1-1/+1
2024-03-25regmap: maple: Remove second semicolonColin Ian King1-1/+1
2024-03-13Merge tag 'regmap-v6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/broo...Linus Torvalds5-6/+77
2024-02-26regmap: kunit: Add a test for ranges in combination with windowsMark Brown1-0/+66
2024-02-12regmap: kunit: Ensure that changed bytes are actually differentMark Brown1-16/+38
2024-02-07regmap: kunit: fix raw noinc write test wrappingBen Wolsieffer1-1/+2
2024-02-05regmap: rework ->max_register handlingJan Dakinevich4-6/+11
2024-01-09Merge tag 'regmap-v6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/broo...Linus Torvalds5-13/+85
2024-01-09Merge tag 'mm-stable-2024-01-08-15-31' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-4/+4
2024-01-08mm, treewide: rename MAX_ORDER to MAX_PAGE_ORDERKirill A. Shutemov1-4/+4
2023-12-20regmap: fix kcalloc() arguments orderDmitry Antipov2-4/+4
2023-12-04regmap: fix bogus error on regcache_sync successMatthias Reichl1-2/+1
2023-11-21regmap: fix regmap_noinc_write() descriptionHugo Villeneuve1-1/+1
2023-11-13regmap: kunit: add noinc write testBen Wolsieffer1-0/+60
2023-11-13regmap: ram: support noinc semanticsBen Wolsieffer2-8/+20
2023-11-07Merge tag 'regmap-fix-v6.7-merge-window' of git://git.kernel.org/pub/scm/linu...Linus Torvalds1-7/+9
2023-11-01regmap: prevent noinc writes from clobbering cacheBen Wolsieffer1-7/+9
2023-10-30regmap: Merge up fix for window/paging issueMark Brown3-2/+33
2023-10-26regmap: Ensure range selector registers are updated after cache syncMark Brown1-0/+30
2023-10-26regmap: kunit: Add test for cache sync interaction with rangesMark Brown1-2/+64
2023-10-26regmap: kunit: Fix marking of the range window as volatileMark Brown1-1/+1
2023-10-09regmap: fix NULL deref on lookupJohan Hovold1-1/+1
2023-09-22regmap: rbtree: Fix wrong register marked as in-cache when creating new nodeRichard Fitzgerald1-1/+2
2023-09-11regmap: debugfs: Fix a erroneous check after snprintf()Christophe JAILLET1-1/+1
2023-07-23regmap: Fix the type used for a bitmap pointerChristophe JAILLET1-1/+1
2023-07-23regmap: Merge up fixes from mainlineMark Brown7-13/+17
2023-07-21regmap: Remove dynamic allocation warnings for rbtree and mapleMark Brown1-9/+0
2023-07-21regmap: rbtree: Use alloc_flags for memory allocationsDan Carpenter1-5/+5
2023-07-20regmap: maple: Use alloc_flags for memory allocationsGuenter Roeck1-8/+8
2023-07-20regmap: Reject fast_io regmap configurations with RBTREE and MAPLE cachesGuenter Roeck1-0/+9
2023-07-20regmap: Disable locking for RBTREE and MAPLE unit testsGuenter Roeck1-0/+5
2023-07-19regcache: Push async I/O request down into the rbtree cacheMark Brown2-3/+4
2023-07-18regmap: Provide test for regcache_reg_present()Mark Brown1-0/+40
2023-07-18regmap: Let users check if a register is cachedMark Brown1-0/+23
2023-07-17regmap: Account for register length in SMBus I/O limitsMark Brown1-4/+4
2023-07-17regmap: Drop initial version of maximum transfer length fixesMark Brown2-5/+3
2023-07-13regmap: Provide user selectable option to enable regmapMark Brown1-1/+11
2023-07-12regmap-irq: Fix out-of-bounds access when allocating config buffersIsaac J. Manjarres1-1/+1
2023-07-09regmap: mmio: Remove unused 64-bit support codeAndy Shevchenko1-24/+0
2023-07-09regmap: cache: Revert "Add 64-bit mode support"Andy Shevchenko1-15/+0
2023-07-09regmap: Revert "add 64-bit mode support" and Co.Andy Shevchenko1-122/+0
2023-06-28Merge tag 'regmap-v6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broo...Linus Torvalds10-259/+808
2023-06-20regmap: spi-avmm: Fix regmap_bus max_raw_writeRuss Weight1-1/+1
2023-06-19regmap: Allow reads from write only registers with the flat cacheMark Brown1-3/+12
2023-06-16regmap: Drop early readability checkMark Brown1-3/+3
2023-06-14regmap: Add KUnit tests for read/write checkingMark Brown1-0/+115
2023-06-14regmap: Check for register readability before checking cache during readMark Brown1-3/+3
2023-06-14regmap: Add test to make sure we don't sync to read only registersMark Brown1-0/+42
2023-06-14regmap: Add a test case for write only registersMark Brown1-0/+32
2023-06-14regmap: Add test that writes to write only registers are preventedMark Brown1-0/+41
2023-06-13regmap: Add debugfs file for forcing field writesWaqar Hameed3-1/+15
2023-06-13regmap: regcache: Don't sync read-only registersTakashi Iwai1-0/+3
2023-06-12regmap: Provide basic test coverage for raw I/OMark Brown4-1/+469
2023-06-12regmap: Don't check for changes in regcache_set_val()Mark Brown2-7/+3
2023-06-12regmap: maple: Implement block sync for the maple tree cacheMark Brown3-8/+80
2023-06-12regmap: Merge up v6.4-rc6Mark Brown4-6/+22
2023-06-12regmap: Provide basic KUnit coverage for the raw register I/OMark Brown1-0/+327
2023-06-12regmap: Provide a ram backed regmap with raw supportMark Brown3-1/+142
2023-06-01regmap: Add missing cache_only checksCharles Keepax1-10/+16
2023-06-01regmap: regmap-irq: Move handle_post_irq to before pm_runtime_putCharles Keepax1-3/+3
2023-05-24regmap: Load register defaults in blocks rather than register by registerMark Brown1-6/+52
2023-05-24regmap: maple: Drop the RCU read lock while syncing registersMark Brown1-1/+4
2023-05-24regmap: sdw: check for invalid multi-register writes configSrinivas Kandagatla1-0/+4
2023-05-18regmap: Account for register length when chunkingJim Wylder1-2/+4
2023-05-12regmap-irq: Cleanups and remove unusedMark Brown1-175/+47
2023-05-12regmap: mmio: Allow passing an empty config->reg_strideMaxime Chevallier1-1/+1
2023-05-12regmap-irq: Drop backward compatibility for inverted mask/unmaskAidan MacDonald1-33/+11
2023-05-12regmap-irq: Minor adjustments to .handle_mask_sync()Aidan MacDonald1-34/+31
2023-05-12regmap-irq: Remove support for not_fixed_strideAidan MacDonald1-40/+3
2023-05-12regmap-irq: Remove type registersAidan MacDonald1-74/+8
2023-05-11regmap-irq: Remove virtual registersAidan MacDonald1-48/+0
2023-05-08regmap: REGMAP_KUNIT should not select REGMAPGeert Uytterhoeven1-3/+10
2023-05-08regmap-irq: Drop map from handle_mask_sync() parametersWilliam Breathitt Gray1-3/+2
2023-04-27Merge tag 'mm-stable-2023-04-27-15-30' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-4/+4
2023-04-07regmap: allow upshifting register addresses before performing operationsMaxime Chevallier2-3/+9
2023-04-05mm, treewide: redefine MAX_ORDER sanelyKirill A. Shutemov1-4/+4
2023-04-05Migrate the PCIe-IDIO-24 and WS16C48 GPIO driversMark Brown1-3/+5
2023-04-05regmap: Pass irq_drv_data as a parameter for set_type_config()William Breathitt Gray1-3/+5
2023-04-05regmap: Use mas_walk() instead of mas_find()Mark Brown1-2/+2
2023-04-04regmap: Fix double unlock in the maple cacheMark Brown1-2/+3
2023-04-03regmap: Add maple tree based register cacheMark Brown5-1/+284
2023-04-03regmap: Factor out single value register syncingMark Brown2-14/+27
2023-03-30regmap: Add some basic kunit testsMark Brown3-0/+744
2023-03-30regmap: Add RAM backed register mapMark Brown4-0/+108
2023-03-29regmap: Removed compressed cache supportMark Brown5-378/+0
2023-03-27regmap: Support paging for buses with reg_read()/reg_write()Mark Brown1-0/+18
2023-03-27regmap: Clarify error for unknown cache typesMark Brown1-1/+1
2023-03-27regmap: Handle sparse caches in the default syncMark Brown1-0/+2
2023-03-24Introduce a helper to translate register addressesMark Brown1-14/+13
2023-03-24regmap: add a helper to translate the register addressMaxime Chevallier1-14/+13
2023-03-13regmap: cache: Silence checkpatch warningAlexander Stein1-1/+1
2023-03-13regmap: cache: Return error in cache sync operations for REGCACHE_NONEAlexander Stein1-0/+6
2023-03-06regmap: Add support for devices with no interrupt readbackMark Brown1-7/+15
2023-03-05regmap-irq: Add no_status supportWilliam Breathitt Gray1-7/+15
2023-03-05regmap: sdw: Remove 8-bit value size restrictionLucas Tanure1-15/+24
2023-03-05regmap: sdw: Update misleading commentCharles Keepax1-1/+1
2023-02-17Merge remote-tracking branch 'regmap/for-6.3' into regmap-nextMark Brown2-41/+25
2023-02-17regmap-irq: Remove unused mask_invert flagAidan MacDonald1-14/+0
2023-02-17regmap-irq: Remove unused type_invert flagAidan MacDonald1-9/+2
2023-01-31regmap: apply reg_base and reg_downshift for single register opsDaniel Golle1-0/+6
2023-01-16regmap: Rework regmap_mdio_c45_{read|write} for new C45 API.Andrew Lunn1-18/+23
2022-12-12regmap: Merge fix for where we get the number of registers fromMark Brown1-4/+11
2022-12-09regmap-irq: Add handle_mask_sync() callbackWilliam Breathitt Gray1-13/+31
2022-11-25fsi: Add regmap and refactor sbefifoMark Brown3-1/+237
2022-11-25regmap: Add FSI bus supportEddie James3-1/+237
2022-11-22regmap: add regmap_might_sleep()Michael Walle1-0/+13
2022-11-09regmap-irq: Use the new num_config_regs property in regmap_add_irq_chip_fwnodeYassine Oudjana1-4/+11
2022-10-04Merge tag 'regmap-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/broo...Linus Torvalds4-103/+428
2022-09-22regmap: mmio: replace return 0 with break in switch statementColin Ian King1-1/+1
2022-09-07regmap: spi-avmm: Use swabXX_array() helpersAndy Shevchenko1-10/+4
2022-09-07regmap: mmio: Use swabXX_array() helpersAndy Shevchenko1-16/+4
2022-09-05regmap: trace: Remove unneeded blank linesAndy Shevchenko1-8/+0
2022-09-05regmap: trace: Remove explicit castingsAndy Shevchenko1-12/+5
2022-09-05regmap: trace: Remove useless check for NULL for bulk opsAndy Shevchenko1-2/+1
2022-09-01regmap: mmio: Fix rebase errorLinus Walleij1-3/+0