acp-pcm-dma.c 35.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * AMD ALSA SoC PCM Driver for ACP 2.x
 *
 * Copyright 2014-2015 Advanced Micro Devices, Inc.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#include <linux/module.h>
#include <linux/delay.h>
18
#include <linux/io.h>
19
#include <linux/sizes.h>
20
#include <linux/pm_runtime.h>
21 22

#include <sound/soc.h>
23
#include <drm/amd_asic_type.h>
24 25
#include "acp.h"

26 27
#define DRV_NAME "acp_audio_dma"

28 29 30 31 32 33 34 35 36 37 38 39
#define PLAYBACK_MIN_NUM_PERIODS    2
#define PLAYBACK_MAX_NUM_PERIODS    2
#define PLAYBACK_MAX_PERIOD_SIZE    16384
#define PLAYBACK_MIN_PERIOD_SIZE    1024
#define CAPTURE_MIN_NUM_PERIODS     2
#define CAPTURE_MAX_NUM_PERIODS     2
#define CAPTURE_MAX_PERIOD_SIZE     16384
#define CAPTURE_MIN_PERIOD_SIZE     1024

#define MAX_BUFFER (PLAYBACK_MAX_PERIOD_SIZE * PLAYBACK_MAX_NUM_PERIODS)
#define MIN_BUFFER MAX_BUFFER

40 41 42 43 44
#define ST_PLAYBACK_MAX_PERIOD_SIZE 8192
#define ST_CAPTURE_MAX_PERIOD_SIZE  ST_PLAYBACK_MAX_PERIOD_SIZE
#define ST_MAX_BUFFER (ST_PLAYBACK_MAX_PERIOD_SIZE * PLAYBACK_MAX_NUM_PERIODS)
#define ST_MIN_BUFFER ST_MAX_BUFFER

45 46
#define DRV_NAME "acp_audio_dma"

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
static const struct snd_pcm_hardware acp_pcm_hardware_playback = {
	.info = SNDRV_PCM_INFO_INTERLEAVED |
		SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_MMAP |
		SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_BATCH |
		SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME,
	.formats = SNDRV_PCM_FMTBIT_S16_LE |
		SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE,
	.channels_min = 1,
	.channels_max = 8,
	.rates = SNDRV_PCM_RATE_8000_96000,
	.rate_min = 8000,
	.rate_max = 96000,
	.buffer_bytes_max = PLAYBACK_MAX_NUM_PERIODS * PLAYBACK_MAX_PERIOD_SIZE,
	.period_bytes_min = PLAYBACK_MIN_PERIOD_SIZE,
	.period_bytes_max = PLAYBACK_MAX_PERIOD_SIZE,
	.periods_min = PLAYBACK_MIN_NUM_PERIODS,
	.periods_max = PLAYBACK_MAX_NUM_PERIODS,
};

static const struct snd_pcm_hardware acp_pcm_hardware_capture = {
	.info = SNDRV_PCM_INFO_INTERLEAVED |
		SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_MMAP |
		SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_BATCH |
	    SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME,
	.formats = SNDRV_PCM_FMTBIT_S16_LE |
		SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE,
	.channels_min = 1,
	.channels_max = 2,
	.rates = SNDRV_PCM_RATE_8000_48000,
	.rate_min = 8000,
	.rate_max = 48000,
	.buffer_bytes_max = CAPTURE_MAX_NUM_PERIODS * CAPTURE_MAX_PERIOD_SIZE,
	.period_bytes_min = CAPTURE_MIN_PERIOD_SIZE,
	.period_bytes_max = CAPTURE_MAX_PERIOD_SIZE,
	.periods_min = CAPTURE_MIN_NUM_PERIODS,
	.periods_max = CAPTURE_MAX_NUM_PERIODS,
};

85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
static const struct snd_pcm_hardware acp_st_pcm_hardware_playback = {
	.info = SNDRV_PCM_INFO_INTERLEAVED |
		SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_MMAP |
		SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_BATCH |
		SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME,
	.formats = SNDRV_PCM_FMTBIT_S16_LE |
		SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE,
	.channels_min = 1,
	.channels_max = 8,
	.rates = SNDRV_PCM_RATE_8000_96000,
	.rate_min = 8000,
	.rate_max = 96000,
	.buffer_bytes_max = ST_MAX_BUFFER,
	.period_bytes_min = PLAYBACK_MIN_PERIOD_SIZE,
	.period_bytes_max = ST_PLAYBACK_MAX_PERIOD_SIZE,
	.periods_min = PLAYBACK_MIN_NUM_PERIODS,
	.periods_max = PLAYBACK_MAX_NUM_PERIODS,
};

static const struct snd_pcm_hardware acp_st_pcm_hardware_capture = {
	.info = SNDRV_PCM_INFO_INTERLEAVED |
		SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_MMAP |
		SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_BATCH |
		SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME,
	.formats = SNDRV_PCM_FMTBIT_S16_LE |
		SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE,
	.channels_min = 1,
	.channels_max = 2,
	.rates = SNDRV_PCM_RATE_8000_48000,
	.rate_min = 8000,
	.rate_max = 48000,
	.buffer_bytes_max = ST_MAX_BUFFER,
	.period_bytes_min = CAPTURE_MIN_PERIOD_SIZE,
	.period_bytes_max = ST_CAPTURE_MAX_PERIOD_SIZE,
	.periods_min = CAPTURE_MIN_NUM_PERIODS,
	.periods_max = CAPTURE_MAX_NUM_PERIODS,
};

123 124 125 126 127 128 129 130 131 132
static u32 acp_reg_read(void __iomem *acp_mmio, u32 reg)
{
	return readl(acp_mmio + (reg * 4));
}

static void acp_reg_write(u32 val, void __iomem *acp_mmio, u32 reg)
{
	writel(val, acp_mmio + (reg * 4));
}

133 134
/*
 * Configure a given dma channel parameters - enable/disable,
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
 * number of descriptors, priority
 */
static void config_acp_dma_channel(void __iomem *acp_mmio, u8 ch_num,
				   u16 dscr_strt_idx, u16 num_dscrs,
				   enum acp_dma_priority_level priority_level)
{
	u32 dma_ctrl;

	/* disable the channel run field */
	dma_ctrl = acp_reg_read(acp_mmio, mmACP_DMA_CNTL_0 + ch_num);
	dma_ctrl &= ~ACP_DMA_CNTL_0__DMAChRun_MASK;
	acp_reg_write(dma_ctrl, acp_mmio, mmACP_DMA_CNTL_0 + ch_num);

	/* program a DMA channel with first descriptor to be processed. */
	acp_reg_write((ACP_DMA_DSCR_STRT_IDX_0__DMAChDscrStrtIdx_MASK
			& dscr_strt_idx),
			acp_mmio, mmACP_DMA_DSCR_STRT_IDX_0 + ch_num);

153 154
	/*
	 * program a DMA channel with the number of descriptors to be
155
	 * processed in the transfer
156
	 */
157
	acp_reg_write(ACP_DMA_DSCR_CNT_0__DMAChDscrCnt_MASK & num_dscrs,
158
		      acp_mmio, mmACP_DMA_DSCR_CNT_0 + ch_num);
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

