[PATCH] kernel-doc for lib/crc*.c
[linux-2.6/x86.git] / Documentation / DocBook / kernel-api.tmpl
blob82d0cdcabc31b9b323d68fd3defb42c0db3d4a7d
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []>
5 <book id="LinuxKernelAPI">
6 <bookinfo>
7 <title>The Linux Kernel API</title>
9 <legalnotice>
10 <para>
11 This documentation is free software; you can redistribute
12 it and/or modify it under the terms of the GNU General Public
13 License as published by the Free Software Foundation; either
14 version 2 of the License, or (at your option) any later
15 version.
16 </para>
18 <para>
19 This program is distributed in the hope that it will be
20 useful, but WITHOUT ANY WARRANTY; without even the implied
21 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 See the GNU General Public License for more details.
23 </para>
25 <para>
26 You should have received a copy of the GNU General Public
27 License along with this program; if not, write to the Free
28 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 MA 02111-1307 USA
30 </para>
32 <para>
33 For more details see the file COPYING in the source
34 distribution of Linux.
35 </para>
36 </legalnotice>
37 </bookinfo>
39 <toc></toc>
41 <chapter id="Basics">
42 <title>Driver Basics</title>
43 <sect1><title>Driver Entry and Exit points</title>
44 !Iinclude/linux/init.h
45 </sect1>
47 <sect1><title>Atomic and pointer manipulation</title>
48 !Iinclude/asm-i386/atomic.h
49 !Iinclude/asm-i386/unaligned.h
50 </sect1>
52 <sect1><title>Delaying, scheduling, and timer routines</title>
53 !Iinclude/linux/sched.h
54 !Ekernel/sched.c
55 !Ekernel/timer.c
56 </sect1>
57 <sect1><title>High-resolution timers</title>
58 !Iinclude/linux/ktime.h
59 !Iinclude/linux/hrtimer.h
60 !Ekernel/hrtimer.c
61 </sect1>
62 <sect1><title>Internal Functions</title>
63 !Ikernel/exit.c
64 !Ikernel/signal.c
65 </sect1>
67 <sect1><title>Kernel objects manipulation</title>
68 <!--
69 X!Iinclude/linux/kobject.h
70 -->
71 !Elib/kobject.c
72 </sect1>
74 <sect1><title>Kernel utility functions</title>
75 !Iinclude/linux/kernel.h
76 !Ekernel/printk.c
77 !Ekernel/panic.c
78 !Ekernel/sys.c
79 !Ekernel/rcupdate.c
80 </sect1>
82 </chapter>
84 <chapter id="adt">
85 <title>Data Types</title>
86 <sect1><title>Doubly Linked Lists</title>
87 !Iinclude/linux/list.h
88 </sect1>
89 </chapter>
91 <chapter id="libc">
92 <title>Basic C Library Functions</title>
94 <para>
95 When writing drivers, you cannot in general use routines which are
96 from the C Library. Some of the functions have been found generally
97 useful and they are listed below. The behaviour of these functions
98 may vary slightly from those defined by ANSI, and these deviations
99 are noted in the text.
100 </para>
102 <sect1><title>String Conversions</title>
103 !Ilib/vsprintf.c
104 !Elib/vsprintf.c
105 </sect1>
106 <sect1><title>String Manipulation</title>
107 <!-- All functions are exported at now
108 X!Ilib/string.c
110 !Elib/string.c
111 </sect1>
112 <sect1><title>Bit Operations</title>
113 !Iinclude/asm-i386/bitops.h
114 </sect1>
115 </chapter>
117 <chapter id="kernel-lib">
118 <title>Basic Kernel Library Functions</title>
120 <para>
121 The Linux kernel provides more basic utility functions.
122 </para>
124 <sect1><title>Bitmap Operations</title>
125 !Elib/bitmap.c
126 !Ilib/bitmap.c
127 </sect1>
129 <sect1><title>Command-line Parsing</title>
130 !Elib/cmdline.c
131 </sect1>
133 <sect1><title>CRC Functions</title>
134 !Elib/crc16.c
135 !Elib/crc32.c
136 !Elib/crc-ccitt.c
137 </sect1>
138 </chapter>
140 <chapter id="mm">
141 <title>Memory Management in Linux</title>
142 <sect1><title>The Slab Cache</title>
143 !Iinclude/linux/slab.h
144 !Emm/slab.c
145 </sect1>
146 <sect1><title>User Space Memory Access</title>
147 !Iinclude/asm-i386/uaccess.h
148 !Earch/i386/lib/usercopy.c
149 </sect1>
150 <sect1><title>More Memory Management Functions</title>
151 !Iinclude/linux/rmap.h
152 !Emm/readahead.c
153 !Emm/filemap.c
154 !Emm/memory.c
155 !Emm/vmalloc.c
156 !Emm/mempool.c
157 !Emm/page-writeback.c
158 !Emm/truncate.c
159 </sect1>
160 </chapter>
163 <chapter id="ipc">
164 <title>Kernel IPC facilities</title>
166 <sect1><title>IPC utilities</title>
167 !Iipc/util.c
168 </sect1>
169 </chapter>
171 <chapter id="kfifo">
172 <title>FIFO Buffer</title>
173 <sect1><title>kfifo interface</title>
174 !Iinclude/linux/kfifo.h
175 !Ekernel/kfifo.c
176 </sect1>
177 </chapter>
179 <chapter id="proc">
180 <title>The proc filesystem</title>
182 <sect1><title>sysctl interface</title>
183 !Ekernel/sysctl.c
184 </sect1>
186 <sect1><title>proc filesystem interface</title>
187 !Ifs/proc/base.c
188 </sect1>
189 </chapter>
191 <chapter id="debugfs">
192 <title>The debugfs filesystem</title>
194 <sect1><title>debugfs interface</title>
195 !Efs/debugfs/inode.c
196 !Efs/debugfs/file.c
197 </sect1>
198 </chapter>
200 <chapter id="vfs">
201 <title>The Linux VFS</title>
202 <sect1><title>The Filesystem types</title>
203 !Iinclude/linux/fs.h
204 </sect1>
205 <sect1><title>The Directory Cache</title>
206 !Efs/dcache.c
207 !Iinclude/linux/dcache.h
208 </sect1>
209 <sect1><title>Inode Handling</title>
210 !Efs/inode.c
211 !Efs/bad_inode.c
212 </sect1>
213 <sect1><title>Registration and Superblocks</title>
214 !Efs/super.c
215 </sect1>
216 <sect1><title>File Locks</title>
217 !Efs/locks.c
218 !Ifs/locks.c
219 </sect1>
220 <sect1><title>Other Functions</title>
221 !Efs/mpage.c
222 !Efs/namei.c
223 !Efs/buffer.c
224 !Efs/bio.c
225 !Efs/seq_file.c
226 !Efs/filesystems.c
227 !Efs/fs-writeback.c
228 !Efs/block_dev.c
229 </sect1>
230 </chapter>
232 <chapter id="netcore">
233 <title>Linux Networking</title>
234 <sect1><title>Networking Base Types</title>
235 !Iinclude/linux/net.h
236 </sect1>
237 <sect1><title>Socket Buffer Functions</title>
238 !Iinclude/linux/skbuff.h
239 !Iinclude/net/sock.h
240 !Enet/socket.c
241 !Enet/core/skbuff.c
242 !Enet/core/sock.c
243 !Enet/core/datagram.c
244 !Enet/core/stream.c
245 </sect1>
246 <sect1><title>Socket Filter</title>
247 !Enet/core/filter.c
248 </sect1>
249 <sect1><title>Generic Network Statistics</title>
250 !Iinclude/linux/gen_stats.h
251 !Enet/core/gen_stats.c
252 !Enet/core/gen_estimator.c
253 </sect1>
254 <sect1><title>SUN RPC subsystem</title>
255 <!-- The !D functionality is not perfect, garbage has to be protected by comments
256 !Dnet/sunrpc/sunrpc_syms.c
258 !Enet/sunrpc/xdr.c
259 !Enet/sunrpc/svcsock.c
260 !Enet/sunrpc/sched.c
261 </sect1>
262 </chapter>
264 <chapter id="netdev">
265 <title>Network device support</title>
266 <sect1><title>Driver Support</title>
267 !Enet/core/dev.c
268 !Enet/ethernet/eth.c
269 !Iinclude/linux/etherdevice.h
270 <!-- FIXME: Removed for now since no structured comments in source
271 X!Enet/core/wireless.c
273 </sect1>
274 <sect1><title>Synchronous PPP</title>
275 !Edrivers/net/wan/syncppp.c
276 </sect1>
277 </chapter>
279 <chapter id="modload">
280 <title>Module Support</title>
281 <sect1><title>Module Loading</title>
282 !Ekernel/kmod.c
283 </sect1>
284 <sect1><title>Inter Module support</title>
285 <para>
286 Refer to the file kernel/module.c for more information.
287 </para>
288 <!-- FIXME: Removed for now since no structured comments in source
289 X!Ekernel/module.c
291 </sect1>
292 </chapter>
294 <chapter id="hardware">
295 <title>Hardware Interfaces</title>
296 <sect1><title>Interrupt Handling</title>
297 !Ekernel/irq/manage.c
298 </sect1>
300 <sect1><title>Resources Management</title>
301 !Ekernel/resource.c
302 </sect1>
304 <sect1><title>MTRR Handling</title>
305 !Earch/i386/kernel/cpu/mtrr/main.c
306 </sect1>
307 <sect1><title>PCI Support Library</title>
308 !Edrivers/pci/pci.c
309 !Edrivers/pci/pci-driver.c
310 !Edrivers/pci/remove.c
311 !Edrivers/pci/pci-acpi.c
312 <!-- kerneldoc does not understand to __devinit
313 X!Edrivers/pci/search.c
315 !Edrivers/pci/msi.c
316 !Edrivers/pci/bus.c
317 <!-- FIXME: Removed for now since no structured comments in source
318 X!Edrivers/pci/hotplug.c
320 !Edrivers/pci/probe.c
321 !Edrivers/pci/rom.c
322 </sect1>
323 <sect1><title>PCI Hotplug Support Library</title>
324 !Edrivers/pci/hotplug/pci_hotplug_core.c
325 </sect1>
326 <sect1><title>MCA Architecture</title>
327 <sect2><title>MCA Device Functions</title>
328 <para>
329 Refer to the file arch/i386/kernel/mca.c for more information.
330 </para>
331 <!-- FIXME: Removed for now since no structured comments in source
332 X!Earch/i386/kernel/mca.c
334 </sect2>
335 <sect2><title>MCA Bus DMA</title>
336 !Iinclude/asm-i386/mca_dma.h
337 </sect2>
338 </sect1>
339 </chapter>
341 <chapter id="devfs">
342 <title>The Device File System</title>
343 !Efs/devfs/base.c
344 </chapter>
346 <chapter id="sysfs">
347 <title>The Filesystem for Exporting Kernel Objects</title>
348 !Efs/sysfs/file.c
349 !Efs/sysfs/symlink.c
350 !Efs/sysfs/bin.c
351 </chapter>
353 <chapter id="security">
354 <title>Security Framework</title>
355 !Esecurity/security.c
356 </chapter>
358 <chapter id="audit">
359 <title>Audit Interfaces</title>
360 !Ekernel/audit.c
361 !Ikernel/auditsc.c
362 !Ikernel/auditfilter.c
363 </chapter>
365 <chapter id="accounting">
366 <title>Accounting Framework</title>
367 !Ikernel/acct.c
368 </chapter>
370 <chapter id="pmfuncs">
371 <title>Power Management</title>
372 !Ekernel/power/pm.c
373 </chapter>
375 <chapter id="devdrivers">
376 <title>Device drivers infrastructure</title>
377 <sect1><title>Device Drivers Base</title>
378 <!--
379 X!Iinclude/linux/device.h
381 !Edrivers/base/driver.c
382 !Edrivers/base/core.c
383 !Edrivers/base/firmware_class.c
384 !Edrivers/base/transport_class.c
385 !Edrivers/base/dmapool.c
386 <!-- Cannot be included, because
387 attribute_container_add_class_device_adapter
388 and attribute_container_classdev_to_container
389 exceed allowed 44 characters maximum
390 X!Edrivers/base/attribute_container.c
392 !Edrivers/base/sys.c
393 <!--
394 X!Edrivers/base/interface.c
396 !Edrivers/base/platform.c
397 !Edrivers/base/bus.c
398 </sect1>
399 <sect1><title>Device Drivers Power Management</title>
400 !Edrivers/base/power/main.c
401 !Edrivers/base/power/resume.c
402 !Edrivers/base/power/suspend.c
403 </sect1>
404 <sect1><title>Device Drivers ACPI Support</title>
405 <!-- Internal functions only
406 X!Edrivers/acpi/sleep/main.c
407 X!Edrivers/acpi/sleep/wakeup.c
408 X!Edrivers/acpi/motherboard.c
409 X!Edrivers/acpi/bus.c
411 !Edrivers/acpi/scan.c
412 !Idrivers/acpi/scan.c
413 <!-- No correct structured comments
414 X!Edrivers/acpi/pci_bind.c
416 </sect1>
417 <sect1><title>Device drivers PnP support</title>
418 !Edrivers/pnp/core.c
419 <!-- No correct structured comments
420 X!Edrivers/pnp/system.c
422 !Edrivers/pnp/card.c
423 !Edrivers/pnp/driver.c
424 !Edrivers/pnp/manager.c
425 !Edrivers/pnp/support.c
426 </sect1>
427 </chapter>
430 <chapter id="blkdev">
431 <title>Block Devices</title>
432 !Eblock/ll_rw_blk.c
433 </chapter>
435 <chapter id="miscdev">
436 <title>Miscellaneous Devices</title>
437 !Edrivers/char/misc.c
438 </chapter>
440 <chapter id="viddev">
441 <title>Video4Linux</title>
442 !Edrivers/media/video/videodev.c
443 </chapter>
445 <chapter id="snddev">
446 <title>Sound Devices</title>
447 !Iinclude/sound/core.h
448 !Esound/sound_core.c
449 !Iinclude/sound/pcm.h
450 !Esound/core/pcm.c
451 !Esound/core/device.c
452 !Esound/core/info.c
453 !Esound/core/rawmidi.c
454 !Esound/core/sound.c
455 !Esound/core/memory.c
456 !Esound/core/pcm_memory.c
457 !Esound/core/init.c
458 !Esound/core/isadma.c
459 !Esound/core/control.c
460 !Esound/core/pcm_lib.c
461 !Esound/core/hwdep.c
462 !Esound/core/pcm_native.c
463 !Esound/core/memalloc.c
464 <!-- FIXME: Removed for now since no structured comments in source
465 X!Isound/sound_firmware.c
467 </chapter>
469 <chapter id="uart16x50">
470 <title>16x50 UART Driver</title>
471 !Iinclude/linux/serial_core.h
472 !Edrivers/serial/serial_core.c
473 !Edrivers/serial/8250.c
474 </chapter>
476 <chapter id="z85230">
477 <title>Z85230 Support Library</title>
478 !Edrivers/net/wan/z85230.c
479 </chapter>
481 <chapter id="fbdev">
482 <title>Frame Buffer Library</title>
484 <para>
485 The frame buffer drivers depend heavily on four data structures.
486 These structures are declared in include/linux/fb.h. They are
487 fb_info, fb_var_screeninfo, fb_fix_screeninfo and fb_monospecs.
488 The last three can be made available to and from userland.
489 </para>
491 <para>
492 fb_info defines the current state of a particular video card.
493 Inside fb_info, there exists a fb_ops structure which is a
494 collection of needed functions to make fbdev and fbcon work.
495 fb_info is only visible to the kernel.
496 </para>
498 <para>
499 fb_var_screeninfo is used to describe the features of a video card
500 that are user defined. With fb_var_screeninfo, things such as
501 depth and the resolution may be defined.
502 </para>
504 <para>
505 The next structure is fb_fix_screeninfo. This defines the
506 properties of a card that are created when a mode is set and can't
507 be changed otherwise. A good example of this is the start of the
508 frame buffer memory. This "locks" the address of the frame buffer
509 memory, so that it cannot be changed or moved.
510 </para>
512 <para>
513 The last structure is fb_monospecs. In the old API, there was
514 little importance for fb_monospecs. This allowed for forbidden things
515 such as setting a mode of 800x600 on a fix frequency monitor. With
516 the new API, fb_monospecs prevents such things, and if used
517 correctly, can prevent a monitor from being cooked. fb_monospecs
518 will not be useful until kernels 2.5.x.
519 </para>
521 <sect1><title>Frame Buffer Memory</title>
522 !Edrivers/video/fbmem.c
523 </sect1>
524 <!--
525 <sect1><title>Frame Buffer Console</title>
526 X!Edrivers/video/console/fbcon.c
527 </sect1>
529 <sect1><title>Frame Buffer Colormap</title>
530 !Edrivers/video/fbcmap.c
531 </sect1>
532 <!-- FIXME:
533 drivers/video/fbgen.c has no docs, which stuffs up the sgml. Comment
534 out until somebody adds docs. KAO
535 <sect1><title>Frame Buffer Generic Functions</title>
536 X!Idrivers/video/fbgen.c
537 </sect1>
538 KAO -->
539 <sect1><title>Frame Buffer Video Mode Database</title>
540 !Idrivers/video/modedb.c
541 !Edrivers/video/modedb.c
542 </sect1>
543 <sect1><title>Frame Buffer Macintosh Video Mode Database</title>
544 !Edrivers/video/macmodes.c
545 </sect1>
546 <sect1><title>Frame Buffer Fonts</title>
547 <para>
548 Refer to the file drivers/video/console/fonts.c for more information.
549 </para>
550 <!-- FIXME: Removed for now since no structured comments in source
551 X!Idrivers/video/console/fonts.c
553 </sect1>
554 </chapter>
555 </book>