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)
54 #define FALCON_DMATRFFBOFFS 0x0000111c
56 struct falcon_fw_bin_header_v1
{
57 u32 magic
; /* 0x10de */
58 u32 version
; /* version of bin format (1) */
59 u32 size
; /* entire image size including this header */
65 struct falcon_fw_os_app_v1
{
70 struct falcon_fw_os_header_v1
{
77 struct falcon_firmware_section
{
82 struct falcon_firmware
{
83 /* Firmware after it is read but not loaded */
84 const struct firmware
*firmware
;
86 /* Raw firmware data */
92 /* Parsed firmware information */
93 struct falcon_firmware_section bin_data
;
94 struct falcon_firmware_section data
;
95 struct falcon_firmware_section code
;
99 /* Set by falcon client */
103 struct falcon_firmware firmware
;
106 int falcon_init(struct falcon
*falcon
);
107 void falcon_exit(struct falcon
*falcon
);
108 int falcon_read_firmware(struct falcon
*falcon
, const char *firmware_name
);
109 int falcon_load_firmware(struct falcon
*falcon
);
110 int falcon_boot(struct falcon
*falcon
);
111 void falcon_execute_method(struct falcon
*falcon
, u32 method
, u32 data
);
112 int falcon_wait_idle(struct falcon
*falcon
);
114 #endif /* _FALCON_H_ */