	/* set DMA channel priority */
	acp_reg_write(priority_level, acp_mmio, mmACP_DMA_PRIO_0 + ch_num);
}

/* Initialize a dma descriptor in SRAM based on descritor information passed */
static void config_dma_descriptor_in_sram(void __iomem *acp_mmio,
					  u16 descr_idx,
					  acp_dma_dscr_transfer_t *descr_info)
{
	u32 sram_offset;

	sram_offset = (descr_idx * sizeof(acp_dma_dscr_transfer_t));

	/* program the source base address. */
	acp_reg_write(sram_offset, acp_mmio, mmACP_SRBM_Targ_Idx_Addr);
	acp_reg_write(descr_info->src,	acp_mmio, mmACP_SRBM_Targ_Idx_Data);
	/* program the destination base address. */
	acp_reg_write(sram_offset + 4,	acp_mmio, mmACP_SRBM_Targ_Idx_Addr);
	acp_reg_write(descr_info->dest, acp_mmio, mmACP_SRBM_Targ_Idx_Data);

	/* program the number of bytes to be transferred for this descriptor. */
	acp_reg_write(sram_offset + 8,	acp_mmio, mmACP_SRBM_Targ_Idx_Addr);
	acp_reg_write(descr_info->xfer_val, acp_mmio, mmACP_SRBM_Targ_Idx_Data);
}

185 186
/*
 * Initialize the DMA descriptor information for transfer between
187 188 189
 * system memory <-> ACP SRAM
 */
static void set_acp_sysmem_dma_descriptors(void __iomem *acp_mmio,
190 191 192 193
					   u32 size, int direction,
					   u32 pte_offset, u16 ch,
					   u32 sram_bank, u16 dma_dscr_idx,
					   u32 asic_type)
194 195 196 197 198 199 200
{
	u16 i;
	acp_dma_dscr_transfer_t dmadscr[NUM_DSCRS_PER_CHANNEL];

	for (i = 0; i < NUM_DSCRS_PER_CHANNEL; i++) {
		dmadscr[i].xfer_val = 0;
		if (direction == SNDRV_PCM_STREAM_PLAYBACK) {
201
			dma_dscr_idx = dma_dscr_idx + i;
202
			dmadscr[i].dest = sram_bank + (i * (size / 2));
203
			dmadscr[i].src = ACP_INTERNAL_APERTURE_WINDOW_0_ADDRESS
204
				+ (pte_offset * SZ_4K) + (i * (size / 2));
205 206 207
			switch (asic_type) {
			case CHIP_STONEY:
				dmadscr[i].xfer_val |=
208
				(ACP_DMA_ATTR_DAGB_GARLIC_TO_SHAREDMEM  << 16) |
209 210 211 212
				(size / 2);
				break;
			default:
				dmadscr[i].xfer_val |=
213
				(ACP_DMA_ATTR_DAGB_ONION_TO_SHAREDMEM  << 16) |
214 215
				(size / 2);
			}
216
		} else {
217
			dma_dscr_idx = dma_dscr_idx + i;
218
			dmadscr[i].src = sram_bank + (i * (size / 2));
219 220
			dmadscr[i].dest =
			ACP_INTERNAL_APERTURE_WINDOW_0_ADDRESS +
221
			(pte_offset * SZ_4K) + (i * (size / 2));
222 223 224 225
			switch (asic_type) {
			case CHIP_STONEY:
				dmadscr[i].xfer_val |=
				BIT(22) |
226
				(ACP_DMA_ATTR_SHARED_MEM_TO_DAGB_GARLIC << 16) |
227 228 229 230 231
				(size / 2);
				break;
			default:
				dmadscr[i].xfer_val |=
				BIT(22) |
232
				(ACP_DMA_ATTR_SHAREDMEM_TO_DAGB_ONION << 16) |
233 234
				(size / 2);
			}
235 236
		}
		config_dma_descriptor_in_sram(acp_mmio, dma_dscr_idx,
237
					      &dmadscr[i]);
238
	}
239
	config_acp_dma_channel(acp_mmio, ch,
240 241 242
			       dma_dscr_idx - 1,
			       NUM_DSCRS_PER_CHANNEL,
			       ACP_DMA_PRIORITY_LEVEL_NORMAL);
243 244
}

245 246
/*
 * Initialize the DMA descriptor information for transfer between
247 248
 * ACP SRAM <-> I2S
 */
249
static void set_acp_to_i2s_dma_descriptors(void __iomem *acp_mmio, u32 size,
250 251 252
					   int direction, u32 sram_bank,
					   u16 destination, u16 ch,
					   u16 dma_dscr_idx, u32 asic_type)
253 254 255 256 257 258 259
{
	u16 i;
	acp_dma_dscr_transfer_t dmadscr[NUM_DSCRS_PER_CHANNEL];

	for (i = 0; i < NUM_DSCRS_PER_CHANNEL; i++) {
		dmadscr[i].xfer_val = 0;
		if (direction == SNDRV_PCM_STREAM_PLAYBACK) {
260
			dma_dscr_idx = dma_dscr_idx + i;
261
			dmadscr[i].src = sram_bank  + (i * (size / 2));
262 263
			/* dmadscr[i].dest is unused by hardware. */
			dmadscr[i].dest = 0;
264
			dmadscr[i].xfer_val |= BIT(22) | (destination << 16) |
265 266
						(size / 2);
		} else {
267
			dma_dscr_idx = dma_dscr_idx + i;
268 269
			/* dmadscr[i].src is unused by hardware. */
			dmadscr[i].src = 0;
270 271
			dmadscr[i].dest =
				 sram_bank + (i * (size / 2));
272
			dmadscr[i].xfer_val |= BIT(22) |
273
				(destination << 16) | (size / 2);
274 275
		}
		config_dma_descriptor_in_sram(acp_mmio, dma_dscr_idx,
276
					      &dmadscr[i]);
277 278
	}
	/* Configure the DMA channel with the above descriptore */
279
	config_acp_dma_channel(acp_mmio, ch, dma_dscr_idx - 1,
280 281
			       NUM_DSCRS_PER_CHANNEL,
			       ACP_DMA_PRIORITY_LEVEL_NORMAL);
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
}

