1c39f472eSBen Skeggs /*
2c39f472eSBen Skeggs  * Copyright (C) 2010 Francisco Jerez.
3c39f472eSBen Skeggs  * All Rights Reserved.
4c39f472eSBen Skeggs  *
5c39f472eSBen Skeggs  * Permission is hereby granted, free of charge, to any person obtaining
6c39f472eSBen Skeggs  * a copy of this software and associated documentation files (the
7c39f472eSBen Skeggs  * "Software"), to deal in the Software without restriction, including
8c39f472eSBen Skeggs  * without limitation the rights to use, copy, modify, merge, publish,
9c39f472eSBen Skeggs  * distribute, sublicense, and/or sell copies of the Software, and to
10c39f472eSBen Skeggs  * permit persons to whom the Software is furnished to do so, subject to
11c39f472eSBen Skeggs  * the following conditions:
12c39f472eSBen Skeggs  *
13c39f472eSBen Skeggs  * The above copyright notice and this permission notice (including the
14c39f472eSBen Skeggs  * next paragraph) shall be included in all copies or substantial
15c39f472eSBen Skeggs  * portions of the Software.
16c39f472eSBen Skeggs  *
17c39f472eSBen Skeggs  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18c39f472eSBen Skeggs  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19c39f472eSBen Skeggs  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20c39f472eSBen Skeggs  * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21c39f472eSBen Skeggs  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22c39f472eSBen Skeggs  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23c39f472eSBen Skeggs  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24c39f472eSBen Skeggs  *
25c39f472eSBen Skeggs  */
2603c8952fSBen Skeggs #include "priv.h"
27d36a99d2SBen Skeggs #include "ram.h"
28c39f472eSBen Skeggs 
2903c8952fSBen Skeggs static const struct nvkm_fb_func
3003c8952fSBen Skeggs nv49_fb = {
31af793b8cSBen Skeggs 	.tags = nv20_fb_tags,
32c39f472eSBen Skeggs 	.init = nv41_fb_init,
33c39f472eSBen Skeggs 	.tile.regions = 15,
34c39f472eSBen Skeggs 	.tile.init = nv30_fb_tile_init,
35c39f472eSBen Skeggs 	.tile.comp = nv40_fb_tile_comp,
36c39f472eSBen Skeggs 	.tile.fini = nv20_fb_tile_fini,
37c39f472eSBen Skeggs 	.tile.prog = nv41_fb_tile_prog,
3803c8952fSBen Skeggs 	.ram_new = nv49_ram_new,
3903c8952fSBen Skeggs };
4003c8952fSBen Skeggs 
4103c8952fSBen Skeggs int
nv49_fb_new(struct nvkm_device * device,enum nvkm_subdev_type type,int inst,struct nvkm_fb ** pfb)42*b7a9369aSBen Skeggs nv49_fb_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_fb **pfb)
4303c8952fSBen Skeggs {
44*b7a9369aSBen Skeggs 	return nvkm_fb_new_(&nv49_fb, device, type, inst, pfb);
4503c8952fSBen Skeggs }
46