drm/nouveau/bios: have strap reads show on devinit spam debug level
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / nouveau / core / subdev / pwr / nva3.c
1 /*
2  * Copyright 2013 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 <subdev/pwr.h>
26
27 #include "fuc/nva3.fuc.h"
28
29 struct nva3_pwr_priv {
30         struct nouveau_pwr base;
31 };
32
33 static int
34 nva3_pwr_init(struct nouveau_object *object)
35 {
36         struct nva3_pwr_priv *priv = (void *)object;
37         nv_mask(priv, 0x022210, 0x00000001, 0x00000000);
38         nv_mask(priv, 0x022210, 0x00000001, 0x00000001);
39         return nouveau_pwr_init(&priv->base);
40 }
41
42 static int
43 nva3_pwr_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
44               struct nouveau_oclass *oclass, void *data, u32 size,
45               struct nouveau_object **pobject)
46 {
47         struct nva3_pwr_priv *priv;
48         int ret;
49
50         ret = nouveau_pwr_create(parent, engine, oclass, &priv);
51         *pobject = nv_object(priv);
52         if (ret)
53                 return ret;
54
55         priv->base.code.data = nva3_pwr_code;
56         priv->base.code.size = sizeof(nva3_pwr_code);
57         priv->base.data.data = nva3_pwr_data;
58         priv->base.data.size = sizeof(nva3_pwr_data);
59         return 0;
60 }
61
62 struct nouveau_oclass
63 nva3_pwr_oclass = {
64         .handle = NV_SUBDEV(PWR, 0xa3),
65         .ofuncs = &(struct nouveau_ofuncs) {
66                 .ctor = nva3_pwr_ctor,
67                 .dtor = _nouveau_pwr_dtor,
68                 .init = nva3_pwr_init,
69                 .fini = _nouveau_pwr_fini,
70         },
71 };