forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'docs-for-linus' of git://git.lwn.net/linux-2.6
Pull documentation updates from Jonathan Corbet: "The main thing here is Ingo's big subdirectory documenting feature support for each architecture. Beyond that, it's the usual pile of fixes, tweaks, and small additions" * tag 'docs-for-linus' of git://git.lwn.net/linux-2.6: (79 commits) doc:md: fix typo in md.txt. Documentation/mic/mpssd: don't build x86 userspace when cross compiling Documentation/prctl: don't build tsc tests when cross compiling Documentation/vDSO: don't build tests when cross compiling Doc:ABI/testing: Fix typo in sysfs-bus-fcoe Doc: Docbook: Change wikipedia's URL from http to https in scsi.tmpl Doc: Change wikipedia's URL from http to https Documentation/kernel-parameters: add missing pciserial to the earlyprintk Doc:pps: Fix typo in pps.txt kbuild : Fix documentation of INSTALL_HDR_PATH Documentation: filesystems: updated struct file_operations documentation in vfs.txt kbuild: edit explanation of clean-files variable Doc: ja_JP: Fix typo in HOWTO Move freefall program from Documentation/ to tools/ Documentation: ARM: EXYNOS: Describe boot loaders interface Doc:nfc: Fix typo in nfc-hci.txt vfs: Minor documentation fix Doc: networking: txtimestamp: fix printf format warning Documentation, intel_pstate: Improve legacy mode internal governors description Documentation: extend use case for EXPORT_SYMBOL_GPL() ...
- Loading branch information
Showing
88 changed files
with
1,957 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -299,7 +299,9 @@ toward the stable maintainers by putting a line like this: | |
|
||
Cc: [email protected] | ||
|
||
into your patch. | ||
into the sign-off area of your patch (note, NOT an email recipient). You | ||
should also read Documentation/stable_kernel_rules.txt in addition to this | ||
file. | ||
|
||
Note, however, that some subsystem maintainers want to come to their own | ||
conclusions on which patches should go to the stable trees. The networking | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
Interface between kernel and boot loaders on Exynos boards | ||
========================================================== | ||
|
||
Author: Krzysztof Kozlowski | ||
Date : 6 June 2015 | ||
|
||
The document tries to describe currently used interface between Linux kernel | ||
and boot loaders on Samsung Exynos based boards. This is not a definition | ||
of interface but rather a description of existing state, a reference | ||
for information purpose only. | ||
|
||
In the document "boot loader" means any of following: U-boot, proprietary | ||
SBOOT or any other firmware for ARMv7 and ARMv8 initializing the board before | ||
executing kernel. | ||
|
||
|
||
1. Non-Secure mode | ||
Address: sysram_ns_base_addr | ||
Offset Value Purpose | ||
============================================================================= | ||
0x08 exynos_cpu_resume_ns System suspend | ||
0x0c 0x00000bad (Magic cookie) System suspend | ||
0x1c exynos4_secondary_startup Secondary CPU boot | ||
0x1c + 4*cpu exynos4_secondary_startup (Exynos4412) Secondary CPU boot | ||
0x20 0xfcba0d10 (Magic cookie) AFTR | ||
0x24 exynos_cpu_resume_ns AFTR | ||
0x28 + 4*cpu 0x8 (Magic cookie, Exynos3250) AFTR | ||
|
||
|
||
2. Secure mode | ||
Address: sysram_base_addr | ||
Offset Value Purpose | ||
============================================================================= | ||
0x00 exynos4_secondary_startup Secondary CPU boot | ||
0x04 exynos4_secondary_startup (Exynos542x) Secondary CPU boot | ||
4*cpu exynos4_secondary_startup (Exynos4412) Secondary CPU boot | ||
0x20 exynos_cpu_resume (Exynos4210 r1.0) AFTR | ||
0x24 0xfcba0d10 (Magic cookie, Exynos4210 r1.0) AFTR | ||
|
||
Address: pmu_base_addr | ||
Offset Value Purpose | ||
============================================================================= | ||
0x0800 exynos_cpu_resume AFTR | ||
0x0814 exynos4_secondary_startup (Exynos4210 r1.1) Secondary CPU boot | ||
0x0818 0xfcba0d10 (Magic cookie, Exynos4210 r1.1) AFTR | ||
0x081C exynos_cpu_resume (Exynos4210 r1.1) AFTR | ||
|
||
|
||
3. Other (regardless of secure/non-secure mode) | ||
Address: pmu_base_addr | ||
Offset Value Purpose | ||
============================================================================= | ||
0x0908 Non-zero (only Exynos3250) Secondary CPU boot up indicator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
For generic kernel features that need architecture support, the | ||
arch-support.txt file in each feature directory shows the arch | ||
support matrix, for all upstream Linux architectures. | ||
|
||
The meaning of entries in the tables is: | ||
|
||
| ok | # feature supported by the architecture | ||
|TODO| # feature not yet supported by the architecture | ||
| .. | # feature cannot be supported by the hardware | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# Feature name: BPF-JIT | ||
# Kconfig: HAVE_BPF_JIT | ||
# description: arch supports BPF JIT optimizations | ||
# | ||
----------------------- | ||
| arch |status| | ||
----------------------- | ||
| alpha: | TODO | | ||
| arc: | TODO | | ||
| arm: | ok | | ||
| arm64: | ok | | ||
| avr32: | TODO | | ||
| blackfin: | TODO | | ||
| c6x: | TODO | | ||
| cris: | TODO | | ||
| frv: | TODO | | ||
| h8300: | TODO | | ||
| hexagon: | TODO | | ||
| ia64: | TODO | | ||
| m32r: | TODO | | ||
| m68k: | TODO | | ||
| metag: | TODO | | ||
| microblaze: | TODO | | ||
| mips: | ok | | ||
| mn10300: | TODO | | ||
| nios2: | TODO | | ||
| openrisc: | TODO | | ||
| parisc: | TODO | | ||
| powerpc: | ok | | ||
| s390: | ok | | ||
| score: | TODO | | ||
| sh: | TODO | | ||
| sparc: | ok | | ||
| tile: | TODO | | ||
| um: | TODO | | ||
| unicore32: | TODO | | ||
| x86: | ok | | ||
| xtensa: | TODO | | ||
----------------------- |
40 changes: 40 additions & 0 deletions
40
Documentation/features/core/generic-idle-thread/arch-support.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# Feature name: generic-idle-thread | ||
# Kconfig: GENERIC_SMP_IDLE_THREAD | ||
# description: arch makes use of the generic SMP idle thread facility | ||
# | ||
----------------------- | ||
| arch |status| | ||
----------------------- | ||
| alpha: | ok | | ||
| arc: | ok | | ||
| arm: | ok | | ||
| arm64: | ok | | ||
| avr32: | TODO | | ||
| blackfin: | ok | | ||
| c6x: | TODO | | ||
| cris: | TODO | | ||
| frv: | TODO | | ||
| h8300: | TODO | | ||
| hexagon: | ok | | ||
| ia64: | ok | | ||
| m32r: | TODO | | ||
| m68k: | TODO | | ||
| metag: | ok | | ||
| microblaze: | TODO | | ||
| mips: | ok | | ||
| mn10300: | TODO | | ||
| nios2: | TODO | | ||
| openrisc: | TODO | | ||
| parisc: | ok | | ||
| powerpc: | ok | | ||
| s390: | ok | | ||
| score: | TODO | | ||
| sh: | ok | | ||
| sparc: | ok | | ||
| tile: | TODO | | ||
| um: | TODO | | ||
| unicore32: | TODO | | ||
| x86: | ok | | ||
| xtensa: | ok | | ||
----------------------- |
Oops, something went wrong.