drivers/clk/actions/owl-reset.h

Source file repositories/reference/linux-study-clean/drivers/clk/actions/owl-reset.h

File Facts

System
Linux kernel
Corpus path
drivers/clk/actions/owl-reset.h
Extension
.h
Size
686 bytes
Lines
32
Domain
Driver Families
Bucket
drivers/clk
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.

Dependency Surface

Detected Declarations

Annotated Snippet

struct owl_reset_map {
	u32	reg;
	u32	bit;
};

struct owl_reset {
	struct reset_controller_dev	rcdev;
	const struct owl_reset_map	*reset_map;
	struct regmap			*regmap;
};

static inline struct owl_reset *to_owl_reset(struct reset_controller_dev *rcdev)
{
	return container_of(rcdev, struct owl_reset, rcdev);
}

extern const struct reset_control_ops owl_reset_ops;

#endif /* _OWL_RESET_H_ */

Annotation

Implementation Notes