blob: 3cb9b2bb65e59c7081409a7c386c67c29a709223 [file] [log] [blame]
Mario Six8fac2912018-07-10 08:40:17 +02001# -*- coding: utf-8 -*-
2#
3# The U-Boot documentation build configuration file, created by
4# sphinx-quickstart on Fri Feb 12 13:51:46 2016.
5#
6# This file is execfile()d with the current directory set to its
7# containing dir.
8#
9# Note that not all possible configuration values are present in this
10# autogenerated file.
11#
12# All configuration values have a default; values that are commented out
13# serve to show the default.
14
15import sys
16import os
17import sphinx
18
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +010019from subprocess import check_output
20
Mario Six8fac2912018-07-10 08:40:17 +020021# Get Sphinx version
22major, minor, patch = sphinx.version_info[:3]
23
Heinrich Schuchardt4eeb8242024-07-16 21:04:23 +020024# Set canonical URL from the Read the Docs Domain
25html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "")
26
27# Tell Jinja2 templates the build is running on Read the Docs
28if os.environ.get("READTHEDOCS", "") == "True":
Heinrich Schuchardt41ace5e2024-07-19 23:23:26 +020029 html_context = {
30 'READTHEDOCS' : True,
31 }
Mario Six8fac2912018-07-10 08:40:17 +020032
33# If extensions (or modules to document with autodoc) are in another directory,
34# add these directories to sys.path here. If the directory is relative to the
35# documentation root, use os.path.abspath to make it absolute, like shown here.
36sys.path.insert(0, os.path.abspath('sphinx'))
37from load_config import loadConfig
38
39# -- General configuration ------------------------------------------------
40
41# If your documentation needs a minimal Sphinx version, state it here.
Heinrich Schuchardt257d4992021-08-05 20:13:41 +020042needs_sphinx = '2.4.4'
Mario Six8fac2912018-07-10 08:40:17 +020043
44# Add any Sphinx extension module names here, as strings. They can be
45# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
46# ones.
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +010047extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include',
48 'kfigure', 'sphinx.ext.ifconfig', # 'automarkup',
49 'maintainers_include', 'sphinx.ext.autosectionlabel',
Tom Rini28306232025-05-07 16:08:17 -060050 'kernel_abi', 'kernel_feat', 'sphinx-prompt',
51 'sphinx_reredirects' ]
Heinrich Schuchardt65033ce2020-11-30 09:52:57 +010052
53#
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +010054# cdomain is badly broken in Sphinx 3+. Leaving it out generates *most*
55# of the docs correctly, but not all. Scream bloody murder but allow
56# the process to proceed; hopefully somebody will fix this properly soon.
Heinrich Schuchardt65033ce2020-11-30 09:52:57 +010057#
58if major >= 3:
59 if (major > 3) or (minor > 0 or patch >= 2):
Heinrich Schuchardt65033ce2020-11-30 09:52:57 +010060 # Sphinx c function parser is more pedantic with regards to type
61 # checking. Due to that, having macros at c:function cause problems.
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +010062 # Those needed to be scaped by using c_id_attributes[] array
Heinrich Schuchardt65033ce2020-11-30 09:52:57 +010063 c_id_attributes = [
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +010064 # GCC Compiler types not parsed by Sphinx:
65 "__restrict__",
66
67 # include/linux/compiler_types.h:
68 "__iomem",
69 "__kernel",
70 "noinstr",
71 "notrace",
72 "__percpu",
73 "__rcu",
74 "__user",
Heinrich Schuchardt65033ce2020-11-30 09:52:57 +010075
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +010076 # include/linux/compiler_attributes.h:
77 "__alias",
78 "__aligned",
79 "__aligned_largest",
80 "__always_inline",
81 "__assume_aligned",
82 "__cold",
83 "__attribute_const__",
84 "__copy",
85 "__pure",
86 "__designated_init",
87 "__visible",
88 "__printf",
89 "__scanf",
90 "__gnu_inline",
91 "__malloc",
92 "__mode",
93 "__no_caller_saved_registers",
94 "__noclone",
95 "__nonstring",
96 "__noreturn",
97 "__packed",
98 "__pure",
99 "__section",
100 "__always_unused",
Heinrich Schuchardt65033ce2020-11-30 09:52:57 +0100101 "__maybe_unused",
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +0100102 "__used",
103 "__weak",
104 "noinline",
Heinrich Schuchardt65033ce2020-11-30 09:52:57 +0100105
106 # include/efi.h
107 "EFIAPI",
108
109 # include/efi_loader.h
110 "__efi_runtime",
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +0100111
112 # include/linux/memblock.h:
113 "__init_memblock",
114 "__meminit",
115
116 # include/linux/init.h:
117 "__init",
118 "__ref",
119
120 # include/linux/linkage.h:
121 "asmlinkage",
Heinrich Schuchardt65033ce2020-11-30 09:52:57 +0100122 ]
123
124else:
125 extensions.append('cdomain')
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +0100126
127# Ensure that autosectionlabel will produce unique names
128autosectionlabel_prefix_document = True
129autosectionlabel_maxdepth = 2
Mario Six8fac2912018-07-10 08:40:17 +0200130
Heinrich Schuchardt257d4992021-08-05 20:13:41 +0200131extensions.append("sphinx.ext.imgmath")
Mario Six8fac2912018-07-10 08:40:17 +0200132
133# Add any paths that contain templates here, relative to this directory.
134templates_path = ['_templates']
135
136# The suffix(es) of source filenames.
137# You can specify multiple suffix as a list of string:
138# source_suffix = ['.rst', '.md']
139source_suffix = '.rst'
140
141# The encoding of source files.
142#source_encoding = 'utf-8-sig'
143
144# The master toctree document.
145master_doc = 'index'
146
147# General information about the project.
Heinrich Schuchardt60027422021-02-16 18:20:54 +0100148project = 'Das U-Boot'
149copyright = 'The U-Boot development community'
150author = 'The U-Boot development community'
Mario Six8fac2912018-07-10 08:40:17 +0200151
Tom Rini28306232025-05-07 16:08:17 -0600152# Pages we have moved after being heavily referenced externally
153redirects = {
154 "develop/py_testing": "pytest/usage.html"
155}
156
Mario Six8fac2912018-07-10 08:40:17 +0200157# The version info for the project you're documenting, acts as replacement for
158# |version| and |release|, also used in various other places throughout the
159# built documents.
160#
161# In a normal build, version and release are are set to KERNELVERSION and
162# KERNELRELEASE, respectively, from the Makefile via Sphinx command line
163# arguments.
164#
165# The following code tries to extract the information by reading the Makefile,
166# when Sphinx is run directly (e.g. by Read the Docs).
167try:
168 makefile_version = None
169 makefile_patchlevel = None
170 for line in open('../Makefile'):
171 key, val = [x.strip() for x in line.split('=', 2)]
172 if key == 'VERSION':
173 makefile_version = val
174 elif key == 'PATCHLEVEL':
175 makefile_patchlevel = val
176 if makefile_version and makefile_patchlevel:
177 break
178except:
179 pass
180finally:
181 if makefile_version and makefile_patchlevel:
182 version = release = makefile_version + '.' + makefile_patchlevel
183 else:
184 version = release = "unknown version"
185
186# The language for content autogenerated by Sphinx. Refer to documentation
187# for a list of supported languages.
188#
189# This is also used if you do content translation via gettext catalogs.
190# Usually you set "language" from the command line for these cases.
Quentin Schulzd27f73e2022-11-07 14:49:31 +0100191language = 'en'
Mario Six8fac2912018-07-10 08:40:17 +0200192
193# There are two options for replacing |today|: either, you set today to some
194# non-false value, then it is used:
195#today = ''
196# Else, today_fmt is used as the format for a strftime call.
197#today_fmt = '%B %d, %Y'
198
199# List of patterns, relative to source directory, that match files and
200# directories to ignore when looking for source files.
201exclude_patterns = ['output']
202
203# The reST default role (used for this markup: `text`) to use for all
204# documents.
205#default_role = None
206
207# If true, '()' will be appended to :func: etc. cross-reference text.
208#add_function_parentheses = True
209
210# If true, the current module name will be prepended to all description
211# unit titles (such as .. function::).
212#add_module_names = True
213
214# If true, sectionauthor and moduleauthor directives will be shown in the
215# output. They are ignored by default.
216#show_authors = False
217
218# The name of the Pygments (syntax highlighting) style to use.
219pygments_style = 'sphinx'
220
221# A list of ignored prefixes for module index sorting.
222#modindex_common_prefix = []
223
224# If true, keep warnings as "system message" paragraphs in the built documents.
225#keep_warnings = False
226
227# If true, `todo` and `todoList` produce output, else they produce nothing.
228todo_include_todos = False
229
230primary_domain = 'c'
231highlight_language = 'none'
232
233# -- Options for HTML output ----------------------------------------------
234
235# The theme to use for HTML and HTML Help pages. See the documentation for
236# a list of builtin themes.
237
238# The Read the Docs theme is available from
239# - https://github.com/snide/sphinx_rtd_theme
240# - https://pypi.python.org/pypi/sphinx_rtd_theme
241# - python-sphinx-rtd-theme package (on Debian)
242try:
243 import sphinx_rtd_theme
244 html_theme = 'sphinx_rtd_theme'
Heinrich Schuchardtc72266f2024-01-14 14:18:20 +0100245 extensions.append('sphinx_rtd_theme')
Mario Six8fac2912018-07-10 08:40:17 +0200246except ImportError:
247 sys.stderr.write('Warning: The Sphinx \'sphinx_rtd_theme\' HTML theme was not found. Make sure you have the theme installed to produce pretty HTML output. Falling back to the default theme.\n')
248
249# Theme options are theme-specific and customize the look and feel of a theme
250# further. For a list of options available for each theme, see the
251# documentation.
252#html_theme_options = {}
253
254# Add any paths that contain custom themes here, relative to this directory.
255#html_theme_path = []
256
257# The name for this set of Sphinx documents. If None, it defaults to
258# "<project> v<release> documentation".
259#html_title = None
260
261# A shorter title for the navigation bar. Default is the same as html_title.
262#html_short_title = None
263
264# The name of an image file (relative to this directory) to place at the top
265# of the sidebar.
Heinrich Schuchardt60027422021-02-16 18:20:54 +0100266html_logo = '../tools/logos/u-boot_logo.svg'
Mario Six8fac2912018-07-10 08:40:17 +0200267
268# The name of an image file (within the static path) to use as favicon of the
269# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
270# pixels large.
271#html_favicon = None
272
273# Add any paths that contain custom static files (such as style sheets) here,
274# relative to this directory. They are copied after the builtin static files,
275# so a file named "default.css" will overwrite the builtin "default.css".
276
277html_static_path = ['sphinx-static']
278
279html_context = {
280 'css_files': [
281 '_static/theme_overrides.css',
282 ],
283}
284
285# Add any extra paths that contain custom files (such as robots.txt or
286# .htaccess) here, relative to this directory. These files are copied
287# directly to the root of the documentation.
288#html_extra_path = []
289
290# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
291# using the given strftime format.
292#html_last_updated_fmt = '%b %d, %Y'
293
294# If true, SmartyPants will be used to convert quotes and dashes to
295# typographically correct entities.
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +0100296html_use_smartypants = False
Mario Six8fac2912018-07-10 08:40:17 +0200297
298# Custom sidebar templates, maps document names to template names.
299#html_sidebars = {}
300
301# Additional templates that should be rendered to pages, maps page names to
302# template names.
303#html_additional_pages = {}
304
305# If false, no module index is generated.
306#html_domain_indices = True
307
308# If false, no index is generated.
309#html_use_index = True
310
311# If true, the index is split into individual pages for each letter.
312#html_split_index = False
313
314# If true, links to the reST sources are added to the pages.
315#html_show_sourcelink = True
316
317# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
318#html_show_sphinx = True
319
320# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
321#html_show_copyright = True
322
323# If true, an OpenSearch description file will be output, and all pages will
324# contain a <link> tag referring to it. The value of this option must be the
325# base URL from which the finished HTML is served.
326#html_use_opensearch = ''
327
328# This is the file name suffix for HTML files (e.g. ".xhtml").
329#html_file_suffix = None
330
331# Language to be used for generating the HTML full-text search index.
332# Sphinx supports the following languages:
333# 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
334# 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr'
335#html_search_language = 'en'
336
337# A dictionary with options for the search language support, empty by default.
338# Now only 'ja' uses this config value
339#html_search_options = {'type': 'default'}
340
341# The name of a javascript file (relative to the configuration directory) that
342# implements a search results scorer. If empty, the default will be used.
343#html_search_scorer = 'scorer.js'
344
345# Output file base name for HTML help builder.
Heinrich Schuchardt60027422021-02-16 18:20:54 +0100346htmlhelp_basename = 'TheUBootdoc'
Mario Six8fac2912018-07-10 08:40:17 +0200347
348# -- Options for LaTeX output ---------------------------------------------
349
350latex_elements = {
Heinrich Schuchardt86d2d3b2021-08-05 20:18:06 +0200351 # The paper size ('letterpaper' or 'a4paper').
352 'papersize': 'a4paper',
Mario Six8fac2912018-07-10 08:40:17 +0200353
Heinrich Schuchardt86d2d3b2021-08-05 20:18:06 +0200354 # The font size ('10pt', '11pt' or '12pt').
355 'pointsize': '11pt',
Mario Six8fac2912018-07-10 08:40:17 +0200356
Heinrich Schuchardt86d2d3b2021-08-05 20:18:06 +0200357 # Latex figure (float) alignment
358 #'figure_align': 'htbp',
Mario Six8fac2912018-07-10 08:40:17 +0200359
Heinrich Schuchardt86d2d3b2021-08-05 20:18:06 +0200360 # Don't mangle with UTF-8 chars
361 'inputenc': '',
362 'utf8extra': '',
Mario Six8fac2912018-07-10 08:40:17 +0200363
Heinrich Schuchardt86d2d3b2021-08-05 20:18:06 +0200364 # Set document margins
365 'sphinxsetup': '''
366 hmargin=0.5in, vmargin=1in,
367 parsedliteralwraps=true,
368 verbatimhintsturnover=false,
369 ''',
370
371 # Additional stuff for the LaTeX preamble.
Mario Six8fac2912018-07-10 08:40:17 +0200372 'preamble': '''
Heinrich Schuchardt86d2d3b2021-08-05 20:18:06 +0200373 % Use some font with UTF-8 support with XeLaTeX
Mario Six8fac2912018-07-10 08:40:17 +0200374 \\usepackage{fontspec}
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +0100375 \\setsansfont{DejaVu Sans}
376 \\setromanfont{DejaVu Serif}
Mario Six8fac2912018-07-10 08:40:17 +0200377 \\setmonofont{DejaVu Sans Mono}
Heinrich Schuchardt86d2d3b2021-08-05 20:18:06 +0200378 ''',
Tom Rinif1a89c82021-01-23 12:51:37 -0500379}
Heinrich Schuchardta84526d2021-01-01 01:21:11 +0100380
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +0100381# At least one book (translations) may have Asian characters
382# with are only displayed if xeCJK is used
383
384cjk_cmd = check_output(['fc-list', '--format="%{family[0]}\n"']).decode('utf-8', 'ignore')
385if cjk_cmd.find("Noto Sans CJK SC") >= 0:
386 print ("enabling CJK for LaTeX builder")
387 latex_elements['preamble'] += '''
388 % This is needed for translations
389 \\usepackage{xeCJK}
390 \\setCJKmainfont{Noto Sans CJK SC}
391 '''
392
Mario Six8fac2912018-07-10 08:40:17 +0200393# With Sphinx 1.6, it is possible to change the Bg color directly
394# by using:
395# \definecolor{sphinxnoteBgColor}{RGB}{204,255,255}
396# \definecolor{sphinxwarningBgColor}{RGB}{255,204,204}
397# \definecolor{sphinxattentionBgColor}{RGB}{255,255,204}
398# \definecolor{sphinximportantBgColor}{RGB}{192,255,204}
399#
400# However, it require to use sphinx heavy box with:
401#
402# \renewenvironment{sphinxlightbox} {%
403# \\begin{sphinxheavybox}
404# }
405# \\end{sphinxheavybox}
406# }
407#
408# Unfortunately, the implementation is buggy: if a note is inside a
409# table, it isn't displayed well. So, for now, let's use boring
410# black and white notes.
411
412# Grouping the document tree into LaTeX files. List of tuples
413# (source start file, target name, title,
414# author, documentclass [howto, manual, or own class]).
415# Sorted in alphabetical order
416latex_documents = [
Heinrich Schuchardt60027422021-02-16 18:20:54 +0100417 ('index', 'u-boot-hacker-manual.tex', 'U-Boot Hacker Manual',
418 'The U-Boot development community', 'manual'),
Mario Six8fac2912018-07-10 08:40:17 +0200419]
420
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +0100421# Add all other index files from Documentation/ subdirectories
422for fn in os.listdir('.'):
423 doc = os.path.join(fn, "index")
424 if os.path.exists(doc + ".rst"):
425 has = False
426 for l in latex_documents:
427 if l[0] == doc:
428 has = True
429 break
430 if not has:
431 latex_documents.append((doc, fn + '.tex',
Heinrich Schuchardt60027422021-02-16 18:20:54 +0100432 'U-Boot %s Documentation' % fn.capitalize(),
433 'The U-Boot development community',
Heinrich Schuchardtc8e0f202020-12-31 23:16:46 +0100434 'manual'))
435
Mario Six8fac2912018-07-10 08:40:17 +0200436# The name of an image file (relative to this directory) to place at the top of
437# the title page.
438#latex_logo = None
439
440# For "manual" documents, if this is true, then toplevel headings are parts,
441# not chapters.
442#latex_use_parts = False
443
444# If true, show page references after internal links.
445#latex_show_pagerefs = False
446
447# If true, show URL addresses after external links.
448#latex_show_urls = False
449
450# Documents to append as an appendix to all manuals.
451#latex_appendices = []
452
453# If false, no module index is generated.
454#latex_domain_indices = True
455
456
457# -- Options for manual page output ---------------------------------------
458
459# One entry per manual page. List of tuples
460# (source start file, name, description, authors, manual section).
461man_pages = [
Maxim Cournoyer52ac5e42022-12-18 21:48:08 -0500462 (master_doc, 'u-boot', 'The U-Boot Documentation',
Mario Six8fac2912018-07-10 08:40:17 +0200463 [author], 1)
464]
465
466# If true, show URL addresses after external links.
467#man_show_urls = False
468
469
470# -- Options for Texinfo output -------------------------------------------
471
472# Grouping the document tree into Texinfo files. List of tuples
473# (source start file, target name, title, author,
474# dir menu entry, description, category)
475texinfo_documents = [
Maxim Cournoyer52ac5e42022-12-18 21:48:08 -0500476 (master_doc, 'u-boot', 'The U-Boot Documentation',
477 author, 'U-Boot', 'Boot loader for embedded systems',
Mario Six8fac2912018-07-10 08:40:17 +0200478 'Miscellaneous'),
479]
480
481# Documents to append as an appendix to all manuals.
482#texinfo_appendices = []
483
484# If false, no module index is generated.
485#texinfo_domain_indices = True
486
487# How to display URL addresses: 'footnote', 'no', or 'inline'.
488#texinfo_show_urls = 'footnote'
489
490# If true, do not generate a @detailmenu in the "Top" node's menu.
491#texinfo_no_detailmenu = False
492
493
494# -- Options for Epub output ----------------------------------------------
495
496# Bibliographic Dublin Core info.
497epub_title = project
498epub_author = author
499epub_publisher = author
500epub_copyright = copyright
501
502# The basename for the epub file. It defaults to the project name.
503#epub_basename = project
504
505# The HTML theme for the epub output. Since the default themes are not
506# optimized for small screen space, using the same theme for HTML and epub
507# output is usually not wise. This defaults to 'epub', a theme designed to save
508# visual space.
509#epub_theme = 'epub'
510
511# The language of the text. It defaults to the language option
512# or 'en' if the language is not set.
513#epub_language = ''
514
515# The scheme of the identifier. Typical schemes are ISBN or URL.
516#epub_scheme = ''
517
518# The unique identifier of the text. This can be a ISBN number
519# or the project homepage.
520#epub_identifier = ''
521
522# A unique identification for the text.
523#epub_uid = ''
524
525# A tuple containing the cover image and cover page html template filenames.
526#epub_cover = ()
527
528# A sequence of (type, uri, title) tuples for the guide element of content.opf.
529#epub_guide = ()
530
531# HTML files that should be inserted before the pages created by sphinx.
532# The format is a list of tuples containing the path and title.
533#epub_pre_files = []
534
535# HTML files that should be inserted after the pages created by sphinx.
536# The format is a list of tuples containing the path and title.
537#epub_post_files = []
538
539# A list of files that should not be packed into the epub file.
540epub_exclude_files = ['search.html']
541
542# The depth of the table of contents in toc.ncx.
543#epub_tocdepth = 3
544
545# Allow duplicate toc entries.
546#epub_tocdup = True
547
548# Choose between 'default' and 'includehidden'.
549#epub_tocscope = 'default'
550
551# Fix unsupported image types using the Pillow.
552#epub_fix_images = False
553
554# Scale large images.
555#epub_max_image_width = 0
556
557# How to display URL addresses: 'footnote', 'no', or 'inline'.
558#epub_show_urls = 'inline'
559
560# If false, no index is generated.
561#epub_use_index = True
562
563#=======
564# rst2pdf
565#
566# Grouping the document tree into PDF files. List of tuples
567# (source start file, target name, title, author, options).
568#
Heinrich Schuchardtcd6065e2024-11-05 03:17:41 +0100569# See https://rst2pdf.org/static/manual.html#sphinx
Mario Six8fac2912018-07-10 08:40:17 +0200570pdf_documents = [
Heinrich Schuchardtcd6065e2024-11-05 03:17:41 +0100571 ('index', u'U-Boot', u'Das U-Boot', u'The U-Boot development community'),
Mario Six8fac2912018-07-10 08:40:17 +0200572]
573
574# kernel-doc extension configuration for running Sphinx directly (e.g. by Read
575# the Docs). In a normal build, these are supplied from the Makefile via command
576# line arguments.
577kerneldoc_bin = '../scripts/kernel-doc'
578kerneldoc_srctree = '..'
579
580# ------------------------------------------------------------------------------
581# Since loadConfig overwrites settings from the global namespace, it has to be
582# the last statement in the conf.py file
583# ------------------------------------------------------------------------------
584loadConfig(globals())