fb.h 4.8 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3
#ifndef __NVKM_FB_H__
#define __NVKM_FB_H__
4
#include <core/subdev.h>
5
#include <core/mm.h>
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

/* memory type/access flags, do not match hardware values */
#define NV_MEM_ACCESS_RO  1
#define NV_MEM_ACCESS_WO  2
#define NV_MEM_ACCESS_RW (NV_MEM_ACCESS_RO | NV_MEM_ACCESS_WO)
#define NV_MEM_ACCESS_SYS 4
#define NV_MEM_ACCESS_VM  8
#define NV_MEM_ACCESS_NOSNOOP 16

#define NV_MEM_TARGET_VRAM        0
#define NV_MEM_TARGET_PCI         1
#define NV_MEM_TARGET_PCI_NOSNOOP 2
#define NV_MEM_TARGET_VM          3
#define NV_MEM_TARGET_GART        4

21
#define NVKM_RAM_TYPE_VM 0x7f
22 23
#define NV_MEM_COMP_VM 0x03

24 25
struct nvkm_fb_tile {
	struct nvkm_mm_node *tag;
26 27 28 29 30 31
	u32 addr;
	u32 limit;
	u32 pitch;
	u32 zcomp;
};

32
struct nvkm_fb {
33
	const struct nvkm_fb_func *func;
B
Ben Skeggs 已提交
34
	struct nvkm_subdev subdev;
35

36
	struct nvkm_ram *ram;
37
	struct nvkm_mm tags;
38 39

	struct {
40
		struct nvkm_fb_tile region[16];
41 42
		int regions;
	} tile;
43

44 45
	u8 page;

46 47
	struct nvkm_memory *mmu_rd;
	struct nvkm_memory *mmu_wr;
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
void nvkm_fb_tile_init(struct nvkm_fb *, int region, u32 addr, u32 size,
		       u32 pitch, u32 flags, struct nvkm_fb_tile *);
void nvkm_fb_tile_fini(struct nvkm_fb *, int region, struct nvkm_fb_tile *);
void nvkm_fb_tile_prog(struct nvkm_fb *, int region, struct nvkm_fb_tile *);

int nv04_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv10_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv1a_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv20_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv25_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv30_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv35_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv36_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv40_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv41_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv44_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv46_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv47_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv49_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv4e_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int nv50_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int g84_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int gt215_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int mcp77_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int mcp89_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int gf100_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
76
int gf108_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
77
int gk104_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
78
int gk110_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
79 80
int gk20a_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
int gm107_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
81
int gm200_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
82
int gm20b_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
83
int gp100_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
84
int gp102_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
85
int gp10b_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
86
int gv100_fb_new(struct nvkm_device *, int, struct nvkm_fb **);
87

88
#include <subdev/bios.h>
89 90
#include <subdev/bios/ramcfg.h>

91
struct nvkm_ram_data {
92
	struct list_head head;
93
	struct nvbios_ramcfg bios;
94
	u32 freq;
95 96
};

97 98 99 100 101 102 103 104 105 106 107 108 109 110
enum nvkm_ram_type {
	NVKM_RAM_TYPE_UNKNOWN = 0,
	NVKM_RAM_TYPE_STOLEN,
	NVKM_RAM_TYPE_SGRAM,
	NVKM_RAM_TYPE_SDRAM,
	NVKM_RAM_TYPE_DDR1,
	NVKM_RAM_TYPE_DDR2,
	NVKM_RAM_TYPE_DDR3,
	NVKM_RAM_TYPE_GDDR2,
	NVKM_RAM_TYPE_GDDR3,
	NVKM_RAM_TYPE_GDDR4,
	NVKM_RAM_TYPE_GDDR5
};

111
struct nvkm_ram {
112 113 114
	const struct nvkm_ram_func *func;
	struct nvkm_fb *fb;
	enum nvkm_ram_type type;
115
	u64 size;
116 117

#define NVKM_RAM_MM_SHIFT 12
118 119 120 121
#define NVKM_RAM_MM_ANY    (NVKM_MM_HEAP_ANY + 0)
#define NVKM_RAM_MM_NORMAL (NVKM_MM_HEAP_ANY + 1)
#define NVKM_RAM_MM_NOMAP  (NVKM_MM_HEAP_ANY + 2)
#define NVKM_RAM_MM_MIXED  (NVKM_MM_HEAP_ANY + 3)
122 123
	struct nvkm_mm vram;
	u64 stolen;
124

125 126
	int ranks;
	int parts;
127
	int part_mask;
128

129 130
	u32 freq;
	u32 mr[16];
131
	u32 mr1_nuts;
132

133 134 135 136
	struct nvkm_ram_data *next;
	struct nvkm_ram_data former;
	struct nvkm_ram_data xition;
	struct nvkm_ram_data target;
137
};
138

139 140 141 142
int
nvkm_ram_get(struct nvkm_device *, u8 heap, u8 type, u8 page, u64 size,
	     bool contig, bool back, struct nvkm_memory **);

143
struct nvkm_ram_func {
144 145 146 147 148 149
	u64 upper;
	u32 (*probe_fbp)(const struct nvkm_ram_func *, struct nvkm_device *,
			 int fbp, int *pltcs);
	u32 (*probe_fbp_amount)(const struct nvkm_ram_func *, u32 fbpao,
				struct nvkm_device *, int fbp, int *pltcs);
	u32 (*probe_fbpa_amount)(struct nvkm_device *, int fbpa);
150 151 152 153 154 155 156
	void *(*dtor)(struct nvkm_ram *);
	int (*init)(struct nvkm_ram *);

	int (*calc)(struct nvkm_ram *, u32 freq);
	int (*prog)(struct nvkm_ram *);
	void (*tidy)(struct nvkm_ram *);
};
157
#endif