Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 1 | ==================== |
| 2 | The Linux Kernel API |
| 3 | ==================== |
| 4 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 5 | |
Randy Dunlap | 416c751 | 2017-09-17 15:19:10 -0700 | [diff] [blame] | 6 | List Management Functions |
| 7 | ========================= |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 8 | |
| 9 | .. kernel-doc:: include/linux/list.h |
| 10 | :internal: |
| 11 | |
| 12 | Basic C Library Functions |
| 13 | ========================= |
| 14 | |
| 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. |
| 20 | |
| 21 | String Conversions |
| 22 | ------------------ |
| 23 | |
| 24 | .. kernel-doc:: lib/vsprintf.c |
| 25 | :export: |
| 26 | |
| 27 | .. kernel-doc:: include/linux/kernel.h |
| 28 | :functions: kstrtol |
| 29 | |
| 30 | .. kernel-doc:: include/linux/kernel.h |
| 31 | :functions: kstrtoul |
| 32 | |
| 33 | .. kernel-doc:: lib/kstrtox.c |
| 34 | :export: |
| 35 | |
Andy Shevchenko | b422124 | 2019-06-05 19:39:44 +0300 | [diff] [blame] | 36 | .. kernel-doc:: lib/string_helpers.c |
| 37 | :export: |
| 38 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 39 | String Manipulation |
| 40 | ------------------- |
| 41 | |
| 42 | .. kernel-doc:: lib/string.c |
| 43 | :export: |
| 44 | |
Mike Rapoport | 1595617 | 2018-08-23 17:01:09 -0700 | [diff] [blame] | 45 | .. kernel-doc:: mm/util.c |
| 46 | :functions: kstrdup kstrdup_const kstrndup kmemdup kmemdup_nul memdup_user |
| 47 | vmemdup_user strndup_user memdup_user_nul |
| 48 | |
Randy Dunlap | eacc670 | 2018-04-26 18:11:02 -0700 | [diff] [blame] | 49 | Basic Kernel Library Functions |
| 50 | ============================== |
| 51 | |
| 52 | The Linux kernel provides more basic utility functions. |
| 53 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 54 | Bit Operations |
| 55 | -------------- |
| 56 | |
Marco Elver | 751ad98 | 2019-07-11 20:54:00 -0700 | [diff] [blame] | 57 | .. kernel-doc:: include/asm-generic/bitops-instrumented.h |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 58 | :internal: |
| 59 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 60 | Bitmap Operations |
| 61 | ----------------- |
| 62 | |
| 63 | .. kernel-doc:: lib/bitmap.c |
Randy Dunlap | 7d7363e | 2017-10-16 16:32:51 -0700 | [diff] [blame] | 64 | :doc: bitmap introduction |
| 65 | |
| 66 | .. kernel-doc:: include/linux/bitmap.h |
| 67 | :doc: declare bitmap |
| 68 | |
| 69 | .. kernel-doc:: include/linux/bitmap.h |
| 70 | :doc: bitmap overview |
| 71 | |
| 72 | .. kernel-doc:: include/linux/bitmap.h |
| 73 | :doc: bitmap bitops |
| 74 | |
| 75 | .. kernel-doc:: lib/bitmap.c |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 76 | :export: |
| 77 | |
| 78 | .. kernel-doc:: lib/bitmap.c |
| 79 | :internal: |
| 80 | |
Randy Dunlap | 404376a | 2017-09-17 19:07:10 -0700 | [diff] [blame] | 81 | .. kernel-doc:: include/linux/bitmap.h |
| 82 | :internal: |
| 83 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 84 | Command-line Parsing |
| 85 | -------------------- |
| 86 | |
| 87 | .. kernel-doc:: lib/cmdline.c |
| 88 | :export: |
| 89 | |
Randy Dunlap | eacc670 | 2018-04-26 18:11:02 -0700 | [diff] [blame] | 90 | Sorting |
| 91 | ------- |
| 92 | |
| 93 | .. kernel-doc:: lib/sort.c |
| 94 | :export: |
| 95 | |
| 96 | .. kernel-doc:: lib/list_sort.c |
| 97 | :export: |
| 98 | |
| 99 | Text Searching |
| 100 | -------------- |
| 101 | |
| 102 | .. kernel-doc:: lib/textsearch.c |
| 103 | :doc: ts_intro |
| 104 | |
| 105 | .. kernel-doc:: lib/textsearch.c |
| 106 | :export: |
| 107 | |
| 108 | .. kernel-doc:: include/linux/textsearch.h |
| 109 | :functions: textsearch_find textsearch_next \ |
| 110 | textsearch_get_pattern textsearch_get_pattern_len |
| 111 | |
| 112 | CRC and Math Functions in Linux |
| 113 | =============================== |
| 114 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 115 | CRC Functions |
| 116 | ------------- |
| 117 | |
Randy Dunlap | 8a29896 | 2017-09-08 16:35:55 -0700 | [diff] [blame] | 118 | .. kernel-doc:: lib/crc4.c |
| 119 | :export: |
| 120 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 121 | .. kernel-doc:: lib/crc7.c |
| 122 | :export: |
| 123 | |
Randy Dunlap | 8a29896 | 2017-09-08 16:35:55 -0700 | [diff] [blame] | 124 | .. kernel-doc:: lib/crc8.c |
| 125 | :export: |
| 126 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 127 | .. kernel-doc:: lib/crc16.c |
| 128 | :export: |
| 129 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 130 | .. kernel-doc:: lib/crc32.c |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 131 | |
| 132 | .. kernel-doc:: lib/crc-ccitt.c |
| 133 | :export: |
| 134 | |
Randy Dunlap | 8a29896 | 2017-09-08 16:35:55 -0700 | [diff] [blame] | 135 | .. kernel-doc:: lib/crc-itu-t.c |
| 136 | :export: |
| 137 | |
Randy Dunlap | 68e5125 | 2017-09-30 08:43:53 -0700 | [diff] [blame] | 138 | Base 2 log and power Functions |
| 139 | ------------------------------ |
| 140 | |
| 141 | .. kernel-doc:: include/linux/log2.h |
| 142 | :internal: |
| 143 | |
Andy Shevchenko | 58d4946 | 2019-06-05 19:51:13 +0300 | [diff] [blame] | 144 | Integer power Functions |
| 145 | ----------------------- |
| 146 | |
| 147 | .. kernel-doc:: lib/math/int_pow.c |
| 148 | :export: |
| 149 | |
| 150 | .. kernel-doc:: lib/math/int_sqrt.c |
| 151 | :export: |
| 152 | |
Randy Dunlap | 68e5125 | 2017-09-30 08:43:53 -0700 | [diff] [blame] | 153 | Division Functions |
| 154 | ------------------ |
| 155 | |
| 156 | .. kernel-doc:: include/asm-generic/div64.h |
| 157 | :functions: do_div |
| 158 | |
| 159 | .. kernel-doc:: include/linux/math64.h |
| 160 | :internal: |
| 161 | |
Andy Shevchenko | 2c64e9c | 2019-05-14 15:43:05 -0700 | [diff] [blame] | 162 | .. kernel-doc:: lib/math/div64.c |
Randy Dunlap | 68e5125 | 2017-09-30 08:43:53 -0700 | [diff] [blame] | 163 | :functions: div_s64_rem div64_u64_rem div64_u64 div64_s64 |
| 164 | |
Andy Shevchenko | 2c64e9c | 2019-05-14 15:43:05 -0700 | [diff] [blame] | 165 | .. kernel-doc:: lib/math/gcd.c |
Randy Dunlap | 68e5125 | 2017-09-30 08:43:53 -0700 | [diff] [blame] | 166 | :export: |
| 167 | |
Randy Dunlap | d063623 | 2017-11-29 12:32:42 -0800 | [diff] [blame] | 168 | UUID/GUID |
| 169 | --------- |
| 170 | |
| 171 | .. kernel-doc:: lib/uuid.c |
| 172 | :export: |
| 173 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 174 | Kernel IPC facilities |
| 175 | ===================== |
| 176 | |
| 177 | IPC utilities |
| 178 | ------------- |
| 179 | |
| 180 | .. kernel-doc:: ipc/util.c |
| 181 | :internal: |
| 182 | |
| 183 | FIFO Buffer |
| 184 | =========== |
| 185 | |
| 186 | kfifo interface |
| 187 | --------------- |
| 188 | |
| 189 | .. kernel-doc:: include/linux/kfifo.h |
| 190 | :internal: |
| 191 | |
| 192 | relay interface support |
| 193 | ======================= |
| 194 | |
| 195 | Relay interface support is designed to provide an efficient mechanism |
| 196 | for tools and facilities to relay large amounts of data from kernel |
| 197 | space to user space. |
| 198 | |
| 199 | relay interface |
| 200 | --------------- |
| 201 | |
| 202 | .. kernel-doc:: kernel/relay.c |
| 203 | :export: |
| 204 | |
| 205 | .. kernel-doc:: kernel/relay.c |
| 206 | :internal: |
| 207 | |
| 208 | Module Support |
| 209 | ============== |
| 210 | |
| 211 | Module Loading |
| 212 | -------------- |
| 213 | |
| 214 | .. kernel-doc:: kernel/kmod.c |
| 215 | :export: |
| 216 | |
| 217 | Inter Module support |
| 218 | -------------------- |
| 219 | |
| 220 | Refer to the file kernel/module.c for more information. |
| 221 | |
| 222 | Hardware Interfaces |
| 223 | =================== |
| 224 | |
| 225 | Interrupt Handling |
| 226 | ------------------ |
| 227 | |
| 228 | .. kernel-doc:: kernel/irq/manage.c |
| 229 | :export: |
| 230 | |
| 231 | DMA Channels |
| 232 | ------------ |
| 233 | |
| 234 | .. kernel-doc:: kernel/dma.c |
| 235 | :export: |
| 236 | |
| 237 | Resources Management |
| 238 | -------------------- |
| 239 | |
| 240 | .. kernel-doc:: kernel/resource.c |
| 241 | :internal: |
| 242 | |
| 243 | .. kernel-doc:: kernel/resource.c |
| 244 | :export: |
| 245 | |
| 246 | MTRR Handling |
| 247 | ------------- |
| 248 | |
Randy Dunlap | 3ed1d01 | 2018-06-16 17:09:41 -0700 | [diff] [blame] | 249 | .. kernel-doc:: arch/x86/kernel/cpu/mtrr/mtrr.c |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 250 | :export: |
| 251 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 252 | Security Framework |
| 253 | ================== |
| 254 | |
| 255 | .. kernel-doc:: security/security.c |
| 256 | :internal: |
| 257 | |
| 258 | .. kernel-doc:: security/inode.c |
| 259 | :export: |
| 260 | |
| 261 | Audit Interfaces |
| 262 | ================ |
| 263 | |
| 264 | .. kernel-doc:: kernel/audit.c |
| 265 | :export: |
| 266 | |
| 267 | .. kernel-doc:: kernel/auditsc.c |
| 268 | :internal: |
| 269 | |
| 270 | .. kernel-doc:: kernel/auditfilter.c |
| 271 | :internal: |
| 272 | |
| 273 | Accounting Framework |
| 274 | ==================== |
| 275 | |
| 276 | .. kernel-doc:: kernel/acct.c |
| 277 | :internal: |
| 278 | |
| 279 | Block Devices |
| 280 | ============= |
| 281 | |
| 282 | .. kernel-doc:: block/blk-core.c |
| 283 | :export: |
| 284 | |
| 285 | .. kernel-doc:: block/blk-core.c |
| 286 | :internal: |
| 287 | |
| 288 | .. kernel-doc:: block/blk-map.c |
| 289 | :export: |
| 290 | |
| 291 | .. kernel-doc:: block/blk-sysfs.c |
| 292 | :internal: |
| 293 | |
| 294 | .. kernel-doc:: block/blk-settings.c |
| 295 | :export: |
| 296 | |
| 297 | .. kernel-doc:: block/blk-exec.c |
| 298 | :export: |
| 299 | |
| 300 | .. kernel-doc:: block/blk-flush.c |
| 301 | :export: |
| 302 | |
| 303 | .. kernel-doc:: block/blk-lib.c |
| 304 | :export: |
| 305 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 306 | .. kernel-doc:: block/blk-integrity.c |
| 307 | :export: |
| 308 | |
| 309 | .. kernel-doc:: kernel/trace/blktrace.c |
| 310 | :internal: |
| 311 | |
| 312 | .. kernel-doc:: block/genhd.c |
| 313 | :internal: |
| 314 | |
| 315 | .. kernel-doc:: block/genhd.c |
| 316 | :export: |
| 317 | |
| 318 | Char devices |
| 319 | ============ |
| 320 | |
| 321 | .. kernel-doc:: fs/char_dev.c |
| 322 | :export: |
| 323 | |
Mauro Carvalho Chehab | baca8a0 | 2017-03-30 17:11:32 -0300 | [diff] [blame] | 324 | Clock Framework |
| 325 | =============== |
| 326 | |
| 327 | The clock framework defines programming interfaces to support software |
| 328 | management of the system clock tree. This framework is widely used with |
| 329 | System-On-Chip (SOC) platforms to support power management and various |
| 330 | devices which may need custom clock rates. Note that these "clocks" |
| 331 | don't relate to timekeeping or real time clocks (RTCs), each of which |
| 332 | have separate frameworks. These :c:type:`struct clk <clk>` |
| 333 | instances may be used to manage for example a 96 MHz signal that is used |
| 334 | to shift bits into and out of peripherals or busses, or otherwise |
| 335 | trigger synchronous state machine transitions in system hardware. |
| 336 | |
| 337 | Power management is supported by explicit software clock gating: unused |
| 338 | clocks are disabled, so the system doesn't waste power changing the |
| 339 | state of transistors that aren't in active use. On some systems this may |
| 340 | be backed by hardware clock gating, where clocks are gated without being |
| 341 | disabled in software. Sections of chips that are powered but not clocked |
| 342 | may be able to retain their last state. This low power state is often |
| 343 | called a *retention mode*. This mode still incurs leakage currents, |
| 344 | especially with finer circuit geometries, but for CMOS circuits power is |
| 345 | mostly used by clocked state changes. |
| 346 | |
| 347 | Power-aware drivers only enable their clocks when the device they manage |
| 348 | is in active use. Also, system sleep states often differ according to |
| 349 | which clock domains are active: while a "standby" state may allow wakeup |
| 350 | from several active domains, a "mem" (suspend-to-RAM) state may require |
| 351 | a more wholesale shutdown of clocks derived from higher speed PLLs and |
| 352 | oscillators, limiting the number of possible wakeup event sources. A |
| 353 | driver's suspend method may need to be aware of system-specific clock |
| 354 | constraints on the target sleep state. |
| 355 | |
| 356 | Some platforms support programmable clock generators. These can be used |
| 357 | by external chips of various kinds, such as other CPUs, multimedia |
| 358 | codecs, and devices with strict requirements for interface clocking. |
| 359 | |
| 360 | .. kernel-doc:: include/linux/clk.h |
| 361 | :internal: |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 362 | |
| 363 | Synchronization Primitives |
| 364 | ========================== |
| 365 | |
| 366 | Read-Copy Update (RCU) |
| 367 | ---------------------- |
| 368 | |
| 369 | .. kernel-doc:: include/linux/rcupdate.h |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 370 | |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 371 | .. kernel-doc:: kernel/rcu/tree.c |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 372 | |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 373 | .. kernel-doc:: kernel/rcu/tree_exp.h |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 374 | |
| 375 | .. kernel-doc:: kernel/rcu/update.c |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 376 | |
| 377 | .. kernel-doc:: include/linux/srcu.h |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 378 | |
| 379 | .. kernel-doc:: kernel/rcu/srcutree.c |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 380 | |
| 381 | .. kernel-doc:: include/linux/rculist_bl.h |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 382 | |
| 383 | .. kernel-doc:: include/linux/rculist.h |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 384 | |
| 385 | .. kernel-doc:: include/linux/rculist_nulls.h |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 386 | |
| 387 | .. kernel-doc:: include/linux/rcu_sync.h |
Paul E. McKenney | 764f807 | 2017-07-04 14:42:20 -0700 | [diff] [blame] | 388 | |
| 389 | .. kernel-doc:: kernel/rcu/sync.c |