drm/nouveau/instmem/gk20a: move memory allocation to instmem
[linux-2.6-microblaze.git] / drivers / gpu / drm / nouveau / nvkm / subdev / fb / ramgk20a.c
1 /*
2  * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20  * DEALINGS IN THE SOFTWARE.
21  */
22 #include "priv.h"
23
24 #include <core/device.h>
25
26 static void
27 gk20a_ram_put(struct nvkm_fb *pfb, struct nvkm_mem **pmem)
28 {
29         BUG();
30 }
31
32 static int
33 gk20a_ram_get(struct nvkm_fb *pfb, u64 size, u32 align, u32 ncmin,
34              u32 memtype, struct nvkm_mem **pmem)
35 {
36         BUG();
37 }
38
39 static int
40 gk20a_ram_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
41                struct nvkm_oclass *oclass, void *data, u32 datasize,
42                struct nvkm_object **pobject)
43 {
44         struct nvkm_ram *ram;
45         int ret;
46
47         ret = nvkm_ram_create(parent, engine, oclass, &ram);
48         *pobject = nv_object(ram);
49         if (ret)
50                 return ret;
51         ram->type = NV_MEM_TYPE_STOLEN;
52         ram->size = get_num_physpages() << PAGE_SHIFT;
53
54         ram->get = gk20a_ram_get;
55         ram->put = gk20a_ram_put;
56         return 0;
57 }
58
59 struct nvkm_oclass
60 gk20a_ram_oclass = {
61         .ofuncs = &(struct nvkm_ofuncs) {
62                 .ctor = gk20a_ram_ctor,
63                 .dtor = _nvkm_ram_dtor,
64                 .init = _nvkm_ram_init,
65                 .fini = _nvkm_ram_fini,
66         },
67 };