aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2013-05-09 17:54:36 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-05-09 17:54:36 -0400
commitfc72053bb497e3054d6e4d13ab425fc2311442d4 (patch)
treefd85d369bcf6743d8eed8e07dc9866630d558b72 /Documentation
parentc61c48dfe00907007df3b87e4ed271a5c143bdda (diff)
parentc58c1a4c118ba2ed49f72de9b42ef13bc8ee71e5 (diff)
Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC fixes and straggler patches from Olof Johansson: "A collection of fixes for fall out from 3.10 merge window, some build fixes and warning cleanups and a small handful of patches that were small and contained and made sense to still include in 3.10 (some of these have also been in -next since the merge window opened). Largest continous series is for OMAP, but there's a handful for other platforms. For i.MX, one of the patches are framebuffer fixups due to fallout during the merge window, and the other removes some stale and broken code." * tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (34 commits) ARM: exynos: dts: Fixed vbus-gpios ARM: EXYNOS5: Fix kernel dump in AFTR idle mode ARM: ux500: Rid ignored return value of regulator_enable() compiler warning ARM: ux500: read the correct soc_id number ARM: exynos: dts: cros5250: add cyapa trackpad video: mxsfb: Adapt to new videomode API ARM: imx: Select GENERIC_ALLOCATOR ARM: imx: compile fix for hotplug.c ARM: dts: don't assume boards are using twl4030 for omap3 ARM: OMAP2+: Remove bogus IS_ERR_OR_NULL checking from id.c ARM: dts: Configure and fix the McSPI pins for 4430sdp ARM: dts: AM33XX: Add GPMC node ARM: dts: OMAP4460: Fix CPU OPP voltages ARM: dts: OMAP36xx: Fix CPU OPP voltages ARM: OMAP4+: omap2plus_defconfig: Enable audio via TWL6040 as module ARM: OMAP2: AM33XX: id: Add support for new AM335x PG2.1 Si omap: mux: add AM/DM37x gpios ARM: OMAP1: DMA: fix error handling in omap1_system_dma_init() ARM: OMAP2+: omap_device: use late_initcall_sync ARM: OMAP: RX-51: change probe order of touchscreen and panel SPI devices ...
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/mtd/gpmc-nand.txt28
-rw-r--r--Documentation/devicetree/bindings/net/gpmc-eth.txt56
2 files changed, 42 insertions, 42 deletions
diff --git a/Documentation/devicetree/bindings/mtd/gpmc-nand.txt b/Documentation/devicetree/bindings/mtd/gpmc-nand.txt
index e7f8d7ed47eb..6a983c1d87cd 100644
--- a/Documentation/devicetree/bindings/mtd/gpmc-nand.txt
+++ b/Documentation/devicetree/bindings/mtd/gpmc-nand.txt
@@ -56,20 +56,20 @@ Example for an AM33xx board:
56 nand-bus-width = <16>; 56 nand-bus-width = <16>;
57 ti,nand-ecc-opt = "bch8"; 57 ti,nand-ecc-opt = "bch8";
58 58
59 gpmc,sync-clk = <0>; 59 gpmc,sync-clk-ps = <0>;
60 gpmc,cs-on = <0>; 60 gpmc,cs-on-ns = <0>;
61 gpmc,cs-rd-off = <44>; 61 gpmc,cs-rd-off-ns = <44>;
62 gpmc,cs-wr-off = <44>; 62 gpmc,cs-wr-off-ns = <44>;
63 gpmc,adv-on = <6>; 63 gpmc,adv-on-ns = <6>;
64 gpmc,adv-rd-off = <34>; 64 gpmc,adv-rd-off-ns = <34>;
65 gpmc,adv-wr-off = <44>; 65 gpmc,adv-wr-off-ns = <44>;
66 gpmc,we-off = <40>; 66 gpmc,we-off-ns = <40>;
67 gpmc,oe-off = <54>; 67 gpmc,oe-off-ns = <54>;
68 gpmc,access = <64>; 68 gpmc,access-ns = <64>;
69 gpmc,rd-cycle = <82>; 69 gpmc,rd-cycle-ns = <82>;
70 gpmc,wr-cycle = <82>; 70 gpmc,wr-cycle-ns = <82>;
71 gpmc,wr-access = <40>; 71 gpmc,wr-access-ns = <40>;
72 gpmc,wr-data-mux-bus = <0>; 72 gpmc,wr-data-mux-bus-ns = <0>;
73 73
74 #address-cells = <1>; 74 #address-cells = <1>;
75 #size-cells = <1>; 75 #size-cells = <1>;
diff --git a/Documentation/devicetree/bindings/net/gpmc-eth.txt b/Documentation/devicetree/bindings/net/gpmc-eth.txt
index 24cb4e46f675..ace4a64b3695 100644
--- a/Documentation/devicetree/bindings/net/gpmc-eth.txt
+++ b/Documentation/devicetree/bindings/net/gpmc-eth.txt
@@ -26,16 +26,16 @@ Required properties:
26- bank-width: Address width of the device in bytes. GPMC supports 8-bit 26- bank-width: Address width of the device in bytes. GPMC supports 8-bit
27 and 16-bit devices and so must be either 1 or 2 bytes. 27 and 16-bit devices and so must be either 1 or 2 bytes.
28- compatible: Compatible string property for the ethernet child device. 28- compatible: Compatible string property for the ethernet child device.
29- gpmc,cs-on: Chip-select assertion time 29- gpmc,cs-on-ns: Chip-select assertion time
30- gpmc,cs-rd-off: Chip-select de-assertion time for reads 30- gpmc,cs-rd-off-ns: Chip-select de-assertion time for reads
31- gpmc,cs-wr-off: Chip-select de-assertion time for writes 31- gpmc,cs-wr-off-ns: Chip-select de-assertion time for writes
32- gpmc,oe-on: Output-enable assertion time 32- gpmc,oe-on-ns: Output-enable assertion time
33- gpmc,oe-off Output-enable de-assertion time 33- gpmc,oe-off-ns: Output-enable de-assertion time
34- gpmc,we-on: Write-enable assertion time 34- gpmc,we-on-ns: Write-enable assertion time
35- gpmc,we-off: Write-enable de-assertion time 35- gpmc,we-off-ns: Write-enable de-assertion time
36- gpmc,access: Start cycle to first data capture (read access) 36- gpmc,access-ns: Start cycle to first data capture (read access)
37- gpmc,rd-cycle: Total read cycle time 37- gpmc,rd-cycle-ns: Total read cycle time
38- gpmc,wr-cycle: Total write cycle time 38- gpmc,wr-cycle-ns: Total write cycle time
39- reg: Chip-select, base address (relative to chip-select) 39- reg: Chip-select, base address (relative to chip-select)
40 and size of the memory mapped for the device. 40 and size of the memory mapped for the device.
41 Note that base address will be typically 0 as this 41 Note that base address will be typically 0 as this
@@ -65,24 +65,24 @@ gpmc: gpmc@6e000000 {
65 bank-width = <2>; 65 bank-width = <2>;
66 66
67 gpmc,mux-add-data; 67 gpmc,mux-add-data;
68 gpmc,cs-on = <0>; 68 gpmc,cs-on-ns = <0>;
69 gpmc,cs-rd-off = <186>; 69 gpmc,cs-rd-off-ns = <186>;
70 gpmc,cs-wr-off = <186>; 70 gpmc,cs-wr-off-ns = <186>;
71 gpmc,adv-on = <12>; 71 gpmc,adv-on-ns = <12>;
72 gpmc,adv-rd-off = <48>; 72 gpmc,adv-rd-off-ns = <48>;
73 gpmc,adv-wr-off = <48>; 73 gpmc,adv-wr-off-ns = <48>;
74 gpmc,oe-on = <54>; 74 gpmc,oe-on-ns = <54>;
75 gpmc,oe-off = <168>; 75 gpmc,oe-off-ns = <168>;
76 gpmc,we-on = <54>; 76 gpmc,we-on-ns = <54>;
77 gpmc,we-off = <168>; 77 gpmc,we-off-ns = <168>;
78 gpmc,rd-cycle = <186>; 78 gpmc,rd-cycle-ns = <186>;
79 gpmc,wr-cycle = <186>; 79 gpmc,wr-cycle-ns = <186>;
80 gpmc,access = <114>; 80 gpmc,access-ns = <114>;
81 gpmc,page-burst-access = <6>; 81 gpmc,page-burst-access-ns = <6>;
82 gpmc,bus-turnaround = <12>; 82 gpmc,bus-turnaround-ns = <12>;
83 gpmc,cycle2cycle-delay = <18>; 83 gpmc,cycle2cycle-delay-ns = <18>;
84 gpmc,wr-data-mux-bus = <90>; 84 gpmc,wr-data-mux-bus-ns = <90>;
85 gpmc,wr-access = <186>; 85 gpmc,wr-access-ns = <186>;
86 gpmc,cycle2cycle-samecsen; 86 gpmc,cycle2cycle-samecsen;
87 gpmc,cycle2cycle-diffcsen; 87 gpmc,cycle2cycle-diffcsen;
88 88