Blame view

sound/soc/soc-io.c 4.28 KB
5bef44f9b   Mark Brown   ASoC: Move regist...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /*
   * soc-io.c  --  ASoC register I/O helpers
   *
   * Copyright 2009-2011 Wolfson Microelectronics PLC.
   *
   * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
   *
   *  This program is free software; you can redistribute  it and/or modify it
   *  under  the terms of  the GNU General  Public License as published by the
   *  Free Software Foundation;  either version 2 of the  License, or (at your
   *  option) any later version.
   */
  
  #include <linux/i2c.h>
  #include <linux/spi/spi.h>
be3ea3b9e   Mark Brown   ASoC: Use new reg...
16
  #include <linux/regmap.h>
d81a6d717   Paul Gortmaker   sound: Add export...
17
  #include <linux/export.h>
5bef44f9b   Mark Brown   ASoC: Move regist...
18
19
20
  #include <sound/soc.h>
  
  #include <trace/events/asoc.h>
4835ff9ac   Mark Brown   ASoC: Support !CO...
21
  #ifdef CONFIG_REGMAP
be3ea3b9e   Mark Brown   ASoC: Use new reg...
22
23
  static int hw_write(struct snd_soc_codec *codec, unsigned int reg,
  		    unsigned int value)
5bef44f9b   Mark Brown   ASoC: Move regist...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  {
  	int ret;
  
  	if (!snd_soc_codec_volatile_register(codec, reg) &&
  	    reg < codec->driver->reg_cache_size &&
  	    !codec->cache_bypass) {
  		ret = snd_soc_cache_write(codec, reg, value);
  		if (ret < 0)
  			return -1;
  	}
  
  	if (codec->cache_only) {
  		codec->cache_sync = 1;
  		return 0;
  	}
be3ea3b9e   Mark Brown   ASoC: Use new reg...
39
  	return regmap_write(codec->control_data, reg, value);
5bef44f9b   Mark Brown   ASoC: Move regist...
40
41
42
43
44
45
46
47
48
49
50
51
  }
  
  static unsigned int hw_read(struct snd_soc_codec *codec, unsigned int reg)
  {
  	int ret;
  	unsigned int val;
  
  	if (reg >= codec->driver->reg_cache_size ||
  	    snd_soc_codec_volatile_register(codec, reg) ||
  	    codec->cache_bypass) {
  		if (codec->cache_only)
  			return -1;
be3ea3b9e   Mark Brown   ASoC: Use new reg...
52
53
54
55
  		ret = regmap_read(codec->control_data, reg, &val);
  		if (ret == 0)
  			return val;
  		else
3ebb5c9b1   Mark Brown   ASoC: Squash erro...
56
  			return -1;
5bef44f9b   Mark Brown   ASoC: Move regist...
57
58
59
60
61
62
63
  	}
  
  	ret = snd_soc_cache_read(codec, reg, &val);
  	if (ret < 0)
  		return -1;
  	return val;
  }
5bef44f9b   Mark Brown   ASoC: Move regist...
64
  /* Primitive bulk write support for soc-cache.  The data pointed to by
be3ea3b9e   Mark Brown   ASoC: Use new reg...
65
66
67
68
69
70
   * `data' needs to already be in the form the hardware expects.  Any
   * data written through this function will not go through the cache as
   * it only handles writing to volatile or out of bounds registers.
   *
   * This is currently only supported for devices using the regmap API
   * wrappers.
5bef44f9b   Mark Brown   ASoC: Move regist...
71
   */
be3ea3b9e   Mark Brown   ASoC: Use new reg...
72
73
  static int snd_soc_hw_bulk_write_raw(struct snd_soc_codec *codec,
  				     unsigned int reg,
5bef44f9b   Mark Brown   ASoC: Move regist...
74
75
  				     const void *data, size_t len)
  {
5bef44f9b   Mark Brown   ASoC: Move regist...
76
77
78
79
80
81
82
83
84
  	/* To ensure that we don't get out of sync with the cache, check
  	 * whether the base register is volatile or if we've directly asked
  	 * to bypass the cache.  Out of bounds registers are considered
  	 * volatile.
  	 */
  	if (!codec->cache_bypass
  	    && !snd_soc_codec_volatile_register(codec, reg)
  	    && reg < codec->driver->reg_cache_size)
  		return -EINVAL;
be3ea3b9e   Mark Brown   ASoC: Use new reg...
85
  	return regmap_raw_write(codec->control_data, reg, data, len);
5bef44f9b   Mark Brown   ASoC: Move regist...
86
  }
