drm/nouveau: fix kernel-doc comments
[drm/drm-misc.git] / Documentation / core-api / kernel-api.rst
blobae92a2571388ae7fc0b7c5f23a19ed59ac1312cc
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/kstrtox.h
28    :functions: kstrtol kstrtoul
30 .. kernel-doc:: lib/kstrtox.c
31    :export:
33 .. kernel-doc:: lib/string_helpers.c
34    :export:
36 String Manipulation
37 -------------------
39 .. kernel-doc:: include/linux/fortify-string.h
40    :internal:
42 .. kernel-doc:: lib/string.c
43    :export:
45 .. kernel-doc:: include/linux/string.h
46    :internal:
48 .. kernel-doc:: mm/util.c
49    :functions: kstrdup kstrdup_const kstrndup kmemdup kmemdup_nul memdup_user
50                vmemdup_user strndup_user memdup_user_nul
52 Basic Kernel Library Functions
53 ==============================
55 The Linux kernel provides more basic utility functions.
57 Bit Operations
58 --------------
60 .. kernel-doc:: include/asm-generic/bitops/instrumented-atomic.h
61    :internal:
63 .. kernel-doc:: include/asm-generic/bitops/instrumented-non-atomic.h
64    :internal:
66 .. kernel-doc:: include/asm-generic/bitops/instrumented-lock.h
67    :internal:
69 Bitmap Operations
70 -----------------
72 .. kernel-doc:: lib/bitmap.c
73    :doc: bitmap introduction
75 .. kernel-doc:: include/linux/bitmap.h
76    :doc: declare bitmap
78 .. kernel-doc:: include/linux/bitmap.h
79    :doc: bitmap overview
81 .. kernel-doc:: include/linux/bitmap.h
82    :doc: bitmap bitops
84 .. kernel-doc:: lib/bitmap.c
85    :export:
87 .. kernel-doc:: lib/bitmap.c
88    :internal:
90 .. kernel-doc:: include/linux/bitmap.h
91    :internal:
93 Command-line Parsing
94 --------------------
96 .. kernel-doc:: lib/cmdline.c
97    :export:
99 Error Pointers
100 --------------
102 .. kernel-doc:: include/linux/err.h
103    :internal:
105 Sorting
106 -------
108 .. kernel-doc:: lib/sort.c
109    :export:
111 .. kernel-doc:: lib/list_sort.c
112    :export:
114 Text Searching
115 --------------
117 .. kernel-doc:: lib/textsearch.c
118    :doc: ts_intro
120 .. kernel-doc:: lib/textsearch.c
121    :export:
123 .. kernel-doc:: include/linux/textsearch.h
124    :functions: textsearch_find textsearch_next \
125                textsearch_get_pattern textsearch_get_pattern_len
127 CRC and Math Functions in Linux
128 ===============================
130 Arithmetic Overflow Checking
131 ----------------------------
133 .. kernel-doc:: include/linux/overflow.h
134    :internal:
136 CRC Functions
137 -------------
139 .. kernel-doc:: lib/crc4.c
140    :export:
142 .. kernel-doc:: lib/crc7.c
143    :export:
145 .. kernel-doc:: lib/crc8.c
146    :export:
148 .. kernel-doc:: lib/crc16.c
149    :export:
151 .. kernel-doc:: lib/crc32.c
153 .. kernel-doc:: lib/crc-ccitt.c
154    :export:
156 .. kernel-doc:: lib/crc-itu-t.c
157    :export:
159 Base 2 log and power Functions
160 ------------------------------
162 .. kernel-doc:: include/linux/log2.h
163    :internal:
165 Integer log and power Functions
166 -------------------------------
168 .. kernel-doc:: include/linux/int_log.h
170 .. kernel-doc:: lib/math/int_pow.c
171    :export:
173 .. kernel-doc:: lib/math/int_sqrt.c
174    :export:
176 Division Functions
177 ------------------
179 .. kernel-doc:: include/asm-generic/div64.h
180    :functions: do_div
182 .. kernel-doc:: include/linux/math64.h
183    :internal:
185 .. kernel-doc:: lib/math/gcd.c
186    :export:
188 UUID/GUID
189 ---------
191 .. kernel-doc:: lib/uuid.c
192    :export:
194 Kernel IPC facilities
195 =====================
197 IPC utilities
198 -------------
200 .. kernel-doc:: ipc/util.c
201    :internal:
203 FIFO Buffer
204 ===========
206 kfifo interface
207 ---------------
209 .. kernel-doc:: include/linux/kfifo.h
210    :internal:
212 relay interface support
213 =======================
215 Relay interface support is designed to provide an efficient mechanism
216 for tools and facilities to relay large amounts of data from kernel
217 space to user space.
219 relay interface
220 ---------------
222 .. kernel-doc:: kernel/relay.c
223    :export:
225 .. kernel-doc:: kernel/relay.c
226    :internal:
228 Module Support
229 ==============
231 Kernel module auto-loading
232 --------------------------
234 .. kernel-doc:: kernel/module/kmod.c
235    :export:
237 Module debugging
238 ----------------
240 .. kernel-doc:: kernel/module/stats.c
241    :doc: module debugging statistics overview
243 dup_failed_modules - tracks duplicate failed modules
244 ****************************************************
246 .. kernel-doc:: kernel/module/stats.c
247    :doc: dup_failed_modules - tracks duplicate failed modules
249 module statistics debugfs counters
250 **********************************
252 .. kernel-doc:: kernel/module/stats.c
253    :doc: module statistics debugfs counters
255 Inter Module support
256 --------------------
258 Refer to the files in kernel/module/ for more information.
260 Hardware Interfaces
261 ===================
263 DMA Channels
264 ------------
266 .. kernel-doc:: kernel/dma.c
267    :export:
269 Resources Management
270 --------------------
272 .. kernel-doc:: kernel/resource.c
273    :internal:
275 .. kernel-doc:: kernel/resource.c
276    :export:
278 MTRR Handling
279 -------------
281 .. kernel-doc:: arch/x86/kernel/cpu/mtrr/mtrr.c
282    :export:
284 Security Framework
285 ==================
287 .. kernel-doc:: security/security.c
288    :internal:
290 .. kernel-doc:: security/inode.c
291    :export:
293 Audit Interfaces
294 ================
296 .. kernel-doc:: kernel/audit.c
297    :export:
299 .. kernel-doc:: kernel/auditsc.c
300    :internal:
302 .. kernel-doc:: kernel/auditfilter.c
303    :internal:
305 Accounting Framework
306 ====================
308 .. kernel-doc:: kernel/acct.c
309    :internal:
311 Block Devices
312 =============
314 .. kernel-doc:: include/linux/bio.h
315 .. kernel-doc:: block/blk-core.c
316    :export:
318 .. kernel-doc:: block/blk-core.c
319    :internal:
321 .. kernel-doc:: block/blk-map.c
322    :export:
324 .. kernel-doc:: block/blk-sysfs.c
325    :internal:
327 .. kernel-doc:: block/blk-settings.c
328    :export:
330 .. kernel-doc:: block/blk-flush.c
331    :export:
333 .. kernel-doc:: block/blk-lib.c
334    :export:
336 .. kernel-doc:: block/blk-integrity.c
337    :export:
339 .. kernel-doc:: kernel/trace/blktrace.c
340    :internal:
342 .. kernel-doc:: block/genhd.c
343    :internal:
345 .. kernel-doc:: block/genhd.c
346    :export:
348 .. kernel-doc:: block/bdev.c
349    :export:
351 Char devices
352 ============
354 .. kernel-doc:: fs/char_dev.c
355    :export:
357 Clock Framework
358 ===============
360 The clock framework defines programming interfaces to support software
361 management of the system clock tree. This framework is widely used with
362 System-On-Chip (SOC) platforms to support power management and various
363 devices which may need custom clock rates. Note that these "clocks"
364 don't relate to timekeeping or real time clocks (RTCs), each of which
365 have separate frameworks. These :c:type:`struct clk <clk>`
366 instances may be used to manage for example a 96 MHz signal that is used
367 to shift bits into and out of peripherals or busses, or otherwise
368 trigger synchronous state machine transitions in system hardware.
370 Power management is supported by explicit software clock gating: unused
371 clocks are disabled, so the system doesn't waste power changing the
372 state of transistors that aren't in active use. On some systems this may
373 be backed by hardware clock gating, where clocks are gated without being
374 disabled in software. Sections of chips that are powered but not clocked
375 may be able to retain their last state. This low power state is often
376 called a *retention mode*. This mode still incurs leakage currents,
377 especially with finer circuit geometries, but for CMOS circuits power is
378 mostly used by clocked state changes.
380 Power-aware drivers only enable their clocks when the device they manage
381 is in active use. Also, system sleep states often differ according to
382 which clock domains are active: while a "standby" state may allow wakeup
383 from several active domains, a "mem" (suspend-to-RAM) state may require
384 a more wholesale shutdown of clocks derived from higher speed PLLs and
385 oscillators, limiting the number of possible wakeup event sources. A
386 driver's suspend method may need to be aware of system-specific clock
387 constraints on the target sleep state.
389 Some platforms support programmable clock generators. These can be used
390 by external chips of various kinds, such as other CPUs, multimedia
391 codecs, and devices with strict requirements for interface clocking.
393 .. kernel-doc:: include/linux/clk.h
394    :internal:
396 Synchronization Primitives
397 ==========================
399 Read-Copy Update (RCU)
400 ----------------------
402 .. kernel-doc:: include/linux/rcupdate.h
404 .. kernel-doc:: kernel/rcu/tree.c
406 .. kernel-doc:: kernel/rcu/tree_exp.h
408 .. kernel-doc:: kernel/rcu/update.c
410 .. kernel-doc:: include/linux/srcu.h
412 .. kernel-doc:: kernel/rcu/srcutree.c
414 .. kernel-doc:: include/linux/rculist_bl.h
416 .. kernel-doc:: include/linux/rculist.h
418 .. kernel-doc:: include/linux/rculist_nulls.h
420 .. kernel-doc:: include/linux/rcu_sync.h
422 .. kernel-doc:: kernel/rcu/sync.c
424 .. kernel-doc:: kernel/rcu/tasks.h
426 .. kernel-doc:: kernel/rcu/tree_stall.h
428 .. kernel-doc:: include/linux/rcupdate_trace.h
430 .. kernel-doc:: include/linux/rcupdate_wait.h
432 .. kernel-doc:: include/linux/rcuref.h
434 .. kernel-doc:: include/linux/rcutree.h