PrajnaEdge
A curiosphere for curious minds who want to understand, experiment with, and experience technology.
To continue exploring
Technology, made tangible.

Where does intelligence run?

Explore AI that moves inference closer to the data — from the edge to the device itself.

AI inference runs at or near the point where data is generated, rather than relying on a remote cloud.
Edge AI Computer Vision

Image Classification

Can this image classifier maintain its intelligence while becoming small enough for the edge?

// Coming soon
Edge AI Playground

Image Classification

Can this image classifier maintain its intelligence while becoming small enough for the edge?

Choose an image

Upload an image
Supports JPG, JPEG, PNG
This classifier recognizes only Apple, Banana, and Orange. Other objects may be incorrectly classified as one of these classes.

Choose the model

Model size
4.91 MiB
Largest activation
~625 KiB
Test accuracy
99.11%
Measured model accuracy
Your image is processed locally in your browser.
On-Device AI
On-Device AI Playground
// Coming soon

Explore the ideas, systems and connections that shape technology — choose any node to begin your journey.

PrajnaEdge Navigation Tree
Embedded Systems Tree

Edge AI Demonstrations

Deploying neural networks and intelligent decision loops on raw silicon targets.

Sort:
Operating Systems

The Boundary Between Software and Hardware

Understanding device driver abstractions, user/kernel privilege modes, I/O registers, and protection boundaries.

Operating SystemsI/O ManagementProtectionSecurityDrivers

1. The Hardware Boundary

When an ordinary user application needs to perform an operation on a hardware device, it cannot communicate with the hardware directly:

Application ↓ "I need data from the device"

A beginner might imagine a direct software-to-device pathway:

Application ↓ Hardware

In a modern, protected operating system, this direct path is blocked. Allowing arbitrary, direct register access to every user program would lead to chaos. Instead, the OS inserts a structured boundary of interfaces and control mechanisms:

Application ↓ OS Interface / System Call ↓ Kernel ↓ Device Driver ↓ Hardware

The application requests a logical operation from the operating system. The operating system coordinates the request and delegates the device-specific operations to the driver, which contains the specialized commands required to interact with the target hardware.

2. What a Device Driver Actually Does

A device driver is a specialized kernel module that translates generic OS-level operations into hardware-specific control sequences. Different physical devices have entirely different characteristics: * Registers (status, control, data register addresses) * Command formats and protocols (e.g. formatting a command packet) * Timing requirements and clock frequencies * Hardware-specific quirks and initialization routines

Instead of requiring every application to understand these details, the driver presents a standardized interface to the operating system:

Generic Request (e.g. read, write) ↓ Kernel ↓ Device Driver (Hardware-specific translation) ↓ Device-specific operations ↓ Hardware

For instance, when reading from a serial port, the application simply executes:

Application ↓ read() ↓ Kernel ↓ UART Driver ↓ UART Hardware

The application does not know which registers to query or which hardware flags to check; it relies on the driver to handle the translation.

3. We Already Know How Hardware Coordinates

We have already seen how software and hardware coordinate through polling, interrupts, and DMA. Those mechanisms do not disappear when an operating system is introduced. Device drivers and the kernel use them underneath the higher-level OS abstraction.

OS │ Device Driver │ ┌──────────┼──────────┐ ↓ ↓ ↓ Polling Interrupt DMA │ │ │ └──────────┼──────────┘ ↓ Device

The driver coordinates operations using these fundamental coordination techniques: * Polling: The device driver repeatedly reads status registers to check if a byte is ready, useful for ultra-low latency or simple hardware loops. * Interrupts: The driver registers an Interrupt Service Routine (ISR). When a hardware event occurs (such as a keypress or network frame arrival), the device triggers an interrupt pin, notifying the CPU to pause execution and run the driver's handler code. * DMA (Direct Memory Access): The driver configures a DMA controller with source/destination addresses. The hardware transfer executes directly between the device and RAM, bypassing the CPU to prevent it from stalling on large blocks of data.

4. EdgeCase — The I/O Journey

Use the simulator below to trace how a system call routes down through the OS kernel and device driver layers, and how hardware interrupts and DMA return data to the waiting application:

5. Why Does the OS Need a Protection Boundary?

If the application needs hardware data, why not let every program talk to the physical device directly?

If any program could read and write arbitrary device registers, several critical problems would arise:

Application A ──→ Device Application B ──→ Device Application C ──→ Device

* Interference: Application A might overwrite control registers while Application B is mid-transfer, crashing the device controller. * Corruption: A bug in a user space program could corrupt the partition tables on a physical hard drive, ruining the storage structure for all other applications. * Unauthorized Access: A program could bypass system policies to read private keys or user keystrokes directly from peripheral memory. * System Control: Programs could disable CPU interrupts, locking up the machine entirely.

To maintain system stability, the operating system must stand as the sole gatekeeper between user software and hardware.

6. User Mode vs. Kernel Mode

To enforce this boundary, modern CPUs provide physical privilege rings. We have already seen this concept in action: applications run in a restricted state, while kernel code runs with full privileges.

┌─────────────────────────────┐ │ USER MODE │ │ │ │ Application A │ │ Application B │ │ Application C │ └──────────────┬──────────────┘ │ Controlled Interface (Syscall / Trap) │ ┌──────────────▼──────────────┐ │ KERNEL MODE │ │ │ │ OS + Drivers │ └──────────────┬──────────────┘ │ ▼ HARDWARE

