2 * tegra30_ahub.c - Tegra30 AHUB driver
4 * Copyright (c) 2011,2012, NVIDIA CORPORATION. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include <linux/clk.h>
20 #include <linux/device.h>
22 #include <linux/module.h>
23 #include <linux/of_platform.h>
24 #include <linux/platform_device.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/regmap.h>
27 #include <linux/reset.h>
28 #include <linux/slab.h>
29 #include <sound/soc.h>
30 #include "tegra30_ahub.h"
32 #define DRV_NAME "tegra30-ahub"
34 static struct tegra30_ahub
*ahub
;
36 static inline void tegra30_apbif_write(u32 reg
, u32 val
)
38 regmap_write(ahub
->regmap_apbif
, reg
, val
);
41 static inline u32
tegra30_apbif_read(u32 reg
)
44 regmap_read(ahub
->regmap_apbif
, reg
, &val
);
48 static inline void tegra30_audio_write(u32 reg
, u32 val
)
50 regmap_write(ahub
->regmap_ahub
, reg
, val
);
53 static int tegra30_ahub_runtime_suspend(struct device
*dev
)
55 regcache_cache_only(ahub
->regmap_apbif
, true);
56 regcache_cache_only(ahub
->regmap_ahub
, true);
58 clk_disable_unprepare(ahub
->clk_apbif
);
59 clk_disable_unprepare(ahub
->clk_d_audio
);
65 * clk_apbif isn't required for an I2S<->I2S configuration where no PCM data
66 * is read from or sent to memory. However, that's not something the rest of
67 * the driver supports right now, so we'll just treat the two clocks as one
70 * These functions should not be a plain ref-count. Instead, each active stream
71 * contributes some requirement to the minimum clock rate, so starting or
72 * stopping streams should dynamically adjust the clock as required. However,
73 * this is not yet implemented.
75 static int tegra30_ahub_runtime_resume(struct device
*dev
)
79 ret
= clk_prepare_enable(ahub
->clk_d_audio
);
81 dev_err(dev
, "clk_enable d_audio failed: %d\n", ret
);
84 ret
= clk_prepare_enable(ahub
->clk_apbif
);
86 dev_err(dev
, "clk_enable apbif failed: %d\n", ret
);
87 clk_disable(ahub
->clk_d_audio
);
91 regcache_cache_only(ahub
->regmap_apbif
, false);
92 regcache_cache_only(ahub
->regmap_ahub
, false);
97 int tegra30_ahub_allocate_rx_fifo(enum tegra30_ahub_rxcif
*rxcif
,
98 char *dmachan
, int dmachan_len
,
103 struct tegra30_ahub_cif_conf cif_conf
;
105 channel
= find_first_zero_bit(ahub
->rx_usage
,
106 TEGRA30_AHUB_CHANNEL_CTRL_COUNT
);
107 if (channel
>= TEGRA30_AHUB_CHANNEL_CTRL_COUNT
)
110 __set_bit(channel
, ahub
->rx_usage
);
112 *rxcif
= TEGRA30_AHUB_RXCIF_APBIF_RX0
+ channel
;
113 snprintf(dmachan
, dmachan_len
, "rx%d", channel
);
114 *fiforeg
= ahub
->apbif_addr
+ TEGRA30_AHUB_CHANNEL_RXFIFO
+
115 (channel
* TEGRA30_AHUB_CHANNEL_RXFIFO_STRIDE
);
117 pm_runtime_get_sync(ahub
->dev
);
119 reg
= TEGRA30_AHUB_CHANNEL_CTRL
+
120 (channel
* TEGRA30_AHUB_CHANNEL_CTRL_STRIDE
);
121 val
= tegra30_apbif_read(reg
);
122 val
&= ~(TEGRA30_AHUB_CHANNEL_CTRL_RX_THRESHOLD_MASK
|
123 TEGRA30_AHUB_CHANNEL_CTRL_RX_PACK_MASK
);
124 val
|= (7 << TEGRA30_AHUB_CHANNEL_CTRL_RX_THRESHOLD_SHIFT
) |
125 TEGRA30_AHUB_CHANNEL_CTRL_RX_PACK_EN
|
126 TEGRA30_AHUB_CHANNEL_CTRL_RX_PACK_16
;
127 tegra30_apbif_write(reg
, val
);
129 cif_conf
.threshold
= 0;
130 cif_conf
.audio_channels
= 2;
131 cif_conf
.client_channels
= 2;
132 cif_conf
.audio_bits
= TEGRA30_AUDIOCIF_BITS_16
;
133 cif_conf
.client_bits
= TEGRA30_AUDIOCIF_BITS_16
;
135 cif_conf
.stereo_conv
= 0;
136 cif_conf
.replicate
= 0;
137 cif_conf
.direction
= TEGRA30_AUDIOCIF_DIRECTION_RX
;
138 cif_conf
.truncate
= 0;
139 cif_conf
.mono_conv
= 0;
141 reg
= TEGRA30_AHUB_CIF_RX_CTRL
+
142 (channel
* TEGRA30_AHUB_CIF_RX_CTRL_STRIDE
);
143 ahub
->soc_data
->set_audio_cif(ahub
->regmap_apbif
, reg
, &cif_conf
);
145 pm_runtime_put(ahub
->dev
);
149 EXPORT_SYMBOL_GPL(tegra30_ahub_allocate_rx_fifo
);
151 int tegra30_ahub_enable_rx_fifo(enum tegra30_ahub_rxcif rxcif
)
153 int channel
= rxcif
- TEGRA30_AHUB_RXCIF_APBIF_RX0
;
156 pm_runtime_get_sync(ahub
->dev
);
158 reg
= TEGRA30_AHUB_CHANNEL_CTRL
+
159 (channel
* TEGRA30_AHUB_CHANNEL_CTRL_STRIDE
);
160 val
= tegra30_apbif_read(reg
);
161 val
|= TEGRA30_AHUB_CHANNEL_CTRL_RX_EN
;
162 tegra30_apbif_write(reg
, val
);
164 pm_runtime_put(ahub
->dev
);
168 EXPORT_SYMBOL_GPL(tegra30_ahub_enable_rx_fifo
);
170 int tegra30_ahub_disable_rx_fifo(enum tegra30_ahub_rxcif rxcif
)
172 int channel
= rxcif
- TEGRA30_AHUB_RXCIF_APBIF_RX0
;
175 pm_runtime_get_sync(ahub
->dev
);
177 reg
= TEGRA30_AHUB_CHANNEL_CTRL
+
178 (channel
* TEGRA30_AHUB_CHANNEL_CTRL_STRIDE
);
179 val
= tegra30_apbif_read(reg
);
180 val
&= ~TEGRA30_AHUB_CHANNEL_CTRL_RX_EN
;
181 tegra30_apbif_write(reg
, val
);
183 pm_runtime_put(ahub
->dev
);
187 EXPORT_SYMBOL_GPL(tegra30_ahub_disable_rx_fifo
);
189 int tegra30_ahub_free_rx_fifo(enum tegra30_ahub_rxcif rxcif
)
191 int channel
= rxcif
- TEGRA30_AHUB_RXCIF_APBIF_RX0
;
193 __clear_bit(channel
, ahub
->rx_usage
);
197 EXPORT_SYMBOL_GPL(tegra30_ahub_free_rx_fifo
);
199 int tegra30_ahub_allocate_tx_fifo(enum tegra30_ahub_txcif
*txcif
,
200 char *dmachan
, int dmachan_len
,
205 struct tegra30_ahub_cif_conf cif_conf
;
207 channel
= find_first_zero_bit(ahub
->tx_usage
,
208 TEGRA30_AHUB_CHANNEL_CTRL_COUNT
);
209 if (channel
>= TEGRA30_AHUB_CHANNEL_CTRL_COUNT
)
212 __set_bit(channel
, ahub
->tx_usage
);
214 *txcif
= TEGRA30_AHUB_TXCIF_APBIF_TX0
+ channel
;
215 snprintf(dmachan
, dmachan_len
, "tx%d", channel
);
216 *fiforeg
= ahub
->apbif_addr
+ TEGRA30_AHUB_CHANNEL_TXFIFO
+
217 (channel
* TEGRA30_AHUB_CHANNEL_TXFIFO_STRIDE
);
219 pm_runtime_get_sync(ahub
->dev
);
221 reg
= TEGRA30_AHUB_CHANNEL_CTRL
+
222 (channel
* TEGRA30_AHUB_CHANNEL_CTRL_STRIDE
);
223 val
= tegra30_apbif_read(reg
);
224 val
&= ~(TEGRA30_AHUB_CHANNEL_CTRL_TX_THRESHOLD_MASK
|
225 TEGRA30_AHUB_CHANNEL_CTRL_TX_PACK_MASK
);
226 val
|= (7 << TEGRA30_AHUB_CHANNEL_CTRL_TX_THRESHOLD_SHIFT
) |
227 TEGRA30_AHUB_CHANNEL_CTRL_TX_PACK_EN
|
228 TEGRA30_AHUB_CHANNEL_CTRL_TX_PACK_16
;
229 tegra30_apbif_write(reg
, val
);
231 cif_conf
.threshold
= 0;
232 cif_conf
.audio_channels
= 2;
233 cif_conf
.client_channels
= 2;
234 cif_conf
.audio_bits
= TEGRA30_AUDIOCIF_BITS_16
;
235 cif_conf
.client_bits
= TEGRA30_AUDIOCIF_BITS_16
;
237 cif_conf
.stereo_conv
= 0;
238 cif_conf
.replicate
= 0;
239 cif_conf
.direction
= TEGRA30_AUDIOCIF_DIRECTION_TX
;
240 cif_conf
.truncate
= 0;
241 cif_conf
.mono_conv
= 0;
243 reg
= TEGRA30_AHUB_CIF_TX_CTRL
+
244 (channel
* TEGRA30_AHUB_CIF_TX_CTRL_STRIDE
);
245 ahub
->soc_data
->set_audio_cif(ahub
->regmap_apbif
, reg
, &cif_conf
);
247 pm_runtime_put(ahub
->dev
);
251 EXPORT_SYMBOL_GPL(tegra30_ahub_allocate_tx_fifo
);
253 int tegra30_ahub_enable_tx_fifo(enum tegra30_ahub_txcif txcif
)
255 int channel
= txcif
- TEGRA30_AHUB_TXCIF_APBIF_TX0
;
258 pm_runtime_get_sync(ahub
->dev
);
260 reg
= TEGRA30_AHUB_CHANNEL_CTRL
+
261 (channel
* TEGRA30_AHUB_CHANNEL_CTRL_STRIDE
);
262 val
= tegra30_apbif_read(reg
);
263 val
|= TEGRA30_AHUB_CHANNEL_CTRL_TX_EN
;
264 tegra30_apbif_write(reg
, val
);
266 pm_runtime_put(ahub
->dev
);
270 EXPORT_SYMBOL_GPL(tegra30_ahub_enable_tx_fifo
);
272 int tegra30_ahub_disable_tx_fifo(enum tegra30_ahub_txcif txcif
)
274 int channel
= txcif
- TEGRA30_AHUB_TXCIF_APBIF_TX0
;
277 pm_runtime_get_sync(ahub
->dev
);
279 reg
= TEGRA30_AHUB_CHANNEL_CTRL
+
280 (channel
* TEGRA30_AHUB_CHANNEL_CTRL_STRIDE
);
281 val
= tegra30_apbif_read(reg
);
282 val
&= ~TEGRA30_AHUB_CHANNEL_CTRL_TX_EN
;
283 tegra30_apbif_write(reg
, val
);
285 pm_runtime_put(ahub
->dev
);
289 EXPORT_SYMBOL_GPL(tegra30_ahub_disable_tx_fifo
);
291 int tegra30_ahub_free_tx_fifo(enum tegra30_ahub_txcif txcif
)
293 int channel
= txcif
- TEGRA30_AHUB_TXCIF_APBIF_TX0
;
295 __clear_bit(channel
, ahub
->tx_usage
);
299 EXPORT_SYMBOL_GPL(tegra30_ahub_free_tx_fifo
);
301 int tegra30_ahub_set_rx_cif_source(enum tegra30_ahub_rxcif rxcif
,
302 enum tegra30_ahub_txcif txcif
)
304 int channel
= rxcif
- TEGRA30_AHUB_RXCIF_APBIF_RX0
;
307 pm_runtime_get_sync(ahub
->dev
);
309 reg
= TEGRA30_AHUB_AUDIO_RX
+
310 (channel
* TEGRA30_AHUB_AUDIO_RX_STRIDE
);
311 tegra30_audio_write(reg
, 1 << txcif
);
313 pm_runtime_put(ahub
->dev
);
317 EXPORT_SYMBOL_GPL(tegra30_ahub_set_rx_cif_source
);
319 int tegra30_ahub_unset_rx_cif_source(enum tegra30_ahub_rxcif rxcif
)
321 int channel
= rxcif
- TEGRA30_AHUB_RXCIF_APBIF_RX0
;
324 pm_runtime_get_sync(ahub
->dev
);
326 reg
= TEGRA30_AHUB_AUDIO_RX
+
327 (channel
* TEGRA30_AHUB_AUDIO_RX_STRIDE
);
328 tegra30_audio_write(reg
, 0);
330 pm_runtime_put(ahub
->dev
);
334 EXPORT_SYMBOL_GPL(tegra30_ahub_unset_rx_cif_source
);
336 #define MOD_LIST_MASK_TEGRA30 BIT(0)
337 #define MOD_LIST_MASK_TEGRA114 BIT(1)
338 #define MOD_LIST_MASK_TEGRA124 BIT(2)
340 #define MOD_LIST_MASK_TEGRA30_OR_LATER \
341 (MOD_LIST_MASK_TEGRA30 | MOD_LIST_MASK_TEGRA114 | \
342 MOD_LIST_MASK_TEGRA124)
343 #define MOD_LIST_MASK_TEGRA114_OR_LATER \
344 (MOD_LIST_MASK_TEGRA114 | MOD_LIST_MASK_TEGRA124)
346 static const struct {
347 const char *rst_name
;
349 } configlink_mods
[] = {
350 { "i2s0", MOD_LIST_MASK_TEGRA30_OR_LATER
},
351 { "i2s1", MOD_LIST_MASK_TEGRA30_OR_LATER
},
352 { "i2s2", MOD_LIST_MASK_TEGRA30_OR_LATER
},
353 { "i2s3", MOD_LIST_MASK_TEGRA30_OR_LATER
},
354 { "i2s4", MOD_LIST_MASK_TEGRA30_OR_LATER
},
355 { "dam0", MOD_LIST_MASK_TEGRA30_OR_LATER
},
356 { "dam1", MOD_LIST_MASK_TEGRA30_OR_LATER
},
357 { "dam2", MOD_LIST_MASK_TEGRA30_OR_LATER
},
358 { "spdif", MOD_LIST_MASK_TEGRA30_OR_LATER
},
359 { "amx", MOD_LIST_MASK_TEGRA114_OR_LATER
},
360 { "adx", MOD_LIST_MASK_TEGRA114_OR_LATER
},
361 { "amx1", MOD_LIST_MASK_TEGRA124
},
362 { "adx1", MOD_LIST_MASK_TEGRA124
},
363 { "afc0", MOD_LIST_MASK_TEGRA124
},
364 { "afc1", MOD_LIST_MASK_TEGRA124
},
365 { "afc2", MOD_LIST_MASK_TEGRA124
},
366 { "afc3", MOD_LIST_MASK_TEGRA124
},
367 { "afc4", MOD_LIST_MASK_TEGRA124
},
368 { "afc5", MOD_LIST_MASK_TEGRA124
},
371 #define LAST_REG(name) \
372 (TEGRA30_AHUB_##name + \
373 (TEGRA30_AHUB_##name##_STRIDE * TEGRA30_AHUB_##name##_COUNT) - 4)
375 #define REG_IN_ARRAY(reg, name) \
376 ((reg >= TEGRA30_AHUB_##name) && \
377 (reg <= LAST_REG(name) && \
378 (!((reg - TEGRA30_AHUB_##name) % TEGRA30_AHUB_##name##_STRIDE))))
380 static bool tegra30_ahub_apbif_wr_rd_reg(struct device
*dev
, unsigned int reg
)
383 case TEGRA30_AHUB_CONFIG_LINK_CTRL
:
384 case TEGRA30_AHUB_MISC_CTRL
:
385 case TEGRA30_AHUB_APBDMA_LIVE_STATUS
:
386 case TEGRA30_AHUB_I2S_LIVE_STATUS
:
387 case TEGRA30_AHUB_SPDIF_LIVE_STATUS
:
388 case TEGRA30_AHUB_I2S_INT_MASK
:
389 case TEGRA30_AHUB_DAM_INT_MASK
:
390 case TEGRA30_AHUB_SPDIF_INT_MASK
:
391 case TEGRA30_AHUB_APBIF_INT_MASK
:
392 case TEGRA30_AHUB_I2S_INT_STATUS
:
393 case TEGRA30_AHUB_DAM_INT_STATUS
:
394 case TEGRA30_AHUB_SPDIF_INT_STATUS
:
395 case TEGRA30_AHUB_APBIF_INT_STATUS
:
396 case TEGRA30_AHUB_I2S_INT_SOURCE
:
397 case TEGRA30_AHUB_DAM_INT_SOURCE
:
398 case TEGRA30_AHUB_SPDIF_INT_SOURCE
:
399 case TEGRA30_AHUB_APBIF_INT_SOURCE
:
400 case TEGRA30_AHUB_I2S_INT_SET
:
401 case TEGRA30_AHUB_DAM_INT_SET
:
402 case TEGRA30_AHUB_SPDIF_INT_SET
:
403 case TEGRA30_AHUB_APBIF_INT_SET
:
409 if (REG_IN_ARRAY(reg
, CHANNEL_CTRL
) ||
410 REG_IN_ARRAY(reg
, CHANNEL_CLEAR
) ||
411 REG_IN_ARRAY(reg
, CHANNEL_STATUS
) ||
412 REG_IN_ARRAY(reg
, CHANNEL_TXFIFO
) ||
413 REG_IN_ARRAY(reg
, CHANNEL_RXFIFO
) ||
414 REG_IN_ARRAY(reg
, CIF_TX_CTRL
) ||
415 REG_IN_ARRAY(reg
, CIF_RX_CTRL
) ||
416 REG_IN_ARRAY(reg
, DAM_LIVE_STATUS
))
422 static bool tegra30_ahub_apbif_volatile_reg(struct device
*dev
,
426 case TEGRA30_AHUB_CONFIG_LINK_CTRL
:
427 case TEGRA30_AHUB_MISC_CTRL
:
428 case TEGRA30_AHUB_APBDMA_LIVE_STATUS
:
429 case TEGRA30_AHUB_I2S_LIVE_STATUS
:
430 case TEGRA30_AHUB_SPDIF_LIVE_STATUS
:
431 case TEGRA30_AHUB_I2S_INT_STATUS
:
432 case TEGRA30_AHUB_DAM_INT_STATUS
:
433 case TEGRA30_AHUB_SPDIF_INT_STATUS
:
434 case TEGRA30_AHUB_APBIF_INT_STATUS
:
435 case TEGRA30_AHUB_I2S_INT_SET
:
436 case TEGRA30_AHUB_DAM_INT_SET
:
437 case TEGRA30_AHUB_SPDIF_INT_SET
:
438 case TEGRA30_AHUB_APBIF_INT_SET
:
444 if (REG_IN_ARRAY(reg
, CHANNEL_CLEAR
) ||
445 REG_IN_ARRAY(reg
, CHANNEL_STATUS
) ||
446 REG_IN_ARRAY(reg
, CHANNEL_TXFIFO
) ||
447 REG_IN_ARRAY(reg
, CHANNEL_RXFIFO
) ||
448 REG_IN_ARRAY(reg
, DAM_LIVE_STATUS
))
454 static bool tegra30_ahub_apbif_precious_reg(struct device
*dev
,
457 if (REG_IN_ARRAY(reg
, CHANNEL_TXFIFO
) ||
458 REG_IN_ARRAY(reg
, CHANNEL_RXFIFO
))
464 static const struct regmap_config tegra30_ahub_apbif_regmap_config
= {
469 .max_register
= TEGRA30_AHUB_APBIF_INT_SET
,
470 .writeable_reg
= tegra30_ahub_apbif_wr_rd_reg
,
471 .readable_reg
= tegra30_ahub_apbif_wr_rd_reg
,
472 .volatile_reg
= tegra30_ahub_apbif_volatile_reg
,
473 .precious_reg
= tegra30_ahub_apbif_precious_reg
,
474 .cache_type
= REGCACHE_FLAT
,
477 static bool tegra30_ahub_ahub_wr_rd_reg(struct device
*dev
, unsigned int reg
)
479 if (REG_IN_ARRAY(reg
, AUDIO_RX
))
485 static const struct regmap_config tegra30_ahub_ahub_regmap_config
= {
490 .max_register
= LAST_REG(AUDIO_RX
),
491 .writeable_reg
= tegra30_ahub_ahub_wr_rd_reg
,
492 .readable_reg
= tegra30_ahub_ahub_wr_rd_reg
,
493 .cache_type
= REGCACHE_FLAT
,
496 static struct tegra30_ahub_soc_data soc_data_tegra30
= {
497 .mod_list_mask
= MOD_LIST_MASK_TEGRA30
,
498 .set_audio_cif
= tegra30_ahub_set_cif
,
501 static struct tegra30_ahub_soc_data soc_data_tegra114
= {
502 .mod_list_mask
= MOD_LIST_MASK_TEGRA114
,
503 .set_audio_cif
= tegra30_ahub_set_cif
,
506 static struct tegra30_ahub_soc_data soc_data_tegra124
= {
507 .mod_list_mask
= MOD_LIST_MASK_TEGRA124
,
508 .set_audio_cif
= tegra124_ahub_set_cif
,
511 static const struct of_device_id tegra30_ahub_of_match
[] = {
512 { .compatible
= "nvidia,tegra124-ahub", .data
= &soc_data_tegra124
},
513 { .compatible
= "nvidia,tegra114-ahub", .data
= &soc_data_tegra114
},
514 { .compatible
= "nvidia,tegra30-ahub", .data
= &soc_data_tegra30
},
518 static int tegra30_ahub_probe(struct platform_device
*pdev
)
520 const struct of_device_id
*match
;
521 const struct tegra30_ahub_soc_data
*soc_data
;
522 struct reset_control
*rst
;
524 struct resource
*res0
, *res1
, *region
;
525 void __iomem
*regs_apbif
, *regs_ahub
;
531 match
= of_match_device(tegra30_ahub_of_match
, &pdev
->dev
);
534 soc_data
= match
->data
;
537 * The AHUB hosts a register bus: the "configlink". For this to
538 * operate correctly, all devices on this bus must be out of reset.
541 for (i
= 0; i
< ARRAY_SIZE(configlink_mods
); i
++) {
542 if (!(configlink_mods
[i
].mod_list_mask
&
543 soc_data
->mod_list_mask
))
546 rst
= reset_control_get(&pdev
->dev
,
547 configlink_mods
[i
].rst_name
);
549 dev_err(&pdev
->dev
, "Can't get reset %s\n",
550 configlink_mods
[i
].rst_name
);
555 ret
= reset_control_deassert(rst
);
556 reset_control_put(rst
);
561 ahub
= devm_kzalloc(&pdev
->dev
, sizeof(struct tegra30_ahub
),
564 dev_err(&pdev
->dev
, "Can't allocate tegra30_ahub\n");
568 dev_set_drvdata(&pdev
->dev
, ahub
);
570 ahub
->soc_data
= soc_data
;
571 ahub
->dev
= &pdev
->dev
;
573 ahub
->clk_d_audio
= clk_get(&pdev
->dev
, "d_audio");
574 if (IS_ERR(ahub
->clk_d_audio
)) {
575 dev_err(&pdev
->dev
, "Can't retrieve ahub d_audio clock\n");
576 ret
= PTR_ERR(ahub
->clk_d_audio
);
580 ahub
->clk_apbif
= clk_get(&pdev
->dev
, "apbif");
581 if (IS_ERR(ahub
->clk_apbif
)) {
582 dev_err(&pdev
->dev
, "Can't retrieve ahub apbif clock\n");
583 ret
= PTR_ERR(ahub
->clk_apbif
);
584 goto err_clk_put_d_audio
;
587 res0
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
589 dev_err(&pdev
->dev
, "No apbif memory resource\n");
591 goto err_clk_put_apbif
;
594 region
= devm_request_mem_region(&pdev
->dev
, res0
->start
,
595 resource_size(res0
), DRV_NAME
);
597 dev_err(&pdev
->dev
, "request region apbif failed\n");
599 goto err_clk_put_apbif
;
601 ahub
->apbif_addr
= res0
->start
;
603 regs_apbif
= devm_ioremap(&pdev
->dev
, res0
->start
,
604 resource_size(res0
));
606 dev_err(&pdev
->dev
, "ioremap apbif failed\n");
608 goto err_clk_put_apbif
;
611 ahub
->regmap_apbif
= devm_regmap_init_mmio(&pdev
->dev
, regs_apbif
,
612 &tegra30_ahub_apbif_regmap_config
);
613 if (IS_ERR(ahub
->regmap_apbif
)) {
614 dev_err(&pdev
->dev
, "apbif regmap init failed\n");
615 ret
= PTR_ERR(ahub
->regmap_apbif
);
616 goto err_clk_put_apbif
;
618 regcache_cache_only(ahub
->regmap_apbif
, true);
620 res1
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
622 dev_err(&pdev
->dev
, "No ahub memory resource\n");
624 goto err_clk_put_apbif
;
627 region
= devm_request_mem_region(&pdev
->dev
, res1
->start
,
628 resource_size(res1
), DRV_NAME
);
630 dev_err(&pdev
->dev
, "request region ahub failed\n");
632 goto err_clk_put_apbif
;
635 regs_ahub
= devm_ioremap(&pdev
->dev
, res1
->start
,
636 resource_size(res1
));
638 dev_err(&pdev
->dev
, "ioremap ahub failed\n");
640 goto err_clk_put_apbif
;
643 ahub
->regmap_ahub
= devm_regmap_init_mmio(&pdev
->dev
, regs_ahub
,
644 &tegra30_ahub_ahub_regmap_config
);
645 if (IS_ERR(ahub
->regmap_ahub
)) {
646 dev_err(&pdev
->dev
, "ahub regmap init failed\n");
647 ret
= PTR_ERR(ahub
->regmap_ahub
);
648 goto err_clk_put_apbif
;
650 regcache_cache_only(ahub
->regmap_ahub
, true);
652 pm_runtime_enable(&pdev
->dev
);
653 if (!pm_runtime_enabled(&pdev
->dev
)) {
654 ret
= tegra30_ahub_runtime_resume(&pdev
->dev
);
659 of_platform_populate(pdev
->dev
.of_node
, NULL
, NULL
, &pdev
->dev
);
664 pm_runtime_disable(&pdev
->dev
);
666 clk_put(ahub
->clk_apbif
);
668 clk_put(ahub
->clk_d_audio
);
674 static int tegra30_ahub_remove(struct platform_device
*pdev
)
679 pm_runtime_disable(&pdev
->dev
);
680 if (!pm_runtime_status_suspended(&pdev
->dev
))
681 tegra30_ahub_runtime_suspend(&pdev
->dev
);
683 clk_put(ahub
->clk_apbif
);
684 clk_put(ahub
->clk_d_audio
);
691 #ifdef CONFIG_PM_SLEEP
692 static int tegra30_ahub_suspend(struct device
*dev
)
694 regcache_mark_dirty(ahub
->regmap_ahub
);
695 regcache_mark_dirty(ahub
->regmap_apbif
);
700 static int tegra30_ahub_resume(struct device
*dev
)
704 ret
= pm_runtime_get_sync(dev
);
707 ret
= regcache_sync(ahub
->regmap_ahub
);
708 ret
|= regcache_sync(ahub
->regmap_apbif
);
715 static const struct dev_pm_ops tegra30_ahub_pm_ops
= {
716 SET_RUNTIME_PM_OPS(tegra30_ahub_runtime_suspend
,
717 tegra30_ahub_runtime_resume
, NULL
)
718 SET_SYSTEM_SLEEP_PM_OPS(tegra30_ahub_suspend
, tegra30_ahub_resume
)
721 static struct platform_driver tegra30_ahub_driver
= {
722 .probe
= tegra30_ahub_probe
,
723 .remove
= tegra30_ahub_remove
,
726 .owner
= THIS_MODULE
,
727 .of_match_table
= tegra30_ahub_of_match
,
728 .pm
= &tegra30_ahub_pm_ops
,
731 module_platform_driver(tegra30_ahub_driver
);
733 void tegra30_ahub_set_cif(struct regmap
*regmap
, unsigned int reg
,
734 struct tegra30_ahub_cif_conf
*conf
)
738 value
= (conf
->threshold
<<
739 TEGRA30_AUDIOCIF_CTRL_FIFO_THRESHOLD_SHIFT
) |
740 ((conf
->audio_channels
- 1) <<
741 TEGRA30_AUDIOCIF_CTRL_AUDIO_CHANNELS_SHIFT
) |
742 ((conf
->client_channels
- 1) <<
743 TEGRA30_AUDIOCIF_CTRL_CLIENT_CHANNELS_SHIFT
) |
745 TEGRA30_AUDIOCIF_CTRL_AUDIO_BITS_SHIFT
) |
746 (conf
->client_bits
<<
747 TEGRA30_AUDIOCIF_CTRL_CLIENT_BITS_SHIFT
) |
749 TEGRA30_AUDIOCIF_CTRL_EXPAND_SHIFT
) |
750 (conf
->stereo_conv
<<
751 TEGRA30_AUDIOCIF_CTRL_STEREO_CONV_SHIFT
) |
753 TEGRA30_AUDIOCIF_CTRL_REPLICATE_SHIFT
) |
755 TEGRA30_AUDIOCIF_CTRL_DIRECTION_SHIFT
) |
757 TEGRA30_AUDIOCIF_CTRL_TRUNCATE_SHIFT
) |
759 TEGRA30_AUDIOCIF_CTRL_MONO_CONV_SHIFT
);
761 regmap_write(regmap
, reg
, value
);
763 EXPORT_SYMBOL_GPL(tegra30_ahub_set_cif
);
765 void tegra124_ahub_set_cif(struct regmap
*regmap
, unsigned int reg
,
766 struct tegra30_ahub_cif_conf
*conf
)
770 value
= (conf
->threshold
<<
771 TEGRA124_AUDIOCIF_CTRL_FIFO_THRESHOLD_SHIFT
) |
772 ((conf
->audio_channels
- 1) <<
773 TEGRA124_AUDIOCIF_CTRL_AUDIO_CHANNELS_SHIFT
) |
774 ((conf
->client_channels
- 1) <<
775 TEGRA124_AUDIOCIF_CTRL_CLIENT_CHANNELS_SHIFT
) |
777 TEGRA30_AUDIOCIF_CTRL_AUDIO_BITS_SHIFT
) |
778 (conf
->client_bits
<<
779 TEGRA30_AUDIOCIF_CTRL_CLIENT_BITS_SHIFT
) |
781 TEGRA30_AUDIOCIF_CTRL_EXPAND_SHIFT
) |
782 (conf
->stereo_conv
<<
783 TEGRA30_AUDIOCIF_CTRL_STEREO_CONV_SHIFT
) |
785 TEGRA30_AUDIOCIF_CTRL_REPLICATE_SHIFT
) |
787 TEGRA30_AUDIOCIF_CTRL_DIRECTION_SHIFT
) |
789 TEGRA30_AUDIOCIF_CTRL_TRUNCATE_SHIFT
) |
791 TEGRA30_AUDIOCIF_CTRL_MONO_CONV_SHIFT
);
793 regmap_write(regmap
, reg
, value
);
795 EXPORT_SYMBOL_GPL(tegra124_ahub_set_cif
);
797 MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
798 MODULE_DESCRIPTION("Tegra30 AHUB driver");
799 MODULE_LICENSE("GPL v2");
800 MODULE_ALIAS("platform:" DRV_NAME
);
801 MODULE_DEVICE_TABLE(of
, tegra30_ahub_of_match
);