/* Create page table entries in ACP SRAM for the allocated memory */
static void acp_pte_config(void __iomem *acp_mmio, struct page *pg,
			   u16 num_of_pages, u32 pte_offset)
{
	u16 page_idx;
	u64 addr;
	u32 low;
	u32 high;
	u32 offset;

	offset	= ACP_DAGB_GRP_SRBM_SRAM_BASE_OFFSET + (pte_offset * 8);
	for (page_idx = 0; page_idx < (num_of_pages); page_idx++) {
		/* Load the low address of page int ACP SRAM through SRBM */
		acp_reg_write((offset + (page_idx * 8)),
298
			      acp_mmio, mmACP_SRBM_Targ_Idx_Addr);
299 300 301 302 303 304 305 306 307
		addr = page_to_phys(pg);

		low = lower_32_bits(addr);
		high = upper_32_bits(addr);

		acp_reg_write(low, acp_mmio, mmACP_SRBM_Targ_Idx_Data);

		/* Load the High address of page int ACP SRAM through SRBM */
		acp_reg_write((offset + (page_idx * 8) + 4),
308
			      acp_mmio, mmACP_SRBM_Targ_Idx_Addr);
309 310 311 312 313 314 315 316 317 318 319

		/* page enable in ACP */
		high |= BIT(31);
		acp_reg_write(high, acp_mmio, mmACP_SRBM_Targ_Idx_Data);

		/* Move to next physically contiguos page */
		pg++;
	}
}

static void config_acp_dma(void __iomem *acp_mmio,
320 321
			   struct audio_substream_data *audio_config,
			   u32 asic_type)
322
{
323 324
	u32 pte_offset, sram_bank;
	u16 ch1, ch2, destination, dma_dscr_idx;
325

326
	if (audio_config->direction == SNDRV_PCM_STREAM_PLAYBACK) {
327
		pte_offset = ACP_PLAYBACK_PTE_OFFSET;
328 329 330 331 332 333
		ch1 = SYSRAM_TO_ACP_CH_NUM;
		ch2 = ACP_TO_I2S_DMA_CH_NUM;
		sram_bank = ACP_SHARED_RAM_BANK_1_ADDRESS;
		destination = TO_ACP_I2S_1;

	} else {
334
		pte_offset = ACP_CAPTURE_PTE_OFFSET;
335 336 337 338 339 340 341 342 343 344 345
		ch1 = SYSRAM_TO_ACP_CH_NUM;
		ch2 = ACP_TO_I2S_DMA_CH_NUM;
		switch (asic_type) {
		case CHIP_STONEY:
			sram_bank = ACP_SHARED_RAM_BANK_3_ADDRESS;
			break;
		default:
			sram_bank = ACP_SHARED_RAM_BANK_5_ADDRESS;
		}
		destination = FROM_ACP_I2S_1;
	}
346 347

	acp_pte_config(acp_mmio, audio_config->pg, audio_config->num_of_pages,
348
		       pte_offset);
349 350 351 352
	if (audio_config->direction == SNDRV_PCM_STREAM_PLAYBACK)
		dma_dscr_idx = PLAYBACK_START_DMA_DESCR_CH12;
	else
		dma_dscr_idx = CAPTURE_START_DMA_DESCR_CH14;
353 354 355

	/* Configure System memory <-> ACP SRAM DMA descriptors */
	set_acp_sysmem_dma_descriptors(acp_mmio, audio_config->size,
356 357
				       audio_config->direction, pte_offset, ch1,
				       sram_bank, dma_dscr_idx, asic_type);
358

359 360 361 362
	if (audio_config->direction == SNDRV_PCM_STREAM_PLAYBACK)
		dma_dscr_idx = PLAYBACK_START_DMA_DESCR_CH13;
	else
		dma_dscr_idx = CAPTURE_START_DMA_DESCR_CH15;
363 364
	/* Configure ACP SRAM <-> I2S DMA descriptors */
	set_acp_to_i2s_dma_descriptors(acp_mmio, audio_config->size,
365 366 367
				       audio_config->direction, sram_bank,
				       destination, ch2, dma_dscr_idx,
				       asic_type);
368 369 370 371
}

/* Start a given DMA channel transfer */
static void acp_dma_start(void __iomem *acp_mmio,
372
			  u16 ch_num, bool is_circular)
373 374 375 376 377 378 379 380 381
{
	u32 dma_ctrl;

	/* read the dma control register and disable the channel run field */
	dma_ctrl = acp_reg_read(acp_mmio, mmACP_DMA_CNTL_0 + ch_num);

	/* Invalidating the DAGB cache */
	acp_reg_write(1, acp_mmio, mmACP_DAGB_ATU_CTRL);

382 383
	/*
	 * configure the DMA channel and start the DMA transfer
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
	 * set dmachrun bit to start the transfer and enable the
	 * interrupt on completion of the dma transfer
	 */
	dma_ctrl |= ACP_DMA_CNTL_0__DMAChRun_MASK;

	switch (ch_num) {
	case ACP_TO_I2S_DMA_CH_NUM:
	case ACP_TO_SYSRAM_CH_NUM:
	case I2S_TO_ACP_DMA_CH_NUM:
		dma_ctrl |= ACP_DMA_CNTL_0__DMAChIOCEn_MASK;
		break;
	default:
		dma_ctrl &= ~ACP_DMA_CNTL_0__DMAChIOCEn_MASK;
		break;
	}

	/* enable  for ACP SRAM to/from I2S DMA channel */
	if (is_circular == true)
		dma_ctrl |= ACP_DMA_CNTL_0__Circular_DMA_En_MASK;
	else
		dma_ctrl &= ~ACP_DMA_CNTL_0__Circular_DMA_En_MASK;

	acp_reg_write(dma_ctrl, acp_mmio, mmACP_DMA_CNTL_0 + ch_num);
}

/* Stop a given DMA channel transfer */
static int acp_dma_stop(void __iomem *acp_mmio, u8 ch_num)
{
	u32 dma_ctrl;
	u32 dma_ch_sts;
	u32 count = ACP_DMA_RESET_TIME;

	dma_ctrl = acp_reg_read(acp_mmio, mmACP_DMA_CNTL_0 + ch_num);

418 419
	/*
	 * clear the dma control register fields before writing zero
420
	 * in reset bit
421
	 */
422 423 424 425 426 427 428
	dma_ctrl &= ~ACP_DMA_CNTL_0__DMAChRun_MASK;
	dma_ctrl &= ~ACP_DMA_CNTL_0__DMAChIOCEn_MASK;

	acp_reg_write(dma_ctrl, acp_mmio, mmACP_DMA_CNTL_0 + ch_num);
	dma_ch_sts = acp_reg_read(acp_mmio, mmACP_DMA_CH_STS);

	if (dma_ch_sts & BIT(ch_num)) {
429 430 431 432
		/*
		 * set the reset bit for this channel to stop the dma
		 *  transfer
		 */
433 434 435 436 437 438 439 440
		dma_ctrl |= ACP_DMA_CNTL_0__DMAChRst_MASK;
		acp_reg_write(dma_ctrl, acp_mmio, mmACP_DMA_CNTL_0 + ch_num);
	}

	/* check the channel status bit for some time and return the status */
	while (true) {
		dma_ch_sts = acp_reg_read(acp_mmio, mmACP_DMA_CH_STS);
		if (!(dma_ch_sts & BIT(ch_num))) {
441 442 443 444
			/*
			 * clear the reset flag after successfully stopping
			 * the dma transfer and break from the loop
			 */
445 446 447
			dma_ctrl &= ~ACP_DMA_CNTL_0__DMAChRst_MASK;

			acp_reg_write(dma_ctrl, acp_mmio, mmACP_DMA_CNTL_0
448
				      + ch_num);
449 450 451 452 453 454 455 456 457 458 459
			break;
		}
		if (--count == 0) {
			pr_err("Failed to stop ACP DMA channel : %d\n", ch_num);
			return -ETIMEDOUT;
		}
		udelay(100);
	}
	return 0;
}

