forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branches 'regmap-core', 'regmap-stride', 'regmap-mmio' and 'reg…
…map-irq' into regmap-next
- Loading branch information
Showing
1,532 changed files
with
19,031 additions
and
10,317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
What: /sys/block/rssd*/registers | ||
Date: March 2012 | ||
KernelVersion: 3.3 | ||
Contact: Asai Thambi S P <asamymuthupa@micron.com> | ||
Description: This is a read-only file. Dumps below driver information and | ||
hardware registers. | ||
- S ACTive | ||
- Command Issue | ||
- Allocated | ||
- Completed | ||
- PORT IRQ STAT | ||
- HOST IRQ STAT | ||
|
||
What: /sys/block/rssd*/status | ||
Date: April 2012 | ||
KernelVersion: 3.4 | ||
Contact: Asai Thambi S P <asamymuthupa@micron.com> | ||
Description: This is a read-only file. Indicates the status of the device. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
What: /sys/bus/hsi | ||
Date: April 2012 | ||
KernelVersion: 3.4 | ||
Contact: Carlos Chinea <carlos.chinea@nokia.com> | ||
Description: | ||
High Speed Synchronous Serial Interface (HSI) is a | ||
serial interface mainly used for connecting application | ||
engines (APE) with cellular modem engines (CMT) in cellular | ||
handsets. | ||
The bus will be populated with devices (hsi_clients) representing | ||
the protocols available in the system. Bus drivers implement | ||
those protocols. | ||
|
||
What: /sys/bus/hsi/devices/.../modalias | ||
Date: April 2012 | ||
KernelVersion: 3.4 | ||
Contact: Carlos Chinea <carlos.chinea@nokia.com> | ||
Description: Stores the same MODALIAS value emitted by uevent | ||
Format: hsi:<hsi_client device name> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
What: /sys/block/<device>/iosched/target_latency | ||
Date: March 2012 | ||
contact: Tao Ma <boyu.mt@taobao.com> | ||
Description: | ||
The /sys/block/<device>/iosched/target_latency only exists | ||
when the user sets cfq to /sys/block/<device>/scheduler. | ||
It contains an estimated latency time for the cfq. cfq will | ||
use it to calculate the time slice used for every task. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
Documentation/devicetree/bindings/regulator/anatop-regulator.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Anatop Voltage regulators | ||
|
||
Required properties: | ||
- compatible: Must be "fsl,anatop-regulator" | ||
- anatop-reg-offset: Anatop MFD register offset | ||
- anatop-vol-bit-shift: Bit shift for the register | ||
- anatop-vol-bit-width: Number of bits used in the register | ||
- anatop-min-bit-val: Minimum value of this register | ||
- anatop-min-voltage: Minimum voltage of this regulator | ||
- anatop-max-voltage: Maximum voltage of this regulator | ||
|
||
Any property defined as part of the core regulator | ||
binding, defined in regulator.txt, can also be used. | ||
|
||
Example: | ||
|
||
regulator-vddpu { | ||
compatible = "fsl,anatop-regulator"; | ||
regulator-name = "vddpu"; | ||
regulator-min-microvolt = <725000>; | ||
regulator-max-microvolt = <1300000>; | ||
regulator-always-on; | ||
anatop-reg-offset = <0x140>; | ||
anatop-vol-bit-shift = <9>; | ||
anatop-vol-bit-width = <5>; | ||
anatop-min-bit-val = <1>; | ||
anatop-min-voltage = <725000>; | ||
anatop-max-voltage = <1300000>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.