Please bear with me - another rename checkin. This qualifies as trivial, no
[coreboot.git] / src / southbridge / sis / sis966 / sis761.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Turn off machine check triggers when reading
19  * pci space where there are no devices.
20  * This is necessary when scaning the bus for
21  * devices which is done by the kernel
22  *
23  * written in 2003 by Eric Biederman
24  *
25  *  - Athlon64 workarounds by Stefan Reinauer
26  *  - "reset once" logic by Yinghai Lu
27  * Copyright (C) 2007 Silicon Integrated Systems Corp. (SiS)
28  * Written by Morgan Tsai <my_tsai@sis.com> for SiS.
29  *
30  */
31
32 #include <console/console.h>
33 #include <device/device.h>
34 #include <device/pci.h>
35 #include <device/pci_ids.h>
36 #include <device/pci_ops.h>
37 #include <part/hard_reset.h>
38 #include <pc80/mc146818rtc.h>
39 #include <bitops.h>
40 #include <cpu/amd/model_fxx_rev.h>
41
42 //#include "amdk8.h"
43
44 #include <arch/io.h>
45
46 /**
47  * @brief Read resources for AGP aperture
48  *
49  * @param
50  *
51  * There is only one AGP aperture resource needed. The resoruce is added to
52  * the northbridge of BSP.
53  *
54  * The same trick can be used to augment legacy VGA resources which can
55  * be detect by generic pci reousrce allocator for VGA devices.
56  * BAD: it is more tricky than I think, the resource allocation code is
57  * implemented in a way to NOT DOING legacy VGA resource allcation on
58  * purpose :-(.
59  */
60
61
62 typedef struct msr_struct
63 {
64         unsigned lo;
65         unsigned hi;
66 } msr_t;
67
68 static inline msr_t rdmsr(unsigned index)
69 {
70         msr_t result;
71         result.lo = 0;
72         result.hi = 0;
73         return result;
74 }
75
76 static void sis761_read_resources(device_t dev)
77 {
78         /* Read the generic PCI resources */
79         printk_debug("sis761_read_resources ------->\n");
80         pci_dev_read_resources(dev);
81
82         /* If we are not the first processor don't allocate the gart apeture */
83         if (dev->path.u.pci.devfn != PCI_DEVFN(0x0, 0)) {
84                 printk_debug("sis761_not_the_first_processor !!!\n");
85                 return;
86         }
87
88         printk_debug("sis761_read_resources <-------\n");
89         return;
90
91 }
92
93 static void sis761_set_resources(device_t dev)
94 {
95         printk_debug("sis761_set_resources ------->\n");
96
97         /* Set the generic PCI resources */
98         pci_dev_set_resources(dev);
99         printk_debug("sis761_set_resources <-------\n");
100 }
101
102 static void sis761_init(struct device *dev)
103 {
104         int needs_reset;
105         msr_t   msr;
106
107
108         needs_reset = 0;
109         printk_debug("sis761_init: ---------->\n");
110
111         msr = rdmsr(0xC001001A);
112         pci_write_config16(dev, 0x8E, msr.lo >> 16);                            // Topbound
113         pci_write_config8(dev, 0x7F, 0x08);                     // ACPI Base
114         outb(inb(0x856) | 0x40, 0x856);  // Auto-Reset Function
115
116         printk_debug("sis761_init: <----------\n");
117 }
118
119
120 static struct device_operations sis761_ops  = {
121         .read_resources   = sis761_read_resources,
122         .set_resources    = sis761_set_resources,
123         .enable_resources = pci_dev_enable_resources,
124         .init             = sis761_init,
125         .scan_bus         = 0,
126         .ops_pci          = 0,
127 };
128
129 static const struct pci_driver sis761_driver __pci_driver = {
130         .ops    = &sis761_ops,
131         .vendor = PCI_VENDOR_ID_SIS,
132         .device = PCI_DEVICE_ID_SIS_SIS761,
133 };