You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge remote-tracking branch 'airlied/drm-prime-vmap' into drm-intel-next-queued
We need the latest dma-buf code from Dave Airlie so that we can pimp the backing storage handling code in drm/i915 with Chris Wilson's unbound tracking and stolen mem backed gem object code. Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
@@ -3814,8 +3814,8 @@ D: INFO-SHEET, former maintainer
|
|||||||
D: Author of the longest-living linux bug
|
D: Author of the longest-living linux bug
|
||||||
|
|
||||||
N: Jonathan Woithe
|
N: Jonathan Woithe
|
||||||
E: jwoithe@physics.adelaide.edu.au
|
E: jwoithe@just42.net
|
||||||
W: http://www.physics.adelaide.edu.au/~jwoithe
|
W: http:/www.just42.net/jwoithe
|
||||||
D: ALS-007 sound card extensions to Sound Blaster driver
|
D: ALS-007 sound card extensions to Sound Blaster driver
|
||||||
S: 20 Jordan St
|
S: 20 Jordan St
|
||||||
S: Valley View, SA 5093
|
S: Valley View, SA 5093
|
||||||
|
|||||||
@@ -218,8 +218,6 @@ m68k/
|
|||||||
- directory with info about Linux on Motorola 68k architecture.
|
- directory with info about Linux on Motorola 68k architecture.
|
||||||
magic-number.txt
|
magic-number.txt
|
||||||
- list of magic numbers used to mark/protect kernel data structures.
|
- list of magic numbers used to mark/protect kernel data structures.
|
||||||
mca.txt
|
|
||||||
- info on supporting Micro Channel Architecture (e.g. PS/2) systems.
|
|
||||||
md.txt
|
md.txt
|
||||||
- info on boot arguments for the multiple devices driver.
|
- info on boot arguments for the multiple devices driver.
|
||||||
memory-barriers.txt
|
memory-barriers.txt
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
What: ip_queue
|
||||||
|
Date: finally removed in kernel v3.5.0
|
||||||
|
Contact: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||||
|
Description:
|
||||||
|
ip_queue has been replaced by nfnetlink_queue which provides
|
||||||
|
more advanced queueing mechanism to user-space. The ip_queue
|
||||||
|
module was already announced to become obsolete years ago.
|
||||||
|
|
||||||
|
Users:
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
What: /sys/kernel/debug/nx-crypto/*
|
||||||
|
Date: March 2012
|
||||||
|
KernelVersion: 3.4
|
||||||
|
Contact: Kent Yoder <key@linux.vnet.ibm.com>
|
||||||
|
Description:
|
||||||
|
|
||||||
|
These debugfs interfaces are built by the nx-crypto driver, built in
|
||||||
|
arch/powerpc/crypto/nx.
|
||||||
|
|
||||||
|
Error Detection
|
||||||
|
===============
|
||||||
|
|
||||||
|
errors:
|
||||||
|
- A u32 providing a total count of errors since the driver was loaded. The
|
||||||
|
only errors counted here are those returned from the hcall, H_COP_OP.
|
||||||
|
|
||||||
|
last_error:
|
||||||
|
- The most recent non-zero return code from the H_COP_OP hcall. -EBUSY is not
|
||||||
|
recorded here (the hcall will retry until -EBUSY goes away).
|
||||||
|
|
||||||
|
last_error_pid:
|
||||||
|
- The process ID of the process who received the most recent error from the
|
||||||
|
hcall.
|
||||||
|
|
||||||
|
Device Use
|
||||||
|
==========
|
||||||
|
|
||||||
|
aes_bytes:
|
||||||
|
- The total number of bytes encrypted using AES in any of the driver's
|
||||||
|
supported modes.
|
||||||
|
|
||||||
|
aes_ops:
|
||||||
|
- The total number of AES operations submitted to the hardware.
|
||||||
|
|
||||||
|
sha256_bytes:
|
||||||
|
- The total number of bytes hashed by the hardware using SHA-256.
|
||||||
|
|
||||||
|
sha256_ops:
|
||||||
|
- The total number of SHA-256 operations submitted to the hardware.
|
||||||
|
|
||||||
|
sha512_bytes:
|
||||||
|
- The total number of bytes hashed by the hardware using SHA-512.
|
||||||
|
|
||||||
|
sha512_ops:
|
||||||
|
- The total number of SHA-512 operations submitted to the hardware.
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
What: /dev/kmsg
|
||||||
|
Date: Mai 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Kay Sievers <kay@vrfy.org>
|
||||||
|
Description: The /dev/kmsg character device node provides userspace access
|
||||||
|
to the kernel's printk buffer.
|
||||||
|
|
||||||
|
Injecting messages:
|
||||||
|
Every write() to the opened device node places a log entry in
|
||||||
|
the kernel's printk buffer.
|
||||||
|
|
||||||
|
The logged line can be prefixed with a <N> syslog prefix, which
|
||||||
|
carries the syslog priority and facility. The single decimal
|
||||||
|
prefix number is composed of the 3 lowest bits being the syslog
|
||||||
|
priority and the higher bits the syslog facility number.
|
||||||
|
|
||||||
|
If no prefix is given, the priority number is the default kernel
|
||||||
|
log priority and the facility number is set to LOG_USER (1). It
|
||||||
|
is not possible to inject messages from userspace with the
|
||||||
|
facility number LOG_KERN (0), to make sure that the origin of
|
||||||
|
the messages can always be reliably determined.
|
||||||
|
|
||||||
|
Accessing the buffer:
|
||||||
|
Every read() from the opened device node receives one record
|
||||||
|
of the kernel's printk buffer.
|
||||||
|
|
||||||
|
The first read() directly following an open() always returns
|
||||||
|
first message in the buffer; there is no kernel-internal
|
||||||
|
persistent state; many readers can concurrently open the device
|
||||||
|
and read from it, without affecting other readers.
|
||||||
|
|
||||||
|
Every read() will receive the next available record. If no more
|
||||||
|
records are available read() will block, or if O_NONBLOCK is
|
||||||
|
used -EAGAIN returned.
|
||||||
|
|
||||||
|
Messages in the record ring buffer get overwritten as whole,
|
||||||
|
there are never partial messages received by read().
|
||||||
|
|
||||||
|
In case messages get overwritten in the circular buffer while
|
||||||
|
the device is kept open, the next read() will return -EPIPE,
|
||||||
|
and the seek position be updated to the next available record.
|
||||||
|
Subsequent reads() will return available records again.
|
||||||
|
|
||||||
|
Unlike the classic syslog() interface, the 64 bit record
|
||||||
|
sequence numbers allow to calculate the amount of lost
|
||||||
|
messages, in case the buffer gets overwritten. And they allow
|
||||||
|
to reconnect to the buffer and reconstruct the read position
|
||||||
|
if needed, without limiting the interface to a single reader.
|
||||||
|
|
||||||
|
The device supports seek with the following parameters:
|
||||||
|
SEEK_SET, 0
|
||||||
|
seek to the first entry in the buffer
|
||||||
|
SEEK_END, 0
|
||||||
|
seek after the last entry in the buffer
|
||||||
|
SEEK_DATA, 0
|
||||||
|
seek after the last record available at the time
|
||||||
|
the last SYSLOG_ACTION_CLEAR was issued.
|
||||||
|
|
||||||
|
The output format consists of a prefix carrying the syslog
|
||||||
|
prefix including priority and facility, the 64 bit message
|
||||||
|
sequence number and the monotonic timestamp in microseconds.
|
||||||
|
The values are separated by a ','. Future extensions might
|
||||||
|
add more comma separated values before the terminating ';'.
|
||||||
|
Unknown values should be gracefully ignored.
|
||||||
|
|
||||||
|
The human readable text string starts directly after the ';'
|
||||||
|
and is terminated by a '\n'. Untrusted values derived from
|
||||||
|
hardware or other facilities are printed, therefore
|
||||||
|
all non-printable characters in the log message are escaped
|
||||||
|
by "\x00" C-style hex encoding.
|
||||||
|
|
||||||
|
A line starting with ' ', is a continuation line, adding
|
||||||
|
key/value pairs to the log message, which provide the machine
|
||||||
|
readable context of the message, for reliable processing in
|
||||||
|
userspace.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
7,160,424069;pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
|
||||||
|
SUBSYSTEM=acpi
|
||||||
|
DEVICE=+acpi:PNP0A03:00
|
||||||
|
6,339,5140900;NET: Registered protocol family 10
|
||||||
|
30,340,5690716;udevd[80]: starting version 181
|
||||||
|
|
||||||
|
The DEVICE= key uniquely identifies devices the following way:
|
||||||
|
b12:8 - block dev_t
|
||||||
|
c127:3 - char dev_t
|
||||||
|
n8 - netdev ifindex
|
||||||
|
+sound:card0 - subsystem:devname
|
||||||
|
|
||||||
|
Users: dmesg(1), userspace kernel log consumers
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
What: /sys/bus/i2c/devices/.../output_hvled[n]
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Set the controlling backlight device for high-voltage current
|
||||||
|
sink HVLED[n] (n = 1, 2) (0, 1).
|
||||||
|
|
||||||
|
What: /sys/bus/i2c/devices/.../output_lvled[n]
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Set the controlling led device for low-voltage current sink
|
||||||
|
LVLED[n] (n = 1..5) (0..3).
|
||||||
+24
-28
@@ -108,7 +108,7 @@ Description:
|
|||||||
physically equivalent inputs when non differential readings are
|
physically equivalent inputs when non differential readings are
|
||||||
separately available. In differential only parts, then all that
|
separately available. In differential only parts, then all that
|
||||||
is required is a consistent labeling. Units after application
|
is required is a consistent labeling. Units after application
|
||||||
of scale and offset are nanofarads..
|
of scale and offset are nanofarads.
|
||||||
|
|
||||||
What: /sys/bus/iio/devices/iio:deviceX/in_temp_raw
|
What: /sys/bus/iio/devices/iio:deviceX/in_temp_raw
|
||||||
What: /sys/bus/iio/devices/iio:deviceX/in_tempX_raw
|
What: /sys/bus/iio/devices/iio:deviceX/in_tempX_raw
|
||||||
@@ -119,7 +119,7 @@ KernelVersion: 2.6.35
|
|||||||
Contact: linux-iio@vger.kernel.org
|
Contact: linux-iio@vger.kernel.org
|
||||||
Description:
|
Description:
|
||||||
Raw (unscaled no bias removal etc) temperature measurement.
|
Raw (unscaled no bias removal etc) temperature measurement.
|
||||||
It an axis is specified it generally means that the temperature
|
If an axis is specified it generally means that the temperature
|
||||||
sensor is associated with one part of a compound device (e.g.
|
sensor is associated with one part of a compound device (e.g.
|
||||||
a gyroscope axis). Units after application of scale and offset
|
a gyroscope axis). Units after application of scale and offset
|
||||||
are milli degrees Celsuis.
|
are milli degrees Celsuis.
|
||||||
@@ -232,7 +232,7 @@ Description:
|
|||||||
If known for a device, scale to be applied to <type>Y[_name]_raw
|
If known for a device, scale to be applied to <type>Y[_name]_raw
|
||||||
post addition of <type>[Y][_name]_offset in order to obtain the
|
post addition of <type>[Y][_name]_offset in order to obtain the
|
||||||
measured value in <type> units as specified in
|
measured value in <type> units as specified in
|
||||||
<type>[Y][_name]_raw documentation.. If shared across all in
|
<type>[Y][_name]_raw documentation. If shared across all in
|
||||||
channels then Y and <x|y|z> are not present and the value is
|
channels then Y and <x|y|z> are not present and the value is
|
||||||
called <type>[Y][_name]_scale. The peak modifier means this
|
called <type>[Y][_name]_scale. The peak modifier means this
|
||||||
value is applied to <type>Y[_name]_peak_raw values.
|
value is applied to <type>Y[_name]_peak_raw values.
|
||||||
@@ -243,6 +243,8 @@ What: /sys/bus/iio/devices/iio:deviceX/in_accel_z_calibbias
|
|||||||
What: /sys/bus/iio/devices/iio:deviceX/in_anglvel_x_calibbias
|
What: /sys/bus/iio/devices/iio:deviceX/in_anglvel_x_calibbias
|
||||||
What: /sys/bus/iio/devices/iio:deviceX/in_anglvel_y_calibbias
|
What: /sys/bus/iio/devices/iio:deviceX/in_anglvel_y_calibbias
|
||||||
What: /sys/bus/iio/devices/iio:deviceX/in_anglvel_z_calibbias
|
What: /sys/bus/iio/devices/iio:deviceX/in_anglvel_z_calibbias
|
||||||
|
What: /sys/bus/iio/devices/iio:deviceX/in_illuminance0_calibbias
|
||||||
|
What: /sys/bus/iio/devices/iio:deviceX/in_proximity0_calibbias
|
||||||
KernelVersion: 2.6.35
|
KernelVersion: 2.6.35
|
||||||
Contact: linux-iio@vger.kernel.org
|
Contact: linux-iio@vger.kernel.org
|
||||||
Description:
|
Description:
|
||||||
@@ -258,6 +260,8 @@ What /sys/bus/iio/devices/iio:deviceX/in_accel_z_calibscale
|
|||||||
What /sys/bus/iio/devices/iio:deviceX/in_anglvel_x_calibscale
|
What /sys/bus/iio/devices/iio:deviceX/in_anglvel_x_calibscale
|
||||||
What /sys/bus/iio/devices/iio:deviceX/in_anglvel_y_calibscale
|
What /sys/bus/iio/devices/iio:deviceX/in_anglvel_y_calibscale
|
||||||
What /sys/bus/iio/devices/iio:deviceX/in_anglvel_z_calibscale
|
What /sys/bus/iio/devices/iio:deviceX/in_anglvel_z_calibscale
|
||||||
|
what /sys/bus/iio/devices/iio:deviceX/in_illuminance0_calibscale
|
||||||
|
what /sys/bus/iio/devices/iio:deviceX/in_proximity0_calibscale
|
||||||
KernelVersion: 2.6.35
|
KernelVersion: 2.6.35
|
||||||
Contact: linux-iio@vger.kernel.org
|
Contact: linux-iio@vger.kernel.org
|
||||||
Description:
|
Description:
|
||||||
@@ -276,6 +280,13 @@ Description:
|
|||||||
If a discrete set of scale values are available, they
|
If a discrete set of scale values are available, they
|
||||||
are listed in this attribute.
|
are listed in this attribute.
|
||||||
|
|
||||||
|
What /sys/bus/iio/devices/iio:deviceX/out_voltageY_hardwaregain
|
||||||
|
KernelVersion: 2.6.35
|
||||||
|
Contact: linux-iio@vger.kernel.org
|
||||||
|
Description:
|
||||||
|
Hardware applied gain factor. If shared across all channels,
|
||||||
|
<type>_hardwaregain is used.
|
||||||
|
|
||||||
What: /sys/.../in_accel_filter_low_pass_3db_frequency
|
What: /sys/.../in_accel_filter_low_pass_3db_frequency
|
||||||
What: /sys/.../in_magn_filter_low_pass_3db_frequency
|
What: /sys/.../in_magn_filter_low_pass_3db_frequency
|
||||||
What: /sys/.../in_anglvel_filter_low_pass_3db_frequency
|
What: /sys/.../in_anglvel_filter_low_pass_3db_frequency
|
||||||
@@ -453,10 +464,14 @@ What: /sys/.../events/in_magn_z_raw_thresh_rising_value
|
|||||||
What: /sys/.../events/in_magn_z_raw_thresh_falling_value
|
What: /sys/.../events/in_magn_z_raw_thresh_falling_value
|
||||||
What: /sys/.../events/in_voltageY_supply_raw_thresh_rising_value
|
What: /sys/.../events/in_voltageY_supply_raw_thresh_rising_value
|
||||||
What: /sys/.../events/in_voltageY_supply_raw_thresh_falling_value
|
What: /sys/.../events/in_voltageY_supply_raw_thresh_falling_value
|
||||||
|
What: /sys/.../events/in_voltageY_raw_thresh_rising_value
|
||||||
What: /sys/.../events/in_voltageY_raw_thresh_falling_value
|
What: /sys/.../events/in_voltageY_raw_thresh_falling_value
|
||||||
What: /sys/.../events/in_voltageY_raw_thresh_falling_value
|
What: /sys/.../events/in_tempY_raw_thresh_rising_value
|
||||||
What: /sys/.../events/in_tempY_raw_thresh_falling_value
|
|
||||||
What: /sys/.../events/in_tempY_raw_thresh_falling_value
|
What: /sys/.../events/in_tempY_raw_thresh_falling_value
|
||||||
|
What: /sys/.../events/in_illuminance0_thresh_falling_value
|
||||||
|
what: /sys/.../events/in_illuminance0_thresh_rising_value
|
||||||
|
what: /sys/.../events/in_proximity0_thresh_falling_value
|
||||||
|
what: /sys/.../events/in_proximity0_thresh_rising_value
|
||||||
KernelVersion: 2.6.37
|
KernelVersion: 2.6.37
|
||||||
Contact: linux-iio@vger.kernel.org
|
Contact: linux-iio@vger.kernel.org
|
||||||
Description:
|
Description:
|
||||||
@@ -490,9 +505,9 @@ What: /sys/.../events/in_magn_z_raw_roc_rising_value
|
|||||||
What: /sys/.../events/in_magn_z_raw_roc_falling_value
|
What: /sys/.../events/in_magn_z_raw_roc_falling_value
|
||||||
What: /sys/.../events/in_voltageY_supply_raw_roc_rising_value
|
What: /sys/.../events/in_voltageY_supply_raw_roc_rising_value
|
||||||
What: /sys/.../events/in_voltageY_supply_raw_roc_falling_value
|
What: /sys/.../events/in_voltageY_supply_raw_roc_falling_value
|
||||||
|
What: /sys/.../events/in_voltageY_raw_roc_rising_value
|
||||||
What: /sys/.../events/in_voltageY_raw_roc_falling_value
|
What: /sys/.../events/in_voltageY_raw_roc_falling_value
|
||||||
What: /sys/.../events/in_voltageY_raw_roc_falling_value
|
What: /sys/.../events/in_tempY_raw_roc_rising_value
|
||||||
What: /sys/.../events/in_tempY_raw_roc_falling_value
|
|
||||||
What: /sys/.../events/in_tempY_raw_roc_falling_value
|
What: /sys/.../events/in_tempY_raw_roc_falling_value
|
||||||
KernelVersion: 2.6.37
|
KernelVersion: 2.6.37
|
||||||
Contact: linux-iio@vger.kernel.org
|
Contact: linux-iio@vger.kernel.org
|
||||||
@@ -556,6 +571,8 @@ What: /sys/.../events/in_tempY_thresh_falling_period
|
|||||||
What: /sys/.../events/in_tempY_roc_rising_period
|
What: /sys/.../events/in_tempY_roc_rising_period
|
||||||
What: /sys/.../events/in_tempY_roc_falling_period
|
What: /sys/.../events/in_tempY_roc_falling_period
|
||||||
What: /sys/.../events/in_accel_x&y&z_mag_falling_period
|
What: /sys/.../events/in_accel_x&y&z_mag_falling_period
|
||||||
|
What: /sys/.../events/in_intensity0_thresh_period
|
||||||
|
What: /sys/.../events/in_proximity0_thresh_period
|
||||||
KernelVersion: 2.6.37
|
KernelVersion: 2.6.37
|
||||||
Contact: linux-iio@vger.kernel.org
|
Contact: linux-iio@vger.kernel.org
|
||||||
Description:
|
Description:
|
||||||
@@ -718,24 +735,3 @@ Contact: linux-iio@vger.kernel.org
|
|||||||
Description:
|
Description:
|
||||||
This attribute is used to read the amount of quadrature error
|
This attribute is used to read the amount of quadrature error
|
||||||
present in the device at a given time.
|
present in the device at a given time.
|
||||||
|
|
||||||
What: /sys/.../iio:deviceX/ac_excitation_en
|
|
||||||
KernelVersion: 3.1.0
|
|
||||||
Contact: linux-iio@vger.kernel.org
|
|
||||||
Description:
|
|
||||||
This attribute, if available, is used to enable the AC
|
|
||||||
excitation mode found on some converters. In ac excitation mode,
|
|
||||||
the polarity of the excitation voltage is reversed on
|
|
||||||
alternate cycles, to eliminate DC errors.
|
|
||||||
|
|
||||||
What: /sys/.../iio:deviceX/bridge_switch_en
|
|
||||||
KernelVersion: 3.1.0
|
|
||||||
Contact: linux-iio@vger.kernel.org
|
|
||||||
Description:
|
|
||||||
This attribute, if available, is used to close or open the
|
|
||||||
bridge power down switch found on some converters.
|
|
||||||
In bridge applications, such as strain gauges and load cells,
|
|
||||||
the bridge itself consumes the majority of the current in the
|
|
||||||
system. To minimize the current consumption of the system,
|
|
||||||
the bridge can be disconnected (when it is not being used
|
|
||||||
using the bridge_switch_en attribute.
|
|
||||||
@@ -65,11 +65,11 @@ snap_*
|
|||||||
Entries under /sys/bus/rbd/devices/<dev-id>/snap_<snap-name>
|
Entries under /sys/bus/rbd/devices/<dev-id>/snap_<snap-name>
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
|
|
||||||
id
|
snap_id
|
||||||
|
|
||||||
The rados internal snapshot id assigned for this snapshot
|
The rados internal snapshot id assigned for this snapshot
|
||||||
|
|
||||||
size
|
snap_size
|
||||||
|
|
||||||
The size of the image when this snapshot was taken.
|
The size of the image when this snapshot was taken.
|
||||||
|
|
||||||
|
|||||||
@@ -135,6 +135,17 @@ Description:
|
|||||||
for the device and attempt to bind to it. For example:
|
for the device and attempt to bind to it. For example:
|
||||||
# echo "8086 10f5" > /sys/bus/usb/drivers/foo/new_id
|
# echo "8086 10f5" > /sys/bus/usb/drivers/foo/new_id
|
||||||
|
|
||||||
|
Reading from this file will list all dynamically added
|
||||||
|
device IDs in the same format, with one entry per
|
||||||
|
line. For example:
|
||||||
|
# cat /sys/bus/usb/drivers/foo/new_id
|
||||||
|
8086 10f5
|
||||||
|
dead beef 06
|
||||||
|
f00d cafe
|
||||||
|
|
||||||
|
The list will be truncated at PAGE_SIZE bytes due to
|
||||||
|
sysfs restrictions.
|
||||||
|
|
||||||
What: /sys/bus/usb-serial/drivers/.../new_id
|
What: /sys/bus/usb-serial/drivers/.../new_id
|
||||||
Date: October 2011
|
Date: October 2011
|
||||||
Contact: linux-usb@vger.kernel.org
|
Contact: linux-usb@vger.kernel.org
|
||||||
@@ -157,6 +168,10 @@ Description:
|
|||||||
match the driver to the device. For example:
|
match the driver to the device. For example:
|
||||||
# echo "046d c315" > /sys/bus/usb/drivers/foo/remove_id
|
# echo "046d c315" > /sys/bus/usb/drivers/foo/remove_id
|
||||||
|
|
||||||
|
Reading from this file will list the dynamically added
|
||||||
|
device IDs, exactly like reading from the entry
|
||||||
|
"/sys/bus/usb/drivers/.../new_id"
|
||||||
|
|
||||||
What: /sys/bus/usb/device/.../avoid_reset_quirk
|
What: /sys/bus/usb/device/.../avoid_reset_quirk
|
||||||
Date: December 2009
|
Date: December 2009
|
||||||
Contact: Oliver Neukum <oliver@neukum.org>
|
Contact: Oliver Neukum <oliver@neukum.org>
|
||||||
@@ -189,7 +204,7 @@ Contact: Matthew Garrett <mjg@redhat.com>
|
|||||||
Description:
|
Description:
|
||||||
Some information about whether a given USB device is
|
Some information about whether a given USB device is
|
||||||
physically fixed to the platform can be inferred from a
|
physically fixed to the platform can be inferred from a
|
||||||
combination of hub decriptor bits and platform-specific data
|
combination of hub descriptor bits and platform-specific data
|
||||||
such as ACPI. This file will read either "removable" or
|
such as ACPI. This file will read either "removable" or
|
||||||
"fixed" if the information is available, and "unknown"
|
"fixed" if the information is available, and "unknown"
|
||||||
otherwise.
|
otherwise.
|
||||||
|
|||||||
@@ -0,0 +1,48 @@
|
|||||||
|
What: /sys/class/backlight/<backlight>/als_channel
|
||||||
|
Date: May 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Get the ALS output channel used as input in
|
||||||
|
ALS-current-control mode (0, 1), where
|
||||||
|
|
||||||
|
0 - out_current0 (backlight 0)
|
||||||
|
1 - out_current1 (backlight 1)
|
||||||
|
|
||||||
|
What: /sys/class/backlight/<backlight>/als_en
|
||||||
|
Date: May 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Enable ALS-current-control mode (0, 1).
|
||||||
|
|
||||||
|
What: /sys/class/backlight/<backlight>/id
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Get the id of this backlight (0, 1).
|
||||||
|
|
||||||
|
What: /sys/class/backlight/<backlight>/linear
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Set the brightness-mapping mode (0, 1), where
|
||||||
|
|
||||||
|
0 - exponential mode
|
||||||
|
1 - linear mode
|
||||||
|
|
||||||
|
What: /sys/class/backlight/<backlight>/pwm
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Set the PWM-input control mask (5 bits), where
|
||||||
|
|
||||||
|
bit 5 - PWM-input enabled in Zone 4
|
||||||
|
bit 4 - PWM-input enabled in Zone 3
|
||||||
|
bit 3 - PWM-input enabled in Zone 2
|
||||||
|
bit 2 - PWM-input enabled in Zone 1
|
||||||
|
bit 1 - PWM-input enabled in Zone 0
|
||||||
|
bit 0 - PWM-input enabled
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
What: /sys/class/extcon/.../
|
||||||
|
Date: February 2012
|
||||||
|
Contact: MyungJoo Ham <myungjoo.ham@samsung.com>
|
||||||
|
Description:
|
||||||
|
Provide a place in sysfs for the extcon objects.
|
||||||
|
This allows accessing extcon specific variables.
|
||||||
|
The name of extcon object denoted as ... is the name given
|
||||||
|
with extcon_dev_register.
|
||||||
|
|
||||||
|
One extcon device denotes a single external connector
|
||||||
|
port. An external connector may have multiple cables
|
||||||
|
attached simultaneously. Many of docks, cradles, and
|
||||||
|
accessory cables have such capability. For example,
|
||||||
|
the 30-pin port of Nuri board (/arch/arm/mach-exynos)
|
||||||
|
may have both HDMI and Charger attached, or analog audio,
|
||||||
|
video, and USB cables attached simulteneously.
|
||||||
|
|
||||||
|
If there are cables mutually exclusive with each other,
|
||||||
|
such binary relations may be expressed with extcon_dev's
|
||||||
|
mutually_exclusive array.
|
||||||
|
|
||||||
|
What: /sys/class/extcon/.../name
|
||||||
|
Date: February 2012
|
||||||
|
Contact: MyungJoo Ham <myungjoo.ham@samsung.com>
|
||||||
|
Description:
|
||||||
|
The /sys/class/extcon/.../name shows the name of the extcon
|
||||||
|
object. If the extcon object has an optional callback
|
||||||
|
"show_name" defined, the callback will provide the name with
|
||||||
|
this sysfs node.
|
||||||
|
|
||||||
|
What: /sys/class/extcon/.../state
|
||||||
|
Date: February 2012
|
||||||
|
Contact: MyungJoo Ham <myungjoo.ham@samsung.com>
|
||||||
|
Description:
|
||||||
|
The /sys/class/extcon/.../state shows and stores the cable
|
||||||
|
attach/detach information of the corresponding extcon object.
|
||||||
|
If the extcon object has an optional callback "show_state"
|
||||||
|
defined, the showing function is overriden with the optional
|
||||||
|
callback.
|
||||||
|
|
||||||
|
If the default callback for showing function is used, the
|
||||||
|
format is like this:
|
||||||
|
# cat state
|
||||||
|
USB_OTG=1
|
||||||
|
HDMI=0
|
||||||
|
TA=1
|
||||||
|
EAR_JACK=0
|
||||||
|
#
|
||||||
|
In this example, the extcon device have USB_OTG and TA
|
||||||
|
cables attached and HDMI and EAR_JACK cables detached.
|
||||||
|
|
||||||
|
In order to update the state of an extcon device, enter a hex
|
||||||
|
state number starting with 0x.
|
||||||
|
echo 0xHEX > state
|
||||||
|
|
||||||
|
This updates the whole state of the extcon dev.
|
||||||
|
Inputs of all the methods are required to meet the
|
||||||
|
mutually_exclusive contidions if they exist.
|
||||||
|
|
||||||
|
It is recommended to use this "global" state interface if
|
||||||
|
you need to enter the value atomically. The later state
|
||||||
|
interface associated with each cable cannot update
|
||||||
|
multiple cable states of an extcon device simultaneously.
|
||||||
|
|
||||||
|
What: /sys/class/extcon/.../cable.x/name
|
||||||
|
Date: February 2012
|
||||||
|
Contact: MyungJoo Ham <myungjoo.ham@samsung.com>
|
||||||
|
Description:
|
||||||
|
The /sys/class/extcon/.../cable.x/name shows the name of cable
|
||||||
|
"x" (integer between 0 and 31) of an extcon device.
|
||||||
|
|
||||||
|
What: /sys/class/extcon/.../cable.x/state
|
||||||
|
Date: February 2012
|
||||||
|
Contact: MyungJoo Ham <myungjoo.ham@samsung.com>
|
||||||
|
Description:
|
||||||
|
The /sys/class/extcon/.../cable.x/name shows and stores the
|
||||||
|
state of cable "x" (integer between 0 and 31) of an extcon
|
||||||
|
device. The state value is either 0 (detached) or 1
|
||||||
|
(attached).
|
||||||
|
|
||||||
|
What: /sys/class/extcon/.../mutually_exclusive/...
|
||||||
|
Date: December 2011
|
||||||
|
Contact: MyungJoo Ham <myungjoo.ham@samsung.com>
|
||||||
|
Description:
|
||||||
|
Shows the relations of mutually exclusiveness. For example,
|
||||||
|
if the mutually_exclusive array of extcon_dev is
|
||||||
|
{0x3, 0x5, 0xC, 0x0}, the, the output is:
|
||||||
|
# ls mutually_exclusive/
|
||||||
|
0x3
|
||||||
|
0x5
|
||||||
|
0xc
|
||||||
|
#
|
||||||
|
|
||||||
|
Note that mutually_exclusive is a sub-directory of the extcon
|
||||||
|
device and the file names under the mutually_exclusive
|
||||||
|
directory show the mutually-exclusive sets, not the contents
|
||||||
|
of the files.
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
What: /sys/class/leds/<led>/als_channel
|
||||||
|
Date: May 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Set the ALS output channel to use as input in
|
||||||
|
ALS-current-control mode (1, 2), where
|
||||||
|
|
||||||
|
1 - out_current1
|
||||||
|
2 - out_current2
|
||||||
|
|
||||||
|
What: /sys/class/leds/<led>/als_en
|
||||||
|
Date: May 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Enable ALS-current-control mode (0, 1).
|
||||||
|
|
||||||
|
What: /sys/class/leds/<led>/falltime
|
||||||
|
What: /sys/class/leds/<led>/risetime
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Set the pattern generator fall and rise times (0..7), where
|
||||||
|
|
||||||
|
0 - 2048 us
|
||||||
|
1 - 262 ms
|
||||||
|
2 - 524 ms
|
||||||
|
3 - 1.049 s
|
||||||
|
4 - 2.097 s
|
||||||
|
5 - 4.194 s
|
||||||
|
6 - 8.389 s
|
||||||
|
7 - 16.78 s
|
||||||
|
|
||||||
|
What: /sys/class/leds/<led>/id
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Get the id of this led (0..3).
|
||||||
|
|
||||||
|
What: /sys/class/leds/<led>/linear
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Set the brightness-mapping mode (0, 1), where
|
||||||
|
|
||||||
|
0 - exponential mode
|
||||||
|
1 - linear mode
|
||||||
|
|
||||||
|
What: /sys/class/leds/<led>/pwm
|
||||||
|
Date: April 2012
|
||||||
|
KernelVersion: 3.5
|
||||||
|
Contact: Johan Hovold <jhovold@gmail.com>
|
||||||
|
Description:
|
||||||
|
Set the PWM-input control mask (5 bits), where
|
||||||
|
|
||||||
|
bit 5 - PWM-input enabled in Zone 4
|
||||||
|
bit 4 - PWM-input enabled in Zone 3
|
||||||
|
bit 3 - PWM-input enabled in Zone 2
|
||||||
|
bit 2 - PWM-input enabled in Zone 1
|
||||||
|
bit 1 - PWM-input enabled in Zone 0
|
||||||
|
bit 0 - PWM-input enabled
|
||||||
@@ -14,6 +14,15 @@ Description:
|
|||||||
mesh will be sent using multiple interfaces at the
|
mesh will be sent using multiple interfaces at the
|
||||||
same time (if available).
|
same time (if available).
|
||||||
|
|
||||||
|
What: /sys/class/net/<mesh_iface>/mesh/bridge_loop_avoidance
|
||||||
|
Date: November 2011
|
||||||
|
Contact: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
|
||||||
|
Description:
|
||||||
|
Indicates whether the bridge loop avoidance feature
|
||||||
|
is enabled. This feature detects and avoids loops
|
||||||
|
between the mesh and devices bridged with the soft
|
||||||
|
interface <mesh_iface>.
|
||||||
|
|
||||||
What: /sys/class/net/<mesh_iface>/mesh/fragmentation
|
What: /sys/class/net/<mesh_iface>/mesh/fragmentation
|
||||||
Date: October 2010
|
Date: October 2010
|
||||||
Contact: Andreas Langer <an.langer@gmx.de>
|
Contact: Andreas Langer <an.langer@gmx.de>
|
||||||
|
|||||||
@@ -96,16 +96,26 @@ Description:
|
|||||||
is read-only. If the device is not enabled to wake up the
|
is read-only. If the device is not enabled to wake up the
|
||||||
system from sleep states, this attribute is not present.
|
system from sleep states, this attribute is not present.
|
||||||
|
|
||||||
What: /sys/devices/.../power/wakeup_hit_count
|
What: /sys/devices/.../power/wakeup_abort_count
|
||||||
Date: September 2010
|
Date: February 2012
|
||||||
Contact: Rafael J. Wysocki <rjw@sisk.pl>
|
Contact: Rafael J. Wysocki <rjw@sisk.pl>
|
||||||
Description:
|
Description:
|
||||||
The /sys/devices/.../wakeup_hit_count attribute contains the
|
The /sys/devices/.../wakeup_abort_count attribute contains the
|
||||||
number of times the processing of a wakeup event associated with
|
number of times the processing of a wakeup event associated with
|
||||||
the device might prevent the system from entering a sleep state.
|
the device might have aborted system transition into a sleep
|
||||||
This attribute is read-only. If the device is not enabled to
|
state in progress. This attribute is read-only. If the device
|
||||||
wake up the system from sleep states, this attribute is not
|
is not enabled to wake up the system from sleep states, this
|
||||||
present.
|
attribute is not present.
|
||||||
|
|
||||||
|
What: /sys/devices/.../power/wakeup_expire_count
|
||||||
|
Date: February 2012
|
||||||
|
Contact: Rafael J. Wysocki <rjw@sisk.pl>
|
||||||
|
Description:
|
||||||
|
The /sys/devices/.../wakeup_expire_count attribute contains the
|
||||||
|
number of times a wakeup event associated with the device has
|
||||||
|
been reported with a timeout that expired. This attribute is
|
||||||
|
read-only. If the device is not enabled to wake up the system
|
||||||
|
from sleep states, this attribute is not present.
|
||||||
|
|
||||||
What: /sys/devices/.../power/wakeup_active
|
What: /sys/devices/.../power/wakeup_active
|
||||||
Date: September 2010
|
Date: September 2010
|
||||||
@@ -148,6 +158,17 @@ Description:
|
|||||||
not enabled to wake up the system from sleep states, this
|
not enabled to wake up the system from sleep states, this
|
||||||
attribute is not present.
|
attribute is not present.
|
||||||
|
|
||||||
|
What: /sys/devices/.../power/wakeup_prevent_sleep_time_ms
|
||||||
|
Date: February 2012
|
||||||
|
Contact: Rafael J. Wysocki <rjw@sisk.pl>
|
||||||
|
Description:
|
||||||
|
The /sys/devices/.../wakeup_prevent_sleep_time_ms attribute
|
||||||
|
contains the total time the device has been preventing
|
||||||
|
opportunistic transitions to sleep states from occuring.
|
||||||
|
This attribute is read-only. If the device is not enabled to
|
||||||
|
wake up the system from sleep states, this attribute is not
|
||||||
|
present.
|
||||||
|
|
||||||
What: /sys/devices/.../power/autosuspend_delay_ms
|
What: /sys/devices/.../power/autosuspend_delay_ms
|
||||||
Date: September 2010
|
Date: September 2010
|
||||||
Contact: Alan Stern <stern@rowland.harvard.edu>
|
Contact: Alan Stern <stern@rowland.harvard.edu>
|
||||||
|
|||||||
@@ -9,31 +9,6 @@ Description:
|
|||||||
|
|
||||||
/sys/devices/system/cpu/cpu#/
|
/sys/devices/system/cpu/cpu#/
|
||||||
|
|
||||||
What: /sys/devices/system/cpu/sched_mc_power_savings
|
|
||||||
/sys/devices/system/cpu/sched_smt_power_savings
|
|
||||||
Date: June 2006
|
|
||||||
Contact: Linux kernel mailing list <linux-kernel@vger.kernel.org>
|
|
||||||
Description: Discover and adjust the kernel's multi-core scheduler support.
|
|
||||||
|
|
||||||
Possible values are:
|
|
||||||
|
|
||||||
0 - No power saving load balance (default value)
|
|
||||||
1 - Fill one thread/core/package first for long running threads
|
|
||||||
2 - Also bias task wakeups to semi-idle cpu package for power
|
|
||||||
savings
|
|
||||||
|
|
||||||
sched_mc_power_savings is dependent upon SCHED_MC, which is
|
|
||||||
itself architecture dependent.
|
|
||||||
|
|
||||||
sched_smt_power_savings is dependent upon SCHED_SMT, which
|
|
||||||
is itself architecture dependent.
|
|
||||||
|
|
||||||
The two files are independent of each other. It is possible
|
|
||||||
that one file may be present without the other.
|
|
||||||
|
|
||||||
Introduced by git commit 5c45bf27.
|
|
||||||
|
|
||||||
|
|
||||||
What: /sys/devices/system/cpu/kernel_max
|
What: /sys/devices/system/cpu/kernel_max
|
||||||
/sys/devices/system/cpu/offline
|
/sys/devices/system/cpu/offline
|
||||||
/sys/devices/system/cpu/online
|
/sys/devices/system/cpu/online
|
||||||
|
|||||||
@@ -9,15 +9,24 @@ Description:
|
|||||||
or 0 otherwise. Writing to this file one of these values
|
or 0 otherwise. Writing to this file one of these values
|
||||||
switches reporting speed.
|
switches reporting speed.
|
||||||
|
|
||||||
|
What: /sys/class/leds/0005\:056A\:00BD.0001\:selector\:*/
|
||||||
|
Date: May 2012
|
||||||
|
Kernel Version: 3.5
|
||||||
|
Contact: linux-bluetooth@vger.kernel.org
|
||||||
|
Description:
|
||||||
|
LED selector for Intuos4 WL. There are 4 leds, but only one LED
|
||||||
|
can be lit at a time. Max brightness is 127.
|
||||||
|
|
||||||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<cfg>.<intf>/wacom_led/led
|
What: /sys/bus/usb/devices/<busnum>-<devnum>:<cfg>.<intf>/wacom_led/led
|
||||||
Date: August 2011
|
Date: August 2011
|
||||||
Contact: linux-input@vger.kernel.org
|
Contact: linux-input@vger.kernel.org
|
||||||
Description:
|
Description:
|
||||||
Attribute group for control of the status LEDs and the OLEDs.
|
Attribute group for control of the status LEDs and the OLEDs.
|
||||||
This attribute group is only available for Intuos 4 M, L,
|
This attribute group is only available for Intuos 4 M, L,
|
||||||
and XL (with LEDs and OLEDs) and Cintiq 21UX2 and Cintiq 24HD
|
and XL (with LEDs and OLEDs), Intuos 5 (LEDs only), and Cintiq
|
||||||
(LEDs only). Therefore its presence implicitly signifies the
|
21UX2 and Cintiq 24HD (LEDs only). Therefore its presence
|
||||||
presence of said LEDs and OLEDs on the tablet device.
|
implicitly signifies the presence of said LEDs and OLEDs on the
|
||||||
|
tablet device.
|
||||||
|
|
||||||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<cfg>.<intf>/wacom_led/status0_luminance
|
What: /sys/bus/usb/devices/<busnum>-<devnum>:<cfg>.<intf>/wacom_led/status0_luminance
|
||||||
Date: August 2011
|
Date: August 2011
|
||||||
@@ -40,10 +49,10 @@ What: /sys/bus/usb/devices/<busnum>-<devnum>:<cfg>.<intf>/wacom_led/status_led0
|
|||||||
Date: August 2011
|
Date: August 2011
|
||||||
Contact: linux-input@vger.kernel.org
|
Contact: linux-input@vger.kernel.org
|
||||||
Description:
|
Description:
|
||||||
Writing to this file sets which one of the four (for Intuos 4)
|
Writing to this file sets which one of the four (for Intuos 4
|
||||||
or of the right four (for Cintiq 21UX2 and Cintiq 24HD) status
|
and Intuos 5) or of the right four (for Cintiq 21UX2 and Cintiq
|
||||||
LEDs is active (0..3). The other three LEDs on the same side are
|
24HD) status LEDs is active (0..3). The other three LEDs on the
|
||||||
always inactive.
|
same side are always inactive.
|
||||||
|
|
||||||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<cfg>.<intf>/wacom_led/status_led1_select
|
What: /sys/bus/usb/devices/<busnum>-<devnum>:<cfg>.<intf>/wacom_led/status_led1_select
|
||||||
Date: September 2011
|
Date: September 2011
|
||||||
|
|||||||
@@ -172,3 +172,62 @@ Description:
|
|||||||
|
|
||||||
Reading from this file will display the current value, which is
|
Reading from this file will display the current value, which is
|
||||||
set to 1 MB by default.
|
set to 1 MB by default.
|
||||||
|
|
||||||
|
What: /sys/power/autosleep
|
||||||
|
Date: April 2012
|
||||||
|
Contact: Rafael J. Wysocki <rjw@sisk.pl>
|
||||||
|
Description:
|
||||||
|
The /sys/power/autosleep file can be written one of the strings
|
||||||
|
returned by reads from /sys/power/state. If that happens, a
|
||||||
|
work item attempting to trigger a transition of the system to
|
||||||
|
the sleep state represented by that string is queued up. This
|
||||||
|
attempt will only succeed if there are no active wakeup sources
|
||||||
|
in the system at that time. After every execution, regardless
|
||||||
|
of whether or not the attempt to put the system to sleep has
|
||||||
|
succeeded, the work item requeues itself until user space
|
||||||
|
writes "off" to /sys/power/autosleep.
|
||||||
|
|
||||||
|
Reading from this file causes the last string successfully
|
||||||
|
written to it to be returned.
|
||||||
|
|
||||||
|
What: /sys/power/wake_lock
|
||||||
|
Date: February 2012
|
||||||
|
Contact: Rafael J. Wysocki <rjw@sisk.pl>
|
||||||
|
Description:
|
||||||
|
The /sys/power/wake_lock file allows user space to create
|
||||||
|
wakeup source objects and activate them on demand (if one of
|
||||||
|
those wakeup sources is active, reads from the
|
||||||
|
/sys/power/wakeup_count file block or return false). When a
|
||||||
|
string without white space is written to /sys/power/wake_lock,
|
||||||
|
it will be assumed to represent a wakeup source name. If there
|
||||||
|
is a wakeup source object with that name, it will be activated
|
||||||
|
(unless active already). Otherwise, a new wakeup source object
|
||||||
|
will be registered, assigned the given name and activated.
|
||||||
|
If a string written to /sys/power/wake_lock contains white
|
||||||
|
space, the part of the string preceding the white space will be
|
||||||
|
regarded as a wakeup source name and handled as descrived above.
|
||||||
|
The other part of the string will be regarded as a timeout (in
|
||||||
|
nanoseconds) such that the wakeup source will be automatically
|
||||||
|
deactivated after it has expired. The timeout, if present, is
|
||||||
|
set regardless of the current state of the wakeup source object
|
||||||
|
in question.
|
||||||
|
|
||||||
|
Reads from this file return a string consisting of the names of
|
||||||
|
wakeup sources created with the help of it that are active at
|
||||||
|
the moment, separated with spaces.
|
||||||
|
|
||||||
|
|
||||||
|
What: /sys/power/wake_unlock
|
||||||
|
Date: February 2012
|
||||||
|
Contact: Rafael J. Wysocki <rjw@sisk.pl>
|
||||||
|
Description:
|
||||||
|
The /sys/power/wake_unlock file allows user space to deactivate
|
||||||
|
wakeup sources created with the help of /sys/power/wake_lock.
|
||||||
|
When a string is written to /sys/power/wake_unlock, it will be
|
||||||
|
assumed to represent the name of a wakeup source to deactivate.
|
||||||
|
If a wakeup source object of that name exists and is active at
|
||||||
|
the moment, it will be deactivated.
|
||||||
|
|
||||||
|
Reads from this file return a string consisting of the names of
|
||||||
|
wakeup sources created with the help of /sys/power/wake_lock
|
||||||
|
that are inactive at the moment, separated with spaces.
|
||||||
|
|||||||
@@ -516,7 +516,7 @@
|
|||||||
!Finclude/net/mac80211.h ieee80211_start_tx_ba_cb_irqsafe
|
!Finclude/net/mac80211.h ieee80211_start_tx_ba_cb_irqsafe
|
||||||
!Finclude/net/mac80211.h ieee80211_stop_tx_ba_session
|
!Finclude/net/mac80211.h ieee80211_stop_tx_ba_session
|
||||||
!Finclude/net/mac80211.h ieee80211_stop_tx_ba_cb_irqsafe
|
!Finclude/net/mac80211.h ieee80211_stop_tx_ba_cb_irqsafe
|
||||||
!Finclude/net/mac80211.h rate_control_changed
|
!Finclude/net/mac80211.h ieee80211_rate_control_changed
|
||||||
!Finclude/net/mac80211.h ieee80211_tx_rate_control
|
!Finclude/net/mac80211.h ieee80211_tx_rate_control
|
||||||
!Finclude/net/mac80211.h rate_control_send_low
|
!Finclude/net/mac80211.h rate_control_send_low
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
# To add a new book the only step required is to add the book to the
|
# To add a new book the only step required is to add the book to the
|
||||||
# list of DOCBOOKS.
|
# list of DOCBOOKS.
|
||||||
|
|
||||||
DOCBOOKS := z8530book.xml mcabook.xml device-drivers.xml \
|
DOCBOOKS := z8530book.xml device-drivers.xml \
|
||||||
kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
|
kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
|
||||||
writing_usb_driver.xml networking.xml \
|
writing_usb_driver.xml networking.xml \
|
||||||
kernel-api.xml filesystems.xml lsm.xml usb.xml kgdb.xml \
|
kernel-api.xml filesystems.xml lsm.xml usb.xml kgdb.xml \
|
||||||
|
|||||||
@@ -212,19 +212,6 @@ X!Edrivers/pci/hotplug.c
|
|||||||
<sect1><title>PCI Hotplug Support Library</title>
|
<sect1><title>PCI Hotplug Support Library</title>
|
||||||
!Edrivers/pci/hotplug/pci_hotplug_core.c
|
!Edrivers/pci/hotplug/pci_hotplug_core.c
|
||||||
</sect1>
|
</sect1>
|
||||||
<sect1><title>MCA Architecture</title>
|
|
||||||
<sect2><title>MCA Device Functions</title>
|
|
||||||
<para>
|
|
||||||
Refer to the file arch/x86/kernel/mca_32.c for more information.
|
|
||||||
</para>
|
|
||||||
<!-- FIXME: Removed for now since no structured comments in source
|
|
||||||
X!Earch/x86/kernel/mca_32.c
|
|
||||||
-->
|
|
||||||
</sect2>
|
|
||||||
<sect2><title>MCA Bus DMA</title>
|
|
||||||
!Iarch/x86/include/asm/mca_dma.h
|
|
||||||
</sect2>
|
|
||||||
</sect1>
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
||||||
<chapter id="firmware">
|
<chapter id="firmware">
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user