460
static void acp_set_sram_bank_state(void __iomem *acp_mmio, u16 bank,
461
				    bool power_on)
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
{
	u32 val, req_reg, sts_reg, sts_reg_mask;
	u32 loops = 1000;

	if (bank < 32) {
		req_reg = mmACP_MEM_SHUT_DOWN_REQ_LO;
		sts_reg = mmACP_MEM_SHUT_DOWN_STS_LO;
		sts_reg_mask = 0xFFFFFFFF;

	} else {
		bank -= 32;
		req_reg = mmACP_MEM_SHUT_DOWN_REQ_HI;
		sts_reg = mmACP_MEM_SHUT_DOWN_STS_HI;
		sts_reg_mask = 0x0000FFFF;
	}

	val = acp_reg_read(acp_mmio, req_reg);
	if (val & (1 << bank)) {
		/* bank is in off state */
		if (power_on == true)
			/* request to on */
			val &= ~(1 << bank);
		else
			/* request to off */
			return;
	} else {
		/* bank is in on state */
		if (power_on == false)
			/* request to off */
			val |= 1 << bank;
		else
			/* request to on */
			return;
	}
	acp_reg_write(val, acp_mmio, req_reg);

	while (acp_reg_read(acp_mmio, sts_reg) != sts_reg_mask) {
		if (!loops--) {
			pr_err("ACP SRAM bank %d state change failed\n", bank);
			break;
		}
		cpu_relax();
	}
}

507
/* Initialize and bring ACP hardware to default state. */
508
static int acp_init(void __iomem *acp_mmio, u32 asic_type)
509
{
510
	u16 bank;
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
	u32 val, count, sram_pte_offset;

	/* Assert Soft reset of ACP */
	val = acp_reg_read(acp_mmio, mmACP_SOFT_RESET);

	val |= ACP_SOFT_RESET__SoftResetAud_MASK;
	acp_reg_write(val, acp_mmio, mmACP_SOFT_RESET);

	count = ACP_SOFT_RESET_DONE_TIME_OUT_VALUE;
	while (true) {
		val = acp_reg_read(acp_mmio, mmACP_SOFT_RESET);
		if (ACP_SOFT_RESET__SoftResetAudDone_MASK ==
		    (val & ACP_SOFT_RESET__SoftResetAudDone_MASK))
			break;
		if (--count == 0) {
			pr_err("Failed to reset ACP\n");
			return -ETIMEDOUT;
		}
		udelay(100);
	}

	/* Enable clock to ACP and wait until the clock is enabled */
	val = acp_reg_read(acp_mmio, mmACP_CONTROL);
	val = val | ACP_CONTROL__ClkEn_MASK;
	acp_reg_write(val, acp_mmio, mmACP_CONTROL);

	count = ACP_CLOCK_EN_TIME_OUT_VALUE;

	while (true) {
		val = acp_reg_read(acp_mmio, mmACP_STATUS);
541
		if (val & (u32)0x1)
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
			break;
		if (--count == 0) {
			pr_err("Failed to reset ACP\n");
			return -ETIMEDOUT;
		}
		udelay(100);
	}

	/* Deassert the SOFT RESET flags */
	val = acp_reg_read(acp_mmio, mmACP_SOFT_RESET);
	val &= ~ACP_SOFT_RESET__SoftResetAud_MASK;
	acp_reg_write(val, acp_mmio, mmACP_SOFT_RESET);

	/* initiailize Onion control DAGB register */
	acp_reg_write(ACP_ONION_CNTL_DEFAULT, acp_mmio,
557
		      mmACP_AXI2DAGB_ONION_CNTL);
558 559 560

	/* initiailize Garlic control DAGB registers */
	acp_reg_write(ACP_GARLIC_CNTL_DEFAULT, acp_mmio,
561
		      mmACP_AXI2DAGB_GARLIC_CNTL);
562 563 564 565 566 567 568

	sram_pte_offset = ACP_DAGB_GRP_SRAM_BASE_ADDRESS |
			ACP_DAGB_BASE_ADDR_GRP_1__AXI2DAGBSnoopSel_MASK |
			ACP_DAGB_BASE_ADDR_GRP_1__AXI2DAGBTargetMemSel_MASK |
			ACP_DAGB_BASE_ADDR_GRP_1__AXI2DAGBGrpEnable_MASK;
	acp_reg_write(sram_pte_offset,  acp_mmio, mmACP_DAGB_BASE_ADDR_GRP_1);
	acp_reg_write(ACP_PAGE_SIZE_4K_ENABLE, acp_mmio,
569
		      mmACP_DAGB_PAGE_SIZE_GRP_1);
570 571

	acp_reg_write(ACP_SRAM_BASE_ADDRESS, acp_mmio,
572
		      mmACP_DMA_DESC_BASE_ADDR);
573 574 575 576

	/* Num of descriptiors in SRAM 0x4, means 256 descriptors;(64 * 4) */
	acp_reg_write(0x4, acp_mmio, mmACP_DMA_DESC_MAX_NUM_DSCR);
	acp_reg_write(ACP_EXTERNAL_INTR_CNTL__DMAIOCMask_MASK,
577
		      acp_mmio, mmACP_EXTERNAL_INTR_CNTL);
578

579 580
       /*
	* When ACP_TILE_P1 is turned on, all SRAM banks get turned on.
581 582
	* Now, turn off all of them. This can't be done in 'poweron' of
	* ACP pm domain, as this requires ACP to be initialized.
583 584 585
	* For Stoney, Memory gating is disabled,i.e SRAM Banks
	* won't be turned off. The default state for SRAM banks is ON.
	* Setting SRAM bank state code skipped for STONEY platform.
586
	*/
587 588 589 590
	if (asic_type != CHIP_STONEY) {
		for (bank = 1; bank < 48; bank++)
			acp_set_sram_bank_state(acp_mmio, bank, false);
	}
591 592 593
	return 0;
}

