]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/include/asm/arch-tegra/sys_proto.h
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / arm / include / asm / arch-tegra / sys_proto.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
3f82b1d3
TW
2/*
3 * (C) Copyright 2010,2011
4 * NVIDIA Corporation <www.nvidia.com>
3f82b1d3
TW
5 */
6
7#ifndef _SYS_PROTO_H_
8#define _SYS_PROTO_H_
9
3f82b1d3
TW
10void invalidate_dcache(void);
11
ec746644
SG
12/**
13 * tegra_board_id() - Get the board iD
14 *
15 * @return a board ID, or -ve on error
16 */
17int tegra_board_id(void);
3f82b1d3 18
82776364
SG
19/**
20 * tegra_lcd_pmic_init() - Set up the PMIC for a board
21 *
22 * @board_id: Board ID which may be used to select LCD type
23 * @return 0 if OK, -ve on error
24 */
25int tegra_lcd_pmic_init(int board_id);
26
c96d709f
SG
27/**
28 * nvidia_board_init() - perform any board-specific init
29 *
30 * @return 0 if OK, -ve on error
31 */
32int nvidia_board_init(void);
33
3f82b1d3 34#endif