drivers/nfc/s3fwrn5/nci.h
Source file repositories/reference/linux-study-clean/drivers/nfc/s3fwrn5/nci.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/nfc/s3fwrn5/nci.h- Extension
.h- Size
- 986 bytes
- Lines
- 57
- Domain
- Driver Families
- Bucket
- drivers/nfc
- 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
s3fwrn5.h
Detected Declarations
struct nci_prop_set_rfreg_cmdstruct nci_prop_set_rfreg_rspstruct nci_prop_start_rfreg_rspstruct nci_prop_stop_rfreg_cmdstruct nci_prop_stop_rfreg_rspstruct nci_prop_fw_cfg_cmdstruct nci_prop_fw_cfg_rsp
Annotated Snippet
struct nci_prop_set_rfreg_cmd {
__u8 index;
__u8 data[252];
};
struct nci_prop_set_rfreg_rsp {
__u8 status;
};
#define NCI_PROP_START_RFREG 0x26
struct nci_prop_start_rfreg_rsp {
__u8 status;
};
#define NCI_PROP_STOP_RFREG 0x27
struct nci_prop_stop_rfreg_cmd {
__u16 checksum;
};
struct nci_prop_stop_rfreg_rsp {
__u8 status;
};
#define NCI_PROP_FW_CFG 0x28
struct nci_prop_fw_cfg_cmd {
__u8 clk_type;
__u8 clk_speed;
__u8 clk_req;
};
struct nci_prop_fw_cfg_rsp {
__u8 status;
};
extern const struct nci_driver_ops s3fwrn5_nci_prop_ops[4];
int s3fwrn5_nci_rf_configure(struct s3fwrn5_info *info, const char *fw_name);
#endif /* __LOCAL_S3FWRN5_NCI_H_ */
Annotation
- Immediate include surface: `s3fwrn5.h`.
- Detected declarations: `struct nci_prop_set_rfreg_cmd`, `struct nci_prop_set_rfreg_rsp`, `struct nci_prop_start_rfreg_rsp`, `struct nci_prop_stop_rfreg_cmd`, `struct nci_prop_stop_rfreg_rsp`, `struct nci_prop_fw_cfg_cmd`, `struct nci_prop_fw_cfg_rsp`.
- Atlas domain: Driver Families / drivers/nfc.
- 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.