594
/* Deinitialize ACP */
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
static int acp_deinit(void __iomem *acp_mmio)
{
	u32 val;
	u32 count;

	/* Assert Soft reset of ACP */
	val = acp_reg_read(acp_mmio, mmACP_SOFT_RESET);

	val |= ACP_SOFT_RESET__SoftResetAud_MASK;
	acp_reg_write(val, acp_mmio, mmACP_SOFT_RESET);

	count = ACP_SOFT_RESET_DONE_TIME_OUT_VALUE;
	while (true) {
		val = acp_reg_read(acp_mmio, mmACP_SOFT_RESET);
		if (ACP_SOFT_RESET__SoftResetAudDone_MASK ==
		    (val & ACP_SOFT_RESET__SoftResetAudDone_MASK))
			break;
		if (--count == 0) {
			pr_err("Failed to reset ACP\n");
			return -ETIMEDOUT;
		}
		udelay(100);
	}
618
	/* Disable ACP clock */
619 620 621 622 623 624 625 626
	val = acp_reg_read(acp_mmio, mmACP_CONTROL);
	val &= ~ACP_CONTROL__ClkEn_MASK;
	acp_reg_write(val, acp_mmio, mmACP_CONTROL);

	count = ACP_CLOCK_EN_TIME_OUT_VALUE;

	while (true) {
		val = acp_reg_read(acp_mmio, mmACP_STATUS);
627
		if (!(val & (u32)0x1))
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
			break;
		if (--count == 0) {
			pr_err("Failed to reset ACP\n");
			return -ETIMEDOUT;
		}
		udelay(100);
	}
	return 0;
}

/* ACP DMA irq handler routine for playback, capture usecases */
static irqreturn_t dma_irq_handler(int irq, void *arg)
{
	u16 dscr_idx;
	u32 intr_flag, ext_intr_status;
	struct audio_drv_data *irq_data;
	void __iomem *acp_mmio;
	struct device *dev = arg;
	bool valid_irq = false;

	irq_data = dev_get_drvdata(dev);
	acp_mmio = irq_data->acp_mmio;

	ext_intr_status = acp_reg_read(acp_mmio, mmACP_EXTERNAL_INTR_STAT);
	intr_flag = (((ext_intr_status &
		      ACP_EXTERNAL_INTR_STAT__DMAIOCStat_MASK) >>
		     ACP_EXTERNAL_INTR_STAT__DMAIOCStat__SHIFT));

	if ((intr_flag & BIT(ACP_TO_I2S_DMA_CH_NUM)) != 0) {
		valid_irq = true;
		if (acp_reg_read(acp_mmio, mmACP_DMA_CUR_DSCR_13) ==
				PLAYBACK_START_DMA_DESCR_CH13)
			dscr_idx = PLAYBACK_END_DMA_DESCR_CH12;
661 662
		else
			dscr_idx = PLAYBACK_START_DMA_DESCR_CH12;
663 664 665 666
		config_acp_dma_channel(acp_mmio, SYSRAM_TO_ACP_CH_NUM, dscr_idx,
				       1, 0);
		acp_dma_start(acp_mmio, SYSRAM_TO_ACP_CH_NUM, false);

667
		snd_pcm_period_elapsed(irq_data->play_i2ssp_stream);
668 669

		acp_reg_write((intr_flag & BIT(ACP_TO_I2S_DMA_CH_NUM)) << 16,
670
			      acp_mmio, mmACP_EXTERNAL_INTR_STAT);
671 672 673 674 675 676 677 678 679 680 681 682 683 684
	}

	if ((intr_flag & BIT(I2S_TO_ACP_DMA_CH_NUM)) != 0) {
		valid_irq = true;
		if (acp_reg_read(acp_mmio, mmACP_DMA_CUR_DSCR_15) ==
				CAPTURE_START_DMA_DESCR_CH15)
			dscr_idx = CAPTURE_END_DMA_DESCR_CH14;
		else
			dscr_idx = CAPTURE_START_DMA_DESCR_CH14;
		config_acp_dma_channel(acp_mmio, ACP_TO_SYSRAM_CH_NUM, dscr_idx,
				       1, 0);
		acp_dma_start(acp_mmio, ACP_TO_SYSRAM_CH_NUM, false);

		acp_reg_write((intr_flag & BIT(I2S_TO_ACP_DMA_CH_NUM)) << 16,
685
			      acp_mmio, mmACP_EXTERNAL_INTR_STAT);
686 687 688 689
	}

	if ((intr_flag & BIT(ACP_TO_SYSRAM_CH_NUM)) != 0) {
		valid_irq = true;
690
		snd_pcm_period_elapsed(irq_data->capture_i2ssp_stream);
691
		acp_reg_write((intr_flag & BIT(ACP_TO_SYSRAM_CH_NUM)) << 16,
692
			      acp_mmio, mmACP_EXTERNAL_INTR_STAT);
693 694 695 696 697 698 699 700 701 702
	}

	if (valid_irq)
		return IRQ_HANDLED;
	else
		return IRQ_NONE;
}

static int acp_dma_open(struct snd_pcm_substream *substream)
{
703
	u16 bank;
704 705 706
	int ret = 0;
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_soc_pcm_runtime *prtd = substream->private_data;
707 708
	struct snd_soc_component *component = snd_soc_rtdcom_lookup(prtd,
								    DRV_NAME);
709
	struct audio_drv_data *intr_data = dev_get_drvdata(component->dev);
710 711
	struct audio_substream_data *adata =
		kzalloc(sizeof(struct audio_substream_data), GFP_KERNEL);
712
	if (!adata)
713 714
		return -ENOMEM;

715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
		switch (intr_data->asic_type) {
		case CHIP_STONEY:
			runtime->hw = acp_st_pcm_hardware_playback;
			break;
		default:
			runtime->hw = acp_pcm_hardware_playback;
		}
	} else {
		switch (intr_data->asic_type) {
		case CHIP_STONEY:
			runtime->hw = acp_st_pcm_hardware_capture;
			break;
		default:
			runtime->hw = acp_pcm_hardware_capture;
		}
	}
732 733 734 735

	ret = snd_pcm_hw_constraint_integer(runtime,
					    SNDRV_PCM_HW_PARAM_PERIODS);
	if (ret < 0) {
736
		dev_err(component->dev, "set integer constraint failed\n");
D
Dan Carpenter 已提交
737
		kfree(adata);
738 739 740 741 742 743
		return ret;
	}

	adata->acp_mmio = intr_data->acp_mmio;
	runtime->private_data = adata;

744 745
	/*
	 * Enable ACP irq, when neither playback or capture streams are
746 747 748
	 * active by the time when a new stream is being opened.
	 * This enablement is not required for another stream, if current
	 * stream is not closed
749
	 */
750
	if (!intr_data->play_i2ssp_stream && !intr_data->capture_i2ssp_stream)
751 752
		acp_reg_write(1, adata->acp_mmio, mmACP_EXTERNAL_INTR_ENB);

753
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
754
		intr_data->play_i2ssp_stream = substream;
