]> Pileus Git - ~andy/linux/blob - drivers/gpu/drm/nouveau/core/subdev/instmem/nv40.c
Merge branch 'gma500-next' of git://github.com/patjak/drm-gma500 into drm-next
[~andy/linux] / drivers / gpu / drm / nouveau / core / subdev / instmem / nv40.c
1 /*
2  * Copyright 2012 Red Hat Inc.
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 COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24
25 #include <engine/graph/nv40.h>
26
27 #include "nv04.h"
28
29 /******************************************************************************
30  * instmem subdev implementation
31  *****************************************************************************/
32
33 static u32
34 nv40_instmem_rd32(struct nouveau_object *object, u64 addr)
35 {
36         struct nv04_instmem_priv *priv = (void *)object;
37         return ioread32_native(priv->iomem + addr);
38 }
39
40 static void
41 nv40_instmem_wr32(struct nouveau_object *object, u64 addr, u32 data)
42 {
43         struct nv04_instmem_priv *priv = (void *)object;
44         iowrite32_native(data, priv->iomem + addr);
45 }
46
47 static int
48 nv40_instmem_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
49                   struct nouveau_oclass *oclass, void *data, u32 size,
50                   struct nouveau_object **pobject)
51 {
52         struct nouveau_device *device = nv_device(parent);
53         struct pci_dev *pdev = device->pdev;
54         struct nv04_instmem_priv *priv;
55         int ret, bar, vs;
56
57         ret = nouveau_instmem_create(parent, engine, oclass, &priv);
58         *pobject = nv_object(priv);
59         if (ret)
60                 return ret;
61
62         /* map bar */
63         if (pci_resource_len(pdev, 2))
64                 bar = 2;
65         else
66                 bar = 3;
67
68         priv->iomem = ioremap(pci_resource_start(pdev, bar),
69                               pci_resource_len(pdev, bar));
70         if (!priv->iomem) {
71                 nv_error(priv, "unable to map PRAMIN BAR\n");
72                 return -EFAULT;
73         }
74
75         /* PRAMIN aperture maps over the end of vram, reserve enough space
76          * to fit graphics contexts for every channel, the magics come
77          * from engine/graph/nv40.c
78          */
79         vs = hweight8((nv_rd32(priv, 0x001540) & 0x0000ff00) >> 8);
80         if      (device->chipset == 0x40) priv->base.reserved = 0x6aa0 * vs;
81         else if (device->chipset  < 0x43) priv->base.reserved = 0x4f00 * vs;
82         else if (nv44_graph_class(priv))  priv->base.reserved = 0x4980 * vs;
83         else                              priv->base.reserved = 0x4a40 * vs;
84         priv->base.reserved += 16 * 1024;
85         priv->base.reserved *= 32;              /* per-channel */
86         priv->base.reserved += 512 * 1024;      /* pci(e)gart table */
87         priv->base.reserved += 512 * 1024;      /* object storage */
88
89         priv->base.reserved = round_up(priv->base.reserved, 4096);
90
91         ret = nouveau_mm_init(&priv->heap, 0, priv->base.reserved, 1);
92         if (ret)
93                 return ret;
94
95         /* 0x00000-0x10000: reserve for probable vbios image */
96         ret = nouveau_gpuobj_new(nv_object(priv), NULL, 0x10000, 0, 0,
97                                 &priv->vbios);
98         if (ret)
99                 return ret;
100
101         /* 0x10000-0x18000: reserve for RAMHT */
102         ret = nouveau_ramht_new(nv_object(priv), NULL, 0x08000, 0,
103                                &priv->ramht);
104         if (ret)
105                 return ret;
106
107         /* 0x18000-0x18200: reserve for RAMRO
108          * 0x18200-0x20000: padding
109          */
110         ret = nouveau_gpuobj_new(nv_object(priv), NULL, 0x08000, 0, 0,
111                                 &priv->ramro);
112         if (ret)
113                 return ret;
114
115         /* 0x20000-0x21000: reserve for RAMFC
116          * 0x21000-0x40000: padding and some unknown crap
117          */
118         ret = nouveau_gpuobj_new(nv_object(priv), NULL, 0x20000, 0,
119                                  NVOBJ_FLAG_ZERO_ALLOC, &priv->ramfc);
120         if (ret)
121                 return ret;
122
123         return 0;
124 }
125
126 struct nouveau_oclass *
127 nv40_instmem_oclass = &(struct nouveau_instmem_impl) {
128         .base.handle = NV_SUBDEV(INSTMEM, 0x40),
129         .base.ofuncs = &(struct nouveau_ofuncs) {
130                 .ctor = nv40_instmem_ctor,
131                 .dtor = nv04_instmem_dtor,
132                 .init = _nouveau_instmem_init,
133                 .fini = _nouveau_instmem_fini,
134                 .rd32 = nv40_instmem_rd32,
135                 .wr32 = nv40_instmem_wr32,
136         },
137         .instobj = &nv04_instobj_oclass.base,
138 }.base;