st_remoteproc.c (41d91ec3de8a90167159275bde7ed65768723556) st_remoteproc.c (e29ff72b779426c7fe462ead93c7ad77fe562935)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * ST's Remote Processor Control Driver
4 *
5 * Copyright (C) 2015 STMicroelectronics - All Rights Reserved
6 *
7 * Author: Ludovic Barre <ludovic.barre@st.com>
8 */

--- 219 unchanged lines hidden (view full) ---

228
229static const struct rproc_ops st_rproc_ops = {
230 .kick = st_rproc_kick,
231 .start = st_rproc_start,
232 .stop = st_rproc_stop,
233 .parse_fw = st_rproc_parse_fw,
234 .load = rproc_elf_load_segments,
235 .find_loaded_rsc_table = rproc_elf_find_loaded_rsc_table,
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * ST's Remote Processor Control Driver
4 *
5 * Copyright (C) 2015 STMicroelectronics - All Rights Reserved
6 *
7 * Author: Ludovic Barre <ludovic.barre@st.com>
8 */

--- 219 unchanged lines hidden (view full) ---

228
229static const struct rproc_ops st_rproc_ops = {
230 .kick = st_rproc_kick,
231 .start = st_rproc_start,
232 .stop = st_rproc_stop,
233 .parse_fw = st_rproc_parse_fw,
234 .load = rproc_elf_load_segments,
235 .find_loaded_rsc_table = rproc_elf_find_loaded_rsc_table,
236 .sanity_check = rproc_elf32_sanity_check,
236 .sanity_check = rproc_elf_sanity_check,
237 .get_boot_addr = rproc_elf_get_boot_addr,
238};
239
240/*
241 * Fetch state of the processor: 0 is off, 1 is on.
242 */
243static int st_rproc_state(struct platform_device *pdev)
244{

--- 234 unchanged lines hidden ---
237 .get_boot_addr = rproc_elf_get_boot_addr,
238};
239
240/*
241 * Fetch state of the processor: 0 is off, 1 is on.
242 */
243static int st_rproc_state(struct platform_device *pdev)
244{

--- 234 unchanged lines hidden ---