[ARM] tegra: i2s: Continuous DMA support
[firefly-linux-kernel-4.4.55.git] / arch / arm / mach-tegra / board.h
1 /*
2  * arch/arm/mach-tegra/board.h
3  *
4  * Copyright (C) 2010 Google, Inc.
5  *
6  * Author:
7  *      Colin Cross <ccross@google.com>
8  *      Erik Gilling <konkers@google.com>
9  *
10  * This software is licensed under the terms of the GNU General Public
11  * License version 2, as published by the Free Software Foundation, and
12  * may be copied, distributed, and modified under those terms.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  */
20
21 #ifndef __MACH_TEGRA_BOARD_H
22 #define __MACH_TEGRA_BOARD_H
23
24 #include <linux/types.h>
25
26 void __init tegra_common_init(void);
27 void __init tegra_map_common_io(void);
28 void __init tegra_init_irq(void);
29 void __init tegra_init_clock(void);
30 void __init tegra_reserve(unsigned long carveout_size, unsigned long fb_size,
31         unsigned long fb2_size);
32 void __init tegra_protected_aperture_init(unsigned long aperture);
33 void tegra_move_framebuffer(unsigned long to, unsigned long from,
34         unsigned long size);
35
36 extern unsigned long tegra_bootloader_fb_start;
37 extern unsigned long tegra_bootloader_fb_size;
38 extern unsigned long tegra_fb_start;
39 extern unsigned long tegra_fb_size;
40 extern unsigned long tegra_fb2_start;
41 extern unsigned long tegra_fb2_size;
42 extern unsigned long tegra_carveout_start;
43 extern unsigned long tegra_carveout_size;
44 extern unsigned long tegra_lp0_vec_start;
45 extern unsigned long tegra_lp0_vec_size;
46 extern unsigned long tegra_grhost_aperture;
47
48 extern struct sys_timer tegra_timer;
49 #endif