summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board.h
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2011-05-09 19:15:29 +0530
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:42:37 -0800
commitb1a6ea2c728bff8570c4a3c2fbb514f3c52b50d0 (patch)
tree2475a8ae735287f1a5f0a54492d429ff2b4d8260 /arch/arm/mach-tegra/board.h
parent5951a79d97185d75f092e8a7995237d66e0c0a37 (diff)
arm: tegra: Support for core_edp and panel type from kernel command.
Selecting the core EDP voltage and panel type from the kernel commands. The bootloader pass this information through kernel command. Board will select the default configuration if there is no command option for these parameters. bug 822053 Original-Change-Id: Id7909d70b599c4a313d60d3ba2a9cf5b9eb7f2c3 Reviewed-on: http://git-master/r/30853 Tested-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-by: Aleksandr Frid <afrid@nvidia.com> Reviewed-by: Jonathan Mayo <jmayo@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> Rebase-Id: R168653eae3bd5965bcbef2cde3ba26c8dace8f23
Diffstat (limited to 'arch/arm/mach-tegra/board.h')
-rw-r--r--arch/arm/mach-tegra/board.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/board.h b/arch/arm/mach-tegra/board.h
index e18c46e84724..81e1e0a77699 100644
--- a/arch/arm/mach-tegra/board.h
+++ b/arch/arm/mach-tegra/board.h
@@ -68,6 +68,14 @@ struct board_info {
u8 minor_revision;
};
+enum panel_type {
+ panel_type_lvds = 0,
+ panel_type_dsi,
+};
+
void tegra_get_board_info(struct board_info *);
+int get_core_edp(void);
+enum panel_type get_panel_type(void);
+
#endif