755 756
		/*
		 * For Stoney, Memory gating is disabled,i.e SRAM Banks
757 758 759 760 761 762 763 764
		 * won't be turned off. The default state for SRAM banks is ON.
		 * Setting SRAM bank state code skipped for STONEY platform.
		 */
		if (intr_data->asic_type != CHIP_STONEY) {
			for (bank = 1; bank <= 4; bank++)
				acp_set_sram_bank_state(intr_data->acp_mmio,
							bank, true);
		}
765
	} else {
766
		intr_data->capture_i2ssp_stream = substream;
767 768 769 770 771
		if (intr_data->asic_type != CHIP_STONEY) {
			for (bank = 5; bank <= 8; bank++)
				acp_set_sram_bank_state(intr_data->acp_mmio,
							bank, true);
		}
772
	}
773 774 775 776 777 778 779 780 781

	return 0;
}

static int acp_dma_hw_params(struct snd_pcm_substream *substream,
			     struct snd_pcm_hw_params *params)
{
	int status;
	uint64_t size;
782
	u32 val = 0;
783 784 785
	struct page *pg;
	struct snd_pcm_runtime *runtime;
	struct audio_substream_data *rtd;
786
	struct snd_soc_pcm_runtime *prtd = substream->private_data;
787 788
	struct snd_soc_component *component = snd_soc_rtdcom_lookup(prtd,
								    DRV_NAME);
789
	struct audio_drv_data *adata = dev_get_drvdata(component->dev);
790 791 792 793 794 795 796

	runtime = substream->runtime;
	rtd = runtime->private_data;

	if (WARN_ON(!rtd))
		return -EINVAL;

797
	if (adata->asic_type == CHIP_STONEY) {
798 799
		val = acp_reg_read(adata->acp_mmio,
				   mmACP_I2S_16BIT_RESOLUTION_EN);
800 801 802 803
		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
			val |= ACP_I2S_SP_16BIT_RESOLUTION_EN;
		else
			val |= ACP_I2S_MIC_16BIT_RESOLUTION_EN;
804 805
		acp_reg_write(val, adata->acp_mmio,
			      mmACP_I2S_16BIT_RESOLUTION_EN);
806
	}
807 808 809 810 811 812 813 814
	size = params_buffer_bytes(params);
	status = snd_pcm_lib_malloc_pages(substream, size);
	if (status < 0)
		return status;

	memset(substream->runtime->dma_area, 0, params_buffer_bytes(params));
	pg = virt_to_page(substream->dma_buffer.area);

815
	if (pg) {
816
		acp_set_sram_bank_state(rtd->acp_mmio, 0, true);
817 818 819 820 821 822 823 824 825 826
		/* Save for runtime private data */
		rtd->pg = pg;
		rtd->order = get_order(size);

		/* Fill the page table entries in ACP SRAM */
		rtd->pg = pg;
		rtd->size = size;
		rtd->num_of_pages = PAGE_ALIGN(size) >> PAGE_SHIFT;
		rtd->direction = substream->stream;

827
		config_acp_dma(rtd->acp_mmio, rtd, adata->asic_type);
828 829 830 831 832 833 834 835 836 837 838 839
		status = 0;
	} else {
		status = -ENOMEM;
	}
	return status;
}

static int acp_dma_hw_free(struct snd_pcm_substream *substream)
{
	return snd_pcm_lib_free_pages(substream);
}

840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
static u64 acp_get_byte_count(void __iomem *acp_mmio, int stream)
{
	union acp_dma_count playback_dma_count;
	union acp_dma_count capture_dma_count;
	u64 bytescount = 0;

	if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
		playback_dma_count.bcount.high = acp_reg_read(acp_mmio,
					mmACP_I2S_TRANSMIT_BYTE_CNT_HIGH);
		playback_dma_count.bcount.low  = acp_reg_read(acp_mmio,
					mmACP_I2S_TRANSMIT_BYTE_CNT_LOW);
		bytescount = playback_dma_count.bytescount;
	} else {
		capture_dma_count.bcount.high = acp_reg_read(acp_mmio,
					mmACP_I2S_RECEIVED_BYTE_CNT_HIGH);
		capture_dma_count.bcount.low  = acp_reg_read(acp_mmio,
					mmACP_I2S_RECEIVED_BYTE_CNT_LOW);
		bytescount = capture_dma_count.bytescount;
	}
	return bytescount;
}

862 863
static snd_pcm_uframes_t acp_dma_pointer(struct snd_pcm_substream *substream)
{
864
	u32 buffersize;
865
	u32 pos = 0;
866
	u64 bytescount = 0;
867 868 869 870

	struct snd_pcm_runtime *runtime = substream->runtime;
	struct audio_substream_data *rtd = runtime->private_data;

871 872 873
	if (!rtd)
		return -EINVAL;

874 875
	buffersize = frames_to_bytes(runtime, runtime->buffer_size);
	bytescount = acp_get_byte_count(rtd->acp_mmio, substream->stream);
876

877
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
878 879
		if (bytescount > rtd->i2ssp_renderbytescount)
			bytescount = bytescount - rtd->i2ssp_renderbytescount;
880
	} else {
881 882
		if (bytescount > rtd->i2ssp_capturebytescount)
			bytescount = bytescount - rtd->i2ssp_capturebytescount;
883
	}
884
	pos = do_div(bytescount, buffersize);
885 886 887 888 889 890 891 892 893 894 895 896 897 898
	return bytes_to_frames(runtime, pos);
}

static int acp_dma_mmap(struct snd_pcm_substream *substream,
			struct vm_area_struct *vma)
{
	return snd_pcm_lib_default_mmap(substream, vma);
}

static int acp_dma_prepare(struct snd_pcm_substream *substream)
{
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct audio_substream_data *rtd = runtime->private_data;

899 900
	if (!rtd)
		return -EINVAL;
901 902
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
		config_acp_dma_channel(rtd->acp_mmio, SYSRAM_TO_ACP_CH_NUM,
903 904
				       PLAYBACK_START_DMA_DESCR_CH12,
				       NUM_DSCRS_PER_CHANNEL, 0);
905
		config_acp_dma_channel(rtd->acp_mmio, ACP_TO_I2S_DMA_CH_NUM,
906 907
				       PLAYBACK_START_DMA_DESCR_CH13,
				       NUM_DSCRS_PER_CHANNEL, 0);
908 909
	} else {
		config_acp_dma_channel(rtd->acp_mmio, ACP_TO_SYSRAM_CH_NUM,
910 911
				       CAPTURE_START_DMA_DESCR_CH14,
				       NUM_DSCRS_PER_CHANNEL, 0);
912
		config_acp_dma_channel(rtd->acp_mmio, I2S_TO_ACP_DMA_CH_NUM,
913 914
				       CAPTURE_START_DMA_DESCR_CH15,
				       NUM_DSCRS_PER_CHANNEL, 0);
915 916 917 918 919 920 921
	}
	return 0;
}

