Skip to content

Commit 451ce7f

Browse files
committed
Merge tag 'cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull general arm-soc cleanups from Arnd Bergmann: "These are all boring changes, moving stuff around or renaming things mostly, and also getting rid of stuff that is duplicate or should not be there to start with. Platform-wise this is all over the place, mainly omap, samsung, at91, imx and tegra." Resolve trivial conflict in arch/arm/mach-omap2/clockdomains3xxx_data.c * tag 'cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (67 commits) ARM: clps711x: Remove the setting of the time ARM: clps711x: Removed superfluous transform virt_to_bus and related functions ARM: clps711x/p720t: Replace __initcall by .init_early call ARM: S3C24XX: Remove unused GPIO definitions for Openmoko GTA02 board ARM: S3C24XX: Remove unused GPIO definitions for port J ARM: S3C24XX: Remove unused GPA, GPE, GPH bank GPIO aliases ARM: S3C24XX: Convert the touchscreen setup code to common GPIO API ARM: S3C24XX: Convert the PM code to gpiolib API ARM: S3C24XX: Convert QT2410 board file to the gpiolib API ARM: S3C24XX: Convert SMDK board file to the gpiolib API ARM: S3C24XX: Free the backlight gpio requested in Mini2440 board code ARM: imx: remove unused pdata from device macros ARM: imx: Kconfig: Remove IMX_HAVE_PLATFORM_IMX_SSI from MACH_MX25_3DS ARM: at91: fix new build errors ARM: at91: add AIC5 support ARM: at91: remove mach/irqs.h ARM: at91: sparse irq support ARM: at91: at91 based machines specify their own irq handler at run time ARM: at91: remove static irq priorities for sam9x5 ARM: at91: add of irq priorities support ...
2 parents b85c14f + 1a33a4e commit 451ce7f

File tree

227 files changed

+1793
-2504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+1793
-2504
lines changed

Documentation/devicetree/bindings/arm/atmel-aic.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Required properties:
44
- compatible: Should be "atmel,<chip>-aic"
55
- interrupt-controller: Identifies the node as an interrupt controller.
66
- interrupt-parent: For single AIC system, it is an empty property.
7-
- #interrupt-cells: The number of cells to define the interrupts. It sould be 2.
7+
- #interrupt-cells: The number of cells to define the interrupts. It sould be 3.
88
The first cell is the IRQ number (aka "Peripheral IDentifier" on datasheet).
99
The second cell is used to specify flags:
1010
bits[3:0] trigger type and level flags:
@@ -14,7 +14,10 @@ Required properties:
1414
8 = active low level-sensitive.
1515
Valid combinations are 1, 2, 3, 4, 8.
1616
Default flag for internal sources should be set to 4 (active high).
17+
The third cell is used to specify the irq priority from 0 (lowest) to 7
18+
(highest).
1719
- reg: Should contain AIC registers location and length
20+
- atmel,external-irqs: u32 array of external irqs.
1821

1922
Examples:
2023
/*
@@ -24,7 +27,7 @@ Examples:
2427
compatible = "atmel,at91rm9200-aic";
2528
interrupt-controller;
2629
interrupt-parent;
27-
#interrupt-cells = <2>;
30+
#interrupt-cells = <3>;
2831
reg = <0xfffff000 0x200>;
2932
};
3033

@@ -34,5 +37,5 @@ Examples:
3437
dma: dma-controller@ffffec00 {
3538
compatible = "atmel,at91sam9g45-dma";
3639
reg = <0xffffec00 0x200>;
37-
interrupts = <21 4>;
40+
interrupts = <21 4 5>;
3841
};

Documentation/devicetree/bindings/arm/tegra/emc.txt renamed to Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-emc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Child device nodes describe the memory settings for different configurations and
1515

1616
Example:
1717

18-
emc@7000f400 {
18+
memory-controller@7000f400 {
1919
#address-cells = < 1 >;
2020
#size-cells = < 0 >;
2121
compatible = "nvidia,tegra20-emc";

Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-mc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Required properties:
88
- interrupts : Should contain MC General interrupt.
99

1010
Example:
11-
mc {
11+
memory-controller@0x7000f000 {
1212
compatible = "nvidia,tegra20-mc";
1313
reg = <0x7000f000 0x024
1414
0x7000f03c 0x3c4>;

Documentation/devicetree/bindings/arm/tegra/nvidia,tegra30-mc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Required properties:
88
- interrupts : Should contain MC General interrupt.
99

1010
Example:
11-
mc {
11+
memory-controller {
1212
compatible = "nvidia,tegra30-mc";
1313
reg = <0x7000f000 0x010
1414
0x7000f03c 0x1b4

Documentation/devicetree/bindings/gpio/gpio_nvidia.txt renamed to Documentation/devicetree/bindings/gpio/nvidia,tegra20-gpio.txt

File renamed without changes.

Documentation/devicetree/bindings/input/tegra-kbc.txt renamed to Documentation/devicetree/bindings/input/nvidia,tegra20-kbc.txt

File renamed without changes.

Documentation/devicetree/bindings/mmc/nvidia-sdhci.txt renamed to Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt

File renamed without changes.

Documentation/devicetree/bindings/nvec/nvec_nvidia.txt renamed to Documentation/devicetree/bindings/nvec/nvidia,nvec.txt

File renamed without changes.

Documentation/devicetree/bindings/sound/tegra-audio-alc5632.txt renamed to Documentation/devicetree/bindings/sound/nvidia,tegra-audio-alc5632.txt

File renamed without changes.

Documentation/devicetree/bindings/sound/tegra-audio-trimslice.txt renamed to Documentation/devicetree/bindings/sound/nvidia,tegra-audio-trimslice.txt

File renamed without changes.

0 commit comments

Comments
 (0)