forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'rproc-v4.8' of git://github.com/andersson/remoteproc
Pull remoteproc updates from Bjorn Andersson: "Introduce remoteproc driver for controlling the modem/DSP Hexagon CPU found in a multitude of Qualcomm platform. Also cleans up a race condition/potential leak during registration of remoteprocs and includes devicetree bindings in the MAINTAINERS entry" * tag 'rproc-v4.8' of git://github.com/andersson/remoteproc: remoteproc: qcom: hexagon: Clean up mpss validation remoteproc: qcom: remove redundant dev_err call in q6v5_init_mem() remoteproc: qcom: Driver for the self-authenticating Hexagon v5 dt-binding: remoteproc: Introduce Hexagon loader binding remoteproc: Fix potential race condition in rproc_add MAINTAINERS: Add file patterns for remoteproc device tree bindings
- Loading branch information
Showing
8 changed files
with
1,264 additions
and
7 deletions.
There are no files selected for viewing
137 changes: 137 additions & 0 deletions
137
Documentation/devicetree/bindings/remoteproc/qcom,q6v5.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
Qualcomm Hexagon Peripheral Image Loader | ||
|
||
This document defines the binding for a component that loads and boots firmware | ||
on the Qualcomm Hexagon core. | ||
|
||
- compatible: | ||
Usage: required | ||
Value type: <string> | ||
Definition: must be one of: | ||
"qcom,q6v5-pil" | ||
|
||
- reg: | ||
Usage: required | ||
Value type: <prop-encoded-array> | ||
Definition: must specify the base address and size of the qdsp6 and | ||
rmb register blocks | ||
|
||
- reg-names: | ||
Usage: required | ||
Value type: <stringlist> | ||
Definition: must be "q6dsp" and "rmb" | ||
|
||
- interrupts-extended: | ||
Usage: required | ||
Value type: <prop-encoded-array> | ||
Definition: must list the watchdog, fatal IRQs ready, handover and | ||
stop-ack IRQs | ||
|
||
- interrupt-names: | ||
Usage: required | ||
Value type: <stringlist> | ||
Definition: must be "wdog", "fatal", "ready", "handover", "stop-ack" | ||
|
||
- clocks: | ||
Usage: required | ||
Value type: <phandle> | ||
Definition: reference to the iface, bus and mem clocks to be held on | ||
behalf of the booting of the Hexagon core | ||
|
||
- clock-names: | ||
Usage: required | ||
Value type: <stringlist> | ||
Definition: must be "iface", "bus", "mem" | ||
|
||
- resets: | ||
Usage: required | ||
Value type: <phandle> | ||
Definition: reference to the reset-controller for the modem sub-system | ||
|
||
- reset-names: | ||
Usage: required | ||
Value type: <stringlist> | ||
Definition: must be "mss_restart" | ||
|
||
- cx-supply: | ||
- mss-supply: | ||
- mx-supply: | ||
- pll-supply: | ||
Usage: required | ||
Value type: <phandle> | ||
Definition: reference to the regulators to be held on behalf of the | ||
booting of the Hexagon core | ||
|
||
- qcom,smem-states: | ||
Usage: required | ||
Value type: <phandle> | ||
Definition: reference to the smem state for requesting the Hexagon to | ||
shut down | ||
|
||
- qcom,smem-state-names: | ||
Usage: required | ||
Value type: <stringlist> | ||
Definition: must be "stop" | ||
|
||
- qcom,halt-regs: | ||
Usage: required | ||
Value type: <prop-encoded-array> | ||
Definition: a phandle reference to a syscon representing TCSR followed | ||
by the three offsets within syscon for q6, modem and nc | ||
halt registers. | ||
|
||
= SUBNODES: | ||
The Hexagon node must contain two subnodes, named "mba" and "mpss" representing | ||
the memory regions used by the Hexagon firmware. Each sub-node must contain: | ||
|
||
- memory-region: | ||
Usage: required | ||
Value type: <phandle> | ||
Definition: reference to the reserved-memory for the region | ||
|
||
= EXAMPLE | ||
The following example describes the resources needed to boot control the | ||
Hexagon, as it is found on MSM8974 boards. | ||
|
||
modem-rproc@fc880000 { | ||
compatible = "qcom,q6v5-pil"; | ||
reg = <0xfc880000 0x100>, | ||
<0xfc820000 0x020>; | ||
reg-names = "qdsp6", "rmb"; | ||
|
||
interrupts-extended = <&intc 0 24 1>, | ||
<&modem_smp2p_in 0 0>, | ||
<&modem_smp2p_in 1 0>, | ||
<&modem_smp2p_in 2 0>, | ||
<&modem_smp2p_in 3 0>; | ||
interrupt-names = "wdog", | ||
"fatal", | ||
"ready", | ||
"handover", | ||
"stop-ack"; | ||
|
||
clocks = <&gcc GCC_MSS_Q6_BIMC_AXI_CLK>, | ||
<&gcc GCC_MSS_CFG_AHB_CLK>, | ||
<&gcc GCC_BOOT_ROM_AHB_CLK>; | ||
clock-names = "iface", "bus", "mem"; | ||
|
||
qcom,halt-regs = <&tcsr_mutex_block 0x1180 0x1200 0x1280>; | ||
|
||
resets = <&gcc GCC_MSS_RESTART>; | ||
reset-names = "mss_restart"; | ||
|
||
cx-supply = <&pm8841_s2>; | ||
mss-supply = <&pm8841_s3>; | ||
mx-supply = <&pm8841_s1>; | ||
pll-supply = <&pm8941_l12>; | ||
|
||
qcom,smem-states = <&modem_smp2p_out 0>; | ||
qcom,smem-state-names = "stop"; | ||
|
||
mba { | ||
memory-region = <&mba_region>; | ||
}; | ||
|
||
mpss { | ||
memory-region = <&mpss_region>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9732,8 +9732,9 @@ M: Bjorn Andersson <[email protected]> | |
L: [email protected] | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git | ||
S: Maintained | ||
F: drivers/remoteproc/ | ||
F: Documentation/devicetree/bindings/remoteproc/ | ||
F: Documentation/remoteproc.txt | ||
F: drivers/remoteproc/ | ||
F: include/linux/remoteproc.h | ||
|
||
REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
/* | ||
* Qualcomm Peripheral Image Loader | ||
* | ||
* Copyright (C) 2016 Linaro Ltd | ||
* Copyright (C) 2015 Sony Mobile Communications Inc | ||
* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* version 2 as published by the Free Software Foundation. | ||
* | ||
* 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 General Public License for more details. | ||
*/ | ||
|
||
#include <linux/elf.h> | ||
#include <linux/firmware.h> | ||
#include <linux/kernel.h> | ||
#include <linux/module.h> | ||
#include <linux/remoteproc.h> | ||
#include <linux/slab.h> | ||
|
||
#include "remoteproc_internal.h" | ||
#include "qcom_mdt_loader.h" | ||
|
||
/** | ||
* qcom_mdt_find_rsc_table() - provide dummy resource table for remoteproc | ||
* @rproc: remoteproc handle | ||
* @fw: firmware header | ||
* @tablesz: outgoing size of the table | ||
* | ||
* Returns a dummy table. | ||
*/ | ||
struct resource_table *qcom_mdt_find_rsc_table(struct rproc *rproc, | ||
const struct firmware *fw, | ||
int *tablesz) | ||
{ | ||
static struct resource_table table = { .ver = 1, }; | ||
|
||
*tablesz = sizeof(table); | ||
return &table; | ||
} | ||
EXPORT_SYMBOL_GPL(qcom_mdt_find_rsc_table); | ||
|
||
/** | ||
* qcom_mdt_parse() - extract useful parameters from the mdt header | ||
* @fw: firmware handle | ||
* @fw_addr: optional reference for base of the firmware's memory region | ||
* @fw_size: optional reference for size of the firmware's memory region | ||
* @fw_relocate: optional reference for flagging if the firmware is relocatable | ||
* | ||
* Returns 0 on success, negative errno otherwise. | ||
*/ | ||
int qcom_mdt_parse(const struct firmware *fw, phys_addr_t *fw_addr, | ||
size_t *fw_size, bool *fw_relocate) | ||
{ | ||
const struct elf32_phdr *phdrs; | ||
const struct elf32_phdr *phdr; | ||
const struct elf32_hdr *ehdr; | ||
phys_addr_t min_addr = (phys_addr_t)ULLONG_MAX; | ||
phys_addr_t max_addr = 0; | ||
bool relocate = false; | ||
int i; | ||
|
||
ehdr = (struct elf32_hdr *)fw->data; | ||
phdrs = (struct elf32_phdr *)(ehdr + 1); | ||
|
||
for (i = 0; i < ehdr->e_phnum; i++) { | ||
phdr = &phdrs[i]; | ||
|
||
if (phdr->p_type != PT_LOAD) | ||
continue; | ||
|
||
if ((phdr->p_flags & QCOM_MDT_TYPE_MASK) == QCOM_MDT_TYPE_HASH) | ||
continue; | ||
|
||
if (!phdr->p_memsz) | ||
continue; | ||
|
||
if (phdr->p_flags & QCOM_MDT_RELOCATABLE) | ||
relocate = true; | ||
|
||
if (phdr->p_paddr < min_addr) | ||
min_addr = phdr->p_paddr; | ||
|
||
if (phdr->p_paddr + phdr->p_memsz > max_addr) | ||
max_addr = ALIGN(phdr->p_paddr + phdr->p_memsz, SZ_4K); | ||
} | ||
|
||
if (fw_addr) | ||
*fw_addr = min_addr; | ||
if (fw_size) | ||
*fw_size = max_addr - min_addr; | ||
if (fw_relocate) | ||
*fw_relocate = relocate; | ||
|
||
return 0; | ||
} | ||
EXPORT_SYMBOL_GPL(qcom_mdt_parse); | ||
|
||
/** | ||
* qcom_mdt_load() - load the firmware which header is defined in fw | ||
* @rproc: rproc handle | ||
* @fw: frimware object for the header | ||
* @firmware: filename of the firmware, for building .bXX names | ||
* | ||
* Returns 0 on success, negative errno otherwise. | ||
*/ | ||
int qcom_mdt_load(struct rproc *rproc, | ||
const struct firmware *fw, | ||
const char *firmware) | ||
{ | ||
const struct elf32_phdr *phdrs; | ||
const struct elf32_phdr *phdr; | ||
const struct elf32_hdr *ehdr; | ||
size_t fw_name_len; | ||
char *fw_name; | ||
void *ptr; | ||
int ret; | ||
int i; | ||
|
||
ehdr = (struct elf32_hdr *)fw->data; | ||
phdrs = (struct elf32_phdr *)(ehdr + 1); | ||
|
||
fw_name_len = strlen(firmware); | ||
if (fw_name_len <= 4) | ||
return -EINVAL; | ||
|
||
fw_name = kstrdup(firmware, GFP_KERNEL); | ||
if (!fw_name) | ||
return -ENOMEM; | ||
|
||
for (i = 0; i < ehdr->e_phnum; i++) { | ||
phdr = &phdrs[i]; | ||
|
||
if (phdr->p_type != PT_LOAD) | ||
continue; | ||
|
||
if ((phdr->p_flags & QCOM_MDT_TYPE_MASK) == QCOM_MDT_TYPE_HASH) | ||
continue; | ||
|
||
if (!phdr->p_memsz) | ||
continue; | ||
|
||
ptr = rproc_da_to_va(rproc, phdr->p_paddr, phdr->p_memsz); | ||
if (!ptr) { | ||
dev_err(&rproc->dev, "segment outside memory range\n"); | ||
ret = -EINVAL; | ||
break; | ||
} | ||
|
||
if (phdr->p_filesz) { | ||
sprintf(fw_name + fw_name_len - 3, "b%02d", i); | ||
ret = request_firmware(&fw, fw_name, &rproc->dev); | ||
if (ret) { | ||
dev_err(&rproc->dev, "failed to load %s\n", | ||
fw_name); | ||
break; | ||
} | ||
|
||
memcpy(ptr, fw->data, fw->size); | ||
|
||
release_firmware(fw); | ||
} | ||
|
||
if (phdr->p_memsz > phdr->p_filesz) | ||
memset(ptr + phdr->p_filesz, 0, phdr->p_memsz - phdr->p_filesz); | ||
} | ||
|
||
kfree(fw_name); | ||
|
||
return ret; | ||
} | ||
EXPORT_SYMBOL_GPL(qcom_mdt_load); | ||
|
||
MODULE_DESCRIPTION("Firmware parser for Qualcomm MDT format"); | ||
MODULE_LICENSE("GPL v2"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#ifndef __QCOM_MDT_LOADER_H__ | ||
#define __QCOM_MDT_LOADER_H__ | ||
|
||
#define QCOM_MDT_TYPE_MASK (7 << 24) | ||
#define QCOM_MDT_TYPE_HASH (2 << 24) | ||
#define QCOM_MDT_RELOCATABLE BIT(27) | ||
|
||
struct resource_table * qcom_mdt_find_rsc_table(struct rproc *rproc, const struct firmware *fw, int *tablesz); | ||
int qcom_mdt_load(struct rproc *rproc, const struct firmware *fw, const char *fw_name); | ||
|
||
int qcom_mdt_parse(const struct firmware *fw, phys_addr_t *fw_addr, size_t *fw_size, bool *fw_relocate); | ||
|
||
#endif |
Oops, something went wrong.