diff options
author | Takashi Iwai <tiwai@suse.de> | 2013-02-11 08:03:37 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-02-11 08:03:37 -0500 |
commit | 83048ea7b1d11f5e560dea53873fb51d860202eb (patch) | |
tree | 5cc41aa9c2999188d3148e8828d44c4724115f5e /Documentation | |
parent | e9a25e04b845aade311aaa268a696c5c4ff3eece (diff) | |
parent | 699ba4546cfe3f4eee73aff4f307bf16362f9232 (diff) |
Merge tag 'asoc-3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-next
ASoC: Updates for v3.9
A fairly quiet release for ASoC:
- Support for a wider range of hardware in the compressed stream code.
- The ability to mute capture streams as well as playback streams while
inactive.
- DT support for AK4642, FSI, Samsung I2S and WM8962.
- AC'97 support for Tegra.
- New driver for max98090, replacing the stub which was there.
Due to dependencies we've also got support for asynchronous I/O in regmap
and DTification of DMA support for Samsung platforms (used only by the
I2S driver and SPI) merged here as well.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/device-mapper/dm-raid.txt | 1 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/ak4642.txt | 17 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/cs4271.txt | 12 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/nvidia,tegra-audio-wm9712.txt | 51 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt | 22 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/omap-twl4030.txt | 46 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/renesas,fsi.txt | 26 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/samsung,smdk-wm8994.txt | 14 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/samsung-i2s.txt | 63 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/tlv320aic3x.txt | 6 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sound/wm8962.txt | 16 | ||||
-rw-r--r--[-rwxr-xr-x] | Documentation/hid/hid-sensor.txt | 0 | ||||
-rw-r--r-- | Documentation/kernel-parameters.txt | 2 | ||||
-rw-r--r-- | Documentation/x86/boot.txt | 27 | ||||
-rw-r--r-- | Documentation/x86/zero-page.txt | 4 |
15 files changed, 305 insertions, 2 deletions
diff --git a/Documentation/device-mapper/dm-raid.txt b/Documentation/device-mapper/dm-raid.txt index 728c38c242d6..56fb62b09fc5 100644 --- a/Documentation/device-mapper/dm-raid.txt +++ b/Documentation/device-mapper/dm-raid.txt | |||
@@ -141,3 +141,4 @@ Version History | |||
141 | 1.2.0 Handle creation of arrays that contain failed devices. | 141 | 1.2.0 Handle creation of arrays that contain failed devices. |
142 | 1.3.0 Added support for RAID 10 | 142 | 1.3.0 Added support for RAID 10 |
143 | 1.3.1 Allow device replacement/rebuild for RAID 10 | 143 | 1.3.1 Allow device replacement/rebuild for RAID 10 |
144 | 1.3.2 Fix/improve redundancy checking for RAID10 | ||
diff --git a/Documentation/devicetree/bindings/sound/ak4642.txt b/Documentation/devicetree/bindings/sound/ak4642.txt new file mode 100644 index 000000000000..623d4e70ae11 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/ak4642.txt | |||
@@ -0,0 +1,17 @@ | |||
1 | AK4642 I2C transmitter | ||
2 | |||
3 | This device supports I2C mode only. | ||
4 | |||
5 | Required properties: | ||
6 | |||
7 | - compatible : "asahi-kasei,ak4642" or "asahi-kasei,ak4643" or "asahi-kasei,ak4648" | ||
8 | - reg : The chip select number on the I2C bus | ||
9 | |||
10 | Example: | ||
11 | |||
12 | &i2c { | ||
13 | ak4648: ak4648@0x12 { | ||
14 | compatible = "asahi-kasei,ak4642"; | ||
15 | reg = <0x12>; | ||
16 | }; | ||
17 | }; | ||
diff --git a/Documentation/devicetree/bindings/sound/cs4271.txt b/Documentation/devicetree/bindings/sound/cs4271.txt index a850fb9c88ea..e2cd1d7539e5 100644 --- a/Documentation/devicetree/bindings/sound/cs4271.txt +++ b/Documentation/devicetree/bindings/sound/cs4271.txt | |||
@@ -20,6 +20,18 @@ Optional properties: | |||
20 | !RESET pin | 20 | !RESET pin |
21 | - cirrus,amuteb-eq-bmutec: When given, the Codec's AMUTEB=BMUTEC flag | 21 | - cirrus,amuteb-eq-bmutec: When given, the Codec's AMUTEB=BMUTEC flag |
22 | is enabled. | 22 | is enabled. |
23 | - cirrus,enable-soft-reset: | ||
24 | The CS4271 requires its LRCLK and MCLK to be stable before its RESET | ||
25 | line is de-asserted. That also means that clocks cannot be changed | ||
26 | without putting the chip back into hardware reset, which also requires | ||
27 | a complete re-initialization of all registers. | ||
28 | |||
29 | One (undocumented) workaround is to assert and de-assert the PDN bit | ||
30 | in the MODE2 register. This workaround can be enabled with this DT | ||
31 | property. | ||
32 | |||
33 | Note that this is not needed in case the clocks are stable | ||
34 | throughout the entire runtime of the codec. | ||
23 | 35 | ||
24 | Examples: | 36 | Examples: |
25 | 37 | ||
diff --git a/Documentation/devicetree/bindings/sound/nvidia,tegra-audio-wm9712.txt b/Documentation/devicetree/bindings/sound/nvidia,tegra-audio-wm9712.txt new file mode 100644 index 000000000000..be35d34e8b26 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/nvidia,tegra-audio-wm9712.txt | |||
@@ -0,0 +1,51 @@ | |||
1 | NVIDIA Tegra audio complex | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : "nvidia,tegra-audio-wm9712" | ||
5 | - nvidia,model : The user-visible name of this sound complex. | ||
6 | - nvidia,audio-routing : A list of the connections between audio components. | ||
7 | Each entry is a pair of strings, the first being the connection's sink, | ||
8 | the second being the connection's source. Valid names for sources and | ||
9 | sinks are the WM9712's pins, and the jacks on the board: | ||
10 | |||
11 | WM9712 pins: | ||
12 | |||
13 | * MONOOUT | ||
14 | * HPOUTL | ||
15 | * HPOUTR | ||
16 | * LOUT2 | ||
17 | * ROUT2 | ||
18 | * OUT3 | ||
19 | * LINEINL | ||
20 | * LINEINR | ||
21 | * PHONE | ||
22 | * PCBEEP | ||
23 | * MIC1 | ||
24 | * MIC2 | ||
25 | * Mic Bias | ||
26 | |||
27 | Board connectors: | ||
28 | |||
29 | * Headphone | ||
30 | * LineIn | ||
31 | * Mic | ||
32 | |||
33 | - nvidia,ac97-controller : The phandle of the Tegra AC97 controller | ||
34 | |||
35 | |||
36 | Example: | ||
37 | |||
38 | sound { | ||
39 | compatible = "nvidia,tegra-audio-wm9712-colibri_t20", | ||
40 | "nvidia,tegra-audio-wm9712"; | ||
41 | nvidia,model = "Toradex Colibri T20"; | ||
42 | |||
43 | nvidia,audio-routing = | ||
44 | "Headphone", "HPOUTL", | ||
45 | "Headphone", "HPOUTR", | ||
46 | "LineIn", "LINEINL", | ||
47 | "LineIn", "LINEINR", | ||
48 | "Mic", "MIC1"; | ||
49 | |||
50 | nvidia,ac97-controller = <&ac97>; | ||
51 | }; | ||
diff --git a/Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt b/Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt new file mode 100644 index 000000000000..c1454979c1ef --- /dev/null +++ b/Documentation/devicetree/bindings/sound/nvidia,tegra20-ac97.txt | |||
@@ -0,0 +1,22 @@ | |||
1 | NVIDIA Tegra 20 AC97 controller | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : "nvidia,tegra20-ac97" | ||
5 | - reg : Should contain AC97 controller registers location and length | ||
6 | - interrupts : Should contain AC97 interrupt | ||
7 | - nvidia,dma-request-selector : The Tegra DMA controller's phandle and | ||
8 | request selector for the AC97 controller | ||
9 | - nvidia,codec-reset-gpio : The Tegra GPIO controller's phandle and the number | ||
10 | of the GPIO used to reset the external AC97 codec | ||
11 | - nvidia,codec-sync-gpio : The Tegra GPIO controller's phandle and the number | ||
12 | of the GPIO corresponding with the AC97 DAP _FS line | ||
13 | Example: | ||
14 | |||
15 | ac97@70002000 { | ||
16 | compatible = "nvidia,tegra20-ac97"; | ||
17 | reg = <0x70002000 0x200>; | ||
18 | interrupts = <0 81 0x04>; | ||
19 | nvidia,dma-request-selector = <&apbdma 12>; | ||
20 | nvidia,codec-reset-gpio = <&gpio 170 0>; | ||
21 | nvidia,codec-sync-gpio = <&gpio 120 0>; | ||
22 | }; | ||
diff --git a/Documentation/devicetree/bindings/sound/omap-twl4030.txt b/Documentation/devicetree/bindings/sound/omap-twl4030.txt index 6fae51c7f766..1ab6bc8404d5 100644 --- a/Documentation/devicetree/bindings/sound/omap-twl4030.txt +++ b/Documentation/devicetree/bindings/sound/omap-twl4030.txt | |||
@@ -6,6 +6,52 @@ Required properties: | |||
6 | - ti,mcbsp: phandle for the McBSP node | 6 | - ti,mcbsp: phandle for the McBSP node |
7 | - ti,codec: phandle for the twl4030 audio node | 7 | - ti,codec: phandle for the twl4030 audio node |
8 | 8 | ||
9 | Optional properties: | ||
10 | - ti,mcbsp-voice: phandle for the McBSP node connected to the voice port of twl | ||
11 | - ti, jack-det-gpio: Jack detect GPIO | ||
12 | - ti,audio-routing: List of connections between audio components. | ||
13 | Each entry is a pair of strings, the first being the connection's sink, | ||
14 | the second being the connection's source. | ||
15 | If the routing is not provided all possible connection will be available | ||
16 | |||
17 | Available audio endpoints for the audio-routing table: | ||
18 | |||
19 | Board connectors: | ||
20 | * Headset Stereophone | ||
21 | * Earpiece Spk | ||
22 | * Handsfree Spk | ||
23 | * Ext Spk | ||
24 | * Main Mic | ||
25 | * Sub Mic | ||
26 | * Headset Mic | ||
27 | * Carkit Mic | ||
28 | * Digital0 Mic | ||
29 | * Digital1 Mic | ||
30 | * Line In | ||
31 | |||
32 | twl4030 pins: | ||
33 | * HSOL | ||
34 | * HSOR | ||
35 | * EARPIECE | ||
36 | * HFL | ||
37 | * HFR | ||
38 | * PREDRIVEL | ||
39 | * PREDRIVER | ||
40 | * CARKITL | ||
41 | * CARKITR | ||
42 | * MAINMIC | ||
43 | * SUBMIC | ||
44 | * HSMIC | ||
45 | * DIGIMIC0 | ||
46 | * DIGIMIC1 | ||
47 | * CARKITMIC | ||
48 | * AUXL | ||
49 | * AUXR | ||
50 | |||
51 | * Headset Mic Bias | ||
52 | * Mic Bias 1 /* Used for Main Mic or Digimic0 */ | ||
53 | * Mic Bias 2 /* Used for Sub Mic or Digimic1 */ | ||
54 | |||
9 | Example: | 55 | Example: |
10 | 56 | ||
11 | sound { | 57 | sound { |
diff --git a/Documentation/devicetree/bindings/sound/renesas,fsi.txt b/Documentation/devicetree/bindings/sound/renesas,fsi.txt new file mode 100644 index 000000000000..c5be003f413e --- /dev/null +++ b/Documentation/devicetree/bindings/sound/renesas,fsi.txt | |||
@@ -0,0 +1,26 @@ | |||
1 | Renesas FSI | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : "renesas,sh_fsi2" or "renesas,sh_fsi" | ||
5 | - reg : Should contain the register physical address and length | ||
6 | - interrupts : Should contain FSI interrupt | ||
7 | |||
8 | - fsia,spdif-connection : FSI is connected by S/PDFI | ||
9 | - fsia,stream-mode-support : FSI supports 16bit stream mode. | ||
10 | - fsia,use-internal-clock : FSI uses internal clock when master mode. | ||
11 | |||
12 | - fsib,spdif-connection : same as fsia | ||
13 | - fsib,stream-mode-support : same as fsia | ||
14 | - fsib,use-internal-clock : same as fsia | ||
15 | |||
16 | Example: | ||
17 | |||
18 | sh_fsi2: sh_fsi2@0xec230000 { | ||
19 | compatible = "renesas,sh_fsi2"; | ||
20 | reg = <0xec230000 0x400>; | ||
21 | interrupts = <0 146 0x4>; | ||
22 | |||
23 | fsia,spdif-connection; | ||
24 | fsia,stream-mode-support; | ||
25 | fsia,use-internal-clock; | ||
26 | }; | ||
diff --git a/Documentation/devicetree/bindings/sound/samsung,smdk-wm8994.txt b/Documentation/devicetree/bindings/sound/samsung,smdk-wm8994.txt new file mode 100644 index 000000000000..4686646fb122 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/samsung,smdk-wm8994.txt | |||
@@ -0,0 +1,14 @@ | |||
1 | Samsung SMDK audio complex | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : "samsung,smdk-wm8994" | ||
5 | - samsung,i2s-controller: The phandle of the Samsung I2S0 controller | ||
6 | - samsung,audio-codec: The phandle of the WM8994 audio codec | ||
7 | Example: | ||
8 | |||
9 | sound { | ||
10 | compatible = "samsung,smdk-wm8994"; | ||
11 | |||
12 | samsung,i2s-controller = <&i2s0>; | ||
13 | samsung,audio-codec = <&wm8994>; | ||
14 | }; | ||
diff --git a/Documentation/devicetree/bindings/sound/samsung-i2s.txt b/Documentation/devicetree/bindings/sound/samsung-i2s.txt new file mode 100644 index 000000000000..3070046da2e5 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/samsung-i2s.txt | |||
@@ -0,0 +1,63 @@ | |||
1 | * Samsung I2S controller | ||
2 | |||
3 | Required SoC Specific Properties: | ||
4 | |||
5 | - compatible : "samsung,i2s-v5" | ||
6 | - reg: physical base address of the controller and length of memory mapped | ||
7 | region. | ||
8 | - dmas: list of DMA controller phandle and DMA request line ordered pairs. | ||
9 | - dma-names: identifier string for each DMA request line in the dmas property. | ||
10 | These strings correspond 1:1 with the ordered pairs in dmas. | ||
11 | |||
12 | Optional SoC Specific Properties: | ||
13 | |||
14 | - samsung,supports-6ch: If the I2S Primary sound source has 5.1 Channel | ||
15 | support, this flag is enabled. | ||
16 | - samsung,supports-rstclr: This flag should be set if I2S software reset bit | ||
17 | control is required. When this flag is set I2S software reset bit will be | ||
18 | enabled or disabled based on need. | ||
19 | - samsung,supports-secdai:If I2S block has a secondary FIFO and internal DMA, | ||
20 | then this flag is enabled. | ||
21 | - samsung,idma-addr: Internal DMA register base address of the audio | ||
22 | sub system(used in secondary sound source). | ||
23 | |||
24 | Required Board Specific Properties: | ||
25 | |||
26 | - gpios: The gpio specifier for data out,data in, LRCLK, CDCLK and SCLK | ||
27 | interface lines. The format of the gpio specifier depends on the gpio | ||
28 | controller. | ||
29 | The syntax of samsung gpio specifier is | ||
30 | <[phandle of the gpio controller node] | ||
31 | [pin number within the gpio controller] | ||
32 | [mux function] | ||
33 | [flags and pull up/down] | ||
34 | [drive strength]> | ||
35 | |||
36 | Example: | ||
37 | |||
38 | - SoC Specific Portion: | ||
39 | |||
40 | i2s@03830000 { | ||
41 | compatible = "samsung,i2s-v5"; | ||
42 | reg = <0x03830000 0x100>; | ||
43 | dmas = <&pdma0 10 | ||
44 | &pdma0 9 | ||
45 | &pdma0 8>; | ||
46 | dma-names = "tx", "rx", "tx-sec"; | ||
47 | samsung,supports-6ch; | ||
48 | samsung,supports-rstclr; | ||
49 | samsung,supports-secdai; | ||
50 | samsung,idma-addr = <0x03000000>; | ||
51 | }; | ||
52 | |||
53 | - Board Specific Portion: | ||
54 | |||
55 | i2s@03830000 { | ||
56 | gpios = <&gpz 0 2 0 0>, /* I2S_0_SCLK */ | ||
57 | <&gpz 1 2 0 0>, /* I2S_0_CDCLK */ | ||
58 | <&gpz 2 2 0 0>, /* I2S_0_LRCK */ | ||
59 | <&gpz 3 2 0 0>, /* I2S_0_SDI */ | ||
60 | <&gpz 4 2 0 0>, /* I2S_0_SDO[1] */ | ||
61 | <&gpz 5 2 0 0>, /* I2S_0_SDO[2] */ | ||
62 | <&gpz 6 2 0 0>; /* I2S_0_SDO[3] */ | ||
63 | }; | ||
diff --git a/Documentation/devicetree/bindings/sound/tlv320aic3x.txt b/Documentation/devicetree/bindings/sound/tlv320aic3x.txt index e7b98f41fa5f..f47c3f589fd0 100644 --- a/Documentation/devicetree/bindings/sound/tlv320aic3x.txt +++ b/Documentation/devicetree/bindings/sound/tlv320aic3x.txt | |||
@@ -11,6 +11,12 @@ Optional properties: | |||
11 | 11 | ||
12 | - gpio-reset - gpio pin number used for codec reset | 12 | - gpio-reset - gpio pin number used for codec reset |
13 | - ai3x-gpio-func - <array of 2 int> - AIC3X_GPIO1 & AIC3X_GPIO2 Functionality | 13 | - ai3x-gpio-func - <array of 2 int> - AIC3X_GPIO1 & AIC3X_GPIO2 Functionality |
14 | - ai3x-micbias-vg - MicBias Voltage required. | ||
15 | 1 - MICBIAS output is powered to 2.0V, | ||
16 | 2 - MICBIAS output is powered to 2.5V, | ||
17 | 3 - MICBIAS output is connected to AVDD, | ||
18 | If this node is not mentioned or if the value is incorrect, then MicBias | ||
19 | is powered down. | ||
14 | 20 | ||
15 | Example: | 21 | Example: |
16 | 22 | ||
diff --git a/Documentation/devicetree/bindings/sound/wm8962.txt b/Documentation/devicetree/bindings/sound/wm8962.txt new file mode 100644 index 000000000000..dceb3b1c2bb7 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/wm8962.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | WM8962 audio CODEC | ||
2 | |||
3 | This device supports I2C only. | ||
4 | |||
5 | Required properties: | ||
6 | |||
7 | - compatible : "wlf,wm8962" | ||
8 | |||
9 | - reg : the I2C address of the device. | ||
10 | |||
11 | Example: | ||
12 | |||
13 | codec: wm8962@1a { | ||
14 | compatible = "wlf,wm8962"; | ||
15 | reg = <0x1a>; | ||
16 | }; | ||
diff --git a/Documentation/hid/hid-sensor.txt b/Documentation/hid/hid-sensor.txt index 948b0989c433..948b0989c433 100755..100644 --- a/Documentation/hid/hid-sensor.txt +++ b/Documentation/hid/hid-sensor.txt | |||
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 363e348bff9b..6c723811c0a0 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -2438,7 +2438,7 @@ bytes respectively. Such letter suffixes can also be entirely omitted. | |||
2438 | real-time workloads. It can also improve energy | 2438 | real-time workloads. It can also improve energy |
2439 | efficiency for asymmetric multiprocessors. | 2439 | efficiency for asymmetric multiprocessors. |
2440 | 2440 | ||
2441 | rcu_nocbs_poll [KNL,BOOT] | 2441 | rcu_nocb_poll [KNL,BOOT] |
2442 | Rather than requiring that offloaded CPUs | 2442 | Rather than requiring that offloaded CPUs |
2443 | (specified by rcu_nocbs= above) explicitly | 2443 | (specified by rcu_nocbs= above) explicitly |
2444 | awaken the corresponding "rcuoN" kthreads, | 2444 | awaken the corresponding "rcuoN" kthreads, |
diff --git a/Documentation/x86/boot.txt b/Documentation/x86/boot.txt index 406d82d5d2bb..e540fd67f767 100644 --- a/Documentation/x86/boot.txt +++ b/Documentation/x86/boot.txt | |||
@@ -57,6 +57,10 @@ Protocol 2.10: (Kernel 2.6.31) Added a protocol for relaxed alignment | |||
57 | Protocol 2.11: (Kernel 3.6) Added a field for offset of EFI handover | 57 | Protocol 2.11: (Kernel 3.6) Added a field for offset of EFI handover |
58 | protocol entry point. | 58 | protocol entry point. |
59 | 59 | ||
60 | Protocol 2.12: (Kernel 3.8) Added the xloadflags field and extension fields | ||
61 | to struct boot_params for for loading bzImage and ramdisk | ||
62 | above 4G in 64bit. | ||
63 | |||
60 | **** MEMORY LAYOUT | 64 | **** MEMORY LAYOUT |
61 | 65 | ||
62 | The traditional memory map for the kernel loader, used for Image or | 66 | The traditional memory map for the kernel loader, used for Image or |
@@ -182,7 +186,7 @@ Offset Proto Name Meaning | |||
182 | 0230/4 2.05+ kernel_alignment Physical addr alignment required for kernel | 186 | 0230/4 2.05+ kernel_alignment Physical addr alignment required for kernel |
183 | 0234/1 2.05+ relocatable_kernel Whether kernel is relocatable or not | 187 | 0234/1 2.05+ relocatable_kernel Whether kernel is relocatable or not |
184 | 0235/1 2.10+ min_alignment Minimum alignment, as a power of two | 188 | 0235/1 2.10+ min_alignment Minimum alignment, as a power of two |
185 | 0236/2 N/A pad3 Unused | 189 | 0236/2 2.12+ xloadflags Boot protocol option flags |
186 | 0238/4 2.06+ cmdline_size Maximum size of the kernel command line | 190 | 0238/4 2.06+ cmdline_size Maximum size of the kernel command line |
187 | 023C/4 2.07+ hardware_subarch Hardware subarchitecture | 191 | 023C/4 2.07+ hardware_subarch Hardware subarchitecture |
188 | 0240/8 2.07+ hardware_subarch_data Subarchitecture-specific data | 192 | 0240/8 2.07+ hardware_subarch_data Subarchitecture-specific data |
@@ -582,6 +586,27 @@ Protocol: 2.10+ | |||
582 | misaligned kernel. Therefore, a loader should typically try each | 586 | misaligned kernel. Therefore, a loader should typically try each |
583 | power-of-two alignment from kernel_alignment down to this alignment. | 587 | power-of-two alignment from kernel_alignment down to this alignment. |
584 | 588 | ||
589 | Field name: xloadflags | ||
590 | Type: read | ||
591 | Offset/size: 0x236/2 | ||
592 | Protocol: 2.12+ | ||
593 | |||
594 | This field is a bitmask. | ||
595 | |||
596 | Bit 0 (read): XLF_KERNEL_64 | ||
597 | - If 1, this kernel has the legacy 64-bit entry point at 0x200. | ||
598 | |||
599 | Bit 1 (read): XLF_CAN_BE_LOADED_ABOVE_4G | ||
600 | - If 1, kernel/boot_params/cmdline/ramdisk can be above 4G. | ||
601 | |||
602 | Bit 2 (read): XLF_EFI_HANDOVER_32 | ||
603 | - If 1, the kernel supports the 32-bit EFI handoff entry point | ||
604 | given at handover_offset. | ||
605 | |||
606 | Bit 3 (read): XLF_EFI_HANDOVER_64 | ||
607 | - If 1, the kernel supports the 64-bit EFI handoff entry point | ||
608 | given at handover_offset + 0x200. | ||
609 | |||
585 | Field name: cmdline_size | 610 | Field name: cmdline_size |
586 | Type: read | 611 | Type: read |
587 | Offset/size: 0x238/4 | 612 | Offset/size: 0x238/4 |
diff --git a/Documentation/x86/zero-page.txt b/Documentation/x86/zero-page.txt index cf5437deda81..199f453cb4de 100644 --- a/Documentation/x86/zero-page.txt +++ b/Documentation/x86/zero-page.txt | |||
@@ -19,6 +19,9 @@ Offset Proto Name Meaning | |||
19 | 090/010 ALL hd1_info hd1 disk parameter, OBSOLETE!! | 19 | 090/010 ALL hd1_info hd1 disk parameter, OBSOLETE!! |
20 | 0A0/010 ALL sys_desc_table System description table (struct sys_desc_table) | 20 | 0A0/010 ALL sys_desc_table System description table (struct sys_desc_table) |
21 | 0B0/010 ALL olpc_ofw_header OLPC's OpenFirmware CIF and friends | 21 | 0B0/010 ALL olpc_ofw_header OLPC's OpenFirmware CIF and friends |
22 | 0C0/004 ALL ext_ramdisk_image ramdisk_image high 32bits | ||
23 | 0C4/004 ALL ext_ramdisk_size ramdisk_size high 32bits | ||
24 | 0C8/004 ALL ext_cmd_line_ptr cmd_line_ptr high 32bits | ||
22 | 140/080 ALL edid_info Video mode setup (struct edid_info) | 25 | 140/080 ALL edid_info Video mode setup (struct edid_info) |
23 | 1C0/020 ALL efi_info EFI 32 information (struct efi_info) | 26 | 1C0/020 ALL efi_info EFI 32 information (struct efi_info) |
24 | 1E0/004 ALL alk_mem_k Alternative mem check, in KB | 27 | 1E0/004 ALL alk_mem_k Alternative mem check, in KB |
@@ -27,6 +30,7 @@ Offset Proto Name Meaning | |||
27 | 1E9/001 ALL eddbuf_entries Number of entries in eddbuf (below) | 30 | 1E9/001 ALL eddbuf_entries Number of entries in eddbuf (below) |
28 | 1EA/001 ALL edd_mbr_sig_buf_entries Number of entries in edd_mbr_sig_buffer | 31 | 1EA/001 ALL edd_mbr_sig_buf_entries Number of entries in edd_mbr_sig_buffer |
29 | (below) | 32 | (below) |
33 | 1EF/001 ALL sentinel Used to detect broken bootloaders | ||
30 | 290/040 ALL edd_mbr_sig_buffer EDD MBR signatures | 34 | 290/040 ALL edd_mbr_sig_buffer EDD MBR signatures |
31 | 2D0/A00 ALL e820_map E820 memory map table | 35 | 2D0/A00 ALL e820_map E820 memory map table |
32 | (array of struct e820entry) | 36 | (array of struct e820entry) |