blob: bcba7bc9737b521baa87210fb4e1ef1ec0b6aa12 [file] [log] [blame]
Ben Skeggs7d9115d2012-07-11 15:58:56 +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 */
Ben Skeggs54dcadd2015-08-20 14:54:21 +100024#include "priv.h"
Ben Skeggs7d9115d2012-07-11 15:58:56 +100025
Ben Skeggsd7e5fcd2015-01-14 15:08:21 +100026const struct nvkm_mc_intr
Ben Skeggs7d9115d2012-07-11 15:58:56 +100027nv04_mc_intr[] = {
28 { 0x00000001, NVDEV_ENGINE_MPEG }, /* NV17- MPEG/ME */
29 { 0x00000100, NVDEV_ENGINE_FIFO },
30 { 0x00001000, NVDEV_ENGINE_GR },
Ilia Mirkin515de6b2013-09-07 20:33:43 -040031 { 0x00010000, NVDEV_ENGINE_DISP },
Ben Skeggs7d9115d2012-07-11 15:58:56 +100032 { 0x00020000, NVDEV_ENGINE_VP }, /* NV40- */
33 { 0x00100000, NVDEV_SUBDEV_TIMER },
34 { 0x01000000, NVDEV_ENGINE_DISP }, /* NV04- PCRTC0 */
35 { 0x02000000, NVDEV_ENGINE_DISP }, /* NV11- PCRTC1 */
Martin Peresa10220b2012-11-04 01:01:53 +010036 { 0x10000000, NVDEV_SUBDEV_BUS },
Ben Skeggs7d9115d2012-07-11 15:58:56 +100037 { 0x80000000, NVDEV_ENGINE_SW },
38 {}
39};
40
Ben Skeggs54dcadd2015-08-20 14:54:21 +100041void
42nv04_mc_init(struct nvkm_mc *mc)
Ben Skeggs6ee73862009-12-11 19:24:15 +100043{
Ben Skeggs25e3a462015-08-20 14:54:09 +100044 struct nvkm_device *device = mc->subdev.device;
Ben Skeggs25e3a462015-08-20 14:54:09 +100045 nvkm_wr32(device, 0x000200, 0xffffffff); /* everything enabled */
46 nvkm_wr32(device, 0x001850, 0x00000001); /* disable rom access */
Ben Skeggs6ee73862009-12-11 19:24:15 +100047}
Ben Skeggs7d9115d2012-07-11 15:58:56 +100048
Ben Skeggs54dcadd2015-08-20 14:54:21 +100049static const struct nvkm_mc_func
50nv04_mc = {
51 .init = nv04_mc_init,
52 .intr = nv04_mc_intr,
53};
54
Ben Skeggs08f6fbd2013-10-11 15:34:08 +100055int
Ben Skeggs54dcadd2015-08-20 14:54:21 +100056nv04_mc_new(struct nvkm_device *device, int index, struct nvkm_mc **pmc)
Ben Skeggs08f6fbd2013-10-11 15:34:08 +100057{
Ben Skeggs54dcadd2015-08-20 14:54:21 +100058 return nvkm_mc_new_(&nv04_mc, device, index, pmc);
Ben Skeggs08f6fbd2013-10-11 15:34:08 +100059}