drivers/staging/media/ipu7/ipu7-fw-isys.h
Source file repositories/reference/linux-study-clean/drivers/staging/media/ipu7/ipu7-fw-isys.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/staging/media/ipu7/ipu7-fw-isys.h- Extension
.h- Size
- 1228 bytes
- Lines
- 40
- Domain
- Driver Families
- Bucket
- drivers/staging
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/types.habi/ipu7_fw_isys_abi.h
Detected Declarations
struct devicestruct ipu7_insys_buffsetstruct ipu7_insys_stream_cfgstruct ipu7_isys
Annotated Snippet
#ifndef IPU7_FW_ISYS_H
#define IPU7_FW_ISYS_H
#include <linux/types.h>
#include "abi/ipu7_fw_isys_abi.h"
struct device;
struct ipu7_insys_buffset;
struct ipu7_insys_stream_cfg;
struct ipu7_isys;
/* From here on type defines not coming from the ISYSAPI interface */
int ipu7_fw_isys_init(struct ipu7_isys *isys);
void ipu7_fw_isys_release(struct ipu7_isys *isys);
int ipu7_fw_isys_open(struct ipu7_isys *isys);
int ipu7_fw_isys_close(struct ipu7_isys *isys);
void ipu7_fw_isys_dump_stream_cfg(struct device *dev,
struct ipu7_insys_stream_cfg *cfg);
void ipu7_fw_isys_dump_frame_buff_set(struct device *dev,
struct ipu7_insys_buffset *buf,
unsigned int outputs);
int ipu7_fw_isys_simple_cmd(struct ipu7_isys *isys,
const unsigned int stream_handle, u16 send_type);
int ipu7_fw_isys_complex_cmd(struct ipu7_isys *isys,
const unsigned int stream_handle,
void *cpu_mapped_buf,
dma_addr_t dma_mapped_buf,
size_t size, u16 send_type);
struct ipu7_insys_resp *ipu7_fw_isys_get_resp(struct ipu7_isys *isys);
void ipu7_fw_isys_put_resp(struct ipu7_isys *isys);
#endif
Annotation
- Immediate include surface: `linux/types.h`, `abi/ipu7_fw_isys_abi.h`.
- Detected declarations: `struct device`, `struct ipu7_insys_buffset`, `struct ipu7_insys_stream_cfg`, `struct ipu7_isys`.
- Atlas domain: Driver Families / drivers/staging.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.