Linux 4.15.6
[linux/fpc-iii.git] / Documentation / core-api / kernel-api.rst
blob2d9da6c40a4d36e6d75ecf5d37e11cbd0ca18d14
1 ====================
2 The Linux Kernel API
3 ====================
6 List Management Functions
7 =========================
9 .. kernel-doc:: include/linux/list.h
10    :internal:
12 Basic C Library Functions
13 =========================
15 When writing drivers, you cannot in general use routines which are from
16 the C Library. Some of the functions have been found generally useful
17 and they are listed below. The behaviour of these functions may vary
18 slightly from those defined by ANSI, and these deviations are noted in
19 the text.
21 String Conversions
22 ------------------
24 .. kernel-doc:: lib/vsprintf.c
25    :export:
27 .. kernel-doc:: include/linux/kernel.h
28    :functions: kstrtol
30 .. kernel-doc:: include/linux/kernel.h
31    :functions: kstrtoul
33 .. kernel-doc:: lib/kstrtox.c
34    :export:
36 String Manipulation
37 -------------------
39 .. kernel-doc:: lib/string.c
40    :export:
42 Bit Operations
43 --------------
45 .. kernel-doc:: arch/x86/include/asm/bitops.h
46    :internal:
48 Basic Kernel Library Functions
49 ==============================
51 The Linux kernel provides more basic utility functions.
53 Bitmap Operations
54 -----------------
56 .. kernel-doc:: lib/bitmap.c
57    :doc: bitmap introduction
59 .. kernel-doc:: include/linux/bitmap.h
60    :doc: declare bitmap
62 .. kernel-doc:: include/linux/bitmap.h
63    :doc: bitmap overview
65 .. kernel-doc:: include/linux/bitmap.h
66    :doc: bitmap bitops
68 .. kernel-doc:: lib/bitmap.c
69    :export:
71 .. kernel-doc:: lib/bitmap.c
72    :internal:
74 .. kernel-doc:: include/linux/bitmap.h
75    :internal:
77 Command-line Parsing
78 --------------------
80 .. kernel-doc:: lib/cmdline.c
81    :export:
83 CRC Functions
84 -------------
86 .. kernel-doc:: lib/crc4.c
87    :export:
89 .. kernel-doc:: lib/crc7.c
90    :export:
92 .. kernel-doc:: lib/crc8.c
93    :export:
95 .. kernel-doc:: lib/crc16.c
96    :export:
98 .. kernel-doc:: lib/crc32.c
100 .. kernel-doc:: lib/crc-ccitt.c
101    :export:
103 .. kernel-doc:: lib/crc-itu-t.c
104    :export:
106 idr/ida Functions
107 -----------------
109 .. kernel-doc:: include/linux/idr.h
110    :doc: idr sync
112 .. kernel-doc:: lib/idr.c
113    :doc: IDA description
115 .. kernel-doc:: lib/idr.c
116    :export:
118 Math Functions in Linux
119 =======================
121 Base 2 log and power Functions
122 ------------------------------
124 .. kernel-doc:: include/linux/log2.h
125    :internal:
127 Division Functions
128 ------------------
130 .. kernel-doc:: include/asm-generic/div64.h
131    :functions: do_div
133 .. kernel-doc:: include/linux/math64.h
134    :internal:
136 .. kernel-doc:: lib/div64.c
137    :functions: div_s64_rem div64_u64_rem div64_u64 div64_s64
139 .. kernel-doc:: lib/gcd.c
140    :export:
142 Memory Management in Linux
143 ==========================
145 The Slab Cache
146 --------------
148 .. kernel-doc:: include/linux/slab.h
149    :internal:
151 .. kernel-doc:: mm/slab.c
152    :export:
154 .. kernel-doc:: mm/util.c
155    :export:
157 User Space Memory Access
158 ------------------------
160 .. kernel-doc:: arch/x86/include/asm/uaccess.h
161    :internal:
163 .. kernel-doc:: arch/x86/lib/usercopy_32.c
164    :export:
166 More Memory Management Functions
167 --------------------------------
169 .. kernel-doc:: mm/readahead.c
170    :export:
172 .. kernel-doc:: mm/filemap.c
173    :export:
175 .. kernel-doc:: mm/memory.c
176    :export:
178 .. kernel-doc:: mm/vmalloc.c
179    :export:
181 .. kernel-doc:: mm/page_alloc.c
182    :internal:
184 .. kernel-doc:: mm/mempool.c
185    :export:
187 .. kernel-doc:: mm/dmapool.c
188    :export:
190 .. kernel-doc:: mm/page-writeback.c
191    :export:
193 .. kernel-doc:: mm/truncate.c
194    :export:
196 Kernel IPC facilities
197 =====================
199 IPC utilities
200 -------------
202 .. kernel-doc:: ipc/util.c
203    :internal:
205 FIFO Buffer
206 ===========
208 kfifo interface
209 ---------------
211 .. kernel-doc:: include/linux/kfifo.h
212    :internal:
214 relay interface support
215 =======================
217 Relay interface support is designed to provide an efficient mechanism
218 for tools and facilities to relay large amounts of data from kernel
219 space to user space.
221 relay interface
222 ---------------
224 .. kernel-doc:: kernel/relay.c
225    :export:
227 .. kernel-doc:: kernel/relay.c
228    :internal:
230 Module Support
231 ==============
233 Module Loading
234 --------------
236 .. kernel-doc:: kernel/kmod.c
237    :export:
239 Inter Module support
240 --------------------
242 Refer to the file kernel/module.c for more information.
244 Hardware Interfaces
245 ===================
247 Interrupt Handling
248 ------------------
250 .. kernel-doc:: kernel/irq/manage.c
251    :export:
253 DMA Channels
254 ------------
256 .. kernel-doc:: kernel/dma.c
257    :export:
259 Resources Management
260 --------------------
262 .. kernel-doc:: kernel/resource.c
263    :internal:
265 .. kernel-doc:: kernel/resource.c
266    :export:
268 MTRR Handling
269 -------------
271 .. kernel-doc:: arch/x86/kernel/cpu/mtrr/main.c
272    :export:
274 Security Framework
275 ==================
277 .. kernel-doc:: security/security.c
278    :internal:
280 .. kernel-doc:: security/inode.c
281    :export:
283 Audit Interfaces
284 ================
286 .. kernel-doc:: kernel/audit.c
287    :export:
289 .. kernel-doc:: kernel/auditsc.c
290    :internal:
292 .. kernel-doc:: kernel/auditfilter.c
293    :internal:
295 Accounting Framework
296 ====================
298 .. kernel-doc:: kernel/acct.c
299    :internal:
301 Block Devices
302 =============
304 .. kernel-doc:: block/blk-core.c
305    :export:
307 .. kernel-doc:: block/blk-core.c
308    :internal:
310 .. kernel-doc:: block/blk-map.c
311    :export:
313 .. kernel-doc:: block/blk-sysfs.c
314    :internal:
316 .. kernel-doc:: block/blk-settings.c
317    :export:
319 .. kernel-doc:: block/blk-exec.c
320    :export:
322 .. kernel-doc:: block/blk-flush.c
323    :export:
325 .. kernel-doc:: block/blk-lib.c
326    :export:
328 .. kernel-doc:: block/blk-tag.c
329    :export:
331 .. kernel-doc:: block/blk-tag.c
332    :internal:
334 .. kernel-doc:: block/blk-integrity.c
335    :export:
337 .. kernel-doc:: kernel/trace/blktrace.c
338    :internal:
340 .. kernel-doc:: block/genhd.c
341    :internal:
343 .. kernel-doc:: block/genhd.c
344    :export:
346 Char devices
347 ============
349 .. kernel-doc:: fs/char_dev.c
350    :export:
352 Clock Framework
353 ===============
355 The clock framework defines programming interfaces to support software
356 management of the system clock tree. This framework is widely used with
357 System-On-Chip (SOC) platforms to support power management and various
358 devices which may need custom clock rates. Note that these "clocks"
359 don't relate to timekeeping or real time clocks (RTCs), each of which
360 have separate frameworks. These :c:type:`struct clk <clk>`
361 instances may be used to manage for example a 96 MHz signal that is used
362 to shift bits into and out of peripherals or busses, or otherwise
363 trigger synchronous state machine transitions in system hardware.
365 Power management is supported by explicit software clock gating: unused
366 clocks are disabled, so the system doesn't waste power changing the
367 state of transistors that aren't in active use. On some systems this may
368 be backed by hardware clock gating, where clocks are gated without being
369 disabled in software. Sections of chips that are powered but not clocked
370 may be able to retain their last state. This low power state is often
371 called a *retention mode*. This mode still incurs leakage currents,
372 especially with finer circuit geometries, but for CMOS circuits power is
373 mostly used by clocked state changes.
375 Power-aware drivers only enable their clocks when the device they manage
376 is in active use. Also, system sleep states often differ according to
377 which clock domains are active: while a "standby" state may allow wakeup
378 from several active domains, a "mem" (suspend-to-RAM) state may require
379 a more wholesale shutdown of clocks derived from higher speed PLLs and
380 oscillators, limiting the number of possible wakeup event sources. A
381 driver's suspend method may need to be aware of system-specific clock
382 constraints on the target sleep state.
384 Some platforms support programmable clock generators. These can be used
385 by external chips of various kinds, such as other CPUs, multimedia
386 codecs, and devices with strict requirements for interface clocking.
388 .. kernel-doc:: include/linux/clk.h
389    :internal:
391 Synchronization Primitives
392 ==========================
394 Read-Copy Update (RCU)
395 ----------------------
397 .. kernel-doc:: include/linux/rcupdate.h
399 .. kernel-doc:: include/linux/rcupdate_wait.h
401 .. kernel-doc:: include/linux/rcutree.h
403 .. kernel-doc:: kernel/rcu/tree.c
405 .. kernel-doc:: kernel/rcu/tree_plugin.h
407 .. kernel-doc:: kernel/rcu/tree_exp.h
409 .. kernel-doc:: kernel/rcu/update.c
411 .. kernel-doc:: include/linux/srcu.h
413 .. kernel-doc:: kernel/rcu/srcutree.c
415 .. kernel-doc:: include/linux/rculist_bl.h
417 .. kernel-doc:: include/linux/rculist.h
419 .. kernel-doc:: include/linux/rculist_nulls.h
421 .. kernel-doc:: include/linux/rcu_sync.h
423 .. kernel-doc:: kernel/rcu/sync.c