2015-07-29 17:45:22 +01:00
|
|
|
/*
|
|
|
|
|
Copyright(c) 2014-2015 Intel Corporation
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
2017-01-24 14:59:08 +00:00
|
|
|
This library is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2.1 of
|
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Lesser General Public License for more details.
|
2015-07-29 17:45:22 +01:00
|
|
|
|
|
|
|
|
Authors: Mengdong Lin <mengdong.lin@intel.com>
|
|
|
|
|
Yao Jin <yao.jin@intel.com>
|
|
|
|
|
Liam Girdwood <liam.r.girdwood@linux.intel.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "list.h"
|
|
|
|
|
#include "tplg_local.h"
|
|
|
|
|
|
|
|
|
|
/* verbose output detailing each object size and file position */
|
|
|
|
|
static void verbose(snd_tplg_t *tplg, const char *fmt, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
|
|
if (!tplg->verbose)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
va_start(va, fmt);
|
2019-12-13 17:01:03 +01:00
|
|
|
fprintf(stdout, "0x%6.6zx/%6.6zd -", tplg->out_pos, tplg->out_pos);
|
2015-07-29 17:45:22 +01:00
|
|
|
vfprintf(stdout, fmt, va);
|
|
|
|
|
va_end(va);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 17:01:03 +01:00
|
|
|
/* write a block, track the position */
|
|
|
|
|
static ssize_t twrite(snd_tplg_t *tplg, void *data, size_t data_size)
|
|
|
|
|
{
|
|
|
|
|
ssize_t r = write(tplg->out_fd, data, data_size);
|
|
|
|
|
if (r != (ssize_t)data_size) {
|
|
|
|
|
if (r < 0) {
|
|
|
|
|
SNDERR("error: unable to write: %s", strerror(errno));
|
|
|
|
|
return -errno;
|
|
|
|
|
}
|
|
|
|
|
tplg->out_pos += r;
|
|
|
|
|
SNDERR("error: unable to write (partial)");
|
|
|
|
|
return -EIO;
|
|
|
|
|
}
|
|
|
|
|
tplg->out_pos += r;
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 17:45:22 +01:00
|
|
|
/* write out block header to output file */
|
2019-12-13 17:01:03 +01:00
|
|
|
static ssize_t write_block_header(snd_tplg_t *tplg, unsigned int type,
|
|
|
|
|
unsigned int vendor_type,
|
|
|
|
|
unsigned int version, unsigned int index,
|
|
|
|
|
size_t payload_size, int count)
|
2015-07-29 17:45:22 +01:00
|
|
|
{
|
|
|
|
|
struct snd_soc_tplg_hdr hdr;
|
|
|
|
|
|
|
|
|
|
memset(&hdr, 0, sizeof(hdr));
|
|
|
|
|
hdr.magic = SND_SOC_TPLG_MAGIC;
|
|
|
|
|
hdr.abi = SND_SOC_TPLG_ABI_VERSION;
|
|
|
|
|
hdr.type = type;
|
|
|
|
|
hdr.vendor_type = vendor_type;
|
|
|
|
|
hdr.version = version;
|
|
|
|
|
hdr.payload_size = payload_size;
|
|
|
|
|
hdr.index = index;
|
|
|
|
|
hdr.size = sizeof(hdr);
|
|
|
|
|
hdr.count = count;
|
|
|
|
|
|
|
|
|
|
/* make sure file offset is aligned with the calculated HDR offset */
|
2019-12-13 17:01:03 +01:00
|
|
|
if (tplg->out_pos != tplg->next_hdr_pos) {
|
|
|
|
|
SNDERR("error: New header is at offset 0x%zx but file"
|
|
|
|
|
" offset 0x%zx is %s by %ld bytes\n",
|
|
|
|
|
tplg->next_hdr_pos, tplg->out_pos,
|
|
|
|
|
tplg->out_pos > tplg->next_hdr_pos ? "ahead" : "behind",
|
|
|
|
|
labs(tplg->out_pos - tplg->next_hdr_pos));
|
|
|
|
|
return -EINVAL;
|
2015-07-29 17:45:22 +01:00
|
|
|
}
|
|
|
|
|
|
2017-06-30 14:14:56 +01:00
|
|
|
verbose(tplg, " header index %d type %d count %d size 0x%lx/%ld vendor %d "
|
|
|
|
|
"version %d\n", index, type, count,
|
|
|
|
|
(long unsigned int)payload_size, (long int)payload_size,
|
|
|
|
|
vendor_type, version);
|
2015-07-29 17:45:22 +01:00
|
|
|
|
|
|
|
|
tplg->next_hdr_pos += hdr.payload_size + sizeof(hdr);
|
|
|
|
|
|
2019-12-13 17:01:03 +01:00
|
|
|
return twrite(tplg, &hdr, sizeof(hdr));
|
2015-07-29 17:45:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int write_elem_block(snd_tplg_t *tplg,
|
2019-12-13 17:01:03 +01:00
|
|
|
struct list_head *base, size_t size, int tplg_type, const char *obj_name)
|
2015-07-29 17:45:22 +01:00
|
|
|
{
|
2017-04-13 14:52:47 +08:00
|
|
|
struct list_head *pos, *sub_pos, *sub_base;
|
|
|
|
|
struct tplg_elem *elem, *elem_next;
|
2019-12-13 17:01:03 +01:00
|
|
|
size_t total_size = 0, count = 0, block_size = 0;
|
|
|
|
|
ssize_t ret, wsize;
|
2015-07-29 17:45:22 +01:00
|
|
|
|
2017-04-13 14:52:47 +08:00
|
|
|
sub_base = base;
|
2015-07-29 17:45:22 +01:00
|
|
|
list_for_each(pos, base) {
|
2017-04-13 14:52:47 +08:00
|
|
|
/* find elems with the same index to make a block */
|
2015-07-29 17:45:22 +01:00
|
|
|
elem = list_entry(pos, struct tplg_elem, list);
|
2018-01-02 10:50:01 +05:30
|
|
|
|
|
|
|
|
if (elem->compound_elem)
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-04-13 14:52:47 +08:00
|
|
|
elem_next = list_entry(pos->next, struct tplg_elem, list);
|
|
|
|
|
block_size += elem->size;
|
|
|
|
|
count++;
|
2015-07-29 17:45:22 +01:00
|
|
|
|
2017-04-13 14:52:47 +08:00
|
|
|
if ((pos->next == base) || (elem_next->index != elem->index)) {
|
|
|
|
|
/* write header for the block */
|
|
|
|
|
ret = write_block_header(tplg, tplg_type, elem->vendor_type,
|
|
|
|
|
tplg->version, elem->index, block_size, count);
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
SNDERR("error: failed to write %s block %d\n",
|
|
|
|
|
obj_name, ret);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* write elems for the block */
|
|
|
|
|
list_for_each(sub_pos, sub_base) {
|
|
|
|
|
elem = list_entry(sub_pos, struct tplg_elem, list);
|
|
|
|
|
/* compound elems have already been copied to other elems */
|
|
|
|
|
if (elem->compound_elem)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (elem->type != SND_TPLG_TYPE_DAPM_GRAPH)
|
|
|
|
|
verbose(tplg, " %s '%s': write %d bytes\n",
|
|
|
|
|
obj_name, elem->id, elem->size);
|
|
|
|
|
else
|
2017-06-30 14:14:56 +01:00
|
|
|
verbose(tplg, " %s '%s -> %s -> %s': write %d bytes\n",
|
|
|
|
|
obj_name, elem->route->source,
|
|
|
|
|
elem->route->control,
|
|
|
|
|
elem->route->sink, elem->size);
|
2017-04-13 14:52:47 +08:00
|
|
|
|
2019-12-13 17:01:03 +01:00
|
|
|
wsize = twrite(tplg, elem->obj, elem->size);
|
|
|
|
|
if (wsize < 0)
|
|
|
|
|
return size;
|
2017-04-13 14:52:47 +08:00
|
|
|
|
|
|
|
|
total_size += wsize;
|
|
|
|
|
/* get to the end of sub list */
|
|
|
|
|
if (sub_pos == pos)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
/* the last elem of the current sub list as the head of
|
|
|
|
|
next sub list*/
|
|
|
|
|
sub_base = pos;
|
|
|
|
|
count = 0;
|
|
|
|
|
block_size = 0;
|
2015-07-29 17:45:22 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* make sure we have written the correct size */
|
2017-04-13 14:52:47 +08:00
|
|
|
if (total_size != size) {
|
2019-12-13 17:01:03 +01:00
|
|
|
SNDERR("error: size mismatch. Expected %zu wrote %zu\n",
|
2017-04-13 14:52:47 +08:00
|
|
|
size, total_size);
|
2015-07-29 17:45:22 +01:00
|
|
|
return -EIO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int calc_block_size(struct list_head *base)
|
|
|
|
|
{
|
|
|
|
|
struct list_head *pos;
|
|
|
|
|
struct tplg_elem *elem;
|
|
|
|
|
int size = 0;
|
|
|
|
|
|
|
|
|
|
list_for_each(pos, base) {
|
|
|
|
|
|
|
|
|
|
elem = list_entry(pos, struct tplg_elem, list);
|
|
|
|
|
|
|
|
|
|
/* compound elems have already been copied to other elems */
|
|
|
|
|
if (elem->compound_elem)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
size += elem->size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 17:01:03 +01:00
|
|
|
static int write_block(snd_tplg_t *tplg, struct list_head *base, int type)
|
2015-07-29 17:45:22 +01:00
|
|
|
{
|
|
|
|
|
int size;
|
|
|
|
|
|
|
|
|
|
/* calculate the block size in bytes for all elems in this list */
|
|
|
|
|
size = calc_block_size(base);
|
|
|
|
|
if (size <= 0)
|
|
|
|
|
return size;
|
|
|
|
|
|
|
|
|
|
verbose(tplg, " block size for type %d is %d\n", type, size);
|
|
|
|
|
|
|
|
|
|
/* write each elem for this block */
|
|
|
|
|
switch (type) {
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_MIXER:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
|
|
|
|
SND_SOC_TPLG_TYPE_MIXER, "mixer");
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_BYTES:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
|
|
|
|
SND_SOC_TPLG_TYPE_BYTES, "bytes");
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_ENUM:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
|
|
|
|
SND_SOC_TPLG_TYPE_ENUM, "enum");
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_DAPM_GRAPH:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
|
|
|
|
SND_SOC_TPLG_TYPE_DAPM_GRAPH, "route");
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_DAPM_WIDGET:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
|
|
|
|
SND_SOC_TPLG_TYPE_DAPM_WIDGET, "widget");
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_PCM:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
|
|
|
|
SND_SOC_TPLG_TYPE_PCM, "pcm");
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_BE:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
2015-11-05 20:49:23 +08:00
|
|
|
SND_SOC_TPLG_TYPE_BACKEND_LINK, "be");
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_CC:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
2015-11-05 20:49:23 +08:00
|
|
|
SND_SOC_TPLG_TYPE_CODEC_LINK, "cc");
|
2015-08-10 19:13:47 +01:00
|
|
|
case SND_TPLG_TYPE_DATA:
|
2015-07-29 17:45:22 +01:00
|
|
|
return write_elem_block(tplg, base, size,
|
|
|
|
|
SND_SOC_TPLG_TYPE_PDATA, "data");
|
2016-11-16 14:42:49 +08:00
|
|
|
case SND_TPLG_TYPE_DAI:
|
|
|
|
|
return write_elem_block(tplg, base, size,
|
|
|
|
|
SND_SOC_TPLG_TYPE_DAI, "dai");
|
2015-07-29 17:45:22 +01:00
|
|
|
default:
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-04 18:09:46 +01:00
|
|
|
/* write the manifest including its private data */
|
2019-12-13 17:01:03 +01:00
|
|
|
static ssize_t write_manifest_data(snd_tplg_t *tplg)
|
2015-08-04 18:09:46 +01:00
|
|
|
{
|
2019-12-13 17:01:03 +01:00
|
|
|
ssize_t ret;
|
2015-08-04 18:09:46 +01:00
|
|
|
|
|
|
|
|
/* write the header for this block */
|
|
|
|
|
ret = write_block_header(tplg, SND_SOC_TPLG_TYPE_MANIFEST, 0,
|
2015-09-16 17:07:13 +08:00
|
|
|
tplg->version, 0,
|
2015-08-04 18:09:46 +01:00
|
|
|
sizeof(tplg->manifest) + tplg->manifest.priv.size, 1);
|
|
|
|
|
if (ret < 0) {
|
2019-12-13 17:01:03 +01:00
|
|
|
SNDERR("error: failed to write manifest block\n");
|
2015-08-04 18:09:46 +01:00
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verbose(tplg, "manifest : write %d bytes\n", sizeof(tplg->manifest));
|
2019-12-13 17:01:03 +01:00
|
|
|
ret = twrite(tplg, &tplg->manifest, sizeof(tplg->manifest));
|
|
|
|
|
if (ret >= 0) {
|
|
|
|
|
verbose(tplg, "manifest : write %d priv bytes\n", tplg->manifest.priv.size);
|
|
|
|
|
ret = twrite(tplg, tplg->manifest_pdata, tplg->manifest.priv.size);
|
2015-08-04 18:09:46 +01:00
|
|
|
}
|
2019-12-13 17:01:03 +01:00
|
|
|
return ret;
|
2015-08-04 18:09:46 +01:00
|
|
|
}
|
|
|
|
|
|
2015-07-29 17:45:22 +01:00
|
|
|
int tplg_write_data(snd_tplg_t *tplg)
|
|
|
|
|
{
|
2019-12-13 18:24:55 +01:00
|
|
|
struct wtable {
|
|
|
|
|
const char *name;
|
|
|
|
|
struct list_head *list;
|
|
|
|
|
int type;
|
|
|
|
|
} *wptr, wtable[] = {
|
|
|
|
|
{
|
|
|
|
|
.name = "control mixer elements",
|
|
|
|
|
.list = &tplg->mixer_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_MIXER,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "control enum elements",
|
|
|
|
|
.list = &tplg->enum_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_ENUM,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "control extended (bytes) elements",
|
|
|
|
|
.list = &tplg->bytes_ext_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_BYTES,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "dapm widget elements",
|
|
|
|
|
.list = &tplg->widget_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_DAPM_WIDGET,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "pcm elements",
|
|
|
|
|
.list = &tplg->pcm_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_PCM,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "physical dai elements",
|
|
|
|
|
.list = &tplg->dai_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_DAI,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "be elements",
|
|
|
|
|
.list = &tplg->be_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_BE,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "cc elements",
|
|
|
|
|
.list = &tplg->cc_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_CC,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "route (dapm graph) elements",
|
|
|
|
|
.list = &tplg->route_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_DAPM_GRAPH,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "private data elements",
|
|
|
|
|
.list = &tplg->pdata_list,
|
|
|
|
|
.type = SND_TPLG_TYPE_DATA,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-13 17:01:03 +01:00
|
|
|
ssize_t ret;
|
2019-12-13 18:24:55 +01:00
|
|
|
unsigned int index;
|
2015-07-29 17:45:22 +01:00
|
|
|
|
|
|
|
|
/* write manifest */
|
2015-08-04 18:09:46 +01:00
|
|
|
ret = write_manifest_data(tplg);
|
2015-07-29 17:45:22 +01:00
|
|
|
if (ret < 0) {
|
2019-12-13 18:24:55 +01:00
|
|
|
SNDERR("failed to write manifest %d\n", ret);
|
2015-07-29 17:45:22 +01:00
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 18:24:55 +01:00
|
|
|
/* write all blocks */
|
|
|
|
|
for (index = 0; index < ARRAY_SIZE(wtable); index++) {
|
|
|
|
|
wptr = &wtable[index];
|
|
|
|
|
ret = write_block(tplg, wptr->list, wptr->type);
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
SNDERR("failed to write %s: %s\n", wptr->name, snd_strerror(-ret));
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2015-07-29 17:45:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|