/* * The PIL relocation information region is used to communicate memory regions * occupied by co-processor firmware for post mortem crash analysis. * * It consists of an array of entries with an 8 byte textual identifier of the * region followed by a 64 bit base address and 32 bit size, both little * endian.
*/ #define PIL_RELOC_NAME_LEN 8 #define PIL_RELOC_ENTRY_SIZE (PIL_RELOC_NAME_LEN + sizeof(__le64) + sizeof(__le32))
/** * qcom_pil_info_store() - store PIL information of image in IMEM * @image: name of the image * @base: base address of the loaded image * @size: size of the loaded image * * Return: 0 on success, negative errno on failure
*/ int qcom_pil_info_store(constchar *image, phys_addr_t base, size_t size)
{ char buf[PIL_RELOC_NAME_LEN]; void __iomem *entry; int ret; int i;
mutex_lock(&pil_reloc_lock);
ret = qcom_pil_info_init(); if (ret < 0) {
mutex_unlock(&pil_reloc_lock); return ret;
}
for (i = 0; i < _reloc.num_entries; i++) {
entry = _reloc.base + i * PIL_RELOC_ENTRY_SIZE;
memcpy_fromio(buf, entry, PIL_RELOC_NAME_LEN);
/* * An empty record means we didn't find it, given that the * records are packed.
*/ if (!buf[0]) goto found_unused;
if (!strncmp(buf, image, PIL_RELOC_NAME_LEN)) goto found_existing;
}
pr_warn("insufficient PIL info slots\n");
mutex_unlock(&pil_reloc_lock); return -ENOMEM;
found_unused:
memcpy_toio(entry, image, strnlen(image, PIL_RELOC_NAME_LEN));
found_existing: /* Use two writel() as base is only aligned to 4 bytes on odd entries */
writel(base, entry + PIL_RELOC_NAME_LEN);
writel((u64)base >> 32, entry + PIL_RELOC_NAME_LEN + 4);
writel(size, entry + PIL_RELOC_NAME_LEN + sizeof(__le64));
mutex_unlock(&pil_reloc_lock);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.