aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/cachetlb.txt5
-rw-r--r--Documentation/feature-removal-schedule.txt62
-rw-r--r--Documentation/filesystems/Locking8
-rw-r--r--Documentation/filesystems/ntfs.txt2
-rw-r--r--Documentation/hwmon/w837938
-rw-r--r--Documentation/kdump/kdump.txt224
-rw-r--r--Documentation/powerpc/mpc52xx-device-tree-bindings.txt10
-rw-r--r--Documentation/usb/acm.txt4
-rw-r--r--Documentation/x86_64/boot-options.txt4
9 files changed, 245 insertions, 82 deletions
diff --git a/Documentation/cachetlb.txt b/Documentation/cachetlb.txt
index 73e794f0ff09..debf6813934a 100644
--- a/Documentation/cachetlb.txt
+++ b/Documentation/cachetlb.txt
@@ -373,14 +373,15 @@ maps this page at its virtual address.
373 likely that you will need to flush the instruction cache 373 likely that you will need to flush the instruction cache
374 for copy_to_user_page(). 374 for copy_to_user_page().
375 375
376 void flush_anon_page(struct page *page, unsigned long vmaddr) 376 void flush_anon_page(struct vm_area_struct *vma, struct page *page,
377 unsigned long vmaddr)
377 When the kernel needs to access the contents of an anonymous 378 When the kernel needs to access the contents of an anonymous
378 page, it calls this function (currently only 379 page, it calls this function (currently only
379 get_user_pages()). Note: flush_dcache_page() deliberately 380 get_user_pages()). Note: flush_dcache_page() deliberately
380 doesn't work for an anonymous page. The default 381 doesn't work for an anonymous page. The default
381 implementation is a nop (and should remain so for all coherent 382 implementation is a nop (and should remain so for all coherent
382 architectures). For incoherent architectures, it should flush 383 architectures). For incoherent architectures, it should flush
383 the cache of the page at vmaddr in the current user process. 384 the cache of the page at vmaddr.
384 385
385 void flush_kernel_dcache_page(struct page *page) 386 void flush_kernel_dcache_page(struct page *page)
386 When the kernel needs to modify a user page is has obtained 387 When the kernel needs to modify a user page is has obtained
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt
index 30f3c8c9c12a..fc532395d116 100644
--- a/Documentation/feature-removal-schedule.txt
+++ b/Documentation/feature-removal-schedule.txt
@@ -226,6 +226,23 @@ Who: Jean Delvare <khali@linux-fr.org>
226 226
227--------------------------- 227---------------------------
228 228
229What: i2c_adapter.dev
230 i2c_adapter.list
231When: July 2007
232Why: Superfluous, given i2c_adapter.class_dev:
233 * The "dev" was a stand-in for the physical device node that legacy
234 drivers would not have; but now it's almost always present. Any
235 remaining legacy drivers must upgrade (they now trigger warnings).
236 * The "list" duplicates class device children.
237 The delay in removing this is so upgraded lm_sensors and libsensors
238 can get deployed. (Removal causes minor changes in the sysfs layout,
239 notably the location of the adapter type name and parenting the i2c
240 client hardware directly from their controller.)
241Who: Jean Delvare <khali@linux-fr.org>,
242 David Brownell <dbrownell@users.sourceforge.net>
243
244---------------------------
245
229What: IPv4 only connection tracking/NAT/helpers 246What: IPv4 only connection tracking/NAT/helpers
230When: 2.6.22 247When: 2.6.22
231Why: The new layer 3 independant connection tracking replaces the old 248Why: The new layer 3 independant connection tracking replaces the old
@@ -256,3 +273,48 @@ Why: Speedstep-centrino driver with ACPI hooks and acpi-cpufreq driver are
256Who: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> 273Who: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
257 274
258--------------------------- 275---------------------------
276
277What: ACPI hotkey driver (CONFIG_ACPI_HOTKEY)
278When: 2.6.21
279Why: hotkey.c was an attempt to consolidate multiple drivers that use
280 ACPI to implement hotkeys. However, hotkeys are not documented
281 in the ACPI specification, so the drivers used undocumented
282 vendor-specific hooks and turned out to be more different than
283 the same.
284
285 Further, the keys and the features supplied by each platform
286 are different, so there will always be a need for
287 platform-specific drivers.
288
289 So the new plan is to delete hotkey.c and instead, work on the
290 platform specific drivers to try to make them look the same
291 to the user when they supply the same features.
292
293 hotkey.c has always depended on CONFIG_EXPERIMENTAL
294
295Who: Len Brown <len.brown@intel.com>
296
297---------------------------
298
299What: /sys/firmware/acpi/namespace
300When: 2.6.21
301Why: The ACPI namespace is effectively the symbol list for
302 the BIOS. The device names are completely arbitrary
303 and have no place being exposed to user-space.
304
305 For those interested in the BIOS ACPI namespace,
306 the BIOS can be extracted and disassembled with acpidump
307 and iasl as documented in the pmtools package here:
308 http://ftp.kernel.org/pub/linux/kernel/people/lenb/acpi/utils
309
310Who: Len Brown <len.brown@intel.com>
311
312---------------------------
313
314What: /proc/acpi/button
315When: August 2007
316Why: /proc/acpi/button has been replaced by events to the input layer
317 since 2.6.20.
318Who: Len Brown <len.brown@intel.com>
319
320---------------------------
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking
index 790ef6fbe495..28bfea75bcf2 100644
--- a/Documentation/filesystems/Locking
+++ b/Documentation/filesystems/Locking
@@ -171,6 +171,7 @@ prototypes:
171 int (*releasepage) (struct page *, int); 171 int (*releasepage) (struct page *, int);
172 int (*direct_IO)(int, struct kiocb *, const struct iovec *iov, 172 int (*direct_IO)(int, struct kiocb *, const struct iovec *iov,
173 loff_t offset, unsigned long nr_segs); 173 loff_t offset, unsigned long nr_segs);
174 int (*launder_page) (struct page *);
174 175
175locking rules: 176locking rules:
176 All except set_page_dirty may block 177 All except set_page_dirty may block
@@ -188,6 +189,7 @@ bmap: yes
188invalidatepage: no yes 189invalidatepage: no yes
189releasepage: no yes 190releasepage: no yes
190direct_IO: no 191direct_IO: no
192launder_page: no yes
191 193
192 ->prepare_write(), ->commit_write(), ->sync_page() and ->readpage() 194 ->prepare_write(), ->commit_write(), ->sync_page() and ->readpage()
193may be called from the request handler (/dev/loop). 195may be called from the request handler (/dev/loop).
@@ -281,6 +283,12 @@ buffers from the page in preparation for freeing it. It returns zero to
281indicate that the buffers are (or may be) freeable. If ->releasepage is zero, 283indicate that the buffers are (or may be) freeable. If ->releasepage is zero,
282the kernel assumes that the fs has no private interest in the buffers. 284the kernel assumes that the fs has no private interest in the buffers.
283 285
286 ->launder_page() may be called prior to releasing a page if
287it is still found to be dirty. It returns zero if the page was successfully
288cleaned, or an error value if not. Note that in order to prevent the page
289getting mapped back in and redirtied, it needs to be kept locked
290across the entire operation.
291
284 Note: currently almost all instances of address_space methods are 292 Note: currently almost all instances of address_space methods are
285using BKL for internal serialization and that's one of the worst sources 293using BKL for internal serialization and that's one of the worst sources
286of contention. Normally they are calling library functions (in fs/buffer.c) 294of contention. Normally they are calling library functions (in fs/buffer.c)
diff --git a/Documentation/filesystems/ntfs.txt b/Documentation/filesystems/ntfs.txt
index 13ba649bda75..81779068b09b 100644
--- a/Documentation/filesystems/ntfs.txt
+++ b/Documentation/filesystems/ntfs.txt
@@ -457,6 +457,8 @@ ChangeLog
457 457
458Note, a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog. 458Note, a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog.
459 459
4602.1.28:
461 - Fix a deadlock.
4602.1.27: 4622.1.27:
461 - Implement page migration support so the kernel can move memory used 463 - Implement page migration support so the kernel can move memory used
462 by NTFS files and directories around for management purposes. 464 by NTFS files and directories around for management purposes.
diff --git a/Documentation/hwmon/w83793 b/Documentation/hwmon/w83793
index 45e5408340e0..51171a83165b 100644
--- a/Documentation/hwmon/w83793
+++ b/Documentation/hwmon/w83793
@@ -45,18 +45,14 @@ This driver implements support for Winbond W83793G/W83793R chips.
45 temp5-6 have a 1 degree Celsiis resolution. 45 temp5-6 have a 1 degree Celsiis resolution.
46 46
47* Temperature sensor types 47* Temperature sensor types
48 Temp1-4 have 3 possible types. It can be read from (and written to) 48 Temp1-4 have 2 possible types. It can be read from (and written to)
49 temp[1-4]_type. 49 temp[1-4]_type.
50 - If the value of 0, the related temperature channel stops
51 monitoring.
52 - If the value is 3, it starts monitoring using a remote termal diode 50 - If the value is 3, it starts monitoring using a remote termal diode
53 (default). 51 (default).
54 - If the value is 5, it starts monitoring using the temperature sensor
55 in AMD CPU and get result by AMDSI.
56 - If the value is 6, it starts monitoring using the temperature sensor 52 - If the value is 6, it starts monitoring using the temperature sensor
57 in Intel CPU and get result by PECI. 53 in Intel CPU and get result by PECI.
58 Temp5-6 can be connected to external thermistors (value of 54 Temp5-6 can be connected to external thermistors (value of
59 temp[5-6]_type is 4). They can also be disabled (value is 0). 55 temp[5-6]_type is 4).
60 56
61* Alarm mechanism 57* Alarm mechanism
62 For voltage sensors, an alarm triggers if the measured value is below 58 For voltage sensors, an alarm triggers if the measured value is below
diff --git a/Documentation/kdump/kdump.txt b/Documentation/kdump/kdump.txt
index 99f2d4d4bf7d..5af6676a88f0 100644
--- a/Documentation/kdump/kdump.txt
+++ b/Documentation/kdump/kdump.txt
@@ -17,7 +17,7 @@ You can use common Linux commands, such as cp and scp, to copy the
17memory image to a dump file on the local disk, or across the network to 17memory image to a dump file on the local disk, or across the network to
18a remote system. 18a remote system.
19 19
20Kdump and kexec are currently supported on the x86, x86_64, and ppc64 20Kdump and kexec are currently supported on the x86, x86_64, ppc64 and IA64
21architectures. 21architectures.
22 22
23When the system kernel boots, it reserves a small section of memory for 23When the system kernel boots, it reserves a small section of memory for
@@ -54,59 +54,64 @@ memory," in two ways:
54Setup and Installation 54Setup and Installation
55====================== 55======================
56 56
57Install kexec-tools and the Kdump patch 57Install kexec-tools
58--------------------------------------- 58-------------------
59 59
601) Login as the root user. 601) Login as the root user.
61 61
622) Download the kexec-tools user-space package from the following URL: 622) Download the kexec-tools user-space package from the following URL:
63 63
64 http://www.xmission.com/~ebiederm/files/kexec/kexec-tools-1.101.tar.gz 64http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing-20061214.tar.gz
65 65
663) Unpack the tarball with the tar command, as follows: 66Note: Latest kexec-tools-testing git tree is available at
67
68 tar xvpzf kexec-tools-1.101.tar.gz
69
704) Download the latest consolidated Kdump patch from the following URL:
71
72 http://lse.sourceforge.net/kdump/
73 67
74 (This location is being used until all the user-space Kdump patches 68git://git.kernel.org/pub/scm/linux/kernel/git/horms/kexec-tools-testing.git
75 are integrated with the kexec-tools package.) 69or
70http://www.kernel.org/git/?p=linux/kernel/git/horms/kexec-tools-testing.git;a=summary
76 71
775) Change to the kexec-tools-1.101 directory, as follows: 723) Unpack the tarball with the tar command, as follows:
78 73
79 cd kexec-tools-1.101 74 tar xvpzf kexec-tools-testing-20061214.tar.gz
80 75
816) Apply the consolidated patch to the kexec-tools-1.101 source tree 764) Change to the kexec-tools-1.101 directory, as follows:
82 with the patch command, as follows. (Modify the path to the downloaded
83 patch as necessary.)
84 77
85 patch -p1 < /path-to-kdump-patch/kexec-tools-1.101-kdump.patch 78 cd kexec-tools-testing-20061214
86 79
877) Configure the package, as follows: 805) Configure the package, as follows:
88 81
89 ./configure 82 ./configure
90 83
918) Compile the package, as follows: 846) Compile the package, as follows:
92 85
93 make 86 make
94 87
959) Install the package, as follows: 887) Install the package, as follows:
96 89
97 make install 90 make install
98 91
99 92
100Download and build the system and dump-capture kernels 93Build the system and dump-capture kernels
101------------------------------------------------------ 94-----------------------------------------
95There are two possible methods of using Kdump.
96
971) Build a separate custom dump-capture kernel for capturing the
98 kernel core dump.
99
1002) Or use the system kernel binary itself as dump-capture kernel and there is
101 no need to build a separate dump-capture kernel. This is possible
102 only with the architecutres which support a relocatable kernel. As
103 of today i386 and ia64 architectures support relocatable kernel.
104
105Building a relocatable kernel is advantageous from the point of view that
106one does not have to build a second kernel for capturing the dump. But
107at the same time one might want to build a custom dump capture kernel
108suitable to his needs.
102 109
103Download the mainline (vanilla) kernel source code (2.6.13-rc1 or newer) 110Following are the configuration setting required for system and
104from http://www.kernel.org. Two kernels must be built: a system kernel 111dump-capture kernels for enabling kdump support.
105and a dump-capture kernel. Use the following steps to configure these
106kernels with the necessary kexec and Kdump features:
107 112
108System kernel 113System kernel config options
109------------- 114----------------------------
110 115
1111) Enable "kexec system call" in "Processor type and features." 1161) Enable "kexec system call" in "Processor type and features."
112 117
@@ -132,88 +137,160 @@ System kernel
132 analysis tools require a vmlinux with debug symbols in order to read 137 analysis tools require a vmlinux with debug symbols in order to read
133 and analyze a dump file. 138 and analyze a dump file.
134 139
1354) Make and install the kernel and its modules. Update the boot loader 140Dump-capture kernel config options (Arch Independent)
136 (such as grub, yaboot, or lilo) configuration files as necessary. 141-----------------------------------------------------
137
1385) Boot the system kernel with the boot parameter "crashkernel=Y@X",
139 where Y specifies how much memory to reserve for the dump-capture kernel
140 and X specifies the beginning of this reserved memory. For example,
141 "crashkernel=64M@16M" tells the system kernel to reserve 64 MB of memory
142 starting at physical address 0x01000000 for the dump-capture kernel.
143
144 On x86 and x86_64, use "crashkernel=64M@16M".
145 142
146 On ppc64, use "crashkernel=128M@32M". 1431) Enable "kernel crash dumps" support under "Processor type and
144 features":
147 145
146 CONFIG_CRASH_DUMP=y
148 147
149The dump-capture kernel 1482) Enable "/proc/vmcore support" under "Filesystems" -> "Pseudo filesystems".
150-----------------------
151 149
1521) Under "General setup," append "-kdump" to the current string in 150 CONFIG_PROC_VMCORE=y
153 "Local version." 151 (CONFIG_PROC_VMCORE is set by default when CONFIG_CRASH_DUMP is selected.)
154 152
1552) On x86, enable high memory support under "Processor type and 153Dump-capture kernel config options (Arch Dependent, i386)
154--------------------------------------------------------
1551) On x86, enable high memory support under "Processor type and
156 features": 156 features":
157 157
158 CONFIG_HIGHMEM64G=y 158 CONFIG_HIGHMEM64G=y
159 or 159 or
160 CONFIG_HIGHMEM4G 160 CONFIG_HIGHMEM4G
161 161
1623) On x86 and x86_64, disable symmetric multi-processing support 1622) On x86 and x86_64, disable symmetric multi-processing support
163 under "Processor type and features": 163 under "Processor type and features":
164 164
165 CONFIG_SMP=n 165 CONFIG_SMP=n
166
166 (If CONFIG_SMP=y, then specify maxcpus=1 on the kernel command line 167 (If CONFIG_SMP=y, then specify maxcpus=1 on the kernel command line
167 when loading the dump-capture kernel, see section "Load the Dump-capture 168 when loading the dump-capture kernel, see section "Load the Dump-capture
168 Kernel".) 169 Kernel".)
169 170
1704) On ppc64, disable NUMA support and enable EMBEDDED support: 1713) If one wants to build and use a relocatable kernel,
172 Enable "Build a relocatable kernel" support under "Processor type and
173 features"
171 174
172 CONFIG_NUMA=n 175 CONFIG_RELOCATABLE=y
173 CONFIG_EMBEDDED=y
174 CONFIG_EEH=N for the dump-capture kernel
175 176
1765) Enable "kernel crash dumps" support under "Processor type and 1774) Use a suitable value for "Physical address where the kernel is
177 features": 178 loaded" (under "Processor type and features"). This only appears when
179 "kernel crash dumps" is enabled. A suitable value depends upon
180 whether kernel is relocatable or not.
181
182 If you are using a relocatable kernel use CONFIG_PHYSICAL_START=0x100000
183 This will compile the kernel for physical address 1MB, but given the fact
184 kernel is relocatable, it can be run from any physical address hence
185 kexec boot loader will load it in memory region reserved for dump-capture
186 kernel.
187
188 Otherwise it should be the start of memory region reserved for
189 second kernel using boot parameter "crashkernel=Y@X". Here X is
190 start of memory region reserved for dump-capture kernel.
191 Generally X is 16MB (0x1000000). So you can set
192 CONFIG_PHYSICAL_START=0x1000000
193
1945) Make and install the kernel and its modules. DO NOT add this kernel
195 to the boot loader configuration files.
178 196
179 CONFIG_CRASH_DUMP=y 197Dump-capture kernel config options (Arch Dependent, x86_64)
198----------------------------------------------------------
1991) On x86 and x86_64, disable symmetric multi-processing support
200 under "Processor type and features":
201
202 CONFIG_SMP=n
203
204 (If CONFIG_SMP=y, then specify maxcpus=1 on the kernel command line
205 when loading the dump-capture kernel, see section "Load the Dump-capture
206 Kernel".)
180 207
1816) Use a suitable value for "Physical address where the kernel is 2082) Use a suitable value for "Physical address where the kernel is
182 loaded" (under "Processor type and features"). This only appears when 209 loaded" (under "Processor type and features"). This only appears when
183 "kernel crash dumps" is enabled. By default this value is 0x1000000 210 "kernel crash dumps" is enabled. By default this value is 0x1000000
184 (16MB). It should be the same as X in the "crashkernel=Y@X" boot 211 (16MB). It should be the same as X in the "crashkernel=Y@X" boot
185 parameter discussed above. 212 parameter.
186 213
187 On x86 and x86_64, use "CONFIG_PHYSICAL_START=0x1000000". 214 For x86_64, normally "CONFIG_PHYSICAL_START=0x1000000".
188 215
189 On ppc64 the value is automatically set at 32MB when 2163) Make and install the kernel and its modules. DO NOT add this kernel
190 CONFIG_CRASH_DUMP is set. 217 to the boot loader configuration files.
191
1926) Optionally enable "/proc/vmcore support" under "Filesystems" ->
193 "Pseudo filesystems".
194 218
195 CONFIG_PROC_VMCORE=y 219Dump-capture kernel config options (Arch Dependent, ppc64)
196 (CONFIG_PROC_VMCORE is set by default when CONFIG_CRASH_DUMP is selected.) 220----------------------------------------------------------
197 221
1987) Make and install the kernel and its modules. DO NOT add this kernel 222- Make and install the kernel and its modules. DO NOT add this kernel
199 to the boot loader configuration files. 223 to the boot loader configuration files.
200 224
225Dump-capture kernel config options (Arch Dependent, ia64)
226----------------------------------------------------------
227(To be filled)
228
229
230Boot into System Kernel
231=======================
232
2331) Make and install the kernel and its modules. Update the boot loader
234 (such as grub, yaboot, or lilo) configuration files as necessary.
235
2362) Boot the system kernel with the boot parameter "crashkernel=Y@X",
237 where Y specifies how much memory to reserve for the dump-capture kernel
238 and X specifies the beginning of this reserved memory. For example,
239 "crashkernel=64M@16M" tells the system kernel to reserve 64 MB of memory
240 starting at physical address 0x01000000 (16MB) for the dump-capture kernel.
241
242 On x86 and x86_64, use "crashkernel=64M@16M".
243
244 On ppc64, use "crashkernel=128M@32M".
201 245
202Load the Dump-capture Kernel 246Load the Dump-capture Kernel
203============================ 247============================
204 248
205After booting to the system kernel, load the dump-capture kernel using 249After booting to the system kernel, dump-capture kernel needs to be
206the following command: 250loaded.
251
252Based on the architecture and type of image (relocatable or not), one
253can choose to load the uncompressed vmlinux or compressed bzImage/vmlinuz
254of dump-capture kernel. Following is the summary.
255
256For i386:
257 - Use vmlinux if kernel is not relocatable.
258 - Use bzImage/vmlinuz if kernel is relocatable.
259For x86_64:
260 - Use vmlinux
261For ppc64:
262 - Use vmlinux
263For ia64:
264 (To be filled)
265
266If you are using a uncompressed vmlinux image then use following command
267to load dump-capture kernel.
207 268
208 kexec -p <dump-capture-kernel> \ 269 kexec -p <dump-capture-kernel-vmlinux-image> \
209 --initrd=<initrd-for-dump-capture-kernel> --args-linux \ 270 --initrd=<initrd-for-dump-capture-kernel> --args-linux \
210 --append="root=<root-dev> init 1 irqpoll" 271 --append="root=<root-dev> <arch-specific-options>"
211 272
273If you are using a compressed bzImage/vmlinuz, then use following command
274to load dump-capture kernel.
212 275
213Notes on loading the dump-capture kernel: 276 kexec -p <dump-capture-kernel-bzImage> \
277 --initrd=<initrd-for-dump-capture-kernel> \
278 --append="root=<root-dev> <arch-specific-options>"
279
280Following are the arch specific command line options to be used while
281loading dump-capture kernel.
282
283For i386 and x86_64:
284 "init 1 irqpoll maxcpus=1"
285
286For ppc64:
287 "init 1 maxcpus=1 noirqdistrib"
214 288
215* <dump-capture-kernel> must be a vmlinux image (that is, an 289For IA64
216 uncompressed ELF image). bzImage does not work at this time. 290 (To be filled)
291
292
293Notes on loading the dump-capture kernel:
217 294
218* By default, the ELF headers are stored in ELF64 format to support 295* By default, the ELF headers are stored in ELF64 format to support
219 systems with more than 4GB memory. The --elf32-core-headers option can 296 systems with more than 4GB memory. The --elf32-core-headers option can
@@ -231,6 +308,9 @@ Notes on loading the dump-capture kernel:
231* "init 1" boots the dump-capture kernel into single-user mode without 308* "init 1" boots the dump-capture kernel into single-user mode without
232 networking. If you want networking, use "init 3." 309 networking. If you want networking, use "init 3."
233 310
311* We generally don' have to bring up a SMP kernel just to capture the
312 dump. Hence generally it is useful either to build a UP dump-capture
313 kernel or specify maxcpus=1 option while loading dump-capture kernel.
234 314
235Kernel Panic 315Kernel Panic
236============ 316============
diff --git a/Documentation/powerpc/mpc52xx-device-tree-bindings.txt b/Documentation/powerpc/mpc52xx-device-tree-bindings.txt
index d077d764f82b..69f016f02bb0 100644
--- a/Documentation/powerpc/mpc52xx-device-tree-bindings.txt
+++ b/Documentation/powerpc/mpc52xx-device-tree-bindings.txt
@@ -4,6 +4,12 @@ MPC52xx Device Tree Bindings
4(c) 2006 Secret Lab Technologies Ltd 4(c) 2006 Secret Lab Technologies Ltd
5Grant Likely <grant.likely at secretlab.ca> 5Grant Likely <grant.likely at secretlab.ca>
6 6
7********** DRAFT ***********
8* WARNING: Do not depend on the stability of these bindings just yet.
9* The MPC5200 device tree conventions are still in flux
10* Keep an eye on the linuxppc-dev mailing list for more details
11********** DRAFT ***********
12
7I - Introduction 13I - Introduction
8================ 14================
9Boards supported by the arch/powerpc architecture require device tree be 15Boards supported by the arch/powerpc architecture require device tree be
@@ -157,8 +163,8 @@ rtc@<addr> rtc *-rtc Real time clock
157mscan@<addr> mscan *-mscan CAN bus controller 163mscan@<addr> mscan *-mscan CAN bus controller
158pci@<addr> pci *-pci PCI bridge 164pci@<addr> pci *-pci PCI bridge
159serial@<addr> serial *-psc-uart PSC in serial mode 165serial@<addr> serial *-psc-uart PSC in serial mode
160i2s@<addr> i2s *-psc-i2s PSC in i2s mode 166i2s@<addr> sound *-psc-i2s PSC in i2s mode
161ac97@<addr> ac97 *-psc-ac97 PSC in ac97 mode 167ac97@<addr> sound *-psc-ac97 PSC in ac97 mode
162spi@<addr> spi *-psc-spi PSC in spi mode 168spi@<addr> spi *-psc-spi PSC in spi mode
163irda@<addr> irda *-psc-irda PSC in IrDA mode 169irda@<addr> irda *-psc-irda PSC in IrDA mode
164spi@<addr> spi *-spi MPC52xx spi device 170spi@<addr> spi *-spi MPC52xx spi device
diff --git a/Documentation/usb/acm.txt b/Documentation/usb/acm.txt
index 737d6104c3f3..17f5c2e1a570 100644
--- a/Documentation/usb/acm.txt
+++ b/Documentation/usb/acm.txt
@@ -46,6 +46,10 @@ Abstract Control Model (USB CDC ACM) specification.
46 46
47 3Com USR ISDN Pro TA 47 3Com USR ISDN Pro TA
48 48
49 Some cell phones also connect via USB. I know the following phones work:
50
51 SonyEricsson K800i
52
49 Unfortunately many modems and most ISDN TAs use proprietary interfaces and 53 Unfortunately many modems and most ISDN TAs use proprietary interfaces and
50thus won't work with this drivers. Check for ACM compliance before buying. 54thus won't work with this drivers. Check for ACM compliance before buying.
51 55
diff --git a/Documentation/x86_64/boot-options.txt b/Documentation/x86_64/boot-options.txt
index dbdcaf68e3ea..5c86ed6f0448 100644
--- a/Documentation/x86_64/boot-options.txt
+++ b/Documentation/x86_64/boot-options.txt
@@ -52,6 +52,10 @@ APICs
52 apicmaintimer. Useful when your PIT timer is totally 52 apicmaintimer. Useful when your PIT timer is totally
53 broken. 53 broken.
54 54
55 disable_8254_timer / enable_8254_timer
56 Enable interrupt 0 timer routing over the 8254 in addition to over
57 the IO-APIC. The kernel tries to set a sensible default.
58
55Early Console 59Early Console
56 60
57 syntax: earlyprintk=vga 61 syntax: earlyprintk=vga