Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 #ifndef __NV40_FB_RAM_H__
0003 #define __NV40_FB_RAM_H__
0004 #define nv40_ram(p) container_of((p), struct nv40_ram, base)
0005 #include "ram.h"
0006 
0007 struct nv40_ram {
0008     struct nvkm_ram base;
0009     u32 ctrl;
0010     u32 coef;
0011 };
0012 
0013 int nv40_ram_new_(struct nvkm_fb *fb, enum nvkm_ram_type, u64,
0014           struct nvkm_ram **);
0015 #endif