diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2013-04-09 10:55:15 -0400 |
|---|---|---|
| committer | Arnd Bergmann <arnd@arndb.de> | 2013-04-09 10:55:15 -0400 |
| commit | 494cc7606180bbf0bd7c82afeaacc45d5035d7cc (patch) | |
| tree | ff09bb45e12ffd9c2b141884e1a4cf921ba87c78 /include/linux | |
| parent | 3afeb0a046af159f0ff97a20cf6ebc44d0d2bd64 (diff) | |
| parent | 9002722560ba86a2f59811e3d11a2575bf47e1f6 (diff) | |
Merge tag 'tegra-for-3.10-multiplatform' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra into next/multiplatform
From Stephen Warren <swarren@wwwdotorg.org>:
ARM: tegra: multi-platform conversion
This branch converts Tegra to support multi-platform/single-zImage.
One header is made accessible to drivers. The earlyprintk implementation
is moved to the multi-platform location. Some Kconfig changes are made
to enable multi-platform. Some dead files are deleted.
The APIs exposed in the now-global tegra-powergate.h should be replaced
with standard reset and power domain APIs in the future.
This branch is based on (part of) the previous soc pull request.
* tag 'tegra-for-3.10-multiplatform' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra:
ARM: tegra: convert to multi-platform
ARM: tegra: move <mach/powergate.h> to <linux/tegra-powergate.h>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/tegra-powergate.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/include/linux/tegra-powergate.h b/include/linux/tegra-powergate.h new file mode 100644 index 000000000000..55c29a8d5015 --- /dev/null +++ b/include/linux/tegra-powergate.h | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2010 Google, Inc | ||
| 3 | * | ||
| 4 | * Author: | ||
| 5 | * Colin Cross <ccross@google.com> | ||
| 6 | * | ||
| 7 | * This software is licensed under the terms of the GNU General Public | ||
| 8 | * License version 2, as published by the Free Software Foundation, and | ||
| 9 | * may be copied, distributed, and modified under those terms. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef _MACH_TEGRA_POWERGATE_H_ | ||
| 19 | #define _MACH_TEGRA_POWERGATE_H_ | ||
| 20 | |||
| 21 | struct clk; | ||
| 22 | |||
| 23 | #define TEGRA_POWERGATE_CPU 0 | ||
| 24 | #define TEGRA_POWERGATE_3D 1 | ||
| 25 | #define TEGRA_POWERGATE_VENC 2 | ||
| 26 | #define TEGRA_POWERGATE_PCIE 3 | ||
| 27 | #define TEGRA_POWERGATE_VDEC 4 | ||
| 28 | #define TEGRA_POWERGATE_L2 5 | ||
| 29 | #define TEGRA_POWERGATE_MPE 6 | ||
| 30 | #define TEGRA_POWERGATE_HEG 7 | ||
| 31 | #define TEGRA_POWERGATE_SATA 8 | ||
| 32 | #define TEGRA_POWERGATE_CPU1 9 | ||
| 33 | #define TEGRA_POWERGATE_CPU2 10 | ||
| 34 | #define TEGRA_POWERGATE_CPU3 11 | ||
| 35 | #define TEGRA_POWERGATE_CELP 12 | ||
| 36 | #define TEGRA_POWERGATE_3D1 13 | ||
| 37 | |||
| 38 | #define TEGRA_POWERGATE_CPU0 TEGRA_POWERGATE_CPU | ||
| 39 | #define TEGRA_POWERGATE_3D0 TEGRA_POWERGATE_3D | ||
| 40 | |||
| 41 | int tegra_powergate_is_powered(int id); | ||
| 42 | int tegra_powergate_power_on(int id); | ||
| 43 | int tegra_powergate_power_off(int id); | ||
| 44 | int tegra_powergate_remove_clamping(int id); | ||
| 45 | |||
| 46 | /* Must be called with clk disabled, and returns with clk enabled */ | ||
| 47 | int tegra_powergate_sequence_power_up(int id, struct clk *clk); | ||
| 48 | |||
| 49 | #endif /* _MACH_TEGRA_POWERGATE_H_ */ | ||
