diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
commit | fcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch) | |
tree | a57612d1888735a2ec7972891b68c1ac5ec8faea /drivers/media/video/tegra/avp/headavp.h | |
parent | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff) |
Diffstat (limited to 'drivers/media/video/tegra/avp/headavp.h')
-rw-r--r-- | drivers/media/video/tegra/avp/headavp.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/drivers/media/video/tegra/avp/headavp.h b/drivers/media/video/tegra/avp/headavp.h new file mode 100644 index 00000000000..2bcc3297bfa --- /dev/null +++ b/drivers/media/video/tegra/avp/headavp.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-tegra/headavp.h | ||
3 | * | ||
4 | * Copyright (c) 2010, NVIDIA Corporation. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
14 | * more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License along | ||
17 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
19 | */ | ||
20 | |||
21 | #ifndef _MACH_TEGRA_HEADAVP_H | ||
22 | #define _MACH_TEGRA_HEADAVP_H | ||
23 | |||
24 | #define AVP_MMU_TLB_BASE 0xF000F000 | ||
25 | #define AVP_KERNEL_VIRT_BASE 0x00100000 | ||
26 | |||
27 | #ifndef __ASSEMBLY__ | ||
28 | |||
29 | struct tegra_avp_boot_stub_data { | ||
30 | unsigned long mmu_tlb_base; | ||
31 | unsigned long jump_addr; | ||
32 | unsigned long map_virt_addr; | ||
33 | unsigned long map_phys_addr; | ||
34 | }; | ||
35 | |||
36 | extern void _tegra_avp_boot_stub(void); | ||
37 | extern struct tegra_avp_boot_stub_data _tegra_avp_boot_stub_data; | ||
38 | |||
39 | #endif | ||
40 | |||
41 | #endif | ||