]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/core/subdev/bios/shadowramin.c
Merge remote-tracking branches 'asoc/topic/rx51', 'asoc/topic/samsung', 'asoc/topic...
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / core / subdev / bios / shadowramin.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  */
23
24 #include "priv.h"
25
26 struct priv {
27         struct nouveau_bios *bios;
28         u32 bar0;
29 };
30
31 static u32
32 pramin_read(void *data, u32 offset, u32 length, struct nouveau_bios *bios)
33 {
34         u32 i;
35         if (offset + length <= 0x00100000) {
36                 for (i = offset; i < offset + length; i += 4)
37                         *(u32 *)&bios->data[i] = nv_rd32(bios, 0x700000 + i);
38                 return length;
39         }
40         return 0;
41 }
42
43 static void
44 pramin_fini(void *data)
45 {
46         struct priv *priv = data;
47         if (priv) {
48                 nv_wr32(priv->bios, 0x001700, priv->bar0);
49                 kfree(priv);
50         }
51 }
52
53 static void *
54 pramin_init(struct nouveau_bios *bios, const char *name)
55 {
56         struct priv *priv = NULL;
57         u64 addr = 0;
58
59         /* PRAMIN always potentially available prior to nv50 */
60         if (nv_device(bios)->card_type < NV_50)
61                 return NULL;
62
63         /* we can't get the bios image pointer without PDISP */
64         if (nv_device(bios)->card_type >= GM100)
65                 addr = nv_rd32(bios, 0x021c04);
66         else
67         if (nv_device(bios)->card_type >= NV_C0)
68                 addr = nv_rd32(bios, 0x022500);
69         if (addr & 0x00000001) {
70                 nv_debug(bios, "... display disabled\n");
71                 return ERR_PTR(-ENODEV);
72         }
73
74         /* check that the window is enabled and in vram, particularly
75          * important as we don't want to be touching vram on an
76          * uninitialised board
77          */
78         addr = nv_rd32(bios, 0x619f04);
79         if (!(addr & 0x00000008)) {
80                 nv_debug(bios, "... not enabled\n");
81                 return ERR_PTR(-ENODEV);
82         }
83         if ( (addr & 0x00000003) != 1) {
84                 nv_debug(bios, "... not in vram\n");
85                 return ERR_PTR(-ENODEV);
86         }
87
88         /* some alternate method inherited from xf86-video-nv... */
89         addr = (addr & 0xffffff00) << 8;
90         if (!addr) {
91                 addr  = (u64)nv_rd32(bios, 0x001700) << 16;
92                 addr += 0xf0000;
93         }
94
95         /* modify bar0 PRAMIN window to cover the bios image */
96         if (!(priv = kmalloc(sizeof(*priv), GFP_KERNEL))) {
97                 nv_error(bios, "... out of memory\n");
98                 return ERR_PTR(-ENOMEM);
99         }
100
101         priv->bios = bios;
102         priv->bar0 = nv_rd32(bios, 0x001700);
103         nv_wr32(bios, 0x001700, addr >> 16);
104         return priv;
105 }
106
107 const struct nvbios_source
108 nvbios_ramin = {
109         .name = "PRAMIN",
110         .init = pramin_init,
111         .fini = pramin_fini,
112         .read = pramin_read,
113         .rw = true,
114 };