1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/*
* drivers/media/video/tegra/nvavp/nvavp_os.h
*
* Copyright (C) 2011 NVIDIA Corp.
*
* This file is licensed under the terms of the GNU General Public License
* version 2. This program is licensed "as is" without any warranty of any
* kind, whether express or implied.
*/
#ifndef __MEDIA_VIDEO_TEGRA_NVAVP_OS_H
#define __MEDIA_VIDEO_TEGRA_NVAVP_OS_H
#include <linux/types.h>
#include "../../../../video/tegra/nvmap/nvmap.h"
#define NVE2_AVP (0x0000E276)
struct nv_e276_control {
u32 reserved00[5];
u32 dma_start;
u32 reserved01[2];
u32 dma_end;
u32 reserved02[7];
u32 put;
u32 reserved03[15];
u32 get;
u32 reserved04[10];
u32 watchdog_timeout;
u32 idle_notify_enable;
u32 idle_notify_delay;
u32 idle_clk_enable;
u32 iram_clk_gating;
u32 idle;
u32 outbox_data;
u32 app_intr_enable;
u32 app_start_time;
u32 app_in_iram;
u32 iram_ucode_addr;
u32 iram_ucode_size;
u32 dbg_state[57];
u32 os_method_data[16];
u32 app_method_data[128];
};
#define NVE26E_HOST1X_INCR_SYNCPT (0x00000000)
#define NVE26E_HOST1X_INCR_SYNCPT_COND_OP_DONE (0x00000001)
#define NVE26E_CH_OPCODE_INCR(Addr, Count) \
/* op, addr, count */ \
((1UL << 28) | ((Addr) << 16) | (Count))
#define NVE26E_CH_OPCODE_IMM(addr, value) \
/* op, addr, count */ \
((4UL << 28) | ((addr) << 16) | (value))
#define NVE26E_CH_OPCODE_GATHER(off, ins, type, cnt) \
/* op, offset, insert, type, count */ \
((6UL << 28) | ((off) << 16) | ((ins) << 15) | ((type) << 14) | cnt)
/* AVP OS methods */
#define NVE276_NOP (0x00000080)
#define NVE276_SET_APP_TIMEOUT (0x00000084)
#define NVE276_SET_MICROCODE_A (0x00000085)
#define NVE276_SET_MICROCODE_B (0x00000086)
#define NVE276_SET_MICROCODE_C (0x00000087)
/* Interrupt codes through inbox/outbox data codes (cpu->avp or avp->cpu) */
#define NVE276_OS_INTERRUPT_NOP (0x00000000) /* wake up avp */
#define NVE276_OS_INTERRUPT_TIMEOUT (0x00000001)
#define NVE276_OS_INTERRUPT_SEMAPHORE_AWAKEN (0x00000002)
#define NVE276_OS_INTERRUPT_EXECUTE_AWAKEN (0x00000004)
#define NVE276_OS_INTERRUPT_DEBUG_STRING (0x00000008)
#define NVE276_OS_INTERRUPT_DH_KEYEXCHANGE (0x00000010)
#define NVE276_OS_INTERRUPT_APP_NOTIFY (0x00000020)
#define NVE276_OS_INTERRUPT_VIDEO_IDLE (0x00000040)
#define NVE276_OS_INTERRUPT_AUDIO_IDLE (0x00000080)
#define NVE276_OS_INTERRUPT_AVP_BREAKPOINT (0x00800000)
#define NVE276_OS_INTERRUPT_AVP_FATAL_ERROR (0x01000000)
struct nvavp_os_info {
u32 entry_offset;
u32 control_offset;
u32 debug_offset;
struct nvmap_handle_ref *handle;
void *data;
u32 size;
phys_addr_t phys;
void *os_bin;
phys_addr_t reset_addr;
};
struct nvavp_ucode_info {
struct nvmap_handle_ref *handle;
void *data;
u32 size;
phys_addr_t phys;
void *ucode_bin;
};
#endif /* __MEDIA_VIDEO_TEGRA_NVAVP_OS_H */
|