xref: /linux/Documentation/doc-guide/kernel-doc.rst (revision 197bbebd25810c5218e3347d61641be8e49c5404)
1.. title:: Kernel-doc comments
2
3===========================
4Writing kernel-doc comments
5===========================
6
7The Linux kernel source files may contain structured documentation
8comments in the kernel-doc format to describe the functions, types
9and design of the code. It is easier to keep documentation up-to-date
10when it is embedded in source files.
11
12.. note:: The kernel-doc format is deceptively similar to javadoc,
13   gtk-doc or Doxygen, yet distinctively different, for historical
14   reasons. The kernel source contains tens of thousands of kernel-doc
15   comments. Please stick to the style described here.
16
17.. note:: kernel-doc does not cover Rust code: please see
18   Documentation/rust/general-information.rst instead.
19
20The kernel-doc structure is extracted from the comments, and proper
21`Sphinx C Domain`_ function and type descriptions with anchors are
22generated from them. The descriptions are filtered for special kernel-doc
23highlights and cross-references. See below for details.
24
25.. _Sphinx C Domain: http://www.sphinx-doc.org/en/stable/domains.html
26
27Every function that is exported to loadable modules using
28``EXPORT_SYMBOL`` or ``EXPORT_SYMBOL_GPL`` should have a kernel-doc
29comment. Functions and data structures in header files which are intended
30to be used by modules should also have kernel-doc comments.
31
32It is good practice to also provide kernel-doc formatted documentation
33for functions externally visible to other kernel files (not marked
34``static``). We also recommend providing kernel-doc formatted
35documentation for private (file ``static``) routines, for consistency of
36kernel source code layout. This is lower priority and at the discretion
37of the maintainer of that kernel source file.
38
39How to format kernel-doc comments
40---------------------------------
41
42The opening comment mark ``/**`` is used for kernel-doc comments. The
43``kernel-doc`` tool will extract comments marked this way. The rest of
44the comment is formatted like a normal multi-line comment with a column
45of asterisks on the left side, closing with ``*/`` on a line by itself.
46
47The function and type kernel-doc comments should be placed just before
48the function or type being described in order to maximise the chance
49that somebody changing the code will also change the documentation. The
50overview kernel-doc comments may be placed anywhere at the top indentation
51level.
52
53Running the ``kernel-doc`` tool with increased verbosity and without actual
54output generation may be used to verify proper formatting of the
55documentation comments. For example::
56
57	scripts/kernel-doc -v -none drivers/foo/bar.c
58
59The documentation format is verified by the kernel build when it is
60requested to perform extra gcc checks::
61
62	make W=n
63
64Function documentation
65----------------------
66
67The general format of a function and function-like macro kernel-doc comment is::
68
69  /**
70   * function_name() - Brief description of function.
71   * @arg1: Describe the first argument.
72   * @arg2: Describe the second argument.
73   *        One can provide multiple line descriptions
74   *        for arguments.
75   *
76   * A longer description, with more discussion of the function function_name()
77   * that might be useful to those using or modifying it. Begins with an
78   * empty comment line, and may include additional embedded empty
79   * comment lines.
80   *
81   * The longer description may have multiple paragraphs.
82   *
83   * Context: Describes whether the function can sleep, what locks it takes,
84   *          releases, or expects to be held. It can extend over multiple
85   *          lines.
86   * Return: Describe the return value of function_name.
87   *
88   * The return value description can also have multiple paragraphs, and should
89   * be placed at the end of the comment block.
90   */
91
92The brief description following the function name may span multiple lines, and
93ends with an argument description, a blank comment line, or the end of the
94comment block.
95
96Function parameters
97~~~~~~~~~~~~~~~~~~~
98
99Each function argument should be described in order, immediately following
100the short function description.  Do not leave a blank line between the
101function description and the arguments, nor between the arguments.
102
103Each ``@argument:`` description may span multiple lines.
104
105.. note::
106
107   If the ``@argument`` description has multiple lines, the continuation
108   of the description should start at the same column as the previous line::
109
110      * @argument: some long description
111      *            that continues on next lines
112
113   or::
114
115      * @argument:
116      *		some long description
117      *		that continues on next lines
118
119If a function has a variable number of arguments, its description should
120be written in kernel-doc notation as::
121
122      * @...: description
123
124Function context
125~~~~~~~~~~~~~~~~
126
127The context in which a function can be called should be described in a
128section named ``Context``. This should include whether the function
129sleeps or can be called from interrupt context, as well as what locks
130it takes, releases and expects to be held by its caller.
131
132Examples::
133
134  * Context: Any context.
135  * Context: Any context. Takes and releases the RCU lock.
136  * Context: Any context. Expects <lock> to be held by caller.
137  * Context: Process context. May sleep if @gfp flags permit.
138  * Context: Process context. Takes and releases <mutex>.
139  * Context: Softirq or process context. Takes and releases <lock>, BH-safe.
140  * Context: Interrupt context.
141
142Return values
143~~~~~~~~~~~~~
144
145The return value, if any, should be described in a dedicated section
146named ``Return`` (or ``Returns``).
147
148.. note::
149
150  #) The multi-line descriptive text you provide does *not* recognize
151     line breaks, so if you try to format some text nicely, as in::
152
153	* Return:
154	* %0 - OK
155	* %-EINVAL - invalid argument
156	* %-ENOMEM - out of memory
157
158     this will all run together and produce::
159
160	Return: 0 - OK -EINVAL - invalid argument -ENOMEM - out of memory
161
162     So, in order to produce the desired line breaks, you need to use a
163     ReST list, e. g.::
164
165      * Return:
166      * * %0		- OK to runtime suspend the device
167      * * %-EBUSY	- Device should not be runtime suspended
168
169  #) If the descriptive text you provide has lines that begin with
170     some phrase followed by a colon, each of those phrases will be taken
171     as a new section heading, which probably won't produce the desired
172     effect.
173
174Structure, union, and enumeration documentation
175-----------------------------------------------
176
177The general format of a ``struct``, ``union``, and ``enum`` kernel-doc
178comment is::
179
180  /**
181   * struct struct_name - Brief description.
182   * @member1: Description of member1.
183   * @member2: Description of member2.
184   *           One can provide multiple line descriptions
185   *           for members.
186   *
187   * Description of the structure.
188   */
189
190You can replace the ``struct`` in the above example with ``union`` or
191``enum``  to describe unions or enums. ``member`` is used to mean ``struct``
192and ``union`` member names as well as enumerations in an ``enum``.
193
194The brief description following the structure name may span multiple
195lines, and ends with a member description, a blank comment line, or the
196end of the comment block.
197
198Members
199~~~~~~~
200
201Members of structs, unions and enums should be documented the same way
202as function parameters; they immediately succeed the short description
203and may be multi-line.
204
205Inside a ``struct`` or ``union`` description, you can use the ``private:`` and
206``public:`` comment tags. Structure fields that are inside a ``private:``
207area are not listed in the generated output documentation.
208
209The ``private:`` and ``public:`` tags must begin immediately following a
210``/*`` comment marker. They may optionally include comments between the
211``:`` and the ending ``*/`` marker.
212
213Example::
214
215  /**
216   * struct my_struct - short description
217   * @a: first member
218   * @b: second member
219   * @d: fourth member
220   *
221   * Longer description
222   */
223  struct my_struct {
224      int a;
225      int b;
226  /* private: internal use only */
227      int c;
228  /* public: the next one is public */
229      int d;
230  };
231
232Nested structs/unions
233~~~~~~~~~~~~~~~~~~~~~
234
235It is possible to document nested structs and unions, like::
236
237      /**
238       * struct nested_foobar - a struct with nested unions and structs
239       * @memb1: first member of anonymous union/anonymous struct
240       * @memb2: second member of anonymous union/anonymous struct
241       * @memb3: third member of anonymous union/anonymous struct
242       * @memb4: fourth member of anonymous union/anonymous struct
243       * @bar: non-anonymous union
244       * @bar.st1: struct st1 inside @bar
245       * @bar.st2: struct st2 inside @bar
246       * @bar.st1.memb1: first member of struct st1 on union bar
247       * @bar.st1.memb2: second member of struct st1 on union bar
248       * @bar.st2.memb1: first member of struct st2 on union bar
249       * @bar.st2.memb2: second member of struct st2 on union bar
250       */
251      struct nested_foobar {
252        /* Anonymous union/struct*/
253        union {
254          struct {
255            int memb1;
256            int memb2;
257          };
258          struct {
259            void *memb3;
260            int memb4;
261          };
262        };
263        union {
264          struct {
265            int memb1;
266            int memb2;
267          } st1;
268          struct {
269            void *memb1;
270            int memb2;
271          } st2;
272        } bar;
273      };
274
275.. note::
276
277   #) When documenting nested structs or unions, if the ``struct``/``union``
278      ``foo`` is named, the member ``bar`` inside it should be documented as
279      ``@foo.bar:``
280   #) When the nested ``struct``/``union`` is anonymous, the member ``bar`` in
281      it should be documented as ``@bar:``
282
283In-line member documentation comments
284~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
285
286The structure members may also be documented in-line within the definition.
287There are two styles, single-line comments where both the opening ``/**`` and
288closing ``*/`` are on the same line, and multi-line comments where they are each
289on a line of their own, like all other kernel-doc comments::
290
291  /**
292   * struct foo - Brief description.
293   * @foo: The Foo member.
294   */
295  struct foo {
296        int foo;
297        /**
298         * @bar: The Bar member.
299         */
300        int bar;
301        /**
302         * @baz: The Baz member.
303         *
304         * Here, the member description may contain several paragraphs.
305         */
306        int baz;
307        union {
308                /** @foobar: Single line description. */
309                int foobar;
310        };
311        /** @bar2: Description for struct @bar2 inside @foo */
312        struct {
313                /**
314                 * @bar2.barbar: Description for @barbar inside @foo.bar2
315                 */
316                int barbar;
317        } bar2;
318  };
319
320Typedef documentation
321---------------------
322
323The general format of a ``typedef`` kernel-doc comment is::
324
325  /**
326   * typedef type_name - Brief description.
327   *
328   * Description of the type.
329   */
330
331Typedefs with function prototypes can also be documented::
332
333  /**
334   * typedef type_name - Brief description.
335   * @arg1: description of arg1
336   * @arg2: description of arg2
337   *
338   * Description of the type.
339   *
340   * Context: Locking context.
341   * Returns: Meaning of the return value.
342   */
343   typedef void (*type_name)(struct v4l2_ctrl *arg1, void *arg2);
344
345Variables documentation
346-----------------------
347
348The general format of a kernel-doc variable comment is::
349
350  /**
351   * var var_name - Brief description.
352   *
353   * Description of the var_name variable.
354   */
355   extern int var_name;
356
357Object-like macro documentation
358-------------------------------
359
360Object-like macros are distinct from function-like macros. They are
361differentiated by whether the macro name is immediately followed by a
362left parenthesis ('(') for function-like macros or not followed by one
363for object-like macros.
364
365Function-like macros are handled like functions by ``scripts/kernel-doc``.
366They may have a parameter list. Object-like macros have do not have a
367parameter list.
368
369The general format of an object-like macro kernel-doc comment is::
370
371  /**
372   * define object_name - Brief description.
373   *
374   * Description of the object.
375   */
376
377Example::
378
379  /**
380   * define MAX_ERRNO - maximum errno value that is supported
381   *
382   * Kernel pointers have redundant information, so we can use a
383   * scheme where we can return either an error code or a normal
384   * pointer with the same return value.
385   */
386  #define MAX_ERRNO	4095
387
388Example::
389
390  /**
391   * define DRM_GEM_VRAM_PLANE_HELPER_FUNCS - \
392   *	Initializes struct drm_plane_helper_funcs for VRAM handling
393   *
394   * This macro initializes struct drm_plane_helper_funcs to use the
395   * respective helper functions.
396   */
397  #define DRM_GEM_VRAM_PLANE_HELPER_FUNCS \
398	.prepare_fb = drm_gem_vram_plane_helper_prepare_fb, \
399	.cleanup_fb = drm_gem_vram_plane_helper_cleanup_fb
400
401
402Highlights and cross-references
403-------------------------------
404
405The following special patterns are recognized in the kernel-doc comment
406descriptive text and converted to proper reStructuredText markup and `Sphinx C
407Domain`_ references.
408
409.. attention:: The below are **only** recognized within kernel-doc comments,
410	       **not** within normal reStructuredText documents.
411
412``funcname()``
413  Function reference.
414
415``@parameter``
416  Name of a function parameter. (No cross-referencing, just formatting.)
417
418``%CONST``
419  Name of a constant. (No cross-referencing, just formatting.)
420
421  Examples::
422
423    %0    %NULL    %-1    %-EFAULT    %-EINVAL    %-ENOMEM
424
425````literal````
426  A literal block that should be handled as-is. The output will use a
427  ``monospaced font``.
428
429  Useful if you need to use special characters that would otherwise have some
430  meaning either by kernel-doc script or by reStructuredText.
431
432  This is particularly useful if you need to use things like ``%ph`` inside
433  a function description.
434
435``$ENVVAR``
436  Name of an environment variable. (No cross-referencing, just formatting.)
437
438``&struct name``
439  Structure reference.
440
441``&enum name``
442  Enum reference.
443
444``&typedef name``
445  Typedef reference.
446
447``&struct_name->member`` or ``&struct_name.member``
448  ``struct`` or ``union`` member reference. The cross-reference will be to the
449  ``struct`` or ``union`` definition, not the member directly.
450
451``&name``
452  A generic type reference. Prefer using the full reference described above
453  instead. This is mostly for legacy comments.
454
455Cross-referencing from reStructuredText
456~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
457
458No additional syntax is needed to cross-reference the functions and types
459defined in the kernel-doc comments from reStructuredText documents.
460Just end function names with ``()`` and write ``struct``, ``union``, ``enum``
461or ``typedef`` before types.
462For example::
463
464  See foo().
465  See struct foo.
466  See union bar.
467  See enum baz.
468  See typedef meh.
469
470However, if you want custom text in the cross-reference link, that can be done
471through the following syntax::
472
473  See :c:func:`my custom link text for function foo <foo>`.
474  See :c:type:`my custom link text for struct bar <bar>`.
475
476For further details, please refer to the `Sphinx C Domain`_ documentation.
477
478.. note::
479   Variables aren't automatically cross referenced. For those, you need to
480   explicitly add a C domain cross-reference.
481
482Overview documentation comments
483-------------------------------
484
485To facilitate having source code and comments close together, you can include
486kernel-doc documentation blocks that are free-form comments instead of being
487kernel-doc for functions, structures, unions, enums, typedefs or variables.
488This could be used for something like a theory of operation for a driver or
489library code, for example.
490
491This is done by using a ``DOC:`` section keyword with a section title.
492
493The general format of an overview or high-level documentation comment is::
494
495  /**
496   * DOC: Theory of Operation
497   *
498   * The whizbang foobar is a dilly of a gizmo. It can do whatever you
499   * want it to do, at any time. It reads your mind. Here's how it works.
500   *
501   * foo bar splat
502   *
503   * The only drawback to this gizmo is that is can sometimes damage
504   * hardware, software, or its subject(s).
505   */
506
507The title following ``DOC:`` acts as a heading within the source file, but also
508as an identifier for extracting the documentation comment. Thus, the title must
509be unique within the file.
510
511=============================
512Including kernel-doc comments
513=============================
514
515The documentation comments may be included in any of the reStructuredText
516documents using a dedicated kernel-doc Sphinx directive extension.
517
518The kernel-doc directive is of the format::
519
520  .. kernel-doc:: source
521     :option:
522
523The *source* is the path to a source file, relative to the kernel source
524tree. The following directive options are supported:
525
526export: *[source-pattern ...]*
527  Include documentation for all functions in *source* that have been exported
528  using ``EXPORT_SYMBOL`` or ``EXPORT_SYMBOL_GPL`` either in *source* or in any
529  of the files specified by *source-pattern*.
530
531  The *source-pattern* is useful when the kernel-doc comments have been placed
532  in header files, while ``EXPORT_SYMBOL`` and ``EXPORT_SYMBOL_GPL`` are next to
533  the function definitions.
534
535  Examples::
536
537    .. kernel-doc:: lib/bitmap.c
538       :export:
539
540    .. kernel-doc:: include/net/mac80211.h
541       :export: net/mac80211/*.c
542
543internal: *[source-pattern ...]*
544  Include documentation for all functions and types in *source* that have
545  **not** been exported using ``EXPORT_SYMBOL`` or ``EXPORT_SYMBOL_GPL`` either
546  in *source* or in any of the files specified by *source-pattern*.
547
548  Example::
549
550    .. kernel-doc:: drivers/gpu/drm/i915/intel_audio.c
551       :internal:
552
553identifiers: *[ function/type ...]*
554  Include documentation for each *function* and *type* in *source*.
555  If no *function* is specified, the documentation for all functions
556  and types in the *source* will be included.
557  *type* can be a ``struct``, ``union``, ``enum``, ``typedef`` or ``var``
558  identifier.
559
560  Examples::
561
562    .. kernel-doc:: lib/bitmap.c
563       :identifiers: bitmap_parselist bitmap_parselist_user
564
565    .. kernel-doc:: lib/idr.c
566       :identifiers:
567
568no-identifiers: *[ function/type ...]*
569  Exclude documentation for each *function* and *type* in *source*.
570
571  Example::
572
573    .. kernel-doc:: lib/bitmap.c
574       :no-identifiers: bitmap_parselist
575
576functions: *[ function/type ...]*
577  This is an alias of the 'identifiers' directive and deprecated.
578
579doc: *title*
580  Include documentation for the ``DOC:`` paragraph identified by *title* in
581  *source*. Spaces are allowed in *title*; do not quote the *title*. The *title*
582  is only used as an identifier for the paragraph, and is not included in the
583  output. Please make sure to have an appropriate heading in the enclosing
584  reStructuredText document.
585
586  Example::
587
588    .. kernel-doc:: drivers/gpu/drm/i915/intel_audio.c
589       :doc: High Definition Audio over HDMI and Display Port
590
591Without options, the kernel-doc directive includes all documentation comments
592from the source file.
593
594The kernel-doc extension is included in the kernel source tree, at
595``Documentation/sphinx/kerneldoc.py``. Internally, it uses the
596``scripts/kernel-doc`` script to extract the documentation comments from the
597source.
598
599.. _kernel_doc:
600
601How to use kernel-doc to generate man pages
602-------------------------------------------
603
604To generate man pages for all files that contain kernel-doc markups, run::
605
606  $ make mandocs
607
608Or calling ``script-build-wrapper`` directly::
609
610  $ ./tools/docs/sphinx-build-wrapper mandocs
611
612The output will be at ``/man`` directory inside the output directory
613(by default: ``Documentation/output``).
614
615Optionally, it is possible to generate a partial set of man pages by
616using SPHINXDIRS:
617
618  $ make SPHINXDIRS=driver-api/media mandocs
619
620.. note::
621
622   When SPHINXDIRS={subdir} is used, it will only generate man pages for
623   the files explicitly inside a ``Documentation/{subdir}/.../*.rst`` file.
624