diff options
author | Simon Glass <sjg@chromium.org> | 2015-04-14 21:03:27 -0600 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2015-05-13 09:24:08 -0700 |
commit | 8277636420970777310c467b554c39d171ef969b (patch) | |
tree | 3c99d8aaa3b4d06adf805013e68f7935b1d79cb2 /arch/arm/include/asm/arch-tegra/sys_proto.h | |
parent | d55b7d4c53c78d4a4fbe28b65e8d50f184b53ce9 (diff) | |
download | u-boot-imx-8277636420970777310c467b554c39d171ef969b.zip u-boot-imx-8277636420970777310c467b554c39d171ef969b.tar.gz u-boot-imx-8277636420970777310c467b554c39d171ef969b.tar.bz2 |
tegra: Provide a function to allow LCD PMIC setup
Some LCDs require a PMIC to be set up - add a function for this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm/include/asm/arch-tegra/sys_proto.h')
-rw-r--r-- | arch/arm/include/asm/arch-tegra/sys_proto.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-tegra/sys_proto.h b/arch/arm/include/asm/arch-tegra/sys_proto.h index 914d8b9..83f9f47 100644 --- a/arch/arm/include/asm/arch-tegra/sys_proto.h +++ b/arch/arm/include/asm/arch-tegra/sys_proto.h @@ -17,4 +17,12 @@ void invalidate_dcache(void); */ int tegra_board_id(void); +/** + * tegra_lcd_pmic_init() - Set up the PMIC for a board + * + * @board_id: Board ID which may be used to select LCD type + * @return 0 if OK, -ve on error + */ +int tegra_lcd_pmic_init(int board_id); + #endif |