/device-drivers
Linux device driver skill for kernel driver development. Use when writing platform/i2c/spi drivers, char device lifecycle, IRQ handling, DMA engine API, regmap, power management, or udev rules. Activates on queries about platform_driver, request_irq, dma_alloc_coherent, regmap,
$ npx -y skills add mohitmishra786/low-level-dev-skills --skill device-drivers --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/device-drivers
Context preview
The summary Claude sees to decide when to auto-load this skill.
Linux device driver skill for kernel driver development. Use when writing platform/i2c/spi drivers, char device lifecycle, IRQ handling, DMA engine API, regmap, power management, or udev rules. Activates on queries about platform_driver, request_irq, dma_alloc_coherent, regmap,
SKILL.md
device-drivers.SKILL.mdname: device-drivers
description: Linux device driver skill for kernel driver development. Use when writing platform/i2c/spi drivers, char device lifecycle, IRQ handling, DMA engine API, regmap, power management, or udev rules. Activates on queries about platform_driver, request_irq, dma_alloc_coherent, regmap, pm_runtime, or char devices.
Device Drivers
Purpose
Guide agents through Linux kernel device driver development: the driver model (`platform_driver`, `i2c_driver`, `spi_driver`), character device lifecycle, IRQ handling including threaded IRQs, DMA engine API, regmap for register abstraction, runtime power management, and udev rules for userspace device nodes.
When to Use
- Writing a platform driver for memory-mapped hardware
- Implementing a character device with read/write/ioctl
- Handling hardware interrupts (hard IRQ vs threaded)
- Setting up DMA coherent or streaming mappings
- Abstracting register access with regmap
- Configuring udev rules for `/dev` node permissions
Workflow
1. Driver model overview
Device tree / ACPI → bus (platform, i2c, spi, pci)
→ struct device → struct device_driver
→ probe() / remove()// platform_driver.c — minimal platform driver
#include <linux/module.h>
#include <linux/platform_device.h>
static int my_probe(struct platform_device *pdev)
{
struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
void __iomem *base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(base))
return PTR_ERR(base);
dev_info(&pdev->dev, "probed at %pa\n", &res->start);
return 0;
}
static void my_remove(struct platform_device *pdev)
{
dev_info(&pdev->dev, "removed\n");
}
static struct platform_driver my_driver = {
.probe = my_probe,
.remove = my_remove,
.driver = { .name = "my-device", .owner = THIS_MODULE },
};
module_platform_driver(my_driver);
MODULE_LICENSE("GPL");2. Character device lifecycle
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/uaccess.h>
#define DEVICE_NAME "mydev"
#define MINOR_BASE 0
#define MINOR_COUNT 1
static dev_t dev_num;
static struct cdev my_cdev;
static struct class *dev_class;
static ssize_t my_read(struct file *filp, char __user *buf,
size_t count, loff_t *ppos)
{
char kbuf[64] = "hello from kernel\n";
size_t len = strlen(kbuf);
if (*ppos >= len)
return 0;
if (count > len - *ppos)
count = len - *ppos;
if (copy_to_user(buf, kbuf + *ppos, count))
return -EFAULT;
*ppos += count;
return count;
}
static const struct file_operations my_fops = {
.owner = THIS_MODULE,
.read = my_read,
};
static int __init mydev_init(void)
{
int ret;
ret = alloc_chrdev_region(&dev_num, MINOR_BASE, MINOR_COUNT, DEVICE_NAME);
if (ret)
return ret;
cdev_init(&my_cdev, &my_fops);
my_cdev.owner = THIS_MODULE;
ret = cdev_add(&my_cdev, dev_num, MINOR_COUNT);
if (ret)
goto err_cdev;
dev_class = class_create(DEVICE_NAME);
device_create(dev_class, NULL, dev_num, NULL, DEVICE_NAME);
return 0;
err_cdev:
unregister_chrdev_region(dev_num, MINOR_COUNT);
return ret;
}# After loading module
ls -l /dev/mydev
cat /dev/mydev
3. IRQ handling
#include <linux/interrupt.h>
static irqreturn_t my_hardirq(int irq, void *dev_id)
{
// Minimal work: acknowledge, schedule bottom half
return IRQ_WAKE_THREAD;
}
static irqreturn_t my_threaded(int irq, void *dev_id)
{
// Process data — can sleep
process_ring_buffer();
return IRQ_HANDLED;
}
static int request_device_irq(struct device *dev, int irq)
{
return devm_request_threaded_irq(dev, irq, my_hardirq, my_threaded,
IRQF_ONESHOT, "mydev", dev);
}| Pattern | Use when | |---------|----------| | Hard IRQ only | Microsecond work, no blocking | | Threaded IRQ | I2C/SPI reads, scheduling, mutex | | `IRQF_ONESHOT` | Level-triggered; IRQ masked until threaded handler returns |
4. DMA engine API
#include <linux/dma-mapping.h>
// Coherent (consistent) mapping — CPU and device see same memory
void *cpu_addr;
dma_addr_t dma_handle;
cpu_addr = dma_alloc_coherent(dev, size, &dma_handle, GFP_KERNEL);
// Streaming (single) mapping for already-allocated buffers
dma_addr_t dma = dma_map_single(dev, kernel_buf, size, DMA_TO_DEVICE);
dma_sync_single_for_device(dev, dma, size, DMA_TO_DEVICE);
// ... device reads ...
dma_unmap_single(dev, dma, size, DMA_TO_DEVICE);
# Debug DMA mappings
cat /sys/kernel/debug/dma_buf/bufinfo 2>/dev/null
5. regmap abstraction
#include <linux/regmap.h>
static const struct regmap_config my_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = 0xFF,
};
// I2C regmap (typical for sensors)
static struct regmap *regmap;
regmap_write(regmap, 0x01, 0x80); // set config register
regmap_read(regmap, 0x02, &val); // read status
regmap_update_bits(regmap, 0x03, MASK, VALUE);regmap handles locking, caching, and bulk access — prefer over raw `i2c_smbus_*` in new drivers.
6. Power management
#include <linux/pm_runtime.h>
static int my_runtime_suspend(struct device *dev)
{
// Gate clocks, put hardware in low-power state
return 0;
}
static int my_runtime_resume(struct device *dev)
{
// Restore registers, enable clocks
return 0;
}
static const struct dev_pm_ops my_pm_ops = {
.runtime_suspend = my_runtime_suspend,
.runtime_resume = my_runtime_resume,
};
// In probe:
pm_runtime_enable(&pdev->dev);
pm_runtime_get_sync(&pdev->dev); // ensure powered on7. udev rules
# /etc/udev/rules.d/99-mydev.rules
KERNEL=="mydev", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="i2c-dev", KERNEL=="i2c-1", GROUP="i2c", MODE="0660"
sudo udevadm control --reload-rules
sudo udevadm trigger
udevadm info -a -n /dev/mydev
8. I2C and SPI
Read more
name: device-drivers description: Linux device driver skill for kernel driver development. Use when writing platform/i2c/spi drivers, char device lifecycle, IRQ handling, DMA engine API, regmap, power management, or udev rules. Activates on queries about platform_driver, request_irq, dma_alloc_coherent, regmap, pm_runtime, or char devices.
Device Drivers
Purpose
Guide agents through Linux kernel device driver development: the driver model (`platform_driver`, `i2c_driver`, `spi_driver`), character device lifecycle, IRQ handling including threaded IRQs, DMA engine API, regmap for register abstraction, runtime power management, and udev rules for userspace device nodes.
When to Use
- Writing a platform driver for memory-mapped hardware
- Implementing a character device with read/write/ioctl
- Handling hardware interrupts (hard IRQ vs threaded)
- Setting up DMA coherent or streaming mappings
- Abstracting register access with regmap
- Configuring udev rules for `/dev` node permissions
Workflow
1. Driver model overview
Device tree / ACPI → bus (platform, i2c, spi, pci)
→ struct device → struct device_driver
→ probe() / remove()// platform_driver.c — minimal platform driver
#include <linux/module.h>
#include <linux/platform_device.h>
static int my_probe(struct platform_device *pdev)
{
struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
void __iomem *base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(base))
return PTR_ERR(base);
dev_info(&pdev->dev, "probed at %pa\n", &res->start);
return 0;
}
static void my_remove(struct platform_device *pdev)
{
dev_info(&pdev->dev, "removed\n");
}
static struct platform_driver my_driver = {
.probe = my_probe,
.remove = my_remove,
.driver = { .name = "my-device", .owner = THIS_MODULE },
};
module_platform_driver(my_driver);
MODULE_LICENSE("GPL");2. Character device lifecycle
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/uaccess.h>
#define DEVICE_NAME "mydev"
#define MINOR_BASE 0
#define MINOR_COUNT 1
static dev_t dev_num;
static struct cdev my_cdev;
static struct class *dev_class;
static ssize_t my_read(struct file *filp, char __user *buf,
size_t count, loff_t *ppos)
{
char kbuf[64] = "hello from kernel\n";
size_t len = strlen(kbuf);
if (*ppos >= len)
return 0;
if (count > len - *ppos)
count = len - *ppos;
if (copy_to_user(buf, kbuf + *ppos, count))
return -EFAULT;
*ppos += count;
return count;
}
static const struct file_operations my_fops = {
.owner = THIS_MODULE,
.read = my_read,
};
static int __init mydev_init(void)
{
int ret;
ret = alloc_chrdev_region(&dev_num, MINOR_BASE, MINOR_COUNT, DEVICE_NAME);
if (ret)
return ret;
cdev_init(&my_cdev, &my_fops);
my_cdev.owner = THIS_MODULE;
ret = cdev_add(&my_cdev, dev_num, MINOR_COUNT);
if (ret)
goto err_cdev;
dev_class = class_create(DEVICE_NAME);
device_create(dev_class, NULL, dev_num, NULL, DEVICE_NAME);
return 0;
err_cdev:
unregister_chrdev_region(dev_num, MINOR_COUNT);
return ret;
}# After loading module ls -l /dev/mydev cat /dev/mydev
3. IRQ handling
#include <linux/interrupt.h>
static irqreturn_t my_hardirq(int irq, void *dev_id)
{
// Minimal work: acknowledge, schedule bottom half
return IRQ_WAKE_THREAD;
}
static irqreturn_t my_threaded(int irq, void *dev_id)
{
// Process data — can sleep
process_ring_buffer();
return IRQ_HANDLED;
}
static int request_device_irq(struct device *dev, int irq)
{
return devm_request_threaded_irq(dev, irq, my_hardirq, my_threaded,
IRQF_ONESHOT, "mydev", dev);
}| Pattern | Use when | |---------|----------| | Hard IRQ only | Microsecond work, no blocking | | Threaded IRQ | I2C/SPI reads, scheduling, mutex | | `IRQF_ONESHOT` | Level-triggered; IRQ masked until threaded handler returns |
4. DMA engine API
#include <linux/dma-mapping.h> // Coherent (consistent) mapping — CPU and device see same memory void *cpu_addr; dma_addr_t dma_handle; cpu_addr = dma_alloc_coherent(dev, size, &dma_handle, GFP_KERNEL); // Streaming (single) mapping for already-allocated buffers dma_addr_t dma = dma_map_single(dev, kernel_buf, size, DMA_TO_DEVICE); dma_sync_single_for_device(dev, dma, size, DMA_TO_DEVICE); // ... device reads ... dma_unmap_single(dev, dma, size, DMA_TO_DEVICE);
# Debug DMA mappings cat /sys/kernel/debug/dma_buf/bufinfo 2>/dev/null
5. regmap abstraction
#include <linux/regmap.h>
static const struct regmap_config my_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = 0xFF,
};
// I2C regmap (typical for sensors)
static struct regmap *regmap;
regmap_write(regmap, 0x01, 0x80); // set config register
regmap_read(regmap, 0x02, &val); // read status
regmap_update_bits(regmap, 0x03, MASK, VALUE);regmap handles locking, caching, and bulk access — prefer over raw `i2c_smbus_*` in new drivers.
6. Power management
#include <linux/pm_runtime.h>
static int my_runtime_suspend(struct device *dev)
{
// Gate clocks, put hardware in low-power state
return 0;
}
static int my_runtime_resume(struct device *dev)
{
// Restore registers, enable clocks
return 0;
}
static const struct dev_pm_ops my_pm_ops = {
.runtime_suspend = my_runtime_suspend,
.runtime_resume = my_runtime_resume,
};
// In probe:
pm_runtime_enable(&pdev->dev);
pm_runtime_get_sync(&pdev->dev); // ensure powered on7. udev rules
# /etc/udev/rules.d/99-mydev.rules KERNEL=="mydev", MODE="0666", GROUP="plugdev" SUBSYSTEM=="i2c-dev", KERNEL=="i2c-1", GROUP="i2c", MODE="0660"
sudo udevadm control --reload-rules sudo udevadm trigger udevadm info -a -n /dev/mydev
8. I2C and SPI
A curated suite of AI agent skills for systems and low-level programming — C/C++, Rust, Zig, GPU, bare-metal firmware, Linux kernel/driver development, computer architecture, compiler internals, HPC, and more.
Repo: mohitmishra786/low-level-dev-skills
Other skills on low-level-dev-skills.
- /custom-allocators
Custom allocator skill for memory allocation strategies. Use when implementing pool/slab/arena allocators, tuning jemalloc/mimalloc, writing Rust GlobalAlloc, or benchmarking allocator performance. Activates on queries about jemalloc, mimalloc, tcmalloc, arena allocator,
Open skill - /numa-programming
NUMA programming skill for multi-socket memory locality. Use when detecting NUMA topology, binding processes with numactl, using libnuma API, building NUMA-aware data structures, or measuring remote access penalties. Activates on queries about numactl, libnuma, NUMA topology,
Open skill - /af-xdp
AF_XDP skill for high-performance XDP sockets. Use when creating AF_XDP sockets, configuring UMEM and XSK rings, XDP_REDIRECT programs, copy vs zero-copy mode, or comparing with DPDK. Activates on queries about AF_XDP, xsk_umem, XDP_REDIRECT, libbpf xsk, or zero-copy XDP.
Open skill - /dpdk
DPDK skill for userspace packet I/O. Use when initializing EAL, configuring PMD drivers, using mbuf pools and rte_ring, setting up huge pages, RSS, or testpmd validation. Activates on queries about DPDK, EAL, rte_eth_rx_burst, hugepages, PMD, or testpmd.
Open skill - /io-uring
io_uring skill for Linux async I/O. Use when building high-performance servers with liburing, multi-shot operations, provided buffers, fixed files, zero-copy send, or tokio-uring. Activates on queries about io_uring, SQE/CQE, liburing, IORING_OP_PROVIDE_BUFFERS, or io_uring vs
Open skill - /adc-dac-baremetal
Bare-metal ADC and DAC skill. Use when configuring analog sampling, DMA-driven ADC, calibration, or DAC output on MCUs. Activates on queries about ADC bare-metal, sampling time, DMA ADC, or DAC channel setup.
Open skill

