blob: 4c9e1eda3d658b4121d3b0b92ef04db476122c7a [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010018 * Foundation, Inc.
Patrick Georgi2efc8802012-11-06 11:03:53 +010019 */
20
21Device (GFX0)
22{
23 Name (_ADR, 0x00020000)
24
Vladimir Serbinenkof3155d22014-08-10 23:53:42 +020025 OperationRegion (GFXC, PCI_Config, 0x00, 0x0100)
26 Field (GFXC, DWordAcc, NoLock, Preserve)
27 {
28 Offset (0x10),
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010029 BAR0, 64
Edward O'Callaghan4568f192014-12-06 14:32:23 +110030 }
Vladimir Serbinenkof3155d22014-08-10 23:53:42 +020031
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010032 OperationRegion (GFRG, SystemMemory, And(BAR0, 0xfffffffffffffff0), 0x400000)
Vladimir Serbinenkof3155d22014-08-10 23:53:42 +020033 Field (GFRG, DWordAcc, NoLock, Preserve)
34 {
35 Offset (0x61250),
36 CR1, 32,
37 BCLV, 16,
38 BCLM, 16,
39 }
40
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010041 Name (BRIG, Package (0x12)
Patrick Georgi2efc8802012-11-06 11:03:53 +010042 {
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010043 0x61,
44 0x61,
45 0x2,
46 0x4,
47 0x5,
48 0x7,
49 0x9,
50 0xb,
51 0xd,
52 0x11,
53 0x14,
54 0x17,
55 0x1c,
56 0x20,
57 0x27,
58 0x31,
59 0x41,
60 0x61,
61 })
62
63 Method (XBCM, 1, NotSerialized)
64 {
65 Store (ShiftLeft (Arg0, 4), BCLV)
66 Store (0x80000000, CR1)
67 Store (0x0610, BCLM)
Patrick Georgi2efc8802012-11-06 11:03:53 +010068 }
69
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010070 Method (XBQC, 0, NotSerialized)
Patrick Georgi2efc8802012-11-06 11:03:53 +010071 {
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010072 Store (BCLV, Local0)
73 ShiftRight (Local0, 4, Local0)
74 Return (Local0)
Patrick Georgi2efc8802012-11-06 11:03:53 +010075 }
Nico Huber62047d12015-08-27 15:07:03 +020076#include "common.asl"
Patrick Georgi2efc8802012-11-06 11:03:53 +010077}