drivers/net/wireless/ti/wl1251/boot.h

Source file repositories/reference/linux-study-clean/drivers/net/wireless/ti/wl1251/boot.h

File Facts

System
Linux kernel
Corpus path
drivers/net/wireless/ti/wl1251/boot.h
Extension
.h
Size
570 bytes
Lines
26
Domain
Driver Families
Bucket
drivers/net
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

#ifndef __BOOT_H__
#define __BOOT_H__

#include "wl1251.h"

int wl1251_boot_soft_reset(struct wl1251 *wl);
int wl1251_boot_init_seq(struct wl1251 *wl);
int wl1251_boot_run_firmware(struct wl1251 *wl);
void wl1251_boot_target_enable_interrupts(struct wl1251 *wl);
int wl1251_boot(struct wl1251 *wl);

/* number of times we try to read the INIT interrupt */
#define INIT_LOOP 20000

/* delay between retries */
#define INIT_LOOP_DELAY 50

#endif

Annotation

Implementation Notes