1639c308eSBen Skeggs /*
2639c308eSBen Skeggs  * Copyright 2012 Red Hat Inc.
3639c308eSBen Skeggs  *
4639c308eSBen Skeggs  * Permission is hereby granted, free of charge, to any person obtaining a
5639c308eSBen Skeggs  * copy of this software and associated documentation files (the "Software"),
6639c308eSBen Skeggs  * to deal in the Software without restriction, including without limitation
7639c308eSBen Skeggs  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8639c308eSBen Skeggs  * and/or sell copies of the Software, and to permit persons to whom the
9639c308eSBen Skeggs  * Software is furnished to do so, subject to the following conditions:
10639c308eSBen Skeggs  *
11639c308eSBen Skeggs  * The above copyright notice and this permission notice shall be included in
12639c308eSBen Skeggs  * all copies or substantial portions of the Software.
13639c308eSBen Skeggs  *
14639c308eSBen Skeggs  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15639c308eSBen Skeggs  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16639c308eSBen Skeggs  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17639c308eSBen Skeggs  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18639c308eSBen Skeggs  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19639c308eSBen Skeggs  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20639c308eSBen Skeggs  * OTHER DEALINGS IN THE SOFTWARE.
21639c308eSBen Skeggs  *
22639c308eSBen Skeggs  * Authors: Ben Skeggs
23639c308eSBen Skeggs  */
24639c308eSBen Skeggs #include "nv50.h"
25d36a99d2SBen Skeggs #include "ram.h"
26639c308eSBen Skeggs 
2703c8952fSBen Skeggs static const struct nv50_fb_func
2803c8952fSBen Skeggs mcp77_fb = {
2903c8952fSBen Skeggs 	.ram_new = mcp77_ram_new,
30639c308eSBen Skeggs 	.trap = 0x001d07ff,
3103c8952fSBen Skeggs };
3203c8952fSBen Skeggs 
3303c8952fSBen Skeggs int
mcp77_fb_new(struct nvkm_device * device,enum nvkm_subdev_type type,int inst,struct nvkm_fb ** pfb)34*b7a9369aSBen Skeggs mcp77_fb_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_fb **pfb)
3503c8952fSBen Skeggs {
36*b7a9369aSBen Skeggs 	return nv50_fb_new_(&mcp77_fb, device, type, inst, pfb);
3703c8952fSBen Skeggs }
38