A Board Support Package (BSP) is a vendor-provided software layer that abstracts the unique hardware of an embedded system—such as a System-on-Chip (SoC) with integrated Neural Processing Units (NPUs)—enabling an operating system kernel to boot and run. It contains the essential bootloader, device drivers, and low-level configuration files that initialize processors, memory controllers, and peripherals, forming the foundational bridge between generic system software and the physical silicon.
Glossary
Board Support Package (BSP)

What is a Board Support Package (BSP)?
A Board Support Package (BSP) is a collection of software, including bootloaders, device drivers, and configuration files, that provides an abstraction layer between an operating system kernel and the specific hardware components of a particular embedded computer board.
For Edge AI deployment, the BSP is critical for unlocking hardware acceleration. It provides the optimized drivers that allow a model compiler to target dedicated Tensor Cores or NPUs, and it manages power envelopes and thermal policies via Dynamic Voltage and Frequency Scaling (DVFS). A robust BSP ensures deterministic execution, which is vital for Real-Time Operating Systems (RTOS) and applications requiring functional safety, by providing a stable Hardware Abstraction Layer (HAL) for the entire software stack.
Core Components of a BSP
A Board Support Package (BSP) is the essential software bridge between an operating system kernel and the specific hardware of an embedded board. For Edge AI, a robust BSP is critical for unlocking the deterministic, low-latency performance of specialized accelerators like NPUs.
Bootloader
The bootloader is the first piece of software that executes when a device powers on. It initializes critical hardware, loads the operating system kernel and device tree into memory, and transfers execution control. For Edge AI systems, the bootloader must be configured to correctly initialize AI accelerators (NPUs, GPUs) and secure boot chains to ensure system integrity.
- Examples: Das U-Boot, coreboot, ARM Trusted Firmware.
- Edge AI Relevance: Must support loading custom kernel images with AI driver modules and verifying model binaries for secure inference.
Kernel & Device Drivers
The kernel, patched and configured for the target hardware, is the core of the BSP. Device drivers are kernel modules that provide the software interface to specific hardware components like sensors, storage, and most critically, AI accelerators. These drivers expose hardware capabilities to the operating system and user-space applications.
- Key Drivers for AI: NPU/GPU drivers (e.g., for NVIDIA Jetson, Intel Movidius, ARM Ethos), camera (ISP) drivers, and high-speed I/O (PCIe, USB) drivers.
- Function: They handle memory allocation, DMA transfers, and interrupt management for efficient data flow to and from the accelerator.
Device Tree
A Device Tree (or Device Tree Blob) is a data structure that describes the hardware components of the board—their types, addresses, interrupts, and configurations—to the operating system kernel. It is a critical abstraction that allows a single kernel binary to support many different hardware configurations.
- Purpose: Informs the kernel what hardware is present and how to talk to it.
- Edge AI Example: The device tree node for an NPU would define its memory-mapped I/O registers, interrupt lines, and clock sources, enabling the kernel to load the correct driver and initialize the hardware.
Hardware Abstraction Layer (HAL)
While sometimes part of the OS, a Hardware Abstraction Layer (HAL) is often included in or sits atop the BSP. It provides a standardized, vendor-neutral API for applications to access hardware features without needing direct knowledge of the underlying driver specifics.
- AI/ML Use Case: A HAL can provide a common interface (e.g., OpenCL, OpenVX) for AI frameworks like TensorFlow Lite or ONNX Runtime to execute models on diverse accelerators (NPU, GPU, DSP) without rewriting code for each.
- Benefit: Decouples application logic from hardware details, simplifying portability across different Edge AI platforms.
Root Filesystem & Libraries
The BSP provides a minimal root filesystem containing essential system libraries, utilities, and configuration files needed for the OS to function. For Edge AI, this includes optimized mathematical libraries and runtime environments for AI frameworks.
- Critical Libraries: Cross-compiled versions of glibc, libstdc++, and hardware-specific libraries like NVIDIA's CUDA libraries, Intel's OpenVINO runtime, or ARM's Compute Library.
- Configuration: Includes files that set environment variables, mount points, and network settings tailored for the embedded environment and AI workload requirements.
Toolchain & Build System
A cross-compilation toolchain (compiler, linker, debugger) and a build system (like Yocto Project or Buildroot) are essential BSP components for developers. They allow software to be compiled on a powerful host machine for execution on the resource-constrained target edge hardware.
- Function: The toolchain targets the board's specific CPU architecture (e.g., ARM AArch64). The build system automates the process of compiling the kernel, building the root filesystem, and packaging the entire BSP image.
- Edge AI Integration: Must support compiling and linking against the accelerator-specific libraries and headers to produce binaries that can leverage the NPU or GPU.
The Critical Role of BSPs in Edge AI
A Board Support Package (BSP) is the foundational software layer that enables an operating system to run on specific embedded hardware, a critical component for deploying AI at the edge.
A Board Support Package (BSP) is a collection of low-level software—including bootloaders, device drivers, and kernel configurations—that provides a hardware abstraction layer for a specific embedded computer board. It is the essential bridge that allows a high-level operating system, like Linux or a Real-Time Operating System (RTOS), to initialize and control the unique silicon components, such as the CPU, memory, I/O ports, and any integrated hardware accelerators like an NPU or GPU. Without a properly configured BSP, the OS and any application software, including AI inference engines, cannot function on the target device.
In Edge AI deployments, the BSP's role is paramount for achieving deterministic performance, power efficiency, and security. It provides the Hardware Abstraction Layer (HAL) that allows model compilers and AI frameworks to efficiently utilize specialized Tensor Cores or Multiply-Accumulate (MAC) units. A robust BSP also enables critical features like Dynamic Voltage and Frequency Scaling (DVFS) for power management and can integrate with a Trusted Execution Environment (TEE) for secure model inference. Ultimately, the BSP dictates the stability and performance ceiling of the entire edge AI software stack on constrained hardware.
Frequently Asked Questions
A Board Support Package (BSP) is the foundational software layer that enables an operating system to run on specific embedded hardware. This FAQ addresses common technical questions for engineers and architects deploying AI at the edge.
A Board Support Package (BSP) is a collection of low-level software, including bootloaders, device drivers, and configuration files, that provides an abstraction layer between an operating system kernel and the specific hardware components of an embedded computer board. It works by initializing the board's hardware during boot, providing the kernel with drivers to control peripherals like GPIO, I2C, and Ethernet controllers, and defining the memory map and interrupt assignments. For edge AI, the BSP is critical for enabling the operating system to access specialized hardware accelerators like NPUs or GPUs, ensuring the AI inference pipeline has deterministic access to sensors, memory, and compute resources.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
A Board Support Package (BSP) is a critical software layer for embedded systems. The following terms define the hardware, software, and architectural concepts that interact with or are enabled by a BSP.
Hardware Abstraction Layer (HAL)
A Hardware Abstraction Layer (HAL) is a software layer that provides a uniform, standardized interface for an operating system or application to interact with underlying hardware components, masking their specific complexities. It sits above the BSP, which provides the concrete, board-specific implementations.
- Purpose: Enables software portability across different hardware platforms.
- Relationship to BSP: The BSP implements the low-level drivers that satisfy the HAL's interface contracts.
- Example: An AI application calls a generic
camera_capture()HAL function, which the BSP routes to the specific driver for the board's camera sensor.
Real-Time Operating System (RTOS)
A Real-Time Operating System (RTOS) is an OS designed for applications with critical timing constraints, guaranteeing deterministic, predictable task execution. A BSP is essential for porting an RTOS to a specific embedded board.
- Key Feature: Provides hard or soft real-time guarantees for task scheduling and interrupt latency.
- BSP Role: The BSP supplies the RTOS with the board-specific bootloader, timer drivers, interrupt controllers, and memory maps needed for deterministic operation.
- Common Examples: FreeRTOS, Zephyr, VxWorks, and QNX often rely on vendor-provided BSPs.
System-on-Chip (SoC)
A System-on-Chip (SoC) is an integrated circuit that consolidates all core components of a computer system—such as CPU cores, memory, I/O interfaces, and specialized accelerators (e.g., NPUs, GPUs)—onto a single piece of silicon. The BSP is developed specifically for a given SoC and its reference board design.
- Integration: An SoC like the NVIDIA Jetson Orin or Qualcomm Snapdragon contains multiple processing units in one package.
- BSP Complexity: The BSP must initialize and manage all these integrated components, providing a unified software interface to the OS.
Device Tree
A Device Tree is a data structure that describes the hardware components of a system—their types, connections, addresses, and parameters—in a machine-readable format. It is a key part of a modern BSP for Linux-based embedded systems.
- Function: Provides the operating system kernel with a "map" of the hardware, eliminating the need for hardcoded configuration.
- BSP Integration: The BSP includes the board-specific Device Tree Source (
.dts) files, which are compiled and passed to the kernel at boot. - Benefit: Allows a single kernel binary to support many different boards by swapping the Device Tree Blob (DTB).
Bootloader
A Bootloader is the first piece of software that executes when a hardware system powers on. Its primary jobs are to initialize critical hardware, load the operating system kernel (and often a Device Tree) into memory, and transfer execution to it. The bootloader is a core component of a BSP.
- Common Examples: U-Boot, Das U-Boot, and coreboot are prevalent in embedded Linux systems.
- BSP Customization: The BSP provides the bootloader source code with board-specific configuration files for memory layout, storage devices, and boot arguments.
- Secure Boot: Modern BSPs integrate bootloaders with hardware-rooted secure boot chains for firmware validation.
Trusted Execution Environment (TEE)
A Trusted Execution Environment (TEE) is a secure, isolated area within a main processor that protects sensitive code and data, even if the main operating system is compromised. BSPs for security-critical edge AI must include support for initializing and managing the TEE.
- Purpose: Enables secure storage and execution of AI model weights, cryptographic keys, and private inference data.
- BSP Role: The BSP's firmware and bootloader are responsible for correctly initializing the hardware security features (like ARM TrustZone) that enable the TEE.
- Use Case: A confidential AI inference pipeline where the model and input data are protected within the TEE.

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us