5bef44f9b   Mark Brown   ASoC: Move regist...
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  /**
   * snd_soc_codec_set_cache_io: Set up standard I/O functions.
   *
   * @codec: CODEC to configure.
   * @addr_bits: Number of bits of register address data.
   * @data_bits: Number of bits of data per register.
   * @control: Control bus used.
   *
   * Register formats are frequently shared between many I2C and SPI
   * devices.  In order to promote code reuse the ASoC core provides
   * some standard implementations of CODEC read and write operations
   * which can be set up using this function.
   *
   * The caller is responsible for allocating and initialising the
   * actual cache.
   *
   * Note that at present this code cannot be used by CODECs with
   * volatile registers.
   */
  int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
  			       int addr_bits, int data_bits,
  			       enum snd_soc_control_type control)
  {
be3ea3b9e   Mark Brown   ASoC: Use new reg...
110
  	struct regmap_config config;
5bef44f9b   Mark Brown   ASoC: Move regist...
111

be3ea3b9e   Mark Brown   ASoC: Use new reg...
112
113
  	memset(&config, 0, sizeof(config));
  	codec->write = hw_write;
5bef44f9b   Mark Brown   ASoC: Move regist...
114
115
  	codec->read = hw_read;
  	codec->bulk_write_raw = snd_soc_hw_bulk_write_raw;
be3ea3b9e   Mark Brown   ASoC: Use new reg...
116
117
  	config.reg_bits = addr_bits;
  	config.val_bits = data_bits;
5bef44f9b   Mark Brown   ASoC: Move regist...
118
  	switch (control) {
81bca7624   Stephen Warren   ASoC: soc-io: Fix...
119
  #if defined(CONFIG_REGMAP_I2C) || defined(CONFIG_REGMAP_I2C_MODULE)
5bef44f9b   Mark Brown   ASoC: Move regist...
120
  	case SND_SOC_I2C:
be3ea3b9e   Mark Brown   ASoC: Use new reg...
121
122
  		codec->control_data = regmap_init_i2c(to_i2c_client(codec->dev),
  						      &config);
5bef44f9b   Mark Brown   ASoC: Move regist...
123
  		break;
f024d9a08   Axel Lin   ASoC: soc-io: Add...
124
  #endif
5bef44f9b   Mark Brown   ASoC: Move regist...
125

81bca7624   Stephen Warren   ASoC: soc-io: Fix...
126
  #if defined(CONFIG_REGMAP_SPI) || defined(CONFIG_REGMAP_SPI_MODULE)
5bef44f9b   Mark Brown   ASoC: Move regist...
127
  	case SND_SOC_SPI:
be3ea3b9e   Mark Brown   ASoC: Use new reg...
128
129
  		codec->control_data = regmap_init_spi(to_spi_device(codec->dev),
  						      &config);
5bef44f9b   Mark Brown   ASoC: Move regist...
130
  		break;
f024d9a08   Axel Lin   ASoC: soc-io: Add...
131
  #endif
be3ea3b9e   Mark Brown   ASoC: Use new reg...
132

0671da189   Mark Brown   ASoC: Add regmap ...
133
134
135
  	case SND_SOC_REGMAP:
  		/* Device has made its own regmap arrangements */
  		break;
be3ea3b9e   Mark Brown   ASoC: Use new reg...
136
137
  	default:
  		return -EINVAL;
5bef44f9b   Mark Brown   ASoC: Move regist...
138
  	}
be3ea3b9e   Mark Brown   ASoC: Use new reg...
139
140
  	if (IS_ERR(codec->control_data))
  		return PTR_ERR(codec->control_data);
5bef44f9b   Mark Brown   ASoC: Move regist...
141
142
143
  	return 0;
  }
  EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io);
4835ff9ac   Mark Brown   ASoC: Support !CO...
144
145
146
147
148
149
150
151
152
  #else
  int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
  			       int addr_bits, int data_bits,
  			       enum snd_soc_control_type control)
  {
  	return -ENOTSUPP;
  }
  EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io);
  #endif