2 * skl-sst-utils.c - SKL sst utils functions
4 * Copyright (C) 2016 Intel Corp
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as version 2, as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
16 #include <linux/device.h>
17 #include <linux/slab.h>
18 #include <linux/uuid.h>
19 #include "skl-sst-dsp.h"
20 #include "../common/sst-dsp.h"
21 #include "../common/sst-dsp-priv.h"
22 #include "skl-sst-ipc.h"
25 #define UUID_STR_SIZE 37
26 #define DEFAULT_HASH_SHA256_LEN 32
28 /* FW Extended Manifest Header id = $AE1 */
29 #define SKL_EXT_MANIFEST_HEADER_MAGIC 0x31454124
52 union seg_flags flags
;
65 struct adsp_module_entry
{
69 struct module_type type
;
70 u8 hash1
[DEFAULT_HASH_SHA256_LEN
];
75 u16 instance_max_count
;
76 u16 instance_bss_size
;
77 struct segment_desc segments
[3];
84 u32 preload_page_count
;
97 struct skl_ext_manifest_hdr
{
105 static int skl_get_pvtid_map(struct uuid_module
*module
, int instance_id
)
109 for (pvt_id
= 0; pvt_id
< module
->max_instance
; pvt_id
++) {
110 if (module
->instance_id
[pvt_id
] == instance_id
)
116 int skl_get_pvt_instance_id_map(struct skl_sst
*ctx
,
117 int module_id
, int instance_id
)
119 struct uuid_module
*module
;
121 list_for_each_entry(module
, &ctx
->uuid_list
, list
) {
122 if (module
->id
== module_id
)
123 return skl_get_pvtid_map(module
, instance_id
);
128 EXPORT_SYMBOL_GPL(skl_get_pvt_instance_id_map
);
130 static inline int skl_getid_32(struct uuid_module
*module
, u64
*val
,
131 int word1_mask
, int word2_mask
)
133 int index
, max_inst
, pvt_id
;
136 max_inst
= module
->max_instance
;
137 mask_val
= (u32
)(*val
>> word1_mask
);
139 if (mask_val
!= 0xffffffff) {
140 index
= ffz(mask_val
);
141 pvt_id
= index
+ word1_mask
+ word2_mask
;
142 if (pvt_id
<= (max_inst
- 1)) {
143 *val
|= 1ULL << (index
+ word1_mask
);
151 static inline int skl_pvtid_128(struct uuid_module
*module
)
153 int j
, i
, word1_mask
, word2_mask
= 0, pvt_id
;
155 for (j
= 0; j
< MAX_INSTANCE_BUFF
; j
++) {
158 for (i
= 0; i
< 2; i
++) {
159 pvt_id
= skl_getid_32(module
, &module
->pvt_id
[j
],
160 word1_mask
, word2_mask
);
165 if ((word1_mask
+ word2_mask
) >= module
->max_instance
)
170 if (word2_mask
>= module
->max_instance
)
178 * skl_get_pvt_id: generate a private id for use as module id
180 * @ctx: driver context
181 * @mconfig: module configuration data
183 * This generates a 128 bit private unique id for a module TYPE so that
184 * module instance is unique
186 int skl_get_pvt_id(struct skl_sst
*ctx
, uuid_le
*uuid_mod
, int instance_id
)
188 struct uuid_module
*module
;
191 list_for_each_entry(module
, &ctx
->uuid_list
, list
) {
192 if (uuid_le_cmp(*uuid_mod
, module
->uuid
) == 0) {
194 pvt_id
= skl_pvtid_128(module
);
196 module
->instance_id
[pvt_id
] = instance_id
;
205 EXPORT_SYMBOL_GPL(skl_get_pvt_id
);
208 * skl_put_pvt_id: free up the private id allocated
210 * @ctx: driver context
211 * @mconfig: module configuration data
213 * This frees a 128 bit private unique id previously generated
215 int skl_put_pvt_id(struct skl_sst
*ctx
, uuid_le
*uuid_mod
, int *pvt_id
)
218 struct uuid_module
*module
;
220 list_for_each_entry(module
, &ctx
->uuid_list
, list
) {
221 if (uuid_le_cmp(*uuid_mod
, module
->uuid
) == 0) {
228 module
->pvt_id
[i
] &= ~(1 << (*pvt_id
));
236 EXPORT_SYMBOL_GPL(skl_put_pvt_id
);
239 * Parse the firmware binary to get the UUID, module id
242 int snd_skl_parse_uuids(struct sst_dsp
*ctx
, const struct firmware
*fw
,
243 unsigned int offset
, int index
)
245 struct adsp_fw_hdr
*adsp_hdr
;
246 struct adsp_module_entry
*mod_entry
;
247 int i
, num_entry
, size
;
250 struct skl_sst
*skl
= ctx
->thread_context
;
251 struct uuid_module
*module
;
252 struct firmware stripped_fw
;
253 unsigned int safe_file
;
256 /* Get the FW pointer to derive ADSP header */
257 stripped_fw
.data
= fw
->data
;
258 stripped_fw
.size
= fw
->size
;
260 skl_dsp_strip_extended_manifest(&stripped_fw
);
262 buf
= stripped_fw
.data
;
264 /* check if we have enough space in file to move to header */
265 safe_file
= sizeof(*adsp_hdr
) + offset
;
266 if (stripped_fw
.size
<= safe_file
) {
267 dev_err(ctx
->dev
, "Small fw file size, No space for hdr\n");
271 adsp_hdr
= (struct adsp_fw_hdr
*)(buf
+ offset
);
273 /* check 1st module entry is in file */
274 safe_file
+= adsp_hdr
->len
+ sizeof(*mod_entry
);
275 if (stripped_fw
.size
<= safe_file
) {
276 dev_err(ctx
->dev
, "Small fw file size, No module entry\n");
280 mod_entry
= (struct adsp_module_entry
*)
281 (buf
+ offset
+ adsp_hdr
->len
);
283 num_entry
= adsp_hdr
->num_modules
;
285 /* check all entries are in file */
286 safe_file
+= num_entry
* sizeof(*mod_entry
);
287 if (stripped_fw
.size
<= safe_file
) {
288 dev_err(ctx
->dev
, "Small fw file size, No modules\n");
294 * Read the UUID(GUID) from FW Manifest.
296 * The 16 byte UUID format is: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXX
297 * Populate the UUID table to store module_id and loadable flags
301 for (i
= 0; i
< num_entry
; i
++, mod_entry
++) {
302 module
= kzalloc(sizeof(*module
), GFP_KERNEL
);
308 uuid_bin
= (uuid_le
*)mod_entry
->uuid
.id
;
309 memcpy(&module
->uuid
, uuid_bin
, sizeof(module
->uuid
));
311 module
->id
= (i
| (index
<< 12));
312 module
->is_loadable
= mod_entry
->type
.load_type
;
313 module
->max_instance
= mod_entry
->instance_max_count
;
314 size
= sizeof(int) * mod_entry
->instance_max_count
;
315 module
->instance_id
= devm_kzalloc(ctx
->dev
, size
, GFP_KERNEL
);
316 if (!module
->instance_id
) {
321 list_add_tail(&module
->list
, &skl
->uuid_list
);
324 "Adding uuid :%pUL mod id: %d Loadable: %d\n",
325 &module
->uuid
, module
->id
, module
->is_loadable
);
331 skl_freeup_uuid_list(skl
);
335 void skl_freeup_uuid_list(struct skl_sst
*ctx
)
337 struct uuid_module
*uuid
, *_uuid
;
339 list_for_each_entry_safe(uuid
, _uuid
, &ctx
->uuid_list
, list
) {
340 list_del(&uuid
->list
);
346 * some firmware binary contains some extended manifest. This needs
347 * to be stripped in that case before we load and use that image.
349 * Get the module id for the module by checking
350 * the table for the UUID for the module
352 int skl_dsp_strip_extended_manifest(struct firmware
*fw
)
354 struct skl_ext_manifest_hdr
*hdr
;
356 /* check if fw file is greater than header we are looking */
357 if (fw
->size
< sizeof(hdr
)) {
358 pr_err("%s: Firmware file small, no hdr\n", __func__
);
362 hdr
= (struct skl_ext_manifest_hdr
*)fw
->data
;
364 if (hdr
->id
== SKL_EXT_MANIFEST_HEADER_MAGIC
) {
365 fw
->size
-= hdr
->len
;
366 fw
->data
+= hdr
->len
;
372 int skl_sst_ctx_init(struct device
*dev
, int irq
, const char *fw_name
,
373 struct skl_dsp_loader_ops dsp_ops
, struct skl_sst
**dsp
,
374 struct sst_dsp_device
*skl_dev
)
379 skl
= devm_kzalloc(dev
, sizeof(*skl
), GFP_KERNEL
);
384 skl_dev
->thread_context
= skl
;
385 INIT_LIST_HEAD(&skl
->uuid_list
);
386 skl
->dsp
= skl_dsp_ctx_init(dev
, skl_dev
, irq
);
388 dev_err(skl
->dev
, "%s: no device\n", __func__
);
393 sst
->fw_name
= fw_name
;
394 sst
->dsp_ops
= dsp_ops
;
395 init_waitqueue_head(&skl
->mod_load_wait
);
396 INIT_LIST_HEAD(&sst
->module_list
);
398 skl
->is_first_boot
= true;
405 int skl_prepare_lib_load(struct skl_sst
*skl
, struct skl_lib_info
*linfo
,
406 struct firmware
*stripped_fw
,
407 unsigned int hdr_offset
, int index
)
410 struct sst_dsp
*dsp
= skl
->dsp
;
412 if (linfo
->fw
== NULL
) {
413 ret
= request_firmware(&linfo
->fw
, linfo
->name
,
416 dev_err(skl
->dev
, "Request lib %s failed:%d\n",
422 if (skl
->is_first_boot
) {
423 ret
= snd_skl_parse_uuids(dsp
, linfo
->fw
, hdr_offset
, index
);
428 stripped_fw
->data
= linfo
->fw
->data
;
429 stripped_fw
->size
= linfo
->fw
->size
;
430 skl_dsp_strip_extended_manifest(stripped_fw
);
435 void skl_release_library(struct skl_lib_info
*linfo
, int lib_count
)
439 /* library indices start from 1 to N. 0 represents base FW */
440 for (i
= 1; i
< lib_count
; i
++) {
442 release_firmware(linfo
[i
].fw
);