static int acp_dma_trigger(struct snd_pcm_substream *substream, int cmd)
{
	int ret;
922
	u32 loops = 4000;
923
	u64 bytescount = 0;
924 925 926 927

	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_soc_pcm_runtime *prtd = substream->private_data;
	struct audio_substream_data *rtd = runtime->private_data;
928 929
	struct snd_soc_component *component = snd_soc_rtdcom_lookup(prtd,
								    DRV_NAME);
930 931 932 933 934 935 936

	if (!rtd)
		return -EINVAL;
	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
	case SNDRV_PCM_TRIGGER_RESUME:
937 938
		bytescount = acp_get_byte_count(rtd->acp_mmio,
						substream->stream);
939
		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
940 941
			if (rtd->i2ssp_renderbytescount == 0)
				rtd->i2ssp_renderbytescount = bytescount;
942
			acp_dma_start(rtd->acp_mmio,
943
				      SYSRAM_TO_ACP_CH_NUM, false);
944 945 946
			while (acp_reg_read(rtd->acp_mmio, mmACP_DMA_CH_STS) &
						BIT(SYSRAM_TO_ACP_CH_NUM)) {
				if (!loops--) {
947
					dev_err(component->dev,
948 949 950 951 952 953 954
						"acp dma start timeout\n");
					return -ETIMEDOUT;
				}
				cpu_relax();
			}

			acp_dma_start(rtd->acp_mmio,
955
				      ACP_TO_I2S_DMA_CH_NUM, true);
956 957

		} else {
958 959
			if (rtd->i2ssp_capturebytescount == 0)
				rtd->i2ssp_capturebytescount = bytescount;
960
			acp_dma_start(rtd->acp_mmio,
961
				      I2S_TO_ACP_DMA_CH_NUM, true);
962 963 964 965 966 967
		}
		ret = 0;
		break;
	case SNDRV_PCM_TRIGGER_STOP:
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
	case SNDRV_PCM_TRIGGER_SUSPEND:
968 969
		/*
		 * Need to stop only circular DMA channels :
970 971 972 973
		 * ACP_TO_I2S_DMA_CH_NUM / I2S_TO_ACP_DMA_CH_NUM. Non-circular
		 * channels will stopped automatically after its transfer
		 * completes : SYSRAM_TO_ACP_CH_NUM / ACP_TO_SYSRAM_CH_NUM
		 */
974
		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
975
			ret = acp_dma_stop(rtd->acp_mmio,
976
					   SYSRAM_TO_ACP_CH_NUM);
977
			ret = acp_dma_stop(rtd->acp_mmio,
978
					   ACP_TO_I2S_DMA_CH_NUM);
979
			rtd->i2ssp_renderbytescount = 0;
980
		} else {
981
			ret = acp_dma_stop(rtd->acp_mmio,
982
					   I2S_TO_ACP_DMA_CH_NUM);
983
			ret = acp_dma_stop(rtd->acp_mmio,
984
					   ACP_TO_SYSRAM_CH_NUM);
985
			rtd->i2ssp_capturebytescount = 0;
986
		}
987 988 989 990 991 992 993 994 995
		break;
	default:
		ret = -EINVAL;
	}
	return ret;
}

static int acp_dma_new(struct snd_soc_pcm_runtime *rtd)
{
996
	int ret;
997 998
	struct snd_soc_component *component = snd_soc_rtdcom_lookup(rtd,
								    DRV_NAME);
999
	struct audio_drv_data *adata = dev_get_drvdata(component->dev);
1000 1001 1002 1003

	switch (adata->asic_type) {
	case CHIP_STONEY:
		ret = snd_pcm_lib_preallocate_pages_for_all(rtd->pcm,
1004 1005 1006
							    SNDRV_DMA_TYPE_DEV,
							    NULL, ST_MIN_BUFFER,
							    ST_MAX_BUFFER);
1007 1008 1009
		break;
	default:
		ret = snd_pcm_lib_preallocate_pages_for_all(rtd->pcm,
1010 1011 1012
							    SNDRV_DMA_TYPE_DEV,
							    NULL, MIN_BUFFER,
							    MAX_BUFFER);
1013 1014 1015
		break;
	}
	if (ret < 0)
1016
		dev_err(component->dev,
1017
			"buffer preallocation failer error:%d\n", ret);
1018
	return ret;
1019 1020 1021 1022
}

static int acp_dma_close(struct snd_pcm_substream *substream)
{
1023
	u16 bank;
1024 1025 1026
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct audio_substream_data *rtd = runtime->private_data;
	struct snd_soc_pcm_runtime *prtd = substream->private_data;
1027 1028
	struct snd_soc_component *component = snd_soc_rtdcom_lookup(prtd,
								    DRV_NAME);
1029
	struct audio_drv_data *adata = dev_get_drvdata(component->dev);
1030 1031 1032

	kfree(rtd);

1033
	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1034
		adata->play_i2ssp_stream = NULL;
1035 1036
		/*
		 * For Stoney, Memory gating is disabled,i.e SRAM Banks
1037 1038 1039 1040 1041 1042 1043
		 * won't be turned off. The default state for SRAM banks is ON.
		 * Setting SRAM bank state code skipped for STONEY platform.
		 * added condition checks for Carrizo platform only
		 */
		if (adata->asic_type != CHIP_STONEY) {
			for (bank = 1; bank <= 4; bank++)
				acp_set_sram_bank_state(adata->acp_mmio, bank,
1044
							false);
1045 1046
		}
	} else  {
1047
		adata->capture_i2ssp_stream = NULL;
1048 1049 1050
		if (adata->asic_type != CHIP_STONEY) {
			for (bank = 5; bank <= 8; bank++)
				acp_set_sram_bank_state(adata->acp_mmio, bank,
1051
							false);
1052
		}
1053
	}
1054

1055 1056
	/*
	 * Disable ACP irq, when the current stream is being closed and
1057
	 * another stream is also not active.
1058
	 */
1059
	if (!adata->play_i2ssp_stream && !adata->capture_i2ssp_stream)
1060 1061 1062 1063 1064
		acp_reg_write(0, adata->acp_mmio, mmACP_EXTERNAL_INTR_ENB);

	return 0;
}

1065
static const struct snd_pcm_ops acp_dma_ops = {
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
	.open = acp_dma_open,
	.close = acp_dma_close,
	.ioctl = snd_pcm_lib_ioctl,
	.hw_params = acp_dma_hw_params,
	.hw_free = acp_dma_hw_free,
	.trigger = acp_dma_trigger,
	.pointer = acp_dma_pointer,
	.mmap = acp_dma_mmap,
	.prepare = acp_dma_prepare,
};

1077
static const struct snd_soc_component_driver acp_asoc_platform = {
1078
	.name = DRV_NAME,
1079 1080 1081 1082 1083 1084 1085 1086 1087
	.ops = &acp_dma_ops,
	.pcm_new = acp_dma_new,
};

