blob: 897e14512123b571a6e04ac4fe64d1408e36bafa [file] [log] [blame]
Bjorn Andersson051fb702016-06-20 14:28:41 -07001/*
2 * Qualcomm Peripheral Image Loader
3 *
4 * Copyright (C) 2016 Linaro Ltd
5 * Copyright (C) 2015 Sony Mobile Communications Inc
6 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#include <linux/elf.h>
19#include <linux/firmware.h>
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/remoteproc.h>
Stanimir Varbanove67af182016-11-22 19:02:17 +020023#include <linux/sizes.h>
Bjorn Andersson051fb702016-06-20 14:28:41 -070024#include <linux/slab.h>
25
26#include "remoteproc_internal.h"
27#include "qcom_mdt_loader.h"
28
29/**
Bjorn Andersson051fb702016-06-20 14:28:41 -070030 * qcom_mdt_parse() - extract useful parameters from the mdt header
31 * @fw: firmware handle
32 * @fw_addr: optional reference for base of the firmware's memory region
33 * @fw_size: optional reference for size of the firmware's memory region
34 * @fw_relocate: optional reference for flagging if the firmware is relocatable
35 *
36 * Returns 0 on success, negative errno otherwise.
37 */
38int qcom_mdt_parse(const struct firmware *fw, phys_addr_t *fw_addr,
39 size_t *fw_size, bool *fw_relocate)
40{
41 const struct elf32_phdr *phdrs;
42 const struct elf32_phdr *phdr;
43 const struct elf32_hdr *ehdr;
44 phys_addr_t min_addr = (phys_addr_t)ULLONG_MAX;
45 phys_addr_t max_addr = 0;
46 bool relocate = false;
47 int i;
48
49 ehdr = (struct elf32_hdr *)fw->data;
50 phdrs = (struct elf32_phdr *)(ehdr + 1);
51
52 for (i = 0; i < ehdr->e_phnum; i++) {
53 phdr = &phdrs[i];
54
55 if (phdr->p_type != PT_LOAD)
56 continue;
57
58 if ((phdr->p_flags & QCOM_MDT_TYPE_MASK) == QCOM_MDT_TYPE_HASH)
59 continue;
60
61 if (!phdr->p_memsz)
62 continue;
63
64 if (phdr->p_flags & QCOM_MDT_RELOCATABLE)
65 relocate = true;
66
67 if (phdr->p_paddr < min_addr)
68 min_addr = phdr->p_paddr;
69
70 if (phdr->p_paddr + phdr->p_memsz > max_addr)
71 max_addr = ALIGN(phdr->p_paddr + phdr->p_memsz, SZ_4K);
72 }
73
74 if (fw_addr)
75 *fw_addr = min_addr;
76 if (fw_size)
77 *fw_size = max_addr - min_addr;
78 if (fw_relocate)
79 *fw_relocate = relocate;
80
81 return 0;
82}
83EXPORT_SYMBOL_GPL(qcom_mdt_parse);
84
85/**
86 * qcom_mdt_load() - load the firmware which header is defined in fw
87 * @rproc: rproc handle
88 * @fw: frimware object for the header
89 * @firmware: filename of the firmware, for building .bXX names
90 *
91 * Returns 0 on success, negative errno otherwise.
92 */
93int qcom_mdt_load(struct rproc *rproc,
94 const struct firmware *fw,
95 const char *firmware)
96{
97 const struct elf32_phdr *phdrs;
98 const struct elf32_phdr *phdr;
99 const struct elf32_hdr *ehdr;
100 size_t fw_name_len;
101 char *fw_name;
102 void *ptr;
103 int ret;
104 int i;
105
106 ehdr = (struct elf32_hdr *)fw->data;
107 phdrs = (struct elf32_phdr *)(ehdr + 1);
108
109 fw_name_len = strlen(firmware);
110 if (fw_name_len <= 4)
111 return -EINVAL;
112
113 fw_name = kstrdup(firmware, GFP_KERNEL);
114 if (!fw_name)
115 return -ENOMEM;
116
117 for (i = 0; i < ehdr->e_phnum; i++) {
118 phdr = &phdrs[i];
119
120 if (phdr->p_type != PT_LOAD)
121 continue;
122
123 if ((phdr->p_flags & QCOM_MDT_TYPE_MASK) == QCOM_MDT_TYPE_HASH)
124 continue;
125
126 if (!phdr->p_memsz)
127 continue;
128
129 ptr = rproc_da_to_va(rproc, phdr->p_paddr, phdr->p_memsz);
130 if (!ptr) {
131 dev_err(&rproc->dev, "segment outside memory range\n");
132 ret = -EINVAL;
133 break;
134 }
135
136 if (phdr->p_filesz) {
137 sprintf(fw_name + fw_name_len - 3, "b%02d", i);
138 ret = request_firmware(&fw, fw_name, &rproc->dev);
139 if (ret) {
140 dev_err(&rproc->dev, "failed to load %s\n",
141 fw_name);
142 break;
143 }
144
145 memcpy(ptr, fw->data, fw->size);
146
147 release_firmware(fw);
148 }
149
150 if (phdr->p_memsz > phdr->p_filesz)
151 memset(ptr + phdr->p_filesz, 0, phdr->p_memsz - phdr->p_filesz);
152 }
153
154 kfree(fw_name);
155
156 return ret;
157}
158EXPORT_SYMBOL_GPL(qcom_mdt_load);
159
160MODULE_DESCRIPTION("Firmware parser for Qualcomm MDT format");
161MODULE_LICENSE("GPL v2");