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