drivers/tty/serial/bcm63xx_uart.c
Source file repositories/reference/linux-study-clean/drivers/tty/serial/bcm63xx_uart.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/tty/serial/bcm63xx_uart.c- Extension
.c- Size
- 21946 bytes
- Lines
- 921
- Domain
- Driver Families
- Bucket
- drivers/tty
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Touches IRQ or DMA behavior; this matters for the representative real-device path.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/kernel.hlinux/platform_device.hlinux/init.hlinux/delay.hlinux/module.hlinux/console.hlinux/clk.hlinux/tty.hlinux/tty_flip.hlinux/sysrq.hlinux/serial.hlinux/serial_core.hlinux/serial_bcm63xx.hlinux/io.hlinux/of.h
Detected Declarations
function UART_IR_MASKfunction bcm_uart_writelfunction bcm_uart_tx_emptyfunction bcm_uart_set_mctrlfunction bcm_uart_get_mctrlfunction ASAPfunction tofunction bcm_uart_stop_rxfunction bcm_uart_enable_msfunction bcm_uart_break_ctlfunction bcm_uart_do_rxfunction bcm_uart_do_txfunction bcm_uart_interruptfunction bcm_uart_enablefunction bcm_uart_disablefunction bcm_uart_flushfunction bcm_uart_startupfunction bcm_uart_shutdownfunction bcm_uart_set_termiosfunction bcm_uart_request_portfunction bcm_uart_release_portfunction bcm_uart_verify_portfunction bcm_uart_tx_fullfunction bcm_uart_poll_get_charfunction bcm_uart_poll_put_charfunction wait_for_xmitrfunction bcm_console_putcharfunction bcm_console_writefunction bcm_console_setupfunction bcm63xx_console_initfunction bcm_early_writefunction bcm_early_console_setupfunction bcm_uart_probefunction bcm_uart_removefunction bcm_uart_initfunction bcm_uart_exitmodule init bcm_uart_init
Annotated Snippet
module_init(bcm_uart_init);
module_exit(bcm_uart_exit);
MODULE_AUTHOR("Maxime Bizon <mbizon@freebox.fr>");
MODULE_DESCRIPTION("Broadcom 63xx integrated uart driver");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/kernel.h`, `linux/platform_device.h`, `linux/init.h`, `linux/delay.h`, `linux/module.h`, `linux/console.h`, `linux/clk.h`, `linux/tty.h`.
- Detected declarations: `function UART_IR_MASK`, `function bcm_uart_writel`, `function bcm_uart_tx_empty`, `function bcm_uart_set_mctrl`, `function bcm_uart_get_mctrl`, `function ASAP`, `function to`, `function bcm_uart_stop_rx`, `function bcm_uart_enable_ms`, `function bcm_uart_break_ctl`.
- Atlas domain: Driver Families / drivers/tty.
- Implementation status: integration implementation candidate.
- IRQ or DMA behavior appears here, which is relevant to the selected PCIe/NVMe device path.
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.