blob: 4c618a8d0c6d44299038f41d2a8874169c94aa2a [file] [log] [blame]
Ben Skeggse0996ae2012-07-10 12:20:17 +10001/*
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
Ben Skeggsfa531bc2013-02-13 13:34:39 +100025#include "priv.h"
Ben Skeggse0996ae2012-07-10 12:20:17 +100026
27struct nvd0_gpio_priv {
28 struct nouveau_gpio base;
29};
30
Ben Skeggsfa531bc2013-02-13 13:34:39 +100031void
Ben Skeggs1ed73162012-12-07 13:46:52 +100032nvd0_gpio_reset(struct nouveau_gpio *gpio, u8 match)
Ben Skeggse0996ae2012-07-10 12:20:17 +100033{
34 struct nouveau_bios *bios = nouveau_bios(gpio);
35 struct nvd0_gpio_priv *priv = (void *)gpio;
Ben Skeggsd2bcea62012-12-07 10:09:17 +100036 u8 ver, len;
Ben Skeggse0996ae2012-07-10 12:20:17 +100037 u16 entry;
Ben Skeggse0996ae2012-07-10 12:20:17 +100038 int ent = -1;
39
Ben Skeggsd2bcea62012-12-07 10:09:17 +100040 while ((entry = dcb_gpio_entry(bios, 0, ++ent, &ver, &len))) {
Ben Skeggse0996ae2012-07-10 12:20:17 +100041 u32 data = nv_ro32(bios, entry);
42 u8 line = (data & 0x0000003f);
43 u8 defs = !!(data & 0x00000080);
44 u8 func = (data & 0x0000ff00) >> 8;
45 u8 unk0 = (data & 0x00ff0000) >> 16;
46 u8 unk1 = (data & 0x1f000000) >> 24;
47
Ben Skeggs1ed73162012-12-07 13:46:52 +100048 if ( func == DCB_GPIO_UNUSED ||
49 (match != DCB_GPIO_UNUSED && match != func))
Ben Skeggse0996ae2012-07-10 12:20:17 +100050 continue;
51
52 gpio->set(gpio, 0, func, line, defs);
53
54 nv_mask(priv, 0x00d610 + (line * 4), 0xff, unk0);
55 if (unk1--)
56 nv_mask(priv, 0x00d740 + (unk1 * 4), 0xff, line);
57 }
58}
59
Ben Skeggsfa531bc2013-02-13 13:34:39 +100060int
Ben Skeggse0996ae2012-07-10 12:20:17 +100061nvd0_gpio_drive(struct nouveau_gpio *gpio, int line, int dir, int out)
62{
63 u32 data = ((dir ^ 1) << 13) | (out << 12);
64 nv_mask(gpio, 0x00d610 + (line * 4), 0x00003000, data);
65 nv_mask(gpio, 0x00d604, 0x00000001, 0x00000001); /* update? */
66 return 0;
67}
68
Ben Skeggsfa531bc2013-02-13 13:34:39 +100069int
Ben Skeggse0996ae2012-07-10 12:20:17 +100070nvd0_gpio_sense(struct nouveau_gpio *gpio, int line)
71{
72 return !!(nv_rd32(gpio, 0x00d610 + (line * 4)) & 0x00004000);
73}
74
75static int
76nvd0_gpio_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
77 struct nouveau_oclass *oclass, void *data, u32 size,
78 struct nouveau_object **pobject)
79{
80 struct nvd0_gpio_priv *priv;
81 int ret;
82
Ben Skeggs73568592014-05-12 15:22:42 +100083 ret = nouveau_gpio_create(parent, engine, oclass, &priv);
Ben Skeggse0996ae2012-07-10 12:20:17 +100084 *pobject = nv_object(priv);
85 if (ret)
86 return ret;
87
88 priv->base.reset = nvd0_gpio_reset;
89 priv->base.drive = nvd0_gpio_drive;
90 priv->base.sense = nvd0_gpio_sense;
Ben Skeggs4f476432013-02-03 12:56:16 +100091 priv->base.events->priv = priv;
92 priv->base.events->enable = nv50_gpio_intr_enable;
93 priv->base.events->disable = nv50_gpio_intr_disable;
Ben Skeggse0996ae2012-07-10 12:20:17 +100094 nv_subdev(priv)->intr = nv50_gpio_intr;
95 return 0;
96}
97
Ben Skeggsd93174e2014-05-12 14:18:06 +100098struct nouveau_oclass *
Ben Skeggs73568592014-05-12 15:22:42 +100099nvd0_gpio_oclass = &(struct nouveau_gpio_impl) {
100 .base.handle = NV_SUBDEV(GPIO, 0xd0),
101 .base.ofuncs = &(struct nouveau_ofuncs) {
Ben Skeggse0996ae2012-07-10 12:20:17 +1000102 .ctor = nvd0_gpio_ctor,
103 .dtor = nv50_gpio_dtor,
104 .init = nv50_gpio_init,
105 .fini = nv50_gpio_fini,
106 },
Ben Skeggs73568592014-05-12 15:22:42 +1000107 .lines = 32,
108}.base;