-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'regmap-v4.16' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/broonie/regmap Pull regmap updates from Mark Brown: "A very busy release for regmap, all fairly specialist stuff but useful: - Support for disabling locking from Bartosz Golaszewski, allowing users that handle their own locking to save some overhead. - Support for hwspinlocks in syscons in MFD from Baolin Wang, this is going through the regmap tree since the first users turned up some some cases that needed interface tweaks with 0 being used as a syscon identifier. - Support for devices with no read or write flag from Andrew F. Davis. - Basic support for devices on SoundWire buses from Vinod Koul" * tag 'regmap-v4.16' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap: mfd: syscon: Add hardware spinlock support regmap: Allow empty read/write_flag_mask regcache: flat: Un-inline index lookup from cache access regmap: Add SoundWire bus support regmap: Add one flag to indicate if a hwlock should be used regmap: debugfs: document why we don't create the debugfs entries regmap: debugfs: emit a debug message when locking is disabled regmap: use proper part of work_buf for storing val regmap: potentially duplicate the name string stored in regmap regmap: Disable debugfs when locking is disabled regmap: rename regmap_lock_unlock_empty() to regmap_lock_unlock_none() regmap: allow to disable all locking mechanisms regmap: Remove the redundant config to select hwspinlock
- Loading branch information
Showing
10 changed files
with
229 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
// Copyright(c) 2015-17 Intel Corporation. | ||
|
||
#include <linux/device.h> | ||
#include <linux/mod_devicetable.h> | ||
#include <linux/module.h> | ||
#include <linux/soundwire/sdw.h> | ||
#include "internal.h" | ||
|
||
static int regmap_sdw_write(void *context, unsigned int reg, unsigned int val) | ||
{ | ||
struct device *dev = context; | ||
struct sdw_slave *slave = dev_to_sdw_dev(dev); | ||
|
||
return sdw_write(slave, reg, val); | ||
} | ||
|
||
static int regmap_sdw_read(void *context, unsigned int reg, unsigned int *val) | ||
{ | ||
struct device *dev = context; | ||
struct sdw_slave *slave = dev_to_sdw_dev(dev); | ||
int read; | ||
|
||
read = sdw_read(slave, reg); | ||
if (read < 0) | ||
return read; | ||
|
||
*val = read; | ||
return 0; | ||
} | ||
|
||
static struct regmap_bus regmap_sdw = { | ||
.reg_read = regmap_sdw_read, | ||
.reg_write = regmap_sdw_write, | ||
.reg_format_endian_default = REGMAP_ENDIAN_LITTLE, | ||
.val_format_endian_default = REGMAP_ENDIAN_LITTLE, | ||
}; | ||
|
||
static int regmap_sdw_config_check(const struct regmap_config *config) | ||
{ | ||
/* All register are 8-bits wide as per MIPI Soundwire 1.0 Spec */ | ||
if (config->val_bits != 8) | ||
return -ENOTSUPP; | ||
|
||
/* Registers are 32 bits wide */ | ||
if (config->reg_bits != 32) | ||
return -ENOTSUPP; | ||
|
||
if (config->pad_bits != 0) | ||
return -ENOTSUPP; | ||
|
||
return 0; | ||
} | ||
|
||
struct regmap *__regmap_init_sdw(struct sdw_slave *sdw, | ||
const struct regmap_config *config, | ||
struct lock_class_key *lock_key, | ||
const char *lock_name) | ||
{ | ||
int ret; | ||
|
||
ret = regmap_sdw_config_check(config); | ||
if (ret) | ||
return ERR_PTR(ret); | ||
|
||
return __regmap_init(&sdw->dev, ®map_sdw, | ||
&sdw->dev, config, lock_key, lock_name); | ||
} | ||
EXPORT_SYMBOL_GPL(__regmap_init_sdw); | ||
|
||
struct regmap *__devm_regmap_init_sdw(struct sdw_slave *sdw, | ||
const struct regmap_config *config, | ||
struct lock_class_key *lock_key, | ||
const char *lock_name) | ||
{ | ||
int ret; | ||
|
||
ret = regmap_sdw_config_check(config); | ||
if (ret) | ||
return ERR_PTR(ret); | ||
|
||
return __devm_regmap_init(&sdw->dev, ®map_sdw, | ||
&sdw->dev, config, lock_key, lock_name); | ||
} | ||
EXPORT_SYMBOL_GPL(__devm_regmap_init_sdw); | ||
|
||
MODULE_DESCRIPTION("Regmap SoundWire Module"); | ||
MODULE_LICENSE("GPL v2"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.