Applications execute in User Mode, where direct access to peripheral I/O ports or control registers is forbidden by the hardware. When an app needs to touch a device, it must execute a system call, causing a controlled trap into Kernel Mode, where the operating system evaluates the request and carries out the raw register manipulations safely.

7. What Protection Actually Provides

An operating system's security and protection subsystem provides several core guarantees:

Privilege Restricts hazardous hardware operations (such as page table modifications or device register configurations) to trusted kernel code.

Isolation Ensures that one process's memory space and files are completely hidden and protected from unauthorized modification by another process.

Resource Control Prevents any single process from monopolizing physical devices, allocating disk blocks, or consuming unfair quantities of network bandwidth.

Permissions / Access Control Validates user security tokens and group policies before permitting a system call to reach the underlying hardware drivers.

Controlled Entry Forces all user-to-kernel transitions to pass through defined interrupt vectors, preventing malicious code from jumping directly into random kernel memory locations.

8. EdgeCase — The Protected Device

Use the simulator below to compare how the kernel evaluates hardware write requests from an authorized system task (Application A) versus an unauthorized guest task (Application B):

9. Connecting the Two Concepts

When we look at the complete OS stack, device management and security boundary checks work in unison:

APPLICATION │ System Call ↓ KERNEL / \ / \ Protection Device Driver │ │ ↓ ↓ Permission Poll / IRQ / DMA │ ↓ DEVICE

The key realization is that the OS is not merely a scheduler or a memory manager. It is also the controlled boundary between applications and the machine.

10. Embedded-System Connection

In raw bare-metal embedded firmware, there are often no privilege boundaries. Your software has direct access to the entire memory map. You configure hardware peripherals directly by writing to specialized memory addresses: * General Purpose I/O (GPIO) direction registers * Universal Asynchronous Receiver-Transmitter (UART) transmit/receive buffers * Serial Peripheral Interface (SPI), I2C, and CAN controller control lines * Analog-to-Digital Converter (ADC) channels, timers, and DMA channels

When you transition to an RTOS or a full operating system with a driver abstraction: * Peripheral access is encapsulated inside API drivers (e.g. ioctl(), read(), write()). * Under memory protection configurations (MPUs or MMUs), the OS blocks direct pointer write accesses to peripheral register addresses from application threads.

The amount of abstraction and protection depends entirely on the system architecture.

11. Summary of Concepts

Property Core Responsibility Physical CPU Mechanism
I/O Device Management Abstraction and device configuration I/O Ports, DMA, Interrupt Lines
Protection / Security Isolation and access restriction Privilege Rings (User vs. Kernel), Page Tables

We have now seen how an operating system manages execution, memory, files, storage, devices, and protection.

But not every operating system is designed with the same priorities.

Why do different types of operating systems exist in the first place?

System Tree Node Operating Systems

PrajnaEdge

Engineering concepts you don't just read — you experience.
Founded in 2026.

PrajnaEdge is a technology company exploring the space between understanding technology, experimenting with ideas, and turning them into things that can be experienced.

Our Mission

To make technology easier to explore, deeper to understand, and more exciting to experience.

Our Vision

To build a technology ecosystem where curiosity, experimentation and creation continuously lead to one another.

Where it began

Embedded Systems

PrajnaEdge began with Embedded Systems — exploring the foundations that connect hardware, software and intelligent computation.

The first technology universe is built around that foundation. The journey will expand as new ideas, experiments and products emerge.

PrajnaEdge is a technology company created by Devaharsha Meesarapu.

CREATOR PROFILE

Devaharsha Meesarapu

Embedded Systems • Firmware • Edge AI

I am the engineer behind the design, development, and content of PrajnaEdge. I build low-level systems where code directly controls hardware, bridging the gap between register-level silicon behavior and intelligent edge decision loops.

View Resume →

ABOUT ME

I am an Embedded Firmware Engineer focused on developing software for resource-constrained systems. My experience spans bare-metal firmware, device drivers, microcontroller peripherals, and communication protocols, working across the boundary between hardware and software.

My work has involved microcontroller-based systems, real-time behaviour, hardware interfaces, and communication technologies such as CAN, CAN FD, UART, SPI, and I²C. I am particularly interested in understanding systems from the lowest level upward—from registers and peripherals to intelligent edge systems.

ENGINEERING PHILOSOPHY

Engineering is not just about writing code; it is about managing constraints, timings, and physical hardware characteristics. True mastery of complex systems comes from understanding the interactions across different layers of the stack.

This conviction is why I built PrajnaEdge—to bridge the gap between conceptual theory and direct, register-level physical reality.

CONNECT

LinkedIn → GitHub →

Interactive Career Journey

Let's Connect
Interested in embedded systems, AI, or building something meaningful? I'd love to hear from you.
Open to collaborations, research, and interesting engineering conversations.
Help Improve PrajnaEdge
Found something to improve? I'd love to hear your thoughts.

Bare Metal

Software that runs directly on hardware without an operating system.

Applications
Operating Systems
YOU ARE HERE
Bare Metal
Processor
Hardware

"Every embedded application begins long before main()."

Operating Systems

An Operating System manages hardware and software resources so complex applications can work efficiently.

Applications
YOU ARE HERE
Operating Systems
Bare Metal
Processor
Hardware

"When one loop is no longer enough to carry the burden."

Support PrajnaEdge

PrajnaEdge is an independent education platform built to make knowledge freely accessible.

If you find PrajnaEdge useful, you can support its continued development.

Your support helps fund the time, tools, infrastructure, and experimentation that go into building and maintaining PrajnaEdge.

Select Region
Select Amount
Select an amount to support PrajnaEdge.