Merge drm/drm-next into drm-misc-next
Jernej needs some patches that got merged in -rc5. Signed-off-by: Maxime Ripard <maxime@cerno.tech>
This commit is contained in:
commit
51b8479ab2
2
COPYING
2
COPYING
|
@ -16,3 +16,5 @@ In addition, other licenses may also apply. Please see:
|
||||||
Documentation/process/license-rules.rst
|
Documentation/process/license-rules.rst
|
||||||
|
|
||||||
for more details.
|
for more details.
|
||||||
|
|
||||||
|
All contributions to the Linux Kernel are subject to this COPYING file.
|
||||||
|
|
5
CREDITS
5
CREDITS
|
@ -567,6 +567,11 @@ D: Original author of Amiga FFS filesystem
|
||||||
S: Orlando, Florida
|
S: Orlando, Florida
|
||||||
S: USA
|
S: USA
|
||||||
|
|
||||||
|
N: Paul Burton
|
||||||
|
E: paulburton@kernel.org
|
||||||
|
W: https://pburton.com
|
||||||
|
D: MIPS maintainer 2018-2020
|
||||||
|
|
||||||
N: Lennert Buytenhek
|
N: Lennert Buytenhek
|
||||||
E: kernel@wantstofly.org
|
E: kernel@wantstofly.org
|
||||||
D: Original (2.4) rewrite of the ethernet bridging code
|
D: Original (2.4) rewrite of the ethernet bridging code
|
||||||
|
|
|
@ -18,7 +18,7 @@ may look as follows::
|
||||||
|
|
||||||
$ ls -l /sys/bus/acpi/devices/INT3404:00/
|
$ ls -l /sys/bus/acpi/devices/INT3404:00/
|
||||||
total 0
|
total 0
|
||||||
...
|
...
|
||||||
-r--r--r-- 1 root root 4096 Dec 13 20:38 state0
|
-r--r--r-- 1 root root 4096 Dec 13 20:38 state0
|
||||||
-r--r--r-- 1 root root 4096 Dec 13 20:38 state1
|
-r--r--r-- 1 root root 4096 Dec 13 20:38 state1
|
||||||
-r--r--r-- 1 root root 4096 Dec 13 20:38 state10
|
-r--r--r-- 1 root root 4096 Dec 13 20:38 state10
|
||||||
|
@ -38,7 +38,7 @@ where each of the "state*" files represents one performance state of the fan
|
||||||
and contains a colon-separated list of 5 integer numbers (fields) with the
|
and contains a colon-separated list of 5 integer numbers (fields) with the
|
||||||
following interpretation::
|
following interpretation::
|
||||||
|
|
||||||
control_percent:trip_point_index:speed_rpm:noise_level_mdb:power_mw
|
control_percent:trip_point_index:speed_rpm:noise_level_mdb:power_mw
|
||||||
|
|
||||||
* ``control_percent``: The percent value to be used to set the fan speed to a
|
* ``control_percent``: The percent value to be used to set the fan speed to a
|
||||||
specific level using the _FSL object (0-100).
|
specific level using the _FSL object (0-100).
|
||||||
|
|
|
@ -62,6 +62,30 @@ Or more shorter, written as following::
|
||||||
In both styles, same key words are automatically merged when parsing it
|
In both styles, same key words are automatically merged when parsing it
|
||||||
at boot time. So you can append similar trees or key-values.
|
at boot time. So you can append similar trees or key-values.
|
||||||
|
|
||||||
|
Same-key Values
|
||||||
|
---------------
|
||||||
|
|
||||||
|
It is prohibited that two or more values or arrays share a same-key.
|
||||||
|
For example,::
|
||||||
|
|
||||||
|
foo = bar, baz
|
||||||
|
foo = qux # !ERROR! we can not re-define same key
|
||||||
|
|
||||||
|
If you want to append the value to existing key as an array member,
|
||||||
|
you can use ``+=`` operator. For example::
|
||||||
|
|
||||||
|
foo = bar, baz
|
||||||
|
foo += qux
|
||||||
|
|
||||||
|
In this case, the key ``foo`` has ``bar``, ``baz`` and ``qux``.
|
||||||
|
|
||||||
|
However, a sub-key and a value can not co-exist under a parent key.
|
||||||
|
For example, following config is NOT allowed.::
|
||||||
|
|
||||||
|
foo = value1
|
||||||
|
foo.bar = value2 # !ERROR! subkey "bar" and value "value1" can NOT co-exist
|
||||||
|
|
||||||
|
|
||||||
Comments
|
Comments
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
@ -102,9 +126,13 @@ Boot Kernel With a Boot Config
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
Since the boot configuration file is loaded with initrd, it will be added
|
Since the boot configuration file is loaded with initrd, it will be added
|
||||||
to the end of the initrd (initramfs) image file. The Linux kernel decodes
|
to the end of the initrd (initramfs) image file with size, checksum and
|
||||||
the last part of the initrd image in memory to get the boot configuration
|
12-byte magic word as below.
|
||||||
data.
|
|
||||||
|
[initrd][bootconfig][size(u32)][checksum(u32)][#BOOTCONFIG\n]
|
||||||
|
|
||||||
|
The Linux kernel decodes the last part of the initrd image in memory to
|
||||||
|
get the boot configuration data.
|
||||||
Because of this "piggyback" method, there is no need to change or
|
Because of this "piggyback" method, there is no need to change or
|
||||||
update the boot loader and the kernel image itself.
|
update the boot loader and the kernel image itself.
|
||||||
|
|
||||||
|
|
|
@ -136,6 +136,10 @@
|
||||||
dynamic table installation which will install SSDT
|
dynamic table installation which will install SSDT
|
||||||
tables to /sys/firmware/acpi/tables/dynamic.
|
tables to /sys/firmware/acpi/tables/dynamic.
|
||||||
|
|
||||||
|
acpi_no_watchdog [HW,ACPI,WDT]
|
||||||
|
Ignore the ACPI-based watchdog interface (WDAT) and let
|
||||||
|
a native driver control the watchdog device instead.
|
||||||
|
|
||||||
acpi_rsdp= [ACPI,EFI,KEXEC]
|
acpi_rsdp= [ACPI,EFI,KEXEC]
|
||||||
Pass the RSDP address to the kernel, mostly used
|
Pass the RSDP address to the kernel, mostly used
|
||||||
on machines running EFI runtime service to boot the
|
on machines running EFI runtime service to boot the
|
||||||
|
|
|
@ -129,7 +129,7 @@ this logic.
|
||||||
|
|
||||||
As a single binary will need to support both 48-bit and 52-bit VA
|
As a single binary will need to support both 48-bit and 52-bit VA
|
||||||
spaces, the VMEMMAP must be sized large enough for 52-bit VAs and
|
spaces, the VMEMMAP must be sized large enough for 52-bit VAs and
|
||||||
also must be sized large enought to accommodate a fixed PAGE_OFFSET.
|
also must be sized large enough to accommodate a fixed PAGE_OFFSET.
|
||||||
|
|
||||||
Most code in the kernel should not need to consider the VA_BITS, for
|
Most code in the kernel should not need to consider the VA_BITS, for
|
||||||
code that does need to know the VA size the variables are
|
code that does need to know the VA size the variables are
|
||||||
|
|
|
@ -44,8 +44,15 @@ The AArch64 Tagged Address ABI has two stages of relaxation depending
|
||||||
how the user addresses are used by the kernel:
|
how the user addresses are used by the kernel:
|
||||||
|
|
||||||
1. User addresses not accessed by the kernel but used for address space
|
1. User addresses not accessed by the kernel but used for address space
|
||||||
management (e.g. ``mmap()``, ``mprotect()``, ``madvise()``). The use
|
management (e.g. ``mprotect()``, ``madvise()``). The use of valid
|
||||||
of valid tagged pointers in this context is always allowed.
|
tagged pointers in this context is allowed with the exception of
|
||||||
|
``brk()``, ``mmap()`` and the ``new_address`` argument to
|
||||||
|
``mremap()`` as these have the potential to alias with existing
|
||||||
|
user addresses.
|
||||||
|
|
||||||
|
NOTE: This behaviour changed in v5.6 and so some earlier kernels may
|
||||||
|
incorrectly accept valid tagged pointers for the ``brk()``,
|
||||||
|
``mmap()`` and ``mremap()`` system calls.
|
||||||
|
|
||||||
2. User addresses accessed by the kernel (e.g. ``write()``). This ABI
|
2. User addresses accessed by the kernel (e.g. ``write()``). This ABI
|
||||||
relaxation is disabled by default and the application thread needs to
|
relaxation is disabled by default and the application thread needs to
|
||||||
|
|
|
@ -551,6 +551,7 @@ options to your ``.config``:
|
||||||
Once the kernel is built and installed, a simple
|
Once the kernel is built and installed, a simple
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
modprobe example-test
|
modprobe example-test
|
||||||
|
|
||||||
...will run the tests.
|
...will run the tests.
|
||||||
|
|
|
@ -102,7 +102,7 @@ Required sub-node properties:
|
||||||
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
|
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
|
||||||
[2] Documentation/devicetree/bindings/power/power-domain.yaml
|
[2] Documentation/devicetree/bindings/power/power-domain.yaml
|
||||||
[3] Documentation/devicetree/bindings/thermal/thermal.txt
|
[3] Documentation/devicetree/bindings/thermal/thermal.txt
|
||||||
[4] Documentation/devicetree/bindings/sram/sram.txt
|
[4] Documentation/devicetree/bindings/sram/sram.yaml
|
||||||
[5] Documentation/devicetree/bindings/reset/reset.txt
|
[5] Documentation/devicetree/bindings/reset/reset.txt
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
|
@ -109,7 +109,7 @@ Required properties:
|
||||||
[0] http://infocenter.arm.com/help/topic/com.arm.doc.dui0922b/index.html
|
[0] http://infocenter.arm.com/help/topic/com.arm.doc.dui0922b/index.html
|
||||||
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
|
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
|
||||||
[2] Documentation/devicetree/bindings/thermal/thermal.txt
|
[2] Documentation/devicetree/bindings/thermal/thermal.txt
|
||||||
[3] Documentation/devicetree/bindings/sram/sram.txt
|
[3] Documentation/devicetree/bindings/sram/sram.yaml
|
||||||
[4] Documentation/devicetree/bindings/power/power-domain.yaml
|
[4] Documentation/devicetree/bindings/power/power-domain.yaml
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
|
@ -62,7 +62,7 @@ Timer node:
|
||||||
|
|
||||||
Syscon reboot node:
|
Syscon reboot node:
|
||||||
|
|
||||||
See Documentation/devicetree/bindings/power/reset/syscon-reboot.txt for the
|
See Documentation/devicetree/bindings/power/reset/syscon-reboot.yaml for the
|
||||||
detailed list of properties, the two values defined below are specific to the
|
detailed list of properties, the two values defined below are specific to the
|
||||||
BCM6328-style timer:
|
BCM6328-style timer:
|
||||||
|
|
||||||
|
|
|
@ -216,7 +216,7 @@ properties:
|
||||||
$ref: '/schemas/types.yaml#/definitions/phandle-array'
|
$ref: '/schemas/types.yaml#/definitions/phandle-array'
|
||||||
description: |
|
description: |
|
||||||
List of phandles to idle state nodes supported
|
List of phandles to idle state nodes supported
|
||||||
by this cpu (see ./idle-states.txt).
|
by this cpu (see ./idle-states.yaml).
|
||||||
|
|
||||||
capacity-dmips-mhz:
|
capacity-dmips-mhz:
|
||||||
$ref: '/schemas/types.yaml#/definitions/uint32'
|
$ref: '/schemas/types.yaml#/definitions/uint32'
|
||||||
|
|
|
@ -160,7 +160,7 @@ properties:
|
||||||
items:
|
items:
|
||||||
- enum:
|
- enum:
|
||||||
- armadeus,imx6dl-apf6 # APF6 (Solo) SoM
|
- armadeus,imx6dl-apf6 # APF6 (Solo) SoM
|
||||||
- armadeus,imx6dl-apf6dldev # APF6 (Solo) SoM on APF6Dev board
|
- armadeus,imx6dl-apf6dev # APF6 (Solo) SoM on APF6Dev board
|
||||||
- eckelmann,imx6dl-ci4x10
|
- eckelmann,imx6dl-ci4x10
|
||||||
- emtrion,emcon-mx6 # emCON-MX6S or emCON-MX6DL SoM
|
- emtrion,emcon-mx6 # emCON-MX6S or emCON-MX6DL SoM
|
||||||
- emtrion,emcon-mx6-avari # emCON-MX6S or emCON-MX6DL SoM on Avari Base
|
- emtrion,emcon-mx6-avari # emCON-MX6S or emCON-MX6DL SoM on Avari Base
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
* Hisilicon Hi3519 System Controller Block
|
* Hisilicon Hi3519 System Controller Block
|
||||||
|
|
||||||
This bindings use the following binding:
|
This bindings use the following binding:
|
||||||
Documentation/devicetree/bindings/mfd/syscon.txt
|
Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||||
|
|
||||||
Required properties:
|
Required properties:
|
||||||
- compatible: "hisilicon,hi3519-sysctrl".
|
- compatible: "hisilicon,hi3519-sysctrl".
|
||||||
|
|
|
@ -81,4 +81,4 @@ Example:
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
[1]. Documentation/devicetree/bindings/arm/idle-states.txt
|
[1]. Documentation/devicetree/bindings/arm/idle-states.yaml
|
||||||
|
|
|
@ -17,7 +17,7 @@ am335x and am437x only:
|
||||||
- pm-sram: Phandles to ocmcram nodes to be used for power management.
|
- pm-sram: Phandles to ocmcram nodes to be used for power management.
|
||||||
First should be type 'protect-exec' for the driver to use to copy
|
First should be type 'protect-exec' for the driver to use to copy
|
||||||
and run PM functions, second should be regular pool to be used for
|
and run PM functions, second should be regular pool to be used for
|
||||||
data region for code. See Documentation/devicetree/bindings/sram/sram.txt
|
data region for code. See Documentation/devicetree/bindings/sram/sram.yaml
|
||||||
for more details.
|
for more details.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
|
@ -100,13 +100,14 @@ properties:
|
||||||
bindings in [1]) must specify this property.
|
bindings in [1]) must specify this property.
|
||||||
|
|
||||||
[1] Kernel documentation - ARM idle states bindings
|
[1] Kernel documentation - ARM idle states bindings
|
||||||
Documentation/devicetree/bindings/arm/idle-states.txt
|
Documentation/devicetree/bindings/arm/idle-states.yaml
|
||||||
|
|
||||||
"#power-domain-cells":
|
|
||||||
description:
|
|
||||||
The number of cells in a PM domain specifier as per binding in [3].
|
|
||||||
Must be 0 as to represent a single PM domain.
|
|
||||||
|
|
||||||
|
patternProperties:
|
||||||
|
"^power-domain-":
|
||||||
|
allOf:
|
||||||
|
- $ref: "../power/power-domain.yaml#"
|
||||||
|
type: object
|
||||||
|
description: |
|
||||||
ARM systems can have multiple cores, sometimes in an hierarchical
|
ARM systems can have multiple cores, sometimes in an hierarchical
|
||||||
arrangement. This often, but not always, maps directly to the processor
|
arrangement. This often, but not always, maps directly to the processor
|
||||||
power topology of the system. Individual nodes in a topology have their
|
power topology of the system. Individual nodes in a topology have their
|
||||||
|
@ -122,14 +123,8 @@ properties:
|
||||||
helps to implement support for OSI mode and OS implementations may choose
|
helps to implement support for OSI mode and OS implementations may choose
|
||||||
to mandate it.
|
to mandate it.
|
||||||
|
|
||||||
[3] Documentation/devicetree/bindings/power/power_domain.txt
|
[3] Documentation/devicetree/bindings/power/power-domain.yaml
|
||||||
[4] Documentation/devicetree/bindings/power/domain-idle-state.txt
|
[4] Documentation/devicetree/bindings/power/domain-idle-state.yaml
|
||||||
|
|
||||||
power-domains:
|
|
||||||
$ref: '/schemas/types.yaml#/definitions/phandle-array'
|
|
||||||
description:
|
|
||||||
List of phandles and PM domain specifiers, as defined by bindings of the
|
|
||||||
PM domain provider.
|
|
||||||
|
|
||||||
required:
|
required:
|
||||||
- compatible
|
- compatible
|
||||||
|
@ -199,7 +194,7 @@ examples:
|
||||||
|
|
||||||
CPU0: cpu@0 {
|
CPU0: cpu@0 {
|
||||||
device_type = "cpu";
|
device_type = "cpu";
|
||||||
compatible = "arm,cortex-a53", "arm,armv8";
|
compatible = "arm,cortex-a53";
|
||||||
reg = <0x0>;
|
reg = <0x0>;
|
||||||
enable-method = "psci";
|
enable-method = "psci";
|
||||||
power-domains = <&CPU_PD0>;
|
power-domains = <&CPU_PD0>;
|
||||||
|
@ -208,7 +203,7 @@ examples:
|
||||||
|
|
||||||
CPU1: cpu@1 {
|
CPU1: cpu@1 {
|
||||||
device_type = "cpu";
|
device_type = "cpu";
|
||||||
compatible = "arm,cortex-a57", "arm,armv8";
|
compatible = "arm,cortex-a53";
|
||||||
reg = <0x100>;
|
reg = <0x100>;
|
||||||
enable-method = "psci";
|
enable-method = "psci";
|
||||||
power-domains = <&CPU_PD1>;
|
power-domains = <&CPU_PD1>;
|
||||||
|
@ -224,6 +219,9 @@ examples:
|
||||||
exit-latency-us = <10>;
|
exit-latency-us = <10>;
|
||||||
min-residency-us = <100>;
|
min-residency-us = <100>;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
domain-idle-states {
|
||||||
|
|
||||||
CLUSTER_RET: cluster-retention {
|
CLUSTER_RET: cluster-retention {
|
||||||
compatible = "domain-idle-state";
|
compatible = "domain-idle-state";
|
||||||
|
@ -247,19 +245,19 @@ examples:
|
||||||
compatible = "arm,psci-1.0";
|
compatible = "arm,psci-1.0";
|
||||||
method = "smc";
|
method = "smc";
|
||||||
|
|
||||||
CPU_PD0: cpu-pd0 {
|
CPU_PD0: power-domain-cpu0 {
|
||||||
#power-domain-cells = <0>;
|
#power-domain-cells = <0>;
|
||||||
domain-idle-states = <&CPU_PWRDN>;
|
domain-idle-states = <&CPU_PWRDN>;
|
||||||
power-domains = <&CLUSTER_PD>;
|
power-domains = <&CLUSTER_PD>;
|
||||||
};
|
};
|
||||||
|
|
||||||
CPU_PD1: cpu-pd1 {
|
CPU_PD1: power-domain-cpu1 {
|
||||||
#power-domain-cells = <0>;
|
#power-domain-cells = <0>;
|
||||||
domain-idle-states = <&CPU_PWRDN>;
|
domain-idle-states = <&CPU_PWRDN>;
|
||||||
power-domains = <&CLUSTER_PD>;
|
power-domains = <&CLUSTER_PD>;
|
||||||
};
|
};
|
||||||
|
|
||||||
CLUSTER_PD: cluster-pd {
|
CLUSTER_PD: power-domain-cluster {
|
||||||
#power-domain-cells = <0>;
|
#power-domain-cells = <0>;
|
||||||
domain-idle-states = <&CLUSTER_RET>, <&CLUSTER_PWRDN>;
|
domain-idle-states = <&CLUSTER_RET>, <&CLUSTER_PWRDN>;
|
||||||
};
|
};
|
||||||
|
|
|
@ -52,7 +52,7 @@ required:
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- |
|
- |
|
||||||
mlahb: ahb {
|
mlahb: ahb@38000000 {
|
||||||
compatible = "st,mlahb", "simple-bus";
|
compatible = "st,mlahb", "simple-bus";
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
|
|
@ -70,7 +70,6 @@ examples:
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
|
||||||
pmic@3e3 {
|
pmic@3e3 {
|
||||||
compatible = "...";
|
|
||||||
reg = <0x3e3>;
|
reg = <0x3e3>;
|
||||||
|
|
||||||
/* ... */
|
/* ... */
|
||||||
|
|
|
@ -40,7 +40,7 @@ additionalProperties: false
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- |
|
- |
|
||||||
osc24M: clk@01c20050 {
|
osc24M: clk@1c20050 {
|
||||||
#clock-cells = <0>;
|
#clock-cells = <0>;
|
||||||
compatible = "allwinner,sun4i-a10-osc-clk";
|
compatible = "allwinner,sun4i-a10-osc-clk";
|
||||||
reg = <0x01c20050 0x4>;
|
reg = <0x01c20050 0x4>;
|
||||||
|
|
|
@ -41,7 +41,7 @@ additionalProperties: false
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- |
|
- |
|
||||||
clk@0600005c {
|
clk@600005c {
|
||||||
#clock-cells = <0>;
|
#clock-cells = <0>;
|
||||||
compatible = "allwinner,sun9i-a80-gt-clk";
|
compatible = "allwinner,sun9i-a80-gt-clk";
|
||||||
reg = <0x0600005c 0x4>;
|
reg = <0x0600005c 0x4>;
|
||||||
|
|
|
@ -42,7 +42,7 @@ properties:
|
||||||
be part of GCC and hence the TSENS properties can also be part
|
be part of GCC and hence the TSENS properties can also be part
|
||||||
of the GCC/clock-controller node.
|
of the GCC/clock-controller node.
|
||||||
For more details on the TSENS properties please refer
|
For more details on the TSENS properties please refer
|
||||||
Documentation/devicetree/bindings/thermal/qcom-tsens.txt
|
Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
|
||||||
|
|
||||||
nvmem-cell-names:
|
nvmem-cell-names:
|
||||||
minItems: 1
|
minItems: 1
|
||||||
|
|
|
@ -49,9 +49,13 @@ properties:
|
||||||
- enum:
|
- enum:
|
||||||
- allwinner,sun8i-h3-tcon-tv
|
- allwinner,sun8i-h3-tcon-tv
|
||||||
- allwinner,sun50i-a64-tcon-tv
|
- allwinner,sun50i-a64-tcon-tv
|
||||||
- allwinner,sun50i-h6-tcon-tv
|
|
||||||
- const: allwinner,sun8i-a83t-tcon-tv
|
- const: allwinner,sun8i-a83t-tcon-tv
|
||||||
|
|
||||||
|
- items:
|
||||||
|
- enum:
|
||||||
|
- allwinner,sun50i-h6-tcon-tv
|
||||||
|
- const: allwinner,sun8i-r40-tcon-tv
|
||||||
|
|
||||||
reg:
|
reg:
|
||||||
maxItems: 1
|
maxItems: 1
|
||||||
|
|
||||||
|
|
|
@ -49,11 +49,7 @@ examples:
|
||||||
resets = <&tcon_ch0_clk 0>;
|
resets = <&tcon_ch0_clk 0>;
|
||||||
|
|
||||||
port {
|
port {
|
||||||
#address-cells = <1>;
|
tve0_in_tcon0: endpoint {
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
tve0_in_tcon0: endpoint@0 {
|
|
||||||
reg = <0>;
|
|
||||||
remote-endpoint = <&tcon0_out_tve0>;
|
remote-endpoint = <&tcon0_out_tve0>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -79,21 +79,15 @@ examples:
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
|
||||||
anx6345_in: port@0 {
|
anx6345_in: port@0 {
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
anx6345_in_tcon0: endpoint@0 {
|
anx6345_in_tcon0: endpoint {
|
||||||
reg = <0>;
|
|
||||||
remote-endpoint = <&tcon0_out_anx6345>;
|
remote-endpoint = <&tcon0_out_anx6345>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
anx6345_out: port@1 {
|
anx6345_out: port@1 {
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
reg = <1>;
|
reg = <1>;
|
||||||
anx6345_out_panel: endpoint@0 {
|
anx6345_out_panel: endpoint {
|
||||||
reg = <0>;
|
|
||||||
remote-endpoint = <&panel_in_edp>;
|
remote-endpoint = <&panel_in_edp>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -37,6 +37,8 @@ examples:
|
||||||
dsi {
|
dsi {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
reg = <0xff450000 0x1000>;
|
||||||
|
|
||||||
panel@0 {
|
panel@0 {
|
||||||
compatible = "leadtek,ltk500hd1829";
|
compatible = "leadtek,ltk500hd1829";
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
|
|
@ -37,6 +37,8 @@ examples:
|
||||||
dsi {
|
dsi {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
reg = <0xff450000 0x1000>;
|
||||||
|
|
||||||
panel@0 {
|
panel@0 {
|
||||||
compatible = "xinpeng,xpp055c272";
|
compatible = "xinpeng,xpp055c272";
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
|
|
@ -174,10 +174,6 @@ examples:
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
soc@1c00000 {
|
lcdc0: lcdc { };
|
||||||
lcdc0: lcdc@1c0c000 {
|
|
||||||
compatible = "allwinner,sun4i-a10-lcdc";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
|
@ -37,7 +37,7 @@ Optional nodes:
|
||||||
supports a single port with a single endpoint.
|
supports a single port with a single endpoint.
|
||||||
|
|
||||||
- See also Documentation/devicetree/bindings/display/tilcdc/panel.txt and
|
- See also Documentation/devicetree/bindings/display/tilcdc/panel.txt and
|
||||||
Documentation/devicetree/bindings/display/tilcdc/tfp410.txt for connecting
|
Documentation/devicetree/bindings/display/bridge/ti,tfp410.txt for connecting
|
||||||
tfp410 DVI encoder or lcd panel to lcdc
|
tfp410 DVI encoder or lcd panel to lcdc
|
||||||
|
|
||||||
[1] There is an errata about AM335x color wiring. For 16-bit color mode
|
[1] There is an errata about AM335x color wiring. For 16-bit color mode
|
||||||
|
|
|
@ -143,7 +143,7 @@ examples:
|
||||||
#size-cells = <2>;
|
#size-cells = <2>;
|
||||||
dma-coherent;
|
dma-coherent;
|
||||||
dma-ranges;
|
dma-ranges;
|
||||||
ranges;
|
ranges = <0x0 0x30800000 0x0 0x30800000 0x0 0x05000000>;
|
||||||
|
|
||||||
ti,sci-dev-id = <118>;
|
ti,sci-dev-id = <118>;
|
||||||
|
|
||||||
|
@ -169,16 +169,4 @@ examples:
|
||||||
ti,sci-rm-range-rflow = <0x6>; /* GP RFLOW */
|
ti,sci-rm-range-rflow = <0x6>; /* GP RFLOW */
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
mcasp0: mcasp@02B00000 {
|
|
||||||
dmas = <&main_udmap 0xc400>, <&main_udmap 0x4400>;
|
|
||||||
dma-names = "tx", "rx";
|
|
||||||
};
|
|
||||||
|
|
||||||
crypto: crypto@4E00000 {
|
|
||||||
compatible = "ti,sa2ul-crypto";
|
|
||||||
|
|
||||||
dmas = <&main_udmap 0xc000>, <&main_udmap 0x4000>, <&main_udmap 0x4001>;
|
|
||||||
dma-names = "tx", "rx1", "rx2";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -84,31 +84,31 @@ examples:
|
||||||
gpu_opp_table: opp_table0 {
|
gpu_opp_table: opp_table0 {
|
||||||
compatible = "operating-points-v2";
|
compatible = "operating-points-v2";
|
||||||
|
|
||||||
opp@533000000 {
|
opp-533000000 {
|
||||||
opp-hz = /bits/ 64 <533000000>;
|
opp-hz = /bits/ 64 <533000000>;
|
||||||
opp-microvolt = <1250000>;
|
opp-microvolt = <1250000>;
|
||||||
};
|
};
|
||||||
opp@450000000 {
|
opp-450000000 {
|
||||||
opp-hz = /bits/ 64 <450000000>;
|
opp-hz = /bits/ 64 <450000000>;
|
||||||
opp-microvolt = <1150000>;
|
opp-microvolt = <1150000>;
|
||||||
};
|
};
|
||||||
opp@400000000 {
|
opp-400000000 {
|
||||||
opp-hz = /bits/ 64 <400000000>;
|
opp-hz = /bits/ 64 <400000000>;
|
||||||
opp-microvolt = <1125000>;
|
opp-microvolt = <1125000>;
|
||||||
};
|
};
|
||||||
opp@350000000 {
|
opp-350000000 {
|
||||||
opp-hz = /bits/ 64 <350000000>;
|
opp-hz = /bits/ 64 <350000000>;
|
||||||
opp-microvolt = <1075000>;
|
opp-microvolt = <1075000>;
|
||||||
};
|
};
|
||||||
opp@266000000 {
|
opp-266000000 {
|
||||||
opp-hz = /bits/ 64 <266000000>;
|
opp-hz = /bits/ 64 <266000000>;
|
||||||
opp-microvolt = <1025000>;
|
opp-microvolt = <1025000>;
|
||||||
};
|
};
|
||||||
opp@160000000 {
|
opp-160000000 {
|
||||||
opp-hz = /bits/ 64 <160000000>;
|
opp-hz = /bits/ 64 <160000000>;
|
||||||
opp-microvolt = <925000>;
|
opp-microvolt = <925000>;
|
||||||
};
|
};
|
||||||
opp@100000000 {
|
opp-100000000 {
|
||||||
opp-hz = /bits/ 64 <100000000>;
|
opp-hz = /bits/ 64 <100000000>;
|
||||||
opp-microvolt = <912500>;
|
opp-microvolt = <912500>;
|
||||||
};
|
};
|
||||||
|
|
|
@ -138,31 +138,31 @@ examples:
|
||||||
gpu_opp_table: opp_table0 {
|
gpu_opp_table: opp_table0 {
|
||||||
compatible = "operating-points-v2";
|
compatible = "operating-points-v2";
|
||||||
|
|
||||||
opp@533000000 {
|
opp-533000000 {
|
||||||
opp-hz = /bits/ 64 <533000000>;
|
opp-hz = /bits/ 64 <533000000>;
|
||||||
opp-microvolt = <1250000>;
|
opp-microvolt = <1250000>;
|
||||||
};
|
};
|
||||||
opp@450000000 {
|
opp-450000000 {
|
||||||
opp-hz = /bits/ 64 <450000000>;
|
opp-hz = /bits/ 64 <450000000>;
|
||||||
opp-microvolt = <1150000>;
|
opp-microvolt = <1150000>;
|
||||||
};
|
};
|
||||||
opp@400000000 {
|
opp-400000000 {
|
||||||
opp-hz = /bits/ 64 <400000000>;
|
opp-hz = /bits/ 64 <400000000>;
|
||||||
opp-microvolt = <1125000>;
|
opp-microvolt = <1125000>;
|
||||||
};
|
};
|
||||||
opp@350000000 {
|
opp-350000000 {
|
||||||
opp-hz = /bits/ 64 <350000000>;
|
opp-hz = /bits/ 64 <350000000>;
|
||||||
opp-microvolt = <1075000>;
|
opp-microvolt = <1075000>;
|
||||||
};
|
};
|
||||||
opp@266000000 {
|
opp-266000000 {
|
||||||
opp-hz = /bits/ 64 <266000000>;
|
opp-hz = /bits/ 64 <266000000>;
|
||||||
opp-microvolt = <1025000>;
|
opp-microvolt = <1025000>;
|
||||||
};
|
};
|
||||||
opp@160000000 {
|
opp-160000000 {
|
||||||
opp-hz = /bits/ 64 <160000000>;
|
opp-hz = /bits/ 64 <160000000>;
|
||||||
opp-microvolt = <925000>;
|
opp-microvolt = <925000>;
|
||||||
};
|
};
|
||||||
opp@100000000 {
|
opp-100000000 {
|
||||||
opp-hz = /bits/ 64 <100000000>;
|
opp-hz = /bits/ 64 <100000000>;
|
||||||
opp-microvolt = <912500>;
|
opp-microvolt = <912500>;
|
||||||
};
|
};
|
||||||
|
|
|
@ -123,7 +123,7 @@ examples:
|
||||||
samsung,syscon-phandle = <&pmu_system_controller>;
|
samsung,syscon-phandle = <&pmu_system_controller>;
|
||||||
|
|
||||||
/* NTC thermistor is a hwmon device */
|
/* NTC thermistor is a hwmon device */
|
||||||
ncp15wb473@0 {
|
ncp15wb473 {
|
||||||
compatible = "murata,ncp15wb473";
|
compatible = "murata,ncp15wb473";
|
||||||
pullup-uv = <1800000>;
|
pullup-uv = <1800000>;
|
||||||
pullup-ohm = <47000>;
|
pullup-ohm = <47000>;
|
||||||
|
|
|
@ -62,7 +62,7 @@ required:
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- |
|
- |
|
||||||
i2c@00000000 {
|
i2c {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
gt928@5d {
|
gt928@5d {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Texas Instruments TWL family (twl4030) pwrbutton module
|
Texas Instruments TWL family (twl4030) pwrbutton module
|
||||||
|
|
||||||
This module is part of the TWL4030. For more details about the whole
|
This module is part of the TWL4030. For more details about the whole
|
||||||
chip see Documentation/devicetree/bindings/mfd/twl-familly.txt.
|
chip see Documentation/devicetree/bindings/mfd/twl-family.txt.
|
||||||
|
|
||||||
This module provides a simple power button event via an Interrupt.
|
This module provides a simple power button event via an Interrupt.
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ properties:
|
||||||
# LED will act as a back-light, controlled by the framebuffer system
|
# LED will act as a back-light, controlled by the framebuffer system
|
||||||
- backlight
|
- backlight
|
||||||
# LED will turn on (but for leds-gpio see "default-state" property in
|
# LED will turn on (but for leds-gpio see "default-state" property in
|
||||||
# Documentation/devicetree/bindings/leds/leds-gpio.txt)
|
# Documentation/devicetree/bindings/leds/leds-gpio.yaml)
|
||||||
- default-on
|
- default-on
|
||||||
# LED "double" flashes at a load average based rate
|
# LED "double" flashes at a load average based rate
|
||||||
- heartbeat
|
- heartbeat
|
||||||
|
|
|
@ -5,7 +5,7 @@ where single bits in a certain register can turn on/off a
|
||||||
single LED. The register bit LEDs appear as children to the
|
single LED. The register bit LEDs appear as children to the
|
||||||
syscon device, with the proper compatible string. For the
|
syscon device, with the proper compatible string. For the
|
||||||
syscon bindings see:
|
syscon bindings see:
|
||||||
Documentation/devicetree/bindings/mfd/syscon.txt
|
Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||||
|
|
||||||
Each LED is represented as a sub-node of the syscon device. Each
|
Each LED is represented as a sub-node of the syscon device. Each
|
||||||
node's name represents the name of the corresponding LED.
|
node's name represents the name of the corresponding LED.
|
||||||
|
|
|
@ -33,24 +33,40 @@ properties:
|
||||||
maxItems: 1
|
maxItems: 1
|
||||||
|
|
||||||
clocks:
|
clocks:
|
||||||
minItems: 2
|
oneOf:
|
||||||
maxItems: 3
|
- items:
|
||||||
items:
|
- description: The CSI interface clock
|
||||||
- description: The CSI interface clock
|
- description: The CSI DRAM clock
|
||||||
- description: The CSI ISP clock
|
|
||||||
- description: The CSI DRAM clock
|
- items:
|
||||||
|
- description: The CSI interface clock
|
||||||
|
- description: The CSI ISP clock
|
||||||
|
- description: The CSI DRAM clock
|
||||||
|
|
||||||
clock-names:
|
clock-names:
|
||||||
minItems: 2
|
oneOf:
|
||||||
maxItems: 3
|
- items:
|
||||||
items:
|
- const: bus
|
||||||
- const: bus
|
- const: ram
|
||||||
- const: isp
|
|
||||||
- const: ram
|
- items:
|
||||||
|
- const: bus
|
||||||
|
- const: isp
|
||||||
|
- const: ram
|
||||||
|
|
||||||
resets:
|
resets:
|
||||||
maxItems: 1
|
maxItems: 1
|
||||||
|
|
||||||
|
# FIXME: This should be made required eventually once every SoC will
|
||||||
|
# have the MBUS declared.
|
||||||
|
interconnects:
|
||||||
|
maxItems: 1
|
||||||
|
|
||||||
|
# FIXME: This should be made required eventually once every SoC will
|
||||||
|
# have the MBUS declared.
|
||||||
|
interconnect-names:
|
||||||
|
const: dma-mem
|
||||||
|
|
||||||
# See ./video-interfaces.txt for details
|
# See ./video-interfaces.txt for details
|
||||||
port:
|
port:
|
||||||
type: object
|
type: object
|
||||||
|
|
|
@ -177,7 +177,7 @@ examples:
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
i2c5: i2c@4807c000 {
|
i2c {
|
||||||
clock-frequency = <400000>;
|
clock-frequency = <400000>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
|
|
@ -347,6 +347,7 @@ examples:
|
||||||
interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
|
interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
|
||||||
#iommu-cells = <1>;
|
#iommu-cells = <1>;
|
||||||
|
#reset-cells = <1>;
|
||||||
};
|
};
|
||||||
|
|
||||||
external-memory-controller@7001b000 {
|
external-memory-controller@7001b000 {
|
||||||
|
@ -363,20 +364,23 @@ examples:
|
||||||
timing-0 {
|
timing-0 {
|
||||||
clock-frequency = <12750000>;
|
clock-frequency = <12750000>;
|
||||||
|
|
||||||
nvidia,emc-zcal-cnt-long = <0x00000042>;
|
|
||||||
nvidia,emc-auto-cal-interval = <0x001fffff>;
|
|
||||||
nvidia,emc-ctt-term-ctrl = <0x00000802>;
|
|
||||||
nvidia,emc-cfg = <0x73240000>;
|
|
||||||
nvidia,emc-cfg-2 = <0x000008c5>;
|
|
||||||
nvidia,emc-sel-dpd-ctrl = <0x00040128>;
|
|
||||||
nvidia,emc-bgbias-ctl0 = <0x00000008>;
|
|
||||||
nvidia,emc-auto-cal-config = <0xa1430000>;
|
nvidia,emc-auto-cal-config = <0xa1430000>;
|
||||||
nvidia,emc-auto-cal-config2 = <0x00000000>;
|
nvidia,emc-auto-cal-config2 = <0x00000000>;
|
||||||
nvidia,emc-auto-cal-config3 = <0x00000000>;
|
nvidia,emc-auto-cal-config3 = <0x00000000>;
|
||||||
nvidia,emc-mode-reset = <0x80001221>;
|
nvidia,emc-auto-cal-interval = <0x001fffff>;
|
||||||
|
nvidia,emc-bgbias-ctl0 = <0x00000008>;
|
||||||
|
nvidia,emc-cfg = <0x73240000>;
|
||||||
|
nvidia,emc-cfg-2 = <0x000008c5>;
|
||||||
|
nvidia,emc-ctt-term-ctrl = <0x00000802>;
|
||||||
nvidia,emc-mode-1 = <0x80100003>;
|
nvidia,emc-mode-1 = <0x80100003>;
|
||||||
nvidia,emc-mode-2 = <0x80200008>;
|
nvidia,emc-mode-2 = <0x80200008>;
|
||||||
nvidia,emc-mode-4 = <0x00000000>;
|
nvidia,emc-mode-4 = <0x00000000>;
|
||||||
|
nvidia,emc-mode-reset = <0x80001221>;
|
||||||
|
nvidia,emc-mrs-wait-cnt = <0x000e000e>;
|
||||||
|
nvidia,emc-sel-dpd-ctrl = <0x00040128>;
|
||||||
|
nvidia,emc-xm2dqspadctrl2 = <0x0130b118>;
|
||||||
|
nvidia,emc-zcal-cnt-long = <0x00000042>;
|
||||||
|
nvidia,emc-zcal-interval = <0x00000000>;
|
||||||
|
|
||||||
nvidia,emc-configuration = <
|
nvidia,emc-configuration = <
|
||||||
0x00000000 /* EMC_RC */
|
0x00000000 /* EMC_RC */
|
||||||
|
|
|
@ -32,7 +32,7 @@ Required only for "ti,emif-am3352" and "ti,emif-am4372":
|
||||||
- sram : Phandles for generic sram driver nodes,
|
- sram : Phandles for generic sram driver nodes,
|
||||||
first should be type 'protect-exec' for the driver to use to copy
|
first should be type 'protect-exec' for the driver to use to copy
|
||||||
and run PM functions, second should be regular pool to be used for
|
and run PM functions, second should be regular pool to be used for
|
||||||
data region for code. See Documentation/devicetree/bindings/sram/sram.txt
|
data region for code. See Documentation/devicetree/bindings/sram/sram.yaml
|
||||||
for more details.
|
for more details.
|
||||||
|
|
||||||
Optional properties:
|
Optional properties:
|
||||||
|
|
|
@ -97,14 +97,14 @@ examples:
|
||||||
regulators {
|
regulators {
|
||||||
compatible = "maxim,max77650-regulator";
|
compatible = "maxim,max77650-regulator";
|
||||||
|
|
||||||
max77650_ldo: regulator@0 {
|
max77650_ldo: regulator-ldo {
|
||||||
regulator-compatible = "ldo";
|
regulator-compatible = "ldo";
|
||||||
regulator-name = "max77650-ldo";
|
regulator-name = "max77650-ldo";
|
||||||
regulator-min-microvolt = <1350000>;
|
regulator-min-microvolt = <1350000>;
|
||||||
regulator-max-microvolt = <2937500>;
|
regulator-max-microvolt = <2937500>;
|
||||||
};
|
};
|
||||||
|
|
||||||
max77650_sbb0: regulator@1 {
|
max77650_sbb0: regulator-sbb0 {
|
||||||
regulator-compatible = "sbb0";
|
regulator-compatible = "sbb0";
|
||||||
regulator-name = "max77650-sbb0";
|
regulator-name = "max77650-sbb0";
|
||||||
regulator-min-microvolt = <800000>;
|
regulator-min-microvolt = <800000>;
|
||||||
|
|
|
@ -26,8 +26,8 @@ Required properties:
|
||||||
ldo6, ldo7, ldo8
|
ldo6, ldo7, ldo8
|
||||||
|
|
||||||
- xxx-supply: Input voltage supply regulator.
|
- xxx-supply: Input voltage supply regulator.
|
||||||
These entries are require if regulators are enabled for a device. Missing of these
|
These entries are required if regulators are enabled for a device. Missing these
|
||||||
properties can cause the regulator registration fails.
|
properties can cause the regulator registration to fail.
|
||||||
If some of input supply is powered through battery or always-on supply then
|
If some of input supply is powered through battery or always-on supply then
|
||||||
also it is require to have these parameters with proper node handle of always
|
also it is require to have these parameters with proper node handle of always
|
||||||
on power supply.
|
on power supply.
|
||||||
|
|
|
@ -20,7 +20,7 @@ RAVE SP consists of the following sub-devices:
|
||||||
Device Description
|
Device Description
|
||||||
------ -----------
|
------ -----------
|
||||||
rave-sp-wdt : Watchdog
|
rave-sp-wdt : Watchdog
|
||||||
rave-sp-nvmem : Interface to onborad EEPROM
|
rave-sp-nvmem : Interface to onboard EEPROM
|
||||||
rave-sp-backlight : Display backlight
|
rave-sp-backlight : Display backlight
|
||||||
rave-sp-hwmon : Interface to onboard hardware sensors
|
rave-sp-hwmon : Interface to onboard hardware sensors
|
||||||
rave-sp-leds : Interface to onboard LEDs
|
rave-sp-leds : Interface to onboard LEDs
|
||||||
|
|
|
@ -26,7 +26,7 @@ For generic IOMMU bindings, see
|
||||||
Documentation/devicetree/bindings/iommu/iommu.txt.
|
Documentation/devicetree/bindings/iommu/iommu.txt.
|
||||||
|
|
||||||
For arm-smmu binding, see:
|
For arm-smmu binding, see:
|
||||||
Documentation/devicetree/bindings/iommu/arm,smmu.txt.
|
Documentation/devicetree/bindings/iommu/arm,smmu.yaml.
|
||||||
|
|
||||||
Required properties:
|
Required properties:
|
||||||
|
|
||||||
|
|
|
@ -370,6 +370,7 @@ examples:
|
||||||
mmc3: mmc@1c12000 {
|
mmc3: mmc@1c12000 {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
reg = <0x1c12000 0x200>;
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&mmc3_pins_a>;
|
pinctrl-0 = <&mmc3_pins_a>;
|
||||||
vmmc-supply = <®_vmmc3>;
|
vmmc-supply = <®_vmmc3>;
|
||||||
|
|
|
@ -124,7 +124,7 @@ not every application needs SDIO irq, e.g. MMC cards.
|
||||||
pinctrl-1 = <&mmc1_idle>;
|
pinctrl-1 = <&mmc1_idle>;
|
||||||
pinctrl-2 = <&mmc1_sleep>;
|
pinctrl-2 = <&mmc1_sleep>;
|
||||||
...
|
...
|
||||||
interrupts-extended = <&intc 64 &gpio2 28 GPIO_ACTIVE_LOW>;
|
interrupts-extended = <&intc 64 &gpio2 28 IRQ_TYPE_LEVEL_LOW>;
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc1_idle : pinmux_cirq_pin {
|
mmc1_idle : pinmux_cirq_pin {
|
||||||
|
|
|
@ -27,7 +27,7 @@ Required properties of NAND chips:
|
||||||
- reg: shall contain the native Chip Select ids from 0 to max supported by
|
- reg: shall contain the native Chip Select ids from 0 to max supported by
|
||||||
the cadence nand flash controller
|
the cadence nand flash controller
|
||||||
|
|
||||||
See Documentation/devicetree/bindings/mtd/nand.txt for more details on
|
See Documentation/devicetree/bindings/mtd/nand-controller.yaml for more details on
|
||||||
generic bindings.
|
generic bindings.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
|
@ -45,7 +45,7 @@ Optional properties:
|
||||||
switch queue
|
switch queue
|
||||||
|
|
||||||
- resets: a single phandle and reset identifier pair. See
|
- resets: a single phandle and reset identifier pair. See
|
||||||
Documentation/devicetree/binding/reset/reset.txt for details.
|
Documentation/devicetree/bindings/reset/reset.txt for details.
|
||||||
|
|
||||||
- reset-names: If the "reset" property is specified, this property should have
|
- reset-names: If the "reset" property is specified, this property should have
|
||||||
the value "switch" to denote the switch reset line.
|
the value "switch" to denote the switch reset line.
|
||||||
|
|
|
@ -56,7 +56,6 @@ patternProperties:
|
||||||
examples:
|
examples:
|
||||||
- |
|
- |
|
||||||
davinci_mdio: mdio@5c030000 {
|
davinci_mdio: mdio@5c030000 {
|
||||||
compatible = "ti,davinci_mdio";
|
|
||||||
reg = <0x5c030000 0x1000>;
|
reg = <0x5c030000 0x1000>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
|
|
@ -76,6 +76,8 @@ examples:
|
||||||
qfprom: eeprom@700000 {
|
qfprom: eeprom@700000 {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
reg = <0x00700000 0x100000>;
|
||||||
|
|
||||||
wp-gpios = <&gpio1 3 GPIO_ACTIVE_HIGH>;
|
wp-gpios = <&gpio1 3 GPIO_ACTIVE_HIGH>;
|
||||||
|
|
||||||
/* ... */
|
/* ... */
|
||||||
|
|
|
@ -86,7 +86,7 @@ examples:
|
||||||
#include <dt-bindings/clock/sun4i-a10-ccu.h>
|
#include <dt-bindings/clock/sun4i-a10-ccu.h>
|
||||||
#include <dt-bindings/reset/sun4i-a10-ccu.h>
|
#include <dt-bindings/reset/sun4i-a10-ccu.h>
|
||||||
|
|
||||||
usbphy: phy@01c13400 {
|
usbphy: phy@1c13400 {
|
||||||
#phy-cells = <1>;
|
#phy-cells = <1>;
|
||||||
compatible = "allwinner,sun4i-a10-usb-phy";
|
compatible = "allwinner,sun4i-a10-usb-phy";
|
||||||
reg = <0x01c13400 0x10>, <0x01c14800 0x4>, <0x01c1c800 0x4>;
|
reg = <0x01c13400 0x10>, <0x01c14800 0x4>, <0x01c1c800 0x4>;
|
||||||
|
|
|
@ -17,7 +17,7 @@ description: |+
|
||||||
"aspeed,ast2400-scu", "syscon", "simple-mfd"
|
"aspeed,ast2400-scu", "syscon", "simple-mfd"
|
||||||
|
|
||||||
Refer to the the bindings described in
|
Refer to the the bindings described in
|
||||||
Documentation/devicetree/bindings/mfd/syscon.txt
|
Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
compatible:
|
compatible:
|
||||||
|
|
|
@ -18,7 +18,7 @@ description: |+
|
||||||
"aspeed,g5-scu", "syscon", "simple-mfd"
|
"aspeed,g5-scu", "syscon", "simple-mfd"
|
||||||
|
|
||||||
Refer to the the bindings described in
|
Refer to the the bindings described in
|
||||||
Documentation/devicetree/bindings/mfd/syscon.txt
|
Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
compatible:
|
compatible:
|
||||||
|
|
|
@ -17,7 +17,7 @@ description: |+
|
||||||
"aspeed,ast2600-scu", "syscon", "simple-mfd"
|
"aspeed,ast2600-scu", "syscon", "simple-mfd"
|
||||||
|
|
||||||
Refer to the the bindings described in
|
Refer to the the bindings described in
|
||||||
Documentation/devicetree/bindings/mfd/syscon.txt
|
Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
compatible:
|
compatible:
|
||||||
|
|
|
@ -248,7 +248,7 @@ examples:
|
||||||
};
|
};
|
||||||
|
|
||||||
//Example 3 pin groups
|
//Example 3 pin groups
|
||||||
pinctrl@60020000 {
|
pinctrl {
|
||||||
usart1_pins_a: usart1-0 {
|
usart1_pins_a: usart1-0 {
|
||||||
pins1 {
|
pins1 {
|
||||||
pinmux = <STM32_PINMUX('A', 9, AF7)>;
|
pinmux = <STM32_PINMUX('A', 9, AF7)>;
|
||||||
|
|
|
@ -18,7 +18,7 @@ description: |+
|
||||||
"amlogic,meson-gx-hhi-sysctrl", "simple-mfd", "syscon"
|
"amlogic,meson-gx-hhi-sysctrl", "simple-mfd", "syscon"
|
||||||
|
|
||||||
Refer to the the bindings described in
|
Refer to the the bindings described in
|
||||||
Documentation/devicetree/bindings/mfd/syscon.txt
|
Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
compatible:
|
compatible:
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
PM Domain Idle State Node:
|
|
||||||
|
|
||||||
A domain idle state node represents the state parameters that will be used to
|
|
||||||
select the state when there are no active components in the domain.
|
|
||||||
|
|
||||||
The state node has the following parameters -
|
|
||||||
|
|
||||||
- compatible:
|
|
||||||
Usage: Required
|
|
||||||
Value type: <string>
|
|
||||||
Definition: Must be "domain-idle-state".
|
|
||||||
|
|
||||||
- entry-latency-us
|
|
||||||
Usage: Required
|
|
||||||
Value type: <prop-encoded-array>
|
|
||||||
Definition: u32 value representing worst case latency in
|
|
||||||
microseconds required to enter the idle state.
|
|
||||||
The exit-latency-us duration may be guaranteed
|
|
||||||
only after entry-latency-us has passed.
|
|
||||||
|
|
||||||
- exit-latency-us
|
|
||||||
Usage: Required
|
|
||||||
Value type: <prop-encoded-array>
|
|
||||||
Definition: u32 value representing worst case latency
|
|
||||||
in microseconds required to exit the idle state.
|
|
||||||
|
|
||||||
- min-residency-us
|
|
||||||
Usage: Required
|
|
||||||
Value type: <prop-encoded-array>
|
|
||||||
Definition: u32 value representing minimum residency duration
|
|
||||||
in microseconds after which the idle state will yield
|
|
||||||
power benefits after overcoming the overhead in entering
|
|
||||||
i the idle state.
|
|
|
@ -0,0 +1,64 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
$id: http://devicetree.org/schemas/power/domain-idle-state.yaml#
|
||||||
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||||
|
|
||||||
|
title: PM Domain Idle States binding description
|
||||||
|
|
||||||
|
maintainers:
|
||||||
|
- Ulf Hansson <ulf.hansson@linaro.org>
|
||||||
|
|
||||||
|
description:
|
||||||
|
A domain idle state node represents the state parameters that will be used to
|
||||||
|
select the state when there are no active components in the PM domain.
|
||||||
|
|
||||||
|
properties:
|
||||||
|
$nodename:
|
||||||
|
const: domain-idle-states
|
||||||
|
|
||||||
|
patternProperties:
|
||||||
|
"^(cpu|cluster|domain)-":
|
||||||
|
type: object
|
||||||
|
description:
|
||||||
|
Each state node represents a domain idle state description.
|
||||||
|
|
||||||
|
properties:
|
||||||
|
compatible:
|
||||||
|
const: domain-idle-state
|
||||||
|
|
||||||
|
entry-latency-us:
|
||||||
|
description:
|
||||||
|
The worst case latency in microseconds required to enter the idle
|
||||||
|
state. Note that, the exit-latency-us duration may be guaranteed only
|
||||||
|
after the entry-latency-us has passed.
|
||||||
|
|
||||||
|
exit-latency-us:
|
||||||
|
description:
|
||||||
|
The worst case latency in microseconds required to exit the idle
|
||||||
|
state.
|
||||||
|
|
||||||
|
min-residency-us:
|
||||||
|
description:
|
||||||
|
The minimum residency duration in microseconds after which the idle
|
||||||
|
state will yield power benefits, after overcoming the overhead while
|
||||||
|
entering the idle state.
|
||||||
|
|
||||||
|
required:
|
||||||
|
- compatible
|
||||||
|
- entry-latency-us
|
||||||
|
- exit-latency-us
|
||||||
|
- min-residency-us
|
||||||
|
|
||||||
|
examples:
|
||||||
|
- |
|
||||||
|
|
||||||
|
domain-idle-states {
|
||||||
|
domain_retention: domain-retention {
|
||||||
|
compatible = "domain-idle-state";
|
||||||
|
entry-latency-us = <20>;
|
||||||
|
exit-latency-us = <40>;
|
||||||
|
min-residency-us = <80>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
...
|
|
@ -25,22 +25,20 @@ description: |+
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
$nodename:
|
$nodename:
|
||||||
pattern: "^(power-controller|power-domain)(@.*)?$"
|
pattern: "^(power-controller|power-domain)([@-].*)?$"
|
||||||
|
|
||||||
domain-idle-states:
|
domain-idle-states:
|
||||||
$ref: /schemas/types.yaml#/definitions/phandle-array
|
$ref: /schemas/types.yaml#/definitions/phandle-array
|
||||||
description:
|
description: |
|
||||||
A phandle of an idle-state that shall be soaked into a generic domain
|
Phandles of idle states that defines the available states for the
|
||||||
power state. The idle state definitions are compatible with
|
power-domain provider. The idle state definitions are compatible with the
|
||||||
domain-idle-state specified in
|
domain-idle-state bindings, specified in ./domain-idle-state.yaml.
|
||||||
Documentation/devicetree/bindings/power/domain-idle-state.txt
|
|
||||||
phandles that are not compatible with domain-idle-state will be ignored.
|
Note that, the domain-idle-state property reflects the idle states of this
|
||||||
The domain-idle-state property reflects the idle state of this PM domain
|
PM domain and not the idle states of the devices or sub-domains in the PM
|
||||||
and not the idle states of the devices or sub-domains in the PM domain.
|
domain. Devices and sub-domains have their own idle states independent of
|
||||||
Devices and sub-domains have their own idle-states independent
|
the parent domain's idle states. In the absence of this property, the
|
||||||
of the parent domain's idle states. In the absence of this property,
|
domain would be considered as capable of being powered-on or powered-off.
|
||||||
the domain would be considered as capable of being powered-on
|
|
||||||
or powered-off.
|
|
||||||
|
|
||||||
operating-points-v2:
|
operating-points-v2:
|
||||||
$ref: /schemas/types.yaml#/definitions/phandle-array
|
$ref: /schemas/types.yaml#/definitions/phandle-array
|
||||||
|
|
|
@ -109,4 +109,4 @@ Example:
|
||||||
required-opps = <&domain1_opp_1>;
|
required-opps = <&domain1_opp_1>;
|
||||||
};
|
};
|
||||||
|
|
||||||
[1]. Documentation/devicetree/bindings/power/domain-idle-state.txt
|
[1]. Documentation/devicetree/bindings/power/domain-idle-state.yaml
|
||||||
|
|
|
@ -161,7 +161,7 @@ The regulator node houses sub-nodes for each regulator within the device. Each
|
||||||
sub-node is identified using the node's name, with valid values listed for each
|
sub-node is identified using the node's name, with valid values listed for each
|
||||||
of the PMICs below.
|
of the PMICs below.
|
||||||
|
|
||||||
pm8005:
|
pm8004:
|
||||||
s2, s5
|
s2, s5
|
||||||
|
|
||||||
pm8005:
|
pm8005:
|
||||||
|
|
|
@ -191,7 +191,7 @@ patternProperties:
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- |
|
- |
|
||||||
xyzreg: regulator@0 {
|
xyzreg: regulator {
|
||||||
regulator-min-microvolt = <1000000>;
|
regulator-min-microvolt = <1000000>;
|
||||||
regulator-max-microvolt = <2500000>;
|
regulator-max-microvolt = <2500000>;
|
||||||
regulator-always-on;
|
regulator-always-on;
|
||||||
|
|
|
@ -23,7 +23,11 @@ properties:
|
||||||
description: Global reset register offset and bit offset.
|
description: Global reset register offset and bit offset.
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: /schemas/types.yaml#/definitions/uint32-array
|
- $ref: /schemas/types.yaml#/definitions/uint32-array
|
||||||
- maxItems: 2
|
items:
|
||||||
|
- description: Register offset
|
||||||
|
- description: Register bit offset
|
||||||
|
minimum: 0
|
||||||
|
maximum: 31
|
||||||
|
|
||||||
"#reset-cells":
|
"#reset-cells":
|
||||||
minimum: 2
|
minimum: 2
|
||||||
|
|
|
@ -3,4 +3,4 @@ STMicroelectronics STM32MP1 Peripheral Reset Controller
|
||||||
|
|
||||||
The RCC IP is both a reset and a clock controller.
|
The RCC IP is both a reset and a clock controller.
|
||||||
|
|
||||||
Please see Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.txt
|
Please see Documentation/devicetree/bindings/clock/st,stm32mp1-rcc.yaml
|
||||||
|
|
|
@ -36,7 +36,7 @@ SAI subnodes required properties:
|
||||||
- clock-names: Must contain "sai_ck".
|
- clock-names: Must contain "sai_ck".
|
||||||
Must also contain "MCLK", if SAI shares a master clock,
|
Must also contain "MCLK", if SAI shares a master clock,
|
||||||
with a SAI set as MCLK clock provider.
|
with a SAI set as MCLK clock provider.
|
||||||
- dmas: see Documentation/devicetree/bindings/dma/stm32-dma.txt
|
- dmas: see Documentation/devicetree/bindings/dma/st,stm32-dma.yaml
|
||||||
- dma-names: identifier string for each DMA request line
|
- dma-names: identifier string for each DMA request line
|
||||||
"tx": if sai sub-block is configured as playback DAI
|
"tx": if sai sub-block is configured as playback DAI
|
||||||
"rx": if sai sub-block is configured as capture DAI
|
"rx": if sai sub-block is configured as capture DAI
|
||||||
|
|
|
@ -10,7 +10,7 @@ Required properties:
|
||||||
- clock-names: must contain "kclk"
|
- clock-names: must contain "kclk"
|
||||||
- interrupts: cpu DAI interrupt line
|
- interrupts: cpu DAI interrupt line
|
||||||
- dmas: DMA specifiers for audio data DMA and iec control flow DMA
|
- dmas: DMA specifiers for audio data DMA and iec control flow DMA
|
||||||
See STM32 DMA bindings, Documentation/devicetree/bindings/dma/stm32-dma.txt
|
See STM32 DMA bindings, Documentation/devicetree/bindings/dma/st,stm32-dma.yaml
|
||||||
- dma-names: two dmas have to be defined, "rx" and "rx-ctrl"
|
- dma-names: two dmas have to be defined, "rx" and "rx-ctrl"
|
||||||
|
|
||||||
Optional properties:
|
Optional properties:
|
||||||
|
|
|
@ -49,7 +49,7 @@ properties:
|
||||||
dmas:
|
dmas:
|
||||||
description: |
|
description: |
|
||||||
DMA specifiers for tx and rx dma. DMA fifo mode must be used. See
|
DMA specifiers for tx and rx dma. DMA fifo mode must be used. See
|
||||||
the STM32 DMA bindings Documentation/devicetree/bindings/dma/stm32-dma.txt.
|
the STM32 DMA bindings Documentation/devicetree/bindings/dma/st,stm32-dma.yaml.
|
||||||
items:
|
items:
|
||||||
- description: rx DMA channel
|
- description: rx DMA channel
|
||||||
- description: tx DMA channel
|
- description: tx DMA channel
|
||||||
|
|
|
@ -125,7 +125,7 @@ examples:
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
ranges;
|
ranges;
|
||||||
|
|
||||||
sram_a: sram@00000000 {
|
sram_a: sram@0 {
|
||||||
compatible = "mmio-sram";
|
compatible = "mmio-sram";
|
||||||
reg = <0x00000000 0xc000>;
|
reg = <0x00000000 0xc000>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
|
|
|
@ -17,7 +17,7 @@ description: |+
|
||||||
"brcm,bcm2711-avs-monitor", "syscon", "simple-mfd"
|
"brcm,bcm2711-avs-monitor", "syscon", "simple-mfd"
|
||||||
|
|
||||||
Refer to the the bindings described in
|
Refer to the the bindings described in
|
||||||
Documentation/devicetree/bindings/mfd/syscon.txt
|
Documentation/devicetree/bindings/mfd/syscon.yaml
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
compatible:
|
compatible:
|
||||||
|
|
|
@ -87,7 +87,7 @@ additionalProperties: false
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
- |
|
- |
|
||||||
timer {
|
timer@1c20c00 {
|
||||||
compatible = "allwinner,sun4i-a10-timer";
|
compatible = "allwinner,sun4i-a10-timer";
|
||||||
reg = <0x01c20c00 0x400>;
|
reg = <0x01c20c00 0x400>;
|
||||||
interrupts = <22>,
|
interrupts = <22>,
|
||||||
|
|
|
@ -151,8 +151,8 @@ The details of these operations are:
|
||||||
Note that callbacks will always be invoked from the DMA
|
Note that callbacks will always be invoked from the DMA
|
||||||
engines tasklet, never from interrupt context.
|
engines tasklet, never from interrupt context.
|
||||||
|
|
||||||
Optional: per descriptor metadata
|
**Optional: per descriptor metadata**
|
||||||
---------------------------------
|
|
||||||
DMAengine provides two ways for metadata support.
|
DMAengine provides two ways for metadata support.
|
||||||
|
|
||||||
DESC_METADATA_CLIENT
|
DESC_METADATA_CLIENT
|
||||||
|
@ -199,12 +199,15 @@ Optional: per descriptor metadata
|
||||||
DESC_METADATA_CLIENT
|
DESC_METADATA_CLIENT
|
||||||
|
|
||||||
- DMA_MEM_TO_DEV / DEV_MEM_TO_MEM:
|
- DMA_MEM_TO_DEV / DEV_MEM_TO_MEM:
|
||||||
|
|
||||||
1. prepare the descriptor (dmaengine_prep_*)
|
1. prepare the descriptor (dmaengine_prep_*)
|
||||||
construct the metadata in the client's buffer
|
construct the metadata in the client's buffer
|
||||||
2. use dmaengine_desc_attach_metadata() to attach the buffer to the
|
2. use dmaengine_desc_attach_metadata() to attach the buffer to the
|
||||||
descriptor
|
descriptor
|
||||||
3. submit the transfer
|
3. submit the transfer
|
||||||
|
|
||||||
- DMA_DEV_TO_MEM:
|
- DMA_DEV_TO_MEM:
|
||||||
|
|
||||||
1. prepare the descriptor (dmaengine_prep_*)
|
1. prepare the descriptor (dmaengine_prep_*)
|
||||||
2. use dmaengine_desc_attach_metadata() to attach the buffer to the
|
2. use dmaengine_desc_attach_metadata() to attach the buffer to the
|
||||||
descriptor
|
descriptor
|
||||||
|
@ -215,6 +218,7 @@ Optional: per descriptor metadata
|
||||||
DESC_METADATA_ENGINE
|
DESC_METADATA_ENGINE
|
||||||
|
|
||||||
- DMA_MEM_TO_DEV / DEV_MEM_TO_MEM:
|
- DMA_MEM_TO_DEV / DEV_MEM_TO_MEM:
|
||||||
|
|
||||||
1. prepare the descriptor (dmaengine_prep_*)
|
1. prepare the descriptor (dmaengine_prep_*)
|
||||||
2. use dmaengine_desc_get_metadata_ptr() to get the pointer to the
|
2. use dmaengine_desc_get_metadata_ptr() to get the pointer to the
|
||||||
engine's metadata area
|
engine's metadata area
|
||||||
|
@ -222,7 +226,9 @@ Optional: per descriptor metadata
|
||||||
4. use dmaengine_desc_set_metadata_len() to tell the DMA engine the
|
4. use dmaengine_desc_set_metadata_len() to tell the DMA engine the
|
||||||
amount of data the client has placed into the metadata buffer
|
amount of data the client has placed into the metadata buffer
|
||||||
5. submit the transfer
|
5. submit the transfer
|
||||||
|
|
||||||
- DMA_DEV_TO_MEM:
|
- DMA_DEV_TO_MEM:
|
||||||
|
|
||||||
1. prepare the descriptor (dmaengine_prep_*)
|
1. prepare the descriptor (dmaengine_prep_*)
|
||||||
2. submit the transfer
|
2. submit the transfer
|
||||||
3. on transfer completion, use dmaengine_desc_get_metadata_ptr() to get
|
3. on transfer completion, use dmaengine_desc_get_metadata_ptr() to get
|
||||||
|
@ -278,8 +284,8 @@ Optional: per descriptor metadata
|
||||||
|
|
||||||
void dma_async_issue_pending(struct dma_chan *chan);
|
void dma_async_issue_pending(struct dma_chan *chan);
|
||||||
|
|
||||||
Further APIs:
|
Further APIs
|
||||||
-------------
|
------------
|
||||||
|
|
||||||
1. Terminate APIs
|
1. Terminate APIs
|
||||||
|
|
||||||
|
|
|
@ -164,9 +164,9 @@ file.
|
||||||
void __iomem *base;
|
void __iomem *base;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct dentry *debugfs_create_regset32(const char *name, umode_t mode,
|
debugfs_create_regset32(const char *name, umode_t mode,
|
||||||
struct dentry *parent,
|
struct dentry *parent,
|
||||||
struct debugfs_regset32 *regset);
|
struct debugfs_regset32 *regset);
|
||||||
|
|
||||||
void debugfs_print_regs32(struct seq_file *s, struct debugfs_reg32 *regs,
|
void debugfs_print_regs32(struct seq_file *s, struct debugfs_reg32 *regs,
|
||||||
int nregs, void __iomem *base, char *prefix);
|
int nregs, void __iomem *base, char *prefix);
|
||||||
|
|
|
@ -134,7 +134,7 @@ Sequential zone files can only be written sequentially, starting from the file
|
||||||
end, that is, write operations can only be append writes. Zonefs makes no
|
end, that is, write operations can only be append writes. Zonefs makes no
|
||||||
attempt at accepting random writes and will fail any write request that has a
|
attempt at accepting random writes and will fail any write request that has a
|
||||||
start offset not corresponding to the end of the file, or to the end of the last
|
start offset not corresponding to the end of the file, or to the end of the last
|
||||||
write issued and still in-flight (for asynchrnous I/O operations).
|
write issued and still in-flight (for asynchronous I/O operations).
|
||||||
|
|
||||||
Since dirty page writeback by the page cache does not guarantee a sequential
|
Since dirty page writeback by the page cache does not guarantee a sequential
|
||||||
write pattern, zonefs prevents buffered writes and writeable shared mappings
|
write pattern, zonefs prevents buffered writes and writeable shared mappings
|
||||||
|
@ -142,7 +142,7 @@ on sequential files. Only direct I/O writes are accepted for these files.
|
||||||
zonefs relies on the sequential delivery of write I/O requests to the device
|
zonefs relies on the sequential delivery of write I/O requests to the device
|
||||||
implemented by the block layer elevator. An elevator implementing the sequential
|
implemented by the block layer elevator. An elevator implementing the sequential
|
||||||
write feature for zoned block device (ELEVATOR_F_ZBD_SEQ_WRITE elevator feature)
|
write feature for zoned block device (ELEVATOR_F_ZBD_SEQ_WRITE elevator feature)
|
||||||
must be used. This type of elevator (e.g. mq-deadline) is the set by default
|
must be used. This type of elevator (e.g. mq-deadline) is set by default
|
||||||
for zoned block devices on device initialization.
|
for zoned block devices on device initialization.
|
||||||
|
|
||||||
There are no restrictions on the type of I/O used for read operations in
|
There are no restrictions on the type of I/O used for read operations in
|
||||||
|
@ -196,7 +196,7 @@ additional conditions that result in I/O errors.
|
||||||
may still happen in the case of a partial failure of a very large direct I/O
|
may still happen in the case of a partial failure of a very large direct I/O
|
||||||
operation split into multiple BIOs/requests or asynchronous I/O operations.
|
operation split into multiple BIOs/requests or asynchronous I/O operations.
|
||||||
If one of the write request within the set of sequential write requests
|
If one of the write request within the set of sequential write requests
|
||||||
issued to the device fails, all write requests after queued after it will
|
issued to the device fails, all write requests queued after it will
|
||||||
become unaligned and fail.
|
become unaligned and fail.
|
||||||
|
|
||||||
* Delayed write errors: similarly to regular block devices, if the device side
|
* Delayed write errors: similarly to regular block devices, if the device side
|
||||||
|
@ -207,7 +207,7 @@ additional conditions that result in I/O errors.
|
||||||
causing all data to be dropped after the sector that caused the error.
|
causing all data to be dropped after the sector that caused the error.
|
||||||
|
|
||||||
All I/O errors detected by zonefs are notified to the user with an error code
|
All I/O errors detected by zonefs are notified to the user with an error code
|
||||||
return for the system call that trigered or detected the error. The recovery
|
return for the system call that triggered or detected the error. The recovery
|
||||||
actions taken by zonefs in response to I/O errors depend on the I/O type (read
|
actions taken by zonefs in response to I/O errors depend on the I/O type (read
|
||||||
vs write) and on the reason for the error (bad sector, unaligned writes or zone
|
vs write) and on the reason for the error (bad sector, unaligned writes or zone
|
||||||
condition change).
|
condition change).
|
||||||
|
@ -222,7 +222,7 @@ condition change).
|
||||||
* A zone condition change to read-only or offline also always triggers zonefs
|
* A zone condition change to read-only or offline also always triggers zonefs
|
||||||
I/O error recovery.
|
I/O error recovery.
|
||||||
|
|
||||||
Zonefs minimal I/O error recovery may change a file size and a file access
|
Zonefs minimal I/O error recovery may change a file size and file access
|
||||||
permissions.
|
permissions.
|
||||||
|
|
||||||
* File size changes:
|
* File size changes:
|
||||||
|
@ -237,7 +237,7 @@ permissions.
|
||||||
A file size may also be reduced to reflect a delayed write error detected on
|
A file size may also be reduced to reflect a delayed write error detected on
|
||||||
fsync(): in this case, the amount of data effectively written in the zone may
|
fsync(): in this case, the amount of data effectively written in the zone may
|
||||||
be less than originally indicated by the file inode size. After such I/O
|
be less than originally indicated by the file inode size. After such I/O
|
||||||
error, zonefs always fixes a file inode size to reflect the amount of data
|
error, zonefs always fixes the file inode size to reflect the amount of data
|
||||||
persistently stored in the file zone.
|
persistently stored in the file zone.
|
||||||
|
|
||||||
* Access permission changes:
|
* Access permission changes:
|
||||||
|
@ -281,11 +281,11 @@ Further notes:
|
||||||
permissions to read-only applies to all files. The file system is remounted
|
permissions to read-only applies to all files. The file system is remounted
|
||||||
read-only.
|
read-only.
|
||||||
* Access permission and file size changes due to the device transitioning zones
|
* Access permission and file size changes due to the device transitioning zones
|
||||||
to the offline condition are permanent. Remounting or reformating the device
|
to the offline condition are permanent. Remounting or reformatting the device
|
||||||
with mkfs.zonefs (mkzonefs) will not change back offline zone files to a good
|
with mkfs.zonefs (mkzonefs) will not change back offline zone files to a good
|
||||||
state.
|
state.
|
||||||
* File access permission changes to read-only due to the device transitioning
|
* File access permission changes to read-only due to the device transitioning
|
||||||
zones to the read-only condition are permanent. Remounting or reformating
|
zones to the read-only condition are permanent. Remounting or reformatting
|
||||||
the device will not re-enable file write access.
|
the device will not re-enable file write access.
|
||||||
* File access permission changes implied by the remount-ro, zone-ro and
|
* File access permission changes implied by the remount-ro, zone-ro and
|
||||||
zone-offline mount options are temporary for zones in a good condition.
|
zone-offline mount options are temporary for zones in a good condition.
|
||||||
|
@ -301,13 +301,13 @@ Mount options
|
||||||
|
|
||||||
zonefs define the "errors=<behavior>" mount option to allow the user to specify
|
zonefs define the "errors=<behavior>" mount option to allow the user to specify
|
||||||
zonefs behavior in response to I/O errors, inode size inconsistencies or zone
|
zonefs behavior in response to I/O errors, inode size inconsistencies or zone
|
||||||
condition chages. The defined behaviors are as follow:
|
condition changes. The defined behaviors are as follow:
|
||||||
* remount-ro (default)
|
* remount-ro (default)
|
||||||
* zone-ro
|
* zone-ro
|
||||||
* zone-offline
|
* zone-offline
|
||||||
* repair
|
* repair
|
||||||
|
|
||||||
The I/O error actions defined for each behavior is detailed in the previous
|
The I/O error actions defined for each behavior are detailed in the previous
|
||||||
section.
|
section.
|
||||||
|
|
||||||
Zonefs User Space Tools
|
Zonefs User Space Tools
|
||||||
|
|
|
@ -20,8 +20,7 @@ Usage Notes
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
This driver does not auto-detect devices. You will have to instantiate the
|
This driver does not auto-detect devices. You will have to instantiate the
|
||||||
devices explicitly. Please see Documentation/i2c/instantiating-devices for
|
devices explicitly. Please see :doc:`/i2c/instantiating-devices` for details.
|
||||||
details.
|
|
||||||
|
|
||||||
|
|
||||||
Sysfs entries
|
Sysfs entries
|
||||||
|
|
|
@ -24,6 +24,7 @@ This driver implements support for Infineon Multi-phase XDPE122 family
|
||||||
dual loop voltage regulators.
|
dual loop voltage regulators.
|
||||||
The family includes XDPE12284 and XDPE12254 devices.
|
The family includes XDPE12284 and XDPE12254 devices.
|
||||||
The devices from this family complaint with:
|
The devices from this family complaint with:
|
||||||
|
|
||||||
- Intel VR13 and VR13HC rev 1.3, IMVP8 rev 1.2 and IMPVP9 rev 1.3 DC-DC
|
- Intel VR13 and VR13HC rev 1.3, IMVP8 rev 1.2 and IMPVP9 rev 1.3 DC-DC
|
||||||
converter specification.
|
converter specification.
|
||||||
- Intel SVID rev 1.9. protocol.
|
- Intel SVID rev 1.9. protocol.
|
||||||
|
|
|
@ -765,7 +765,7 @@ is not sufficient this sometimes needs to be explicit.
|
||||||
Example::
|
Example::
|
||||||
|
|
||||||
#arch/x86/boot/Makefile
|
#arch/x86/boot/Makefile
|
||||||
subdir- := compressed/
|
subdir- := compressed
|
||||||
|
|
||||||
The above assignment instructs kbuild to descend down in the
|
The above assignment instructs kbuild to descend down in the
|
||||||
directory compressed/ when "make clean" is executed.
|
directory compressed/ when "make clean" is executed.
|
||||||
|
@ -1379,9 +1379,6 @@ See subsequent chapter for the syntax of the Kbuild file.
|
||||||
in arch/$(ARCH)/include/(uapi/)/asm, Kbuild will automatically generate
|
in arch/$(ARCH)/include/(uapi/)/asm, Kbuild will automatically generate
|
||||||
a wrapper of the asm-generic one.
|
a wrapper of the asm-generic one.
|
||||||
|
|
||||||
The convention is to list one subdir per line and
|
|
||||||
preferably in alphabetic order.
|
|
||||||
|
|
||||||
8 Kbuild Variables
|
8 Kbuild Variables
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
|
@ -487,8 +487,9 @@ phy_register_fixup_for_id()::
|
||||||
The stubs set one of the two matching criteria, and set the other one to
|
The stubs set one of the two matching criteria, and set the other one to
|
||||||
match anything.
|
match anything.
|
||||||
|
|
||||||
When phy_register_fixup() or \*_for_uid()/\*_for_id() is called at module,
|
When phy_register_fixup() or \*_for_uid()/\*_for_id() is called at module load
|
||||||
unregister fixup and free allocate memory are required.
|
time, the module needs to unregister the fixup and free allocated memory when
|
||||||
|
it's unloaded.
|
||||||
|
|
||||||
Call one of following function before unloading module::
|
Call one of following function before unloading module::
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,6 @@ Power Management
|
||||||
drivers-testing
|
drivers-testing
|
||||||
energy-model
|
energy-model
|
||||||
freezing-of-tasks
|
freezing-of-tasks
|
||||||
interface
|
|
||||||
opp
|
opp
|
||||||
pci
|
pci
|
||||||
pm_qos_interface
|
pm_qos_interface
|
||||||
|
|
|
@ -244,23 +244,23 @@ disclosure of a particular issue, unless requested by a response team or by
|
||||||
an involved disclosed party. The current ambassadors list:
|
an involved disclosed party. The current ambassadors list:
|
||||||
|
|
||||||
============= ========================================================
|
============= ========================================================
|
||||||
ARM
|
ARM Grant Likely <grant.likely@arm.com>
|
||||||
AMD Tom Lendacky <tom.lendacky@amd.com>
|
AMD Tom Lendacky <tom.lendacky@amd.com>
|
||||||
IBM
|
IBM
|
||||||
Intel Tony Luck <tony.luck@intel.com>
|
Intel Tony Luck <tony.luck@intel.com>
|
||||||
Qualcomm Trilok Soni <tsoni@codeaurora.org>
|
Qualcomm Trilok Soni <tsoni@codeaurora.org>
|
||||||
|
|
||||||
Microsoft Sasha Levin <sashal@kernel.org>
|
Microsoft James Morris <jamorris@linux.microsoft.com>
|
||||||
VMware
|
VMware
|
||||||
Xen Andrew Cooper <andrew.cooper3@citrix.com>
|
Xen Andrew Cooper <andrew.cooper3@citrix.com>
|
||||||
|
|
||||||
Canonical Tyler Hicks <tyhicks@canonical.com>
|
Canonical John Johansen <john.johansen@canonical.com>
|
||||||
Debian Ben Hutchings <ben@decadent.org.uk>
|
Debian Ben Hutchings <ben@decadent.org.uk>
|
||||||
Oracle Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
|
Oracle Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
|
||||||
Red Hat Josh Poimboeuf <jpoimboe@redhat.com>
|
Red Hat Josh Poimboeuf <jpoimboe@redhat.com>
|
||||||
SUSE Jiri Kosina <jkosina@suse.cz>
|
SUSE Jiri Kosina <jkosina@suse.cz>
|
||||||
|
|
||||||
Amazon Peter Bowen <pzb@amzn.com>
|
Amazon
|
||||||
Google Kees Cook <keescook@chromium.org>
|
Google Kees Cook <keescook@chromium.org>
|
||||||
============= ========================================================
|
============= ========================================================
|
||||||
|
|
||||||
|
|
|
@ -30,4 +30,4 @@ if [ -n "$parallel" ] ; then
|
||||||
parallel="-j$parallel"
|
parallel="-j$parallel"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec "$sphinx" "$parallel" "$@"
|
exec "$sphinx" $parallel "$@"
|
||||||
|
|
|
@ -183,7 +183,7 @@ CVE分配
|
||||||
VMware
|
VMware
|
||||||
Xen Andrew Cooper <andrew.cooper3@citrix.com>
|
Xen Andrew Cooper <andrew.cooper3@citrix.com>
|
||||||
|
|
||||||
Canonical Tyler Hicks <tyhicks@canonical.com>
|
Canonical John Johansen <john.johansen@canonical.com>
|
||||||
Debian Ben Hutchings <ben@decadent.org.uk>
|
Debian Ben Hutchings <ben@decadent.org.uk>
|
||||||
Oracle Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
|
Oracle Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
|
||||||
Red Hat Josh Poimboeuf <jpoimboe@redhat.com>
|
Red Hat Josh Poimboeuf <jpoimboe@redhat.com>
|
||||||
|
|
|
@ -4611,35 +4611,38 @@ unpins the VPA pages and releases all the device pages that are used to
|
||||||
track the secure pages by hypervisor.
|
track the secure pages by hypervisor.
|
||||||
|
|
||||||
4.122 KVM_S390_NORMAL_RESET
|
4.122 KVM_S390_NORMAL_RESET
|
||||||
|
---------------------------
|
||||||
|
|
||||||
Capability: KVM_CAP_S390_VCPU_RESETS
|
:Capability: KVM_CAP_S390_VCPU_RESETS
|
||||||
Architectures: s390
|
:Architectures: s390
|
||||||
Type: vcpu ioctl
|
:Type: vcpu ioctl
|
||||||
Parameters: none
|
:Parameters: none
|
||||||
Returns: 0
|
:Returns: 0
|
||||||
|
|
||||||
This ioctl resets VCPU registers and control structures according to
|
This ioctl resets VCPU registers and control structures according to
|
||||||
the cpu reset definition in the POP (Principles Of Operation).
|
the cpu reset definition in the POP (Principles Of Operation).
|
||||||
|
|
||||||
4.123 KVM_S390_INITIAL_RESET
|
4.123 KVM_S390_INITIAL_RESET
|
||||||
|
----------------------------
|
||||||
|
|
||||||
Capability: none
|
:Capability: none
|
||||||
Architectures: s390
|
:Architectures: s390
|
||||||
Type: vcpu ioctl
|
:Type: vcpu ioctl
|
||||||
Parameters: none
|
:Parameters: none
|
||||||
Returns: 0
|
:Returns: 0
|
||||||
|
|
||||||
This ioctl resets VCPU registers and control structures according to
|
This ioctl resets VCPU registers and control structures according to
|
||||||
the initial cpu reset definition in the POP. However, the cpu is not
|
the initial cpu reset definition in the POP. However, the cpu is not
|
||||||
put into ESA mode. This reset is a superset of the normal reset.
|
put into ESA mode. This reset is a superset of the normal reset.
|
||||||
|
|
||||||
4.124 KVM_S390_CLEAR_RESET
|
4.124 KVM_S390_CLEAR_RESET
|
||||||
|
--------------------------
|
||||||
|
|
||||||
Capability: KVM_CAP_S390_VCPU_RESETS
|
:Capability: KVM_CAP_S390_VCPU_RESETS
|
||||||
Architectures: s390
|
:Architectures: s390
|
||||||
Type: vcpu ioctl
|
:Type: vcpu ioctl
|
||||||
Parameters: none
|
:Parameters: none
|
||||||
Returns: 0
|
:Returns: 0
|
||||||
|
|
||||||
This ioctl resets VCPU registers and control structures according to
|
This ioctl resets VCPU registers and control structures according to
|
||||||
the clear cpu reset definition in the POP. However, the cpu is not put
|
the clear cpu reset definition in the POP. However, the cpu is not put
|
||||||
|
|
|
@ -19,7 +19,6 @@ x86-specific Documentation
|
||||||
tlb
|
tlb
|
||||||
mtrr
|
mtrr
|
||||||
pat
|
pat
|
||||||
intel_mpx
|
|
||||||
intel-iommu
|
intel-iommu
|
||||||
intel_txt
|
intel_txt
|
||||||
amd-memory-encryption
|
amd-memory-encryption
|
||||||
|
|
84
MAINTAINERS
84
MAINTAINERS
|
@ -693,7 +693,7 @@ ALLWINNER CPUFREQ DRIVER
|
||||||
M: Yangtao Li <tiny.windzz@gmail.com>
|
M: Yangtao Li <tiny.windzz@gmail.com>
|
||||||
L: linux-pm@vger.kernel.org
|
L: linux-pm@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
|
F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
|
||||||
F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
|
F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
|
||||||
|
|
||||||
ALLWINNER CRYPTO DRIVERS
|
ALLWINNER CRYPTO DRIVERS
|
||||||
|
@ -3649,6 +3649,7 @@ F: sound/pci/oxygen/
|
||||||
|
|
||||||
C-SKY ARCHITECTURE
|
C-SKY ARCHITECTURE
|
||||||
M: Guo Ren <guoren@kernel.org>
|
M: Guo Ren <guoren@kernel.org>
|
||||||
|
L: linux-csky@vger.kernel.org
|
||||||
T: git https://github.com/c-sky/csky-linux.git
|
T: git https://github.com/c-sky/csky-linux.git
|
||||||
S: Supported
|
S: Supported
|
||||||
F: arch/csky/
|
F: arch/csky/
|
||||||
|
@ -3909,7 +3910,7 @@ S: Supported
|
||||||
F: Documentation/filesystems/ceph.txt
|
F: Documentation/filesystems/ceph.txt
|
||||||
F: fs/ceph/
|
F: fs/ceph/
|
||||||
|
|
||||||
CERTIFICATE HANDLING:
|
CERTIFICATE HANDLING
|
||||||
M: David Howells <dhowells@redhat.com>
|
M: David Howells <dhowells@redhat.com>
|
||||||
M: David Woodhouse <dwmw2@infradead.org>
|
M: David Woodhouse <dwmw2@infradead.org>
|
||||||
L: keyrings@vger.kernel.org
|
L: keyrings@vger.kernel.org
|
||||||
|
@ -3919,7 +3920,7 @@ F: certs/
|
||||||
F: scripts/sign-file.c
|
F: scripts/sign-file.c
|
||||||
F: scripts/extract-cert.c
|
F: scripts/extract-cert.c
|
||||||
|
|
||||||
CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
|
CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM
|
||||||
L: devel@driverdev.osuosl.org
|
L: devel@driverdev.osuosl.org
|
||||||
S: Obsolete
|
S: Obsolete
|
||||||
F: drivers/staging/wusbcore/
|
F: drivers/staging/wusbcore/
|
||||||
|
@ -4016,7 +4017,7 @@ M: Cheng-Yi Chiang <cychiang@chromium.org>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
|
R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
|
||||||
R: Guenter Roeck <groeck@chromium.org>
|
R: Guenter Roeck <groeck@chromium.org>
|
||||||
F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
|
F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
|
||||||
F: sound/soc/codecs/cros_ec_codec.*
|
F: sound/soc/codecs/cros_ec_codec.*
|
||||||
|
|
||||||
CIRRUS LOGIC AUDIO CODEC DRIVERS
|
CIRRUS LOGIC AUDIO CODEC DRIVERS
|
||||||
|
@ -4474,7 +4475,7 @@ L: linux-media@vger.kernel.org
|
||||||
T: git git://linuxtv.org/media_tree.git
|
T: git git://linuxtv.org/media_tree.git
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/media/platform/sunxi/sun6i-csi/
|
F: drivers/media/platform/sunxi/sun6i-csi/
|
||||||
F: Documentation/devicetree/bindings/media/sun6i-csi.txt
|
F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
|
||||||
|
|
||||||
CW1200 WLAN driver
|
CW1200 WLAN driver
|
||||||
M: Solomon Peachy <pizza@shaftnet.org>
|
M: Solomon Peachy <pizza@shaftnet.org>
|
||||||
|
@ -5688,7 +5689,7 @@ L: dri-devel@lists.freedesktop.org
|
||||||
T: git git://anongit.freedesktop.org/drm/drm-misc
|
T: git git://anongit.freedesktop.org/drm/drm-misc
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/gpu/drm/stm
|
F: drivers/gpu/drm/stm
|
||||||
F: Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
|
F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
|
||||||
|
|
||||||
DRM DRIVERS FOR TI LCDC
|
DRM DRIVERS FOR TI LCDC
|
||||||
M: Jyri Sarha <jsarha@ti.com>
|
M: Jyri Sarha <jsarha@ti.com>
|
||||||
|
@ -5964,12 +5965,12 @@ S: Maintained
|
||||||
F: drivers/media/dvb-frontends/ec100*
|
F: drivers/media/dvb-frontends/ec100*
|
||||||
|
|
||||||
ECRYPT FILE SYSTEM
|
ECRYPT FILE SYSTEM
|
||||||
M: Tyler Hicks <tyhicks@canonical.com>
|
M: Tyler Hicks <code@tyhicks.com>
|
||||||
L: ecryptfs@vger.kernel.org
|
L: ecryptfs@vger.kernel.org
|
||||||
W: http://ecryptfs.org
|
W: http://ecryptfs.org
|
||||||
W: https://launchpad.net/ecryptfs
|
W: https://launchpad.net/ecryptfs
|
||||||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
|
||||||
S: Supported
|
S: Odd Fixes
|
||||||
F: Documentation/filesystems/ecryptfs.txt
|
F: Documentation/filesystems/ecryptfs.txt
|
||||||
F: fs/ecryptfs/
|
F: fs/ecryptfs/
|
||||||
|
|
||||||
|
@ -7079,7 +7080,7 @@ L: kvm@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
F: drivers/uio/uio_pci_generic.c
|
F: drivers/uio/uio_pci_generic.c
|
||||||
|
|
||||||
GENERIC VDSO LIBRARY:
|
GENERIC VDSO LIBRARY
|
||||||
M: Andy Lutomirski <luto@kernel.org>
|
M: Andy Lutomirski <luto@kernel.org>
|
||||||
M: Thomas Gleixner <tglx@linutronix.de>
|
M: Thomas Gleixner <tglx@linutronix.de>
|
||||||
M: Vincenzo Frascino <vincenzo.frascino@arm.com>
|
M: Vincenzo Frascino <vincenzo.frascino@arm.com>
|
||||||
|
@ -7769,7 +7770,7 @@ Hyper-V CORE AND DRIVERS
|
||||||
M: "K. Y. Srinivasan" <kys@microsoft.com>
|
M: "K. Y. Srinivasan" <kys@microsoft.com>
|
||||||
M: Haiyang Zhang <haiyangz@microsoft.com>
|
M: Haiyang Zhang <haiyangz@microsoft.com>
|
||||||
M: Stephen Hemminger <sthemmin@microsoft.com>
|
M: Stephen Hemminger <sthemmin@microsoft.com>
|
||||||
M: Sasha Levin <sashal@kernel.org>
|
M: Wei Liu <wei.liu@kernel.org>
|
||||||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
|
||||||
L: linux-hyperv@vger.kernel.org
|
L: linux-hyperv@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
|
@ -9310,7 +9311,7 @@ F: include/keys/trusted-type.h
|
||||||
F: security/keys/trusted.c
|
F: security/keys/trusted.c
|
||||||
F: include/keys/trusted.h
|
F: include/keys/trusted.h
|
||||||
|
|
||||||
KEYS/KEYRINGS:
|
KEYS/KEYRINGS
|
||||||
M: David Howells <dhowells@redhat.com>
|
M: David Howells <dhowells@redhat.com>
|
||||||
M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
|
M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
|
||||||
L: keyrings@vger.kernel.org
|
L: keyrings@vger.kernel.org
|
||||||
|
@ -10195,7 +10196,7 @@ MAXBOTIX ULTRASONIC RANGER IIO DRIVER
|
||||||
M: Andreas Klinger <ak@it-klinger.de>
|
M: Andreas Klinger <ak@it-klinger.de>
|
||||||
L: linux-iio@vger.kernel.org
|
L: linux-iio@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
|
F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
|
||||||
F: drivers/iio/proximity/mb1232.c
|
F: drivers/iio/proximity/mb1232.c
|
||||||
|
|
||||||
MAXIM MAX77650 PMIC MFD DRIVER
|
MAXIM MAX77650 PMIC MFD DRIVER
|
||||||
|
@ -10498,7 +10499,7 @@ M: Hugues Fruchet <hugues.fruchet@st.com>
|
||||||
L: linux-media@vger.kernel.org
|
L: linux-media@vger.kernel.org
|
||||||
T: git git://linuxtv.org/media_tree.git
|
T: git git://linuxtv.org/media_tree.git
|
||||||
S: Supported
|
S: Supported
|
||||||
F: Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
|
F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
|
||||||
F: drivers/media/platform/stm32/stm32-dcmi.c
|
F: drivers/media/platform/stm32/stm32-dcmi.c
|
||||||
|
|
||||||
MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
|
MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
|
||||||
|
@ -11146,14 +11147,12 @@ S: Maintained
|
||||||
F: drivers/usb/image/microtek.*
|
F: drivers/usb/image/microtek.*
|
||||||
|
|
||||||
MIPS
|
MIPS
|
||||||
M: Ralf Baechle <ralf@linux-mips.org>
|
M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
|
||||||
M: Paul Burton <paulburton@kernel.org>
|
|
||||||
L: linux-mips@vger.kernel.org
|
L: linux-mips@vger.kernel.org
|
||||||
W: http://www.linux-mips.org/
|
W: http://www.linux-mips.org/
|
||||||
T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
|
|
||||||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
|
||||||
Q: http://patchwork.linux-mips.org/project/linux-mips/list/
|
Q: http://patchwork.linux-mips.org/project/linux-mips/list/
|
||||||
S: Supported
|
S: Maintained
|
||||||
F: Documentation/devicetree/bindings/mips/
|
F: Documentation/devicetree/bindings/mips/
|
||||||
F: Documentation/mips/
|
F: Documentation/mips/
|
||||||
F: arch/mips/
|
F: arch/mips/
|
||||||
|
@ -11516,7 +11515,7 @@ F: drivers/scsi/mac_scsi.*
|
||||||
F: drivers/scsi/sun3_scsi.*
|
F: drivers/scsi/sun3_scsi.*
|
||||||
F: drivers/scsi/sun3_scsi_vme.c
|
F: drivers/scsi/sun3_scsi_vme.c
|
||||||
|
|
||||||
NCSI LIBRARY:
|
NCSI LIBRARY
|
||||||
M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
|
M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: net/ncsi/
|
F: net/ncsi/
|
||||||
|
@ -12772,7 +12771,7 @@ M: Tom Joseph <tjoseph@cadence.com>
|
||||||
L: linux-pci@vger.kernel.org
|
L: linux-pci@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/devicetree/bindings/pci/cdns,*.txt
|
F: Documentation/devicetree/bindings/pci/cdns,*.txt
|
||||||
F: drivers/pci/controller/pcie-cadence*
|
F: drivers/pci/controller/cadence/
|
||||||
|
|
||||||
PCI DRIVER FOR FREESCALE LAYERSCAPE
|
PCI DRIVER FOR FREESCALE LAYERSCAPE
|
||||||
M: Minghuan Lian <minghuan.Lian@nxp.com>
|
M: Minghuan Lian <minghuan.Lian@nxp.com>
|
||||||
|
@ -12985,7 +12984,6 @@ M: Robert Richter <rrichter@marvell.com>
|
||||||
L: linux-pci@vger.kernel.org
|
L: linux-pci@vger.kernel.org
|
||||||
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
|
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
|
||||||
S: Supported
|
S: Supported
|
||||||
F: Documentation/devicetree/bindings/pci/pci-thunder-*
|
|
||||||
F: drivers/pci/controller/pci-thunder-*
|
F: drivers/pci/controller/pci-thunder-*
|
||||||
|
|
||||||
PCIE DRIVER FOR HISILICON
|
PCIE DRIVER FOR HISILICON
|
||||||
|
@ -13544,7 +13542,7 @@ L: linuxppc-dev@lists.ozlabs.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/block/ps3vram.c
|
F: drivers/block/ps3vram.c
|
||||||
|
|
||||||
PSAMPLE PACKET SAMPLING SUPPORT:
|
PSAMPLE PACKET SAMPLING SUPPORT
|
||||||
M: Yotam Gigi <yotam.gi@gmail.com>
|
M: Yotam Gigi <yotam.gi@gmail.com>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: net/psample
|
F: net/psample
|
||||||
|
@ -14260,7 +14258,7 @@ F: include/dt-bindings/reset/
|
||||||
F: include/linux/reset.h
|
F: include/linux/reset.h
|
||||||
F: include/linux/reset/
|
F: include/linux/reset/
|
||||||
F: include/linux/reset-controller.h
|
F: include/linux/reset-controller.h
|
||||||
K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
|
K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
|
||||||
|
|
||||||
RESTARTABLE SEQUENCES SUPPORT
|
RESTARTABLE SEQUENCES SUPPORT
|
||||||
M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
|
M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
|
||||||
|
@ -14614,10 +14612,10 @@ F: drivers/media/pci/saa7146/
|
||||||
F: include/media/drv-intf/saa7146*
|
F: include/media/drv-intf/saa7146*
|
||||||
|
|
||||||
SAFESETID SECURITY MODULE
|
SAFESETID SECURITY MODULE
|
||||||
M: Micah Morton <mortonm@chromium.org>
|
M: Micah Morton <mortonm@chromium.org>
|
||||||
S: Supported
|
S: Supported
|
||||||
F: security/safesetid/
|
F: security/safesetid/
|
||||||
F: Documentation/admin-guide/LSM/SafeSetID.rst
|
F: Documentation/admin-guide/LSM/SafeSetID.rst
|
||||||
|
|
||||||
SAMSUNG AUDIO (ASoC) DRIVERS
|
SAMSUNG AUDIO (ASoC) DRIVERS
|
||||||
M: Krzysztof Kozlowski <krzk@kernel.org>
|
M: Krzysztof Kozlowski <krzk@kernel.org>
|
||||||
|
@ -15955,7 +15953,7 @@ F: drivers/*/stm32-*timer*
|
||||||
F: drivers/pwm/pwm-stm32*
|
F: drivers/pwm/pwm-stm32*
|
||||||
F: include/linux/*/stm32-*tim*
|
F: include/linux/*/stm32-*tim*
|
||||||
F: Documentation/ABI/testing/*timer-stm32
|
F: Documentation/ABI/testing/*timer-stm32
|
||||||
F: Documentation/devicetree/bindings/*/stm32-*timer*
|
F: Documentation/devicetree/bindings/*/*stm32-*timer*
|
||||||
F: Documentation/devicetree/bindings/pwm/pwm-stm32*
|
F: Documentation/devicetree/bindings/pwm/pwm-stm32*
|
||||||
|
|
||||||
STMMAC ETHERNET DRIVER
|
STMMAC ETHERNET DRIVER
|
||||||
|
@ -16114,6 +16112,8 @@ SYNOPSYS DESIGNWARE 8250 UART DRIVER
|
||||||
R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
|
R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/tty/serial/8250/8250_dw.c
|
F: drivers/tty/serial/8250/8250_dw.c
|
||||||
|
F: drivers/tty/serial/8250/8250_dwlib.*
|
||||||
|
F: drivers/tty/serial/8250/8250_lpss.c
|
||||||
|
|
||||||
SYNOPSYS DESIGNWARE APB GPIO DRIVER
|
SYNOPSYS DESIGNWARE APB GPIO DRIVER
|
||||||
M: Hoan Tran <hoan@os.amperecomputing.com>
|
M: Hoan Tran <hoan@os.amperecomputing.com>
|
||||||
|
@ -16584,8 +16584,8 @@ M: Michael Jamet <michael.jamet@intel.com>
|
||||||
M: Mika Westerberg <mika.westerberg@linux.intel.com>
|
M: Mika Westerberg <mika.westerberg@linux.intel.com>
|
||||||
M: Yehezkel Bernat <YehezkelShB@gmail.com>
|
M: Yehezkel Bernat <YehezkelShB@gmail.com>
|
||||||
L: linux-usb@vger.kernel.org
|
L: linux-usb@vger.kernel.org
|
||||||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
|
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
|
||||||
F: Documentation/admin-guide/thunderbolt.rst
|
F: Documentation/admin-guide/thunderbolt.rst
|
||||||
F: drivers/thunderbolt/
|
F: drivers/thunderbolt/
|
||||||
F: include/linux/thunderbolt.h
|
F: include/linux/thunderbolt.h
|
||||||
|
@ -17112,7 +17112,7 @@ S: Maintained
|
||||||
F: Documentation/admin-guide/ufs.rst
|
F: Documentation/admin-guide/ufs.rst
|
||||||
F: fs/ufs/
|
F: fs/ufs/
|
||||||
|
|
||||||
UHID USERSPACE HID IO DRIVER:
|
UHID USERSPACE HID IO DRIVER
|
||||||
M: David Herrmann <dh.herrmann@googlemail.com>
|
M: David Herrmann <dh.herrmann@googlemail.com>
|
||||||
L: linux-input@vger.kernel.org
|
L: linux-input@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
@ -17126,18 +17126,18 @@ S: Maintained
|
||||||
F: drivers/usb/common/ulpi.c
|
F: drivers/usb/common/ulpi.c
|
||||||
F: include/linux/ulpi/
|
F: include/linux/ulpi/
|
||||||
|
|
||||||
ULTRA-WIDEBAND (UWB) SUBSYSTEM:
|
ULTRA-WIDEBAND (UWB) SUBSYSTEM
|
||||||
L: devel@driverdev.osuosl.org
|
L: devel@driverdev.osuosl.org
|
||||||
S: Obsolete
|
S: Obsolete
|
||||||
F: drivers/staging/uwb/
|
F: drivers/staging/uwb/
|
||||||
|
|
||||||
UNICODE SUBSYSTEM:
|
UNICODE SUBSYSTEM
|
||||||
M: Gabriel Krisman Bertazi <krisman@collabora.com>
|
M: Gabriel Krisman Bertazi <krisman@collabora.com>
|
||||||
L: linux-fsdevel@vger.kernel.org
|
L: linux-fsdevel@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
F: fs/unicode/
|
F: fs/unicode/
|
||||||
|
|
||||||
UNICORE32 ARCHITECTURE:
|
UNICORE32 ARCHITECTURE
|
||||||
M: Guan Xuetao <gxt@pku.edu.cn>
|
M: Guan Xuetao <gxt@pku.edu.cn>
|
||||||
W: http://mprc.pku.edu.cn/~guanxuetao/linux
|
W: http://mprc.pku.edu.cn/~guanxuetao/linux
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
@ -17424,11 +17424,14 @@ F: drivers/usb/
|
||||||
F: include/linux/usb.h
|
F: include/linux/usb.h
|
||||||
F: include/linux/usb/
|
F: include/linux/usb/
|
||||||
|
|
||||||
USB TYPEC PI3USB30532 MUX DRIVER
|
USB TYPEC BUS FOR ALTERNATE MODES
|
||||||
M: Hans de Goede <hdegoede@redhat.com>
|
M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
|
||||||
L: linux-usb@vger.kernel.org
|
L: linux-usb@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/usb/typec/mux/pi3usb30532.c
|
F: Documentation/ABI/testing/sysfs-bus-typec
|
||||||
|
F: Documentation/driver-api/usb/typec_bus.rst
|
||||||
|
F: drivers/usb/typec/altmodes/
|
||||||
|
F: include/linux/usb/typec_altmode.h
|
||||||
|
|
||||||
USB TYPEC CLASS
|
USB TYPEC CLASS
|
||||||
M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
|
M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
|
||||||
|
@ -17439,14 +17442,11 @@ F: Documentation/driver-api/usb/typec.rst
|
||||||
F: drivers/usb/typec/
|
F: drivers/usb/typec/
|
||||||
F: include/linux/usb/typec.h
|
F: include/linux/usb/typec.h
|
||||||
|
|
||||||
USB TYPEC BUS FOR ALTERNATE MODES
|
USB TYPEC PI3USB30532 MUX DRIVER
|
||||||
M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
|
M: Hans de Goede <hdegoede@redhat.com>
|
||||||
L: linux-usb@vger.kernel.org
|
L: linux-usb@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/ABI/testing/sysfs-bus-typec
|
F: drivers/usb/typec/mux/pi3usb30532.c
|
||||||
F: Documentation/driver-api/usb/typec_bus.rst
|
|
||||||
F: drivers/usb/typec/altmodes/
|
|
||||||
F: include/linux/usb/typec_altmode.h
|
|
||||||
|
|
||||||
USB TYPEC PORT CONTROLLER DRIVERS
|
USB TYPEC PORT CONTROLLER DRIVERS
|
||||||
M: Guenter Roeck <linux@roeck-us.net>
|
M: Guenter Roeck <linux@roeck-us.net>
|
||||||
|
@ -17823,7 +17823,7 @@ F: include/linux/vbox_utils.h
|
||||||
F: include/uapi/linux/vbox*.h
|
F: include/uapi/linux/vbox*.h
|
||||||
F: drivers/virt/vboxguest/
|
F: drivers/virt/vboxguest/
|
||||||
|
|
||||||
VIRTUAL BOX SHARED FOLDER VFS DRIVER:
|
VIRTUAL BOX SHARED FOLDER VFS DRIVER
|
||||||
M: Hans de Goede <hdegoede@redhat.com>
|
M: Hans de Goede <hdegoede@redhat.com>
|
||||||
L: linux-fsdevel@vger.kernel.org
|
L: linux-fsdevel@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -2,7 +2,7 @@
|
||||||
VERSION = 5
|
VERSION = 5
|
||||||
PATCHLEVEL = 6
|
PATCHLEVEL = 6
|
||||||
SUBLEVEL = 0
|
SUBLEVEL = 0
|
||||||
EXTRAVERSION = -rc2
|
EXTRAVERSION = -rc5
|
||||||
NAME = Kleptomaniac Octopus
|
NAME = Kleptomaniac Octopus
|
||||||
|
|
||||||
# *DOCUMENTATION*
|
# *DOCUMENTATION*
|
||||||
|
@ -68,6 +68,7 @@ unexport GREP_OPTIONS
|
||||||
#
|
#
|
||||||
# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
|
# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
|
||||||
# If KBUILD_VERBOSE equals 1 then the above command is displayed.
|
# If KBUILD_VERBOSE equals 1 then the above command is displayed.
|
||||||
|
# If KBUILD_VERBOSE equals 2 then give the reason why each target is rebuilt.
|
||||||
#
|
#
|
||||||
# To put more focus on warnings, be less verbose as default
|
# To put more focus on warnings, be less verbose as default
|
||||||
# Use 'make V=1' to see the full commands
|
# Use 'make V=1' to see the full commands
|
||||||
|
@ -1238,7 +1239,7 @@ ifneq ($(dtstree),)
|
||||||
%.dtb: include/config/kernel.release scripts_dtc
|
%.dtb: include/config/kernel.release scripts_dtc
|
||||||
$(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
|
$(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
|
||||||
|
|
||||||
PHONY += dtbs dtbs_install dt_binding_check
|
PHONY += dtbs dtbs_install dtbs_check
|
||||||
dtbs dtbs_check: include/config/kernel.release scripts_dtc
|
dtbs dtbs_check: include/config/kernel.release scripts_dtc
|
||||||
$(Q)$(MAKE) $(build)=$(dtstree)
|
$(Q)$(MAKE) $(build)=$(dtstree)
|
||||||
|
|
||||||
|
@ -1258,6 +1259,7 @@ PHONY += scripts_dtc
|
||||||
scripts_dtc: scripts_basic
|
scripts_dtc: scripts_basic
|
||||||
$(Q)$(MAKE) $(build)=scripts/dtc
|
$(Q)$(MAKE) $(build)=scripts/dtc
|
||||||
|
|
||||||
|
PHONY += dt_binding_check
|
||||||
dt_binding_check: scripts_dtc
|
dt_binding_check: scripts_dtc
|
||||||
$(Q)$(MAKE) $(build)=Documentation/devicetree/bindings
|
$(Q)$(MAKE) $(build)=Documentation/devicetree/bindings
|
||||||
|
|
||||||
|
|
|
@ -738,8 +738,9 @@ config HAVE_STACK_VALIDATION
|
||||||
config HAVE_RELIABLE_STACKTRACE
|
config HAVE_RELIABLE_STACKTRACE
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
Architecture has a save_stack_trace_tsk_reliable() function which
|
Architecture has either save_stack_trace_tsk_reliable() or
|
||||||
only returns a stack trace if it can guarantee the trace is reliable.
|
arch_stack_walk_reliable() function which only returns a stack trace
|
||||||
|
if it can guarantee the trace is reliable.
|
||||||
|
|
||||||
config HAVE_ARCH_HASH
|
config HAVE_ARCH_HASH
|
||||||
bool
|
bool
|
||||||
|
|
|
@ -526,11 +526,11 @@
|
||||||
* Supply voltage supervisor on board will not allow opp50 so
|
* Supply voltage supervisor on board will not allow opp50 so
|
||||||
* disable it and set opp100 as suspend OPP.
|
* disable it and set opp100 as suspend OPP.
|
||||||
*/
|
*/
|
||||||
opp50@300000000 {
|
opp50-300000000 {
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
opp100@600000000 {
|
opp100-600000000 {
|
||||||
opp-suspend;
|
opp-suspend;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
ethernet0 = &genet;
|
ethernet0 = &genet;
|
||||||
|
pcie0 = &pcie0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
@ -31,6 +32,8 @@
|
||||||
pwr {
|
pwr {
|
||||||
label = "PWR";
|
label = "PWR";
|
||||||
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
||||||
|
default-state = "keep";
|
||||||
|
linux,default-trigger = "default-on";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,8 @@
|
||||||
pwr {
|
pwr {
|
||||||
label = "PWR";
|
label = "PWR";
|
||||||
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
||||||
|
default-state = "keep";
|
||||||
|
linux,default-trigger = "default-on";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -27,6 +27,8 @@
|
||||||
pwr {
|
pwr {
|
||||||
label = "PWR";
|
label = "PWR";
|
||||||
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
||||||
|
default-state = "keep";
|
||||||
|
linux,default-trigger = "default-on";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -61,10 +61,10 @@
|
||||||
regulator-max-microvolt = <1800000>;
|
regulator-max-microvolt = <1800000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
evm_3v3: fixedregulator-evm3v3 {
|
vsys_3v3: fixedregulator-vsys3v3 {
|
||||||
/* Output of Cntlr A of TPS43351-Q1 on dra7-evm */
|
/* Output of Cntlr A of TPS43351-Q1 on dra7-evm */
|
||||||
compatible = "regulator-fixed";
|
compatible = "regulator-fixed";
|
||||||
regulator-name = "evm_3v3";
|
regulator-name = "vsys_3v3";
|
||||||
regulator-min-microvolt = <3300000>;
|
regulator-min-microvolt = <3300000>;
|
||||||
regulator-max-microvolt = <3300000>;
|
regulator-max-microvolt = <3300000>;
|
||||||
vin-supply = <&evm_12v0>;
|
vin-supply = <&evm_12v0>;
|
||||||
|
|
|
@ -3474,6 +3474,7 @@
|
||||||
clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER13_CLKCTRL 24>;
|
clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER13_CLKCTRL 24>;
|
||||||
clock-names = "fck";
|
clock-names = "fck";
|
||||||
interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
|
interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
ti,timer-pwm;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3501,6 +3502,7 @@
|
||||||
clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER14_CLKCTRL 24>;
|
clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER14_CLKCTRL 24>;
|
||||||
clock-names = "fck";
|
clock-names = "fck";
|
||||||
interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
|
interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
ti,timer-pwm;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3528,6 +3530,7 @@
|
||||||
clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER15_CLKCTRL 24>;
|
clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER15_CLKCTRL 24>;
|
||||||
clock-names = "fck";
|
clock-names = "fck";
|
||||||
interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
|
interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
ti,timer-pwm;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3555,6 +3558,7 @@
|
||||||
clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER16_CLKCTRL 24>;
|
clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER16_CLKCTRL 24>;
|
||||||
clock-names = "fck";
|
clock-names = "fck";
|
||||||
interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
|
interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
ti,timer-pwm;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -184,6 +184,7 @@
|
||||||
device_type = "pci";
|
device_type = "pci";
|
||||||
ranges = <0x81000000 0 0 0x03000 0 0x00010000
|
ranges = <0x81000000 0 0 0x03000 0 0x00010000
|
||||||
0x82000000 0 0x20013000 0x13000 0 0xffed000>;
|
0x82000000 0 0x20013000 0x13000 0 0xffed000>;
|
||||||
|
dma-ranges = <0x02000000 0x0 0x00000000 0x00000000 0x1 0x00000000>;
|
||||||
bus-range = <0x00 0xff>;
|
bus-range = <0x00 0xff>;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
num-lanes = <1>;
|
num-lanes = <1>;
|
||||||
|
@ -238,6 +239,7 @@
|
||||||
device_type = "pci";
|
device_type = "pci";
|
||||||
ranges = <0x81000000 0 0 0x03000 0 0x00010000
|
ranges = <0x81000000 0 0 0x03000 0 0x00010000
|
||||||
0x82000000 0 0x30013000 0x13000 0 0xffed000>;
|
0x82000000 0 0x30013000 0x13000 0 0xffed000>;
|
||||||
|
dma-ranges = <0x02000000 0x0 0x00000000 0x00000000 0x1 0x00000000>;
|
||||||
bus-range = <0x00 0xff>;
|
bus-range = <0x00 0xff>;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
num-lanes = <1>;
|
num-lanes = <1>;
|
||||||
|
|
|
@ -128,3 +128,8 @@
|
||||||
&usb4_tm {
|
&usb4_tm {
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&mmc3 {
|
||||||
|
/* dra76x is not affected by i887 */
|
||||||
|
max-frequency = <96000000>;
|
||||||
|
};
|
||||||
|
|
|
@ -796,16 +796,6 @@
|
||||||
clock-div = <1>;
|
clock-div = <1>;
|
||||||
};
|
};
|
||||||
|
|
||||||
ipu1_gfclk_mux: ipu1_gfclk_mux@520 {
|
|
||||||
#clock-cells = <0>;
|
|
||||||
compatible = "ti,mux-clock";
|
|
||||||
clocks = <&dpll_abe_m2x2_ck>, <&dpll_core_h22x2_ck>;
|
|
||||||
ti,bit-shift = <24>;
|
|
||||||
reg = <0x0520>;
|
|
||||||
assigned-clocks = <&ipu1_gfclk_mux>;
|
|
||||||
assigned-clock-parents = <&dpll_core_h22x2_ck>;
|
|
||||||
};
|
|
||||||
|
|
||||||
dummy_ck: dummy_ck {
|
dummy_ck: dummy_ck {
|
||||||
#clock-cells = <0>;
|
#clock-cells = <0>;
|
||||||
compatible = "fixed-clock";
|
compatible = "fixed-clock";
|
||||||
|
@ -1564,6 +1554,8 @@
|
||||||
compatible = "ti,clkctrl";
|
compatible = "ti,clkctrl";
|
||||||
reg = <0x20 0x4>;
|
reg = <0x20 0x4>;
|
||||||
#clock-cells = <2>;
|
#clock-cells = <2>;
|
||||||
|
assigned-clocks = <&ipu1_clkctrl DRA7_IPU1_MMU_IPU1_CLKCTRL 24>;
|
||||||
|
assigned-clock-parents = <&dpll_core_h22x2_ck>;
|
||||||
};
|
};
|
||||||
|
|
||||||
ipu_clkctrl: ipu-clkctrl@50 {
|
ipu_clkctrl: ipu-clkctrl@50 {
|
||||||
|
|
|
@ -275,7 +275,7 @@
|
||||||
|
|
||||||
/* SRAM on Colibri nEXT_CS0 */
|
/* SRAM on Colibri nEXT_CS0 */
|
||||||
sram@0,0 {
|
sram@0,0 {
|
||||||
compatible = "cypress,cy7c1019dv33-10zsxi, mtd-ram";
|
compatible = "cypress,cy7c1019dv33-10zsxi", "mtd-ram";
|
||||||
reg = <0 0 0x00010000>;
|
reg = <0 0 0x00010000>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
@ -286,7 +286,7 @@
|
||||||
|
|
||||||
/* SRAM on Colibri nEXT_CS1 */
|
/* SRAM on Colibri nEXT_CS1 */
|
||||||
sram@1,0 {
|
sram@1,0 {
|
||||||
compatible = "cypress,cy7c1019dv33-10zsxi, mtd-ram";
|
compatible = "cypress,cy7c1019dv33-10zsxi", "mtd-ram";
|
||||||
reg = <1 0 0x00010000>;
|
reg = <1 0 0x00010000>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
|
|
@ -192,7 +192,6 @@
|
||||||
pinctrl-0 = <&pinctrl_usdhc4>;
|
pinctrl-0 = <&pinctrl_usdhc4>;
|
||||||
bus-width = <8>;
|
bus-width = <8>;
|
||||||
non-removable;
|
non-removable;
|
||||||
vmmc-supply = <&vdd_emmc_1p8>;
|
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -336,7 +336,6 @@
|
||||||
assigned-clock-rates = <400000000>;
|
assigned-clock-rates = <400000000>;
|
||||||
bus-width = <8>;
|
bus-width = <8>;
|
||||||
fsl,tuning-step = <2>;
|
fsl,tuning-step = <2>;
|
||||||
max-frequency = <100000000>;
|
|
||||||
vmmc-supply = <®_module_3v3>;
|
vmmc-supply = <®_module_3v3>;
|
||||||
vqmmc-supply = <®_DCDC3>;
|
vqmmc-supply = <®_DCDC3>;
|
||||||
non-removable;
|
non-removable;
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue