Lines Matching +full:firmware +full:- +full:specific
20 * from this software without specific prior written permission.
47 * struct resource_table - firmware resource table header
55 * If needed, the remote processor firmware should contain this table
59 * of specific remoteproc configuration. Other entries require the host to
61 * is expected, where the firmware requests a resource, and once allocated,
81 * struct fw_rsc_hdr - firmware resource entry header
95 * enum fw_resource_type - types of resource entries
99 * @RSC_DEVMEM: request to iommu_map a memory-based peripheral.
105 * @RSC_VENDOR_START: start of the vendor specific resource types range
106 * @RSC_VENDOR_END: end of the vendor specific resource types range
108 * For more details regarding a specific resource type, please see its
126 #define FW_RSC_ADDR_ANY (-1)
129 * struct fw_rsc_carveout - physically contiguous memory request
135 * @name: human-readable name of the requested memory region
140 * These request entries should precede other firmware resource entries,
149 * If the firmware is compiled with static addresses, then @da should specify
181 * struct fw_rsc_devmem - iommu mapping request
187 * @name: human-readable name of the requested region to be mapped
191 * access to certain memory-based peripherals; _never_ use it to access
206 * the firmware is allowed to request, and not allow firmwares to request
219 * struct fw_rsc_trace - trace buffer declaration
223 * @name: human-readable name of the trace buffer
242 * struct fw_rsc_vdev_vring - vring descriptor entry
246 * @notifyid: a unique rproc-wide notify index for this vring. This notify
267 * struct fw_rsc_vdev - virtio device header
269 * @notifyid: a unique rproc-wide notify index for this vdev. This notify
272 * @dfeatures: specifies the virtio device features supported by the firmware
286 * By providing this resource entry, the firmware essentially asks remoteproc
299 * this vdev (which is specific to the vdev; for more info, read the virtio
317 * struct rproc_mem_entry - memory entry descriptor
330 * @alloc: specific memory allocator function
348 struct firmware;
351 * enum rsc_handling_status - return status of rproc_ops handle_rsc hook
361 * struct rproc_ops - platform-specific device handlers
370 * @parse_fw: parse firmware to extract information (e.g. resource table)
374 * @find_loaded_rsc_table: find the loaded resource table from firmware image
377 * @load: load firmware to memory, where the remote processor
380 * @get_boot_addr: get boot address to entry point specified in firmware
383 * @coredump: collect firmware dump after the subsystem is shutdown
394 int (*parse_fw)(struct rproc *rproc, const struct firmware *fw);
398 struct rproc *rproc, const struct firmware *fw);
401 int (*load)(struct rproc *rproc, const struct firmware *fw);
402 int (*sanity_check)(struct rproc *rproc, const struct firmware *fw);
403 u64 (*get_boot_addr)(struct rproc *rproc, const struct firmware *fw);
409 * enum rproc_state - remote processor states
423 * to rproc_state_string, a state-to-name lookup table,
440 * enum rproc_crash_type - remote processor crash types
457 * enum rproc_dump_mechanism - Coredump options for core
471 * struct rproc_dump_segment - segment info from ELF header
493 * enum rproc_features - features supported
496 * from Linux to recover, such as firmware
507 * struct rproc - represents a physical remote processor device
511 * @firmware: name of firmware file to be loaded
512 * @priv: private data which belongs to the platform-specific rproc module
513 * @ops: platform-specific start/stop rproc handlers
527 * @notifyids: idr for dynamically assigning rproc-wide unique notify ids
539 * @auto_boot: flag to indicate if remote processor should be auto-started
541 * @dump_segments: list of segments in the firmware
543 * @elf_class: firmware ELF class
544 * @elf_machine: firmware ELF machine
553 const char *firmware; member
592 * struct rproc_subdev - subdevice tied to a remoteproc
614 * struct rproc_vring - remoteproc vring state
619 * @notifyid: rproc-specific unique vring index
634 * struct rproc_vdev - remoteproc state for a supported virtio device
662 const char *firmware, int len);
671 const char *firmware, int len);