2 * Intel Baytrail SST DSP driver
3 * Copyright (c) 2014, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 #include <linux/delay.h>
17 #include <linux/slab.h>
18 #include <linux/device.h>
19 #include <linux/interrupt.h>
20 #include <linux/module.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/platform_device.h>
23 #include <linux/firmware.h>
26 #include "sst-dsp-priv.h"
27 #include "sst-baytrail-ipc.h"
29 #define SST_BYT_FW_SIGNATURE_SIZE 4
30 #define SST_BYT_FW_SIGN "$SST"
32 #define SST_BYT_IRAM_OFFSET 0xC0000
33 #define SST_BYT_DRAM_OFFSET 0x100000
34 #define SST_BYT_SHIM_OFFSET 0x140000
42 struct dma_block_info
{
43 enum sst_ram_type type
; /* IRAM/DRAM */
45 u32 ram_offset
; /* Offset in I/DRAM */
46 u32 rsvd
; /* Reserved field */
50 unsigned char signature
[SST_BYT_FW_SIGNATURE_SIZE
];
51 u32 file_size
; /* size of fw minus this header */
52 u32 modules
; /* # of modules */
53 u32 file_format
; /* version of header format */
57 struct sst_byt_fw_module_header
{
58 unsigned char signature
[SST_BYT_FW_SIGNATURE_SIZE
];
59 u32 mod_size
; /* size of module */
60 u32 blocks
; /* # of blocks */
61 u32 type
; /* codec type, pp lib */
65 static int sst_byt_parse_module(struct sst_dsp
*dsp
, struct sst_fw
*fw
,
66 struct sst_byt_fw_module_header
*module
)
68 struct dma_block_info
*block
;
69 struct sst_module
*mod
;
70 struct sst_module_template
template;
73 memset(&template, 0, sizeof(template));
74 template.id
= module
->type
;
75 template.entry
= module
->entry_point
;
77 mod
= sst_module_new(fw
, &template, NULL
);
81 block
= (void *)module
+ sizeof(*module
);
83 for (count
= 0; count
< module
->blocks
; count
++) {
85 if (block
->size
<= 0) {
86 dev_err(dsp
->dev
, "block %d size invalid\n", count
);
90 switch (block
->type
) {
92 mod
->offset
= block
->ram_offset
+
93 dsp
->addr
.iram_offset
;
94 mod
->type
= SST_MEM_IRAM
;
97 mod
->offset
= block
->ram_offset
+
98 dsp
->addr
.dram_offset
;
99 mod
->type
= SST_MEM_DRAM
;
102 mod
->offset
= block
->ram_offset
+
103 (dsp
->addr
.fw_ext
- dsp
->addr
.lpe
);
104 mod
->type
= SST_MEM_CACHE
;
107 dev_err(dsp
->dev
, "wrong ram type 0x%x in block0x%x\n",
112 mod
->size
= block
->size
;
113 mod
->data
= (void *)block
+ sizeof(*block
);
115 sst_module_alloc_blocks(mod
);
117 block
= (void *)block
+ sizeof(*block
) + block
->size
;
122 static int sst_byt_parse_fw_image(struct sst_fw
*sst_fw
)
124 struct fw_header
*header
;
125 struct sst_byt_fw_module_header
*module
;
126 struct sst_dsp
*dsp
= sst_fw
->dsp
;
129 /* Read the header information from the data pointer */
130 header
= (struct fw_header
*)sst_fw
->dma_buf
;
133 if ((strncmp(header
->signature
, SST_BYT_FW_SIGN
, 4) != 0) ||
134 (sst_fw
->size
!= header
->file_size
+ sizeof(*header
))) {
135 /* Invalid FW signature */
136 dev_err(dsp
->dev
, "Invalid FW sign/filesize mismatch\n");
141 "header sign=%4s size=0x%x modules=0x%x fmt=0x%x size=%zu\n",
142 header
->signature
, header
->file_size
, header
->modules
,
143 header
->file_format
, sizeof(*header
));
145 module
= (void *)sst_fw
->dma_buf
+ sizeof(*header
);
146 for (count
= 0; count
< header
->modules
; count
++) {
148 ret
= sst_byt_parse_module(dsp
, sst_fw
, module
);
150 dev_err(dsp
->dev
, "invalid module %d\n", count
);
153 module
= (void *)module
+ sizeof(*module
) + module
->mod_size
;
159 static void sst_byt_dump_shim(struct sst_dsp
*sst
)
164 for (i
= 0; i
<= 0xF0; i
+= 8) {
165 reg
= sst_dsp_shim_read64_unlocked(sst
, i
);
167 dev_dbg(sst
->dev
, "shim 0x%2.2x value 0x%16.16llx\n",
171 for (i
= 0x00; i
<= 0xff; i
+= 4) {
172 reg
= readl(sst
->addr
.pci_cfg
+ i
);
174 dev_dbg(sst
->dev
, "pci 0x%2.2x value 0x%8.8x\n",
179 static irqreturn_t
sst_byt_irq(int irq
, void *context
)
181 struct sst_dsp
*sst
= (struct sst_dsp
*) context
;
183 irqreturn_t ret
= IRQ_NONE
;
185 spin_lock(&sst
->spinlock
);
187 isrx
= sst_dsp_shim_read64_unlocked(sst
, SST_ISRX
);
188 if (isrx
& SST_ISRX_DONE
) {
189 /* ADSP has processed the message request from IA */
190 sst_dsp_shim_update_bits64_unlocked(sst
, SST_IPCX
,
191 SST_BYT_IPCX_DONE
, 0);
192 ret
= IRQ_WAKE_THREAD
;
194 if (isrx
& SST_BYT_ISRX_REQUEST
) {
195 /* mask message request from ADSP and do processing later */
196 sst_dsp_shim_update_bits64_unlocked(sst
, SST_IMRX
,
197 SST_BYT_IMRX_REQUEST
,
198 SST_BYT_IMRX_REQUEST
);
199 ret
= IRQ_WAKE_THREAD
;
202 spin_unlock(&sst
->spinlock
);
207 static void sst_byt_boot(struct sst_dsp
*sst
)
212 * save the physical address of extended firmware block in the first
213 * 4 bytes of the mailbox
215 memcpy_toio(sst
->addr
.lpe
+ SST_BYT_MAILBOX_OFFSET
,
216 &sst
->pdata
->fw_base
, sizeof(u32
));
218 /* release stall and wait to unstall */
219 sst_dsp_shim_update_bits64(sst
, SST_CSR
, SST_BYT_CSR_STALL
, 0x0);
221 if (!(sst_dsp_shim_read64(sst
, SST_CSR
) &
222 SST_BYT_CSR_PWAITMODE
))
227 dev_err(sst
->dev
, "unable to start DSP\n");
228 sst_byt_dump_shim(sst
);
232 static void sst_byt_reset(struct sst_dsp
*sst
)
234 /* put DSP into reset, set reset vector and stall */
235 sst_dsp_shim_update_bits64(sst
, SST_CSR
,
236 SST_BYT_CSR_RST
| SST_BYT_CSR_VECTOR_SEL
| SST_BYT_CSR_STALL
,
237 SST_BYT_CSR_RST
| SST_BYT_CSR_VECTOR_SEL
| SST_BYT_CSR_STALL
);
241 /* take DSP out of reset and keep stalled for FW loading */
242 sst_dsp_shim_update_bits64(sst
, SST_CSR
, SST_BYT_CSR_RST
, 0);
245 struct sst_adsp_memregion
{
249 enum sst_mem_type type
;
253 static const struct sst_adsp_memregion byt_region
[] = {
254 {0xC0000, 0x100000, 8, SST_MEM_IRAM
}, /* I-SRAM - 8 * 32kB */
255 {0x100000, 0x140000, 8, SST_MEM_DRAM
}, /* D-SRAM0 - 8 * 32kB */
258 static int sst_byt_resource_map(struct sst_dsp
*sst
, struct sst_pdata
*pdata
)
260 sst
->addr
.lpe_base
= pdata
->lpe_base
;
261 sst
->addr
.lpe
= ioremap(pdata
->lpe_base
, pdata
->lpe_size
);
265 /* ADSP PCI MMIO config space */
266 sst
->addr
.pci_cfg
= ioremap(pdata
->pcicfg_base
, pdata
->pcicfg_size
);
267 if (!sst
->addr
.pci_cfg
) {
268 iounmap(sst
->addr
.lpe
);
272 /* SST Extended FW allocation */
273 sst
->addr
.fw_ext
= ioremap(pdata
->fw_base
, pdata
->fw_size
);
274 if (!sst
->addr
.fw_ext
) {
275 iounmap(sst
->addr
.pci_cfg
);
276 iounmap(sst
->addr
.lpe
);
281 sst
->addr
.shim
= sst
->addr
.lpe
+ sst
->addr
.shim_offset
;
283 sst_dsp_mailbox_init(sst
, SST_BYT_MAILBOX_OFFSET
+ 0x204,
284 SST_BYT_IPC_MAX_PAYLOAD_SIZE
,
285 SST_BYT_MAILBOX_OFFSET
,
286 SST_BYT_IPC_MAX_PAYLOAD_SIZE
);
288 sst
->irq
= pdata
->irq
;
293 static int sst_byt_init(struct sst_dsp
*sst
, struct sst_pdata
*pdata
)
295 const struct sst_adsp_memregion
*region
;
297 int ret
= -ENODEV
, i
, j
, region_count
;
305 region_count
= ARRAY_SIZE(byt_region
);
306 sst
->addr
.iram_offset
= SST_BYT_IRAM_OFFSET
;
307 sst
->addr
.dram_offset
= SST_BYT_DRAM_OFFSET
;
308 sst
->addr
.shim_offset
= SST_BYT_SHIM_OFFSET
;
311 dev_err(dev
, "failed to get mem resources\n");
315 ret
= sst_byt_resource_map(sst
, pdata
);
317 dev_err(dev
, "failed to map resources\n");
321 ret
= dma_coerce_mask_and_coherent(sst
->dma_dev
, DMA_BIT_MASK(32));
325 /* enable Interrupt from both sides */
326 sst_dsp_shim_update_bits64(sst
, SST_IMRX
, 0x3, 0x0);
327 sst_dsp_shim_update_bits64(sst
, SST_IMRD
, 0x3, 0x0);
329 /* register DSP memory blocks - ideally we should get this from ACPI */
330 for (i
= 0; i
< region_count
; i
++) {
331 offset
= region
[i
].start
;
332 size
= (region
[i
].end
- region
[i
].start
) / region
[i
].blocks
;
334 /* register individual memory blocks */
335 for (j
= 0; j
< region
[i
].blocks
; j
++) {
336 sst_mem_block_register(sst
, offset
, size
,
337 region
[i
].type
, NULL
, j
, sst
);
345 static void sst_byt_free(struct sst_dsp
*sst
)
347 sst_mem_block_unregister_all(sst
);
348 iounmap(sst
->addr
.lpe
);
349 iounmap(sst
->addr
.pci_cfg
);
350 iounmap(sst
->addr
.fw_ext
);
353 struct sst_ops sst_byt_ops
= {
354 .reset
= sst_byt_reset
,
355 .boot
= sst_byt_boot
,
356 .write
= sst_shim32_write
,
357 .read
= sst_shim32_read
,
358 .write64
= sst_shim32_write64
,
359 .read64
= sst_shim32_read64
,
360 .ram_read
= sst_memcpy_fromio_32
,
361 .ram_write
= sst_memcpy_toio_32
,
362 .irq_handler
= sst_byt_irq
,
363 .init
= sst_byt_init
,
364 .free
= sst_byt_free
,
365 .parse_fw
= sst_byt_parse_fw_image
,