static int acp_audio_probe(struct platform_device *pdev)
{
	int status;
	struct audio_drv_data *audio_drv_data;
	struct resource *res;
1088
	const u32 *pdata = pdev->dev.platform_data;
1089

1090 1091 1092 1093 1094
	if (!pdata) {
		dev_err(&pdev->dev, "Missing platform data\n");
		return -ENODEV;
	}

1095
	audio_drv_data = devm_kzalloc(&pdev->dev, sizeof(struct audio_drv_data),
1096 1097
				      GFP_KERNEL);
	if (!audio_drv_data)
1098 1099 1100 1101
		return -ENOMEM;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	audio_drv_data->acp_mmio = devm_ioremap_resource(&pdev->dev, res);
1102 1103
	if (IS_ERR(audio_drv_data->acp_mmio))
		return PTR_ERR(audio_drv_data->acp_mmio);
1104

1105 1106
	/*
	 * The following members gets populated in device 'open'
1107 1108 1109 1110
	 * function. Till then interrupts are disabled in 'acp_init'
	 * and device doesn't generate any interrupts.
	 */

1111 1112 1113
	audio_drv_data->play_i2ssp_stream = NULL;
	audio_drv_data->capture_i2ssp_stream = NULL;

1114
	audio_drv_data->asic_type =  *pdata;
1115 1116 1117 1118 1119 1120 1121 1122

	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (!res) {
		dev_err(&pdev->dev, "IORESOURCE_IRQ FAILED\n");
		return -ENODEV;
	}

	status = devm_request_irq(&pdev->dev, res->start, dma_irq_handler,
1123
				  0, "ACP_IRQ", &pdev->dev);
1124 1125 1126 1127 1128 1129 1130 1131
	if (status) {
		dev_err(&pdev->dev, "ACP IRQ request failed\n");
		return status;
	}

	dev_set_drvdata(&pdev->dev, audio_drv_data);

	/* Initialize the ACP */
1132 1133 1134 1135 1136
	status = acp_init(audio_drv_data->acp_mmio, audio_drv_data->asic_type);
	if (status) {
		dev_err(&pdev->dev, "ACP Init failed status:%d\n", status);
		return status;
	}
1137

1138
	status = devm_snd_soc_register_component(&pdev->dev,
1139
						 &acp_asoc_platform, NULL, 0);
1140 1141 1142 1143 1144
	if (status != 0) {
		dev_err(&pdev->dev, "Fail to register ALSA platform device\n");
		return status;
	}

1145 1146 1147 1148
	pm_runtime_set_autosuspend_delay(&pdev->dev, 10000);
	pm_runtime_use_autosuspend(&pdev->dev);
	pm_runtime_enable(&pdev->dev);

1149 1150 1151 1152 1153
	return status;
}

static int acp_audio_remove(struct platform_device *pdev)
{
1154
	int status;
1155 1156
	struct audio_drv_data *adata = dev_get_drvdata(&pdev->dev);

1157 1158 1159
	status = acp_deinit(adata->acp_mmio);
	if (status)
		dev_err(&pdev->dev, "ACP Deinit failed status:%d\n", status);
1160
	pm_runtime_disable(&pdev->dev);
1161 1162 1163 1164

	return 0;
}

1165 1166
static int acp_pcm_resume(struct device *dev)
{
1167
	u16 bank;
1168
	int status;
1169 1170
	struct audio_drv_data *adata = dev_get_drvdata(dev);

1171 1172 1173 1174 1175
	status = acp_init(adata->acp_mmio, adata->asic_type);
	if (status) {
		dev_err(dev, "ACP Init failed status:%d\n", status);
		return status;
	}
1176

1177
	if (adata->play_i2ssp_stream && adata->play_i2ssp_stream->runtime) {
1178 1179
		/*
		 * For Stoney, Memory gating is disabled,i.e SRAM Banks
1180 1181 1182 1183 1184 1185
		 * won't be turned off. The default state for SRAM banks is ON.
		 * Setting SRAM bank state code skipped for STONEY platform.
		 */
		if (adata->asic_type != CHIP_STONEY) {
			for (bank = 1; bank <= 4; bank++)
				acp_set_sram_bank_state(adata->acp_mmio, bank,
1186
							true);
1187
		}
1188
		config_acp_dma(adata->acp_mmio,
1189 1190
			       adata->play_i2ssp_stream->runtime->private_data,
			       adata->asic_type);
1191
	}
1192 1193
	if (adata->capture_i2ssp_stream &&
	    adata->capture_i2ssp_stream->runtime) {
1194 1195 1196
		if (adata->asic_type != CHIP_STONEY) {
			for (bank = 5; bank <= 8; bank++)
				acp_set_sram_bank_state(adata->acp_mmio, bank,
1197
							true);
1198
		}
1199
		config_acp_dma(adata->acp_mmio,
1200 1201
			       adata->capture_i2ssp_stream->runtime->private_data,
			       adata->asic_type);
1202
	}
1203 1204 1205 1206 1207 1208
	acp_reg_write(1, adata->acp_mmio, mmACP_EXTERNAL_INTR_ENB);
	return 0;
}

static int acp_pcm_runtime_suspend(struct device *dev)
{
1209
	int status;
1210 1211
	struct audio_drv_data *adata = dev_get_drvdata(dev);

1212 1213 1214
	status = acp_deinit(adata->acp_mmio);
	if (status)
		dev_err(dev, "ACP Deinit failed status:%d\n", status);
1215 1216 1217 1218 1219 1220
	acp_reg_write(0, adata->acp_mmio, mmACP_EXTERNAL_INTR_ENB);
	return 0;
}

static int acp_pcm_runtime_resume(struct device *dev)
{
1221
	int status;
1222 1223
	struct audio_drv_data *adata = dev_get_drvdata(dev);

1224 1225 1226 1227 1228
	status = acp_init(adata->acp_mmio, adata->asic_type);
	if (status) {
		dev_err(dev, "ACP Init failed status:%d\n", status);
		return status;
	}
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
	acp_reg_write(1, adata->acp_mmio, mmACP_EXTERNAL_INTR_ENB);
	return 0;
}

static const struct dev_pm_ops acp_pm_ops = {
	.resume = acp_pcm_resume,
	.runtime_suspend = acp_pcm_runtime_suspend,
	.runtime_resume = acp_pcm_runtime_resume,
};

1239 1240 1241 1242
static struct platform_driver acp_dma_driver = {
	.probe = acp_audio_probe,
	.remove = acp_audio_remove,
	.driver = {
1243
		.name = DRV_NAME,
1244
		.pm = &acp_pm_ops,
1245 1246 1247 1248 1249
	},
};

module_platform_driver(acp_dma_driver);

1250
MODULE_AUTHOR("Vijendar.Mukunda@amd.com");
1251 1252 1253
MODULE_AUTHOR("Maruthi.Bayyavarapu@amd.com");
MODULE_DESCRIPTION("AMD ACP PCM Driver");
MODULE_LICENSE("GPL v2");
1254
MODULE_ALIAS("platform:"DRV_NAME);