< The Linux Kernel

System means general functions used to support and manage other kernel functionality. Synonym: infrastructure.

Booting and Halting

Kernel booting

This is loaded in two stages - in the first stage the kernel (as a compressed image file) is loaded into memory and decompressed, and a few fundamental functions such as essential hardware and basic memory management (memory paging) are set up. Control is then switched one final time to the main kernel start process calling start_kernel id, which then performs the majority of system setup (interrupts, the rest of memory management, device and driver initialization, etc.) before spawning separately, the idle process and scheduler, and the init process (which is executed in user space).

Kernel loading stage

The kernel as loaded is typically an image file, compressed into either zImage or bzImage formats with zlib. A routine at the head of it does a minimal amount of hardware setup, decompresses the image fully into high memory, and takes note of any RAM disk if configured. It then executes kernel startup via startup_64 (for x86_64 architecture).

Decompressing Linux... done.
Booting the kernel.

Kernel startup stage

The startup function for the kernel (also called the swapper or process 0) establishes memory management (paging tables and memory paging), detects the type of CPU and any additional functionality such as floating point capabilities, and then switches to non-architecture specific Linux kernel functionality via a call to start_kernel id.

start_kernel id executes a wide range of initialization functions. It sets up interrupt handling (IRQs), further configures memory, starts the man 1 init process (the first user-space process), and then starts the idle task via cpu_startup_entry id. Notably, the kernel startup process also mounts the initial RAM disk (man 8 initrd) that was loaded previously as the temporary root file system during the boot phase. The initrd allows driver modules to be loaded directly from memory, without reliance upon other devices (e.g. a hard disk) and the drivers that are needed to access them (e.g. a SATA driver). This split of some drivers statically compiled into the kernel and other drivers loaded from initrd allows for a smaller kernel. The root file system is later switched via a call to man 8 pivot_root / man 2 pivot_root which unmounts the temporary root file system and replaces it with the use of the real one, once the latter is accessible. The memory used by the temporary root file system is then reclaimed.

πŸ“š References

Halting and rebooting

πŸ”§ TODO

⚲ API: sys_reboot id calls machine_restart id or machine_halt id or machine_power_off id

User space communication


πŸ“š References


More

System calls

βš™οΈ Internals:


πŸ“š References


πŸ’Ύ Historical

Administration

πŸ”§ TODO

πŸ“š References

procfs

The proc filesystem (procfs) is a special filesystem that presents information about processes and other system information in a hierarchical file-like structure, providing a more convenient and standardized method for dynamically accessing process data held in the kernel than traditional tracing methods or direct access to kernel memory. Typically, it is mapped to a mount point named /proc at boot time. The proc file system acts as an interface to internal data structures in the kernel. It can be used to obtain information about the system and to change certain kernel parameters at runtime.

/proc includes a directory for each running process β€”including kernel threadsβ€” in directories named /proc/PID, where PID is the process number. Each directory contains information about one process, including the command that originally started the process (/proc/PID/cmdline), the names and values of its environment variables (/proc/PID/environ), a symlink to its working directory (/proc/PID/cwd), another symlink to the original executable file β€”if it still existsβ€” (/proc/PID/exe), a couple of directories with symlinks to each open file descriptor (/proc/PID/fd) and the status β€”position, flags, ...β€” of each of them (/proc/PID/fdinfo), information about mapped files and blocks like heap and stack (/proc/PID/maps), a binary image representing the process's virtual memory (/proc/PID/mem), a symlink to the root path as seen by the process (/proc/PID/root), a directory containing hard links to any child process or thread (/proc/PID/task), basic information about a process including its run state and memory usage (/proc/PID/status) and much more.


πŸ“š References

sysfs

sysfs is a pseudo-file system that exports information about various kernel subsystems, hardware devices, and associated device drivers from the kernel's device model to user space through virtual files. In addition to providing information about various devices and kernel subsystems, exported virtual files are also used for their configuring. Sysfs is designed to export the information present in the device tree, which would then no longer clutter up procfs.

Sysfs is mounted under the /sys mount point.

⚲ API:

πŸ“š References

devtmpfs

devtmpfs is a hybrid kernel/userspace approach of a device filesystem to provide nodes before udev runs for the first time.


πŸ“š References

Driver Model

or Device Model

Classes

A class is a higher-level view of a device that abstracts out low-level implementation details. Drivers may see a NVME storage or a SATA storage, but, at the class level, they are all simply block_class id devices. Classes allow user space to work with devices based on what they do, rather than how they are connected or how they work.

⚲ API:

πŸ‘ Examples: input_class id, block_class id net_class id


Buses

A bus is a channel between the processor and one or more devices. For the purposes of the device model, all devices are connected via a bus, even if it is an internal, virtual, platform_bus_type id. Buses can plug into each other. A USB controller is usually a PCI device, for example. The device model represents the actual connections between buses and the devices they control. A bus is represented by the bus_type id structure. It contains the name, the default attributes, the bus' methods, PM operations, and the driver core's private data.

⚲ API:

πŸ‘ Examples: usb_bus_type id, hid_bus_type id, pci_bus_type id, scsi_bus_type id, platform_bus_type id

Drivers

⚲ API:

πŸ‘ Examples: hid_generic id usb_register_device_driver id

Platform drivers

πŸ‘ Examples: gpio_mouse_device_driver id

Devices

⚲ API:

πŸ‘ Examples: platform_bus id mousedev_create

Platform devices

πŸ‘ Examples: add_pcspkr id


⚲ API: πŸ”§ TODO

  • platform_device_info platform_device_id platform_device_register_full platform_device_add
  • platform_device_add_data platform_device_register_data platform_device_add_resources
  • attribute_group dev_pm_ops



βš™οΈ Internals:

πŸ“š References

Devices

Classic UNIX devices are Char devices used as byte streams with man 2 ioctl.

⚲ API:

ls /dev
cat /proc/devices 
cat /proc/misc

Examples: misc_fops id usb_fops id memory_fops id

DMA

⚲ API:


βš™οΈ Internals


πŸ“š References

πŸ’Ύ Historical

SAC Single Address Cycle


Modules

lsmod
cat /proc/modules

πŸ“š References

Peripheral buses

Shell interface:

ls /proc/bus/
ls /sys/bus/

⚲ API: See Buses of Driver Model

Input: keyboard and mouse

Querying information from shell:

cat /proc/bus/input/devices


PCI

Querying information from shell:

lspci -vv
column -t /proc/bus/pci/devices

Main article: PCI


USB

Querying information from shell:

lsusb -v
cat /proc/bus/usb/devices


Other

Hardware interfaces

Interrupts

I/O ports and registers

⚲ API:

ioport_map id

ioread32 id/ iowrite32 idetc

linux/ioport.h inc:

request_mem_region id

Functions for memory mapped registers:

ioremap id

readl id/ writel idetc

The {in,out}[bwl] macros are for emulating x86-style PCI/ISA IO space:

inl id/ outl idetc

Hardware Device Drivers

Keywords: kobjects, sysfs, buses, devices, drivers, classes, firmware, hotplug, gpio, pin, clock, mux

βš™οΈ Internals:

πŸ“š References

Building and Updating

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.