1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2015, NVIDIA Corporation.
9 #include <linux/types.h>
11 #define FALCON_UCLASS_METHOD_OFFSET 0x00000040
13 #define FALCON_UCLASS_METHOD_DATA 0x00000044
15 #define FALCON_IRQMSET 0x00001010
16 #define FALCON_IRQMSET_WDTMR (1 << 1)
17 #define FALCON_IRQMSET_HALT (1 << 4)
18 #define FALCON_IRQMSET_EXTERR (1 << 5)
19 #define FALCON_IRQMSET_SWGEN0 (1 << 6)
20 #define FALCON_IRQMSET_SWGEN1 (1 << 7)
21 #define FALCON_IRQMSET_EXT(v) (((v) & 0xff) << 8)
23 #define FALCON_IRQDEST 0x0000101c
24 #define FALCON_IRQDEST_HALT (1 << 4)
25 #define FALCON_IRQDEST_EXTERR (1 << 5)
26 #define FALCON_IRQDEST_SWGEN0 (1 << 6)
27 #define FALCON_IRQDEST_SWGEN1 (1 << 7)
28 #define FALCON_IRQDEST_EXT(v) (((v) & 0xff) << 8)
30 #define FALCON_ITFEN 0x00001048
31 #define FALCON_ITFEN_CTXEN (1 << 0)
32 #define FALCON_ITFEN_MTHDEN (1 << 1)
34 #define FALCON_IDLESTATE 0x0000104c
36 #define FALCON_CPUCTL 0x00001100
37 #define FALCON_CPUCTL_STARTCPU (1 << 1)
39 #define FALCON_BOOTVEC 0x00001104
41 #define FALCON_DMACTL 0x0000110c
42 #define FALCON_DMACTL_DMEM_SCRUBBING (1 << 1)
43 #define FALCON_DMACTL_IMEM_SCRUBBING (1 << 2)
45 #define FALCON_DMATRFBASE 0x00001110
47 #define FALCON_DMATRFMOFFS 0x00001114
49 #define FALCON_DMATRFCMD 0x00001118
50 #define FALCON_DMATRFCMD_IDLE (1 << 1)
51 #define FALCON_DMATRFCMD_IMEM (1 << 4)
52 #define FALCON_DMATRFCMD_SIZE_256B (6 << 8)
53 #define FALCON_DMATRFCMD_DMACTX(v) (((v) & 0x7) << 12)
55 #define FALCON_DMATRFFBOFFS 0x0000111c
57 struct falcon_fw_bin_header_v1 {
58 u32 magic; /* 0x10de */
59 u32 version; /* version of bin format (1) */
60 u32 size; /* entire image size including this header */
66 struct falcon_fw_os_app_v1 {
71 struct falcon_fw_os_header_v1 {
78 struct falcon_firmware_section {
83 struct falcon_firmware {
84 /* Firmware after it is read but not loaded */
85 const struct firmware *firmware;
87 /* Raw firmware data */
93 /* Parsed firmware information */
94 struct falcon_firmware_section bin_data;
95 struct falcon_firmware_section data;
96 struct falcon_firmware_section code;
100 /* Set by falcon client */
104 struct falcon_firmware firmware;
107 int falcon_init(struct falcon *falcon);
108 void falcon_exit(struct falcon *falcon);
109 int falcon_read_firmware(struct falcon *falcon, const char *firmware_name);
110 int falcon_load_firmware(struct falcon *falcon);
111 int falcon_boot(struct falcon *falcon);
112 void falcon_execute_method(struct falcon *falcon, u32 method, u32 data);
113 int falcon_wait_idle(struct falcon *falcon);
115 #endif /* _FALCON_H_ */