diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-01 23:11:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-01 23:11:00 -0400 |
commit | 952414505f55afe5cd6dc004765076aa22b3ed7e (patch) | |
tree | eba11ed702ae02fea7f1a0d422346454fc98296f /arch/arm/mach-tegra/include | |
parent | 68e24ba70465b82ad24e0774ceab5360180d4627 (diff) | |
parent | 3e965b176341b78620f7404fd8b7f9a0d061f8a2 (diff) |
Merge branch 'next/cleanup' of git://git.linaro.org/people/arnd/arm-soc
* 'next/cleanup' of git://git.linaro.org/people/arnd/arm-soc: (125 commits)
ARM: mach-mxs: fix machines' initializers order
mmc: mxcmmc: explicitly includes mach/hardware.h
arm/imx: explicitly includes mach/hardware.h in pm-imx27.c
arm/imx: remove mx27_setup_weimcs() from mx27.h
arm/imx: explicitly includes mach/hardware.h in mach-kzm_arm11_01.c
arm/imx: remove mx31_setup_weimcs() from mx31.h
ARM: tegra: devices.c should include devices.h
ARM: tegra: cpu-tegra: unexport two functions
ARM: tegra: cpu-tegra: sparse type fix
ARM: tegra: dma: staticify some tables and functions
ARM: tegra: tegra2_clocks: don't export some tables
ARM: tegra: tegra_powergate_is_powered should be static
ARM: tegra: tegra_rtc_read_ms should be static
ARM: tegra: tegra_init_cache should be static
ARM: tegra: pcie: 0 -> NULL changes
ARM: tegra: pcie: include board.h
ARM: tegra: pcie: don't cast __iomem pointers
ARM: tegra: tegra2_clocks: 0 -> NULL changes
ARM: tegra: tegra2_clocks: don't cast __iomem pointers
ARM: tegra: timer: don't cast __iomem pointers
...
Fix up trivial conflicts in
arch/arm/mach-omap2/Makefile,
arch/arm/mach-u300/{Makefile.boot,core.c}
arch/arm/plat-{mxc,omap}/devices.c
Diffstat (limited to 'arch/arm/mach-tegra/include')
-rw-r--r-- | arch/arm/mach-tegra/include/mach/io.h | 18 | ||||
-rw-r--r-- | arch/arm/mach-tegra/include/mach/powergate.h | 1 |
2 files changed, 12 insertions, 7 deletions
diff --git a/arch/arm/mach-tegra/include/mach/io.h b/arch/arm/mach-tegra/include/mach/io.h index 4cea2230c8dc..35a011fbc42d 100644 --- a/arch/arm/mach-tegra/include/mach/io.h +++ b/arch/arm/mach-tegra/include/mach/io.h | |||
@@ -33,20 +33,26 @@ | |||
33 | * | 33 | * |
34 | */ | 34 | */ |
35 | 35 | ||
36 | #ifdef __ASSEMBLY__ | ||
37 | #define IOMEM(x) (x) | ||
38 | #else | ||
39 | #define IOMEM(x) ((void __force __iomem *)(x)) | ||
40 | #endif | ||
41 | |||
36 | #define IO_IRAM_PHYS 0x40000000 | 42 | #define IO_IRAM_PHYS 0x40000000 |
37 | #define IO_IRAM_VIRT 0xFE400000 | 43 | #define IO_IRAM_VIRT IOMEM(0xFE400000) |
38 | #define IO_IRAM_SIZE SZ_256K | 44 | #define IO_IRAM_SIZE SZ_256K |
39 | 45 | ||
40 | #define IO_CPU_PHYS 0x50040000 | 46 | #define IO_CPU_PHYS 0x50040000 |
41 | #define IO_CPU_VIRT 0xFE000000 | 47 | #define IO_CPU_VIRT IOMEM(0xFE000000) |
42 | #define IO_CPU_SIZE SZ_16K | 48 | #define IO_CPU_SIZE SZ_16K |
43 | 49 | ||
44 | #define IO_PPSB_PHYS 0x60000000 | 50 | #define IO_PPSB_PHYS 0x60000000 |
45 | #define IO_PPSB_VIRT 0xFE200000 | 51 | #define IO_PPSB_VIRT IOMEM(0xFE200000) |
46 | #define IO_PPSB_SIZE SZ_1M | 52 | #define IO_PPSB_SIZE SZ_1M |
47 | 53 | ||
48 | #define IO_APB_PHYS 0x70000000 | 54 | #define IO_APB_PHYS 0x70000000 |
49 | #define IO_APB_VIRT 0xFE300000 | 55 | #define IO_APB_VIRT IOMEM(0xFE300000) |
50 | #define IO_APB_SIZE SZ_1M | 56 | #define IO_APB_SIZE SZ_1M |
51 | 57 | ||
52 | #define IO_TO_VIRT_BETWEEN(p, st, sz) ((p) >= (st) && (p) < ((st) + (sz))) | 58 | #define IO_TO_VIRT_BETWEEN(p, st, sz) ((p) >= (st) && (p) < ((st) + (sz))) |
@@ -61,7 +67,7 @@ | |||
61 | IO_TO_VIRT_XLATE((n), IO_CPU_PHYS, IO_CPU_VIRT) : \ | 67 | IO_TO_VIRT_XLATE((n), IO_CPU_PHYS, IO_CPU_VIRT) : \ |
62 | IO_TO_VIRT_BETWEEN((n), IO_IRAM_PHYS, IO_IRAM_SIZE) ? \ | 68 | IO_TO_VIRT_BETWEEN((n), IO_IRAM_PHYS, IO_IRAM_SIZE) ? \ |
63 | IO_TO_VIRT_XLATE((n), IO_IRAM_PHYS, IO_IRAM_VIRT) : \ | 69 | IO_TO_VIRT_XLATE((n), IO_IRAM_PHYS, IO_IRAM_VIRT) : \ |
64 | 0) | 70 | NULL) |
65 | 71 | ||
66 | #ifndef __ASSEMBLER__ | 72 | #ifndef __ASSEMBLER__ |
67 | 73 | ||
@@ -71,7 +77,7 @@ | |||
71 | void __iomem *tegra_ioremap(unsigned long phys, size_t size, unsigned int type); | 77 | void __iomem *tegra_ioremap(unsigned long phys, size_t size, unsigned int type); |
72 | void tegra_iounmap(volatile void __iomem *addr); | 78 | void tegra_iounmap(volatile void __iomem *addr); |
73 | 79 | ||
74 | #define IO_ADDRESS(n) ((void __iomem *) IO_TO_VIRT(n)) | 80 | #define IO_ADDRESS(n) (IO_TO_VIRT(n)) |
75 | 81 | ||
76 | #ifdef CONFIG_TEGRA_PCI | 82 | #ifdef CONFIG_TEGRA_PCI |
77 | extern void __iomem *tegra_pcie_io_base; | 83 | extern void __iomem *tegra_pcie_io_base; |
diff --git a/arch/arm/mach-tegra/include/mach/powergate.h b/arch/arm/mach-tegra/include/mach/powergate.h index 401d1b725291..39c396d2ddb0 100644 --- a/arch/arm/mach-tegra/include/mach/powergate.h +++ b/arch/arm/mach-tegra/include/mach/powergate.h | |||
@@ -31,7 +31,6 @@ | |||
31 | 31 | ||
32 | int tegra_powergate_power_on(int id); | 32 | int tegra_powergate_power_on(int id); |
33 | int tegra_powergate_power_off(int id); | 33 | int tegra_powergate_power_off(int id); |
34 | bool tegra_powergate_is_powered(int id); | ||
35 | int tegra_powergate_remove_clamping(int id); | 34 | int tegra_powergate_remove_clamping(int id); |
36 | 35 | ||
37 | /* Must be called with clk disabled, and returns with clk enabled */ | 36 | /* Must be called with clk disabled, and returns with clk enabled */ |