26990b2254bd56785efa7ef6f3486c625f1afd8e
[coreboot.git] / src / mainboard / gigabyte / ma78gm / mainboard.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2010 Wang Qing Pei <wangqingpei@gmail.com>
5  * Copyright (C) 2010 Advanced Micro Devices, Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of 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
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <console/console.h>
22 #include <device/device.h>
23 #include <device/pci.h>
24 #include <arch/io.h>
25 #include <boot/tables.h>
26 #include <cpu/x86/msr.h>
27 #include <cpu/amd/mtrr.h>
28 #include <device/pci_def.h>
29 #include <southbridge/amd/sb700/sb700.h>
30 #include "chip.h"
31
32 #define SMBUS_IO_BASE 0x6000
33
34 uint64_t uma_memory_base, uma_memory_size;
35
36 void set_pcie_dereset(void);
37 void set_pcie_reset(void);
38 u8 is_dev3_present(void);
39 /*
40  * ma78gm-us2h uses GPIO 6 as PCIe slot reset, GPIO4 as GFX slot reset. We need to
41  * pull it up before training the slot.
42  ***/
43 void set_pcie_dereset()
44 {
45         u16 word;
46         device_t sm_dev;
47         /* GPIO 6 reset PCIe slot, GPIO 4 reset GFX PCIe */
48         sm_dev = dev_find_slot(0, PCI_DEVFN(0x14, 0));
49
50         word = pci_read_config16(sm_dev, 0xA8);
51         word |= (1 << 0) | (1 << 2);    /* Set Gpio6,4 as output */
52         word &= ~((1 << 8) | (1 << 10));
53         pci_write_config16(sm_dev, 0xA8, word);
54 }
55
56 void set_pcie_reset()
57 {
58         u16 word;
59         device_t sm_dev;
60         /* GPIO 6 reset PCIe slot, GPIO 4 reset GFX PCIe */
61         sm_dev = dev_find_slot(0, PCI_DEVFN(0x14, 0));
62
63         word = pci_read_config16(sm_dev, 0xA8);
64         word &= ~((1 << 0) | (1 << 2)); /* Set Gpio6,4 as output */
65         word &= ~((1 << 8) | (1 << 10));
66         pci_write_config16(sm_dev, 0xA8, word);
67 }
68
69
70 u8 is_dev3_present(void)
71 {
72         return 0;
73 }
74
75 /*************************************************
76 * enable the dedicated function in board.
77 * This function called early than rs780_enable.
78 *************************************************/
79 static void ma78gm_enable(device_t dev)
80 {
81         /* Leave it for furture use. */
82         /* struct mainboard_config *mainboard =
83            (struct mainboard_config *)dev->chip_info; */
84
85         printk(BIOS_INFO, "Mainboard MA78GM-US2H Enable. dev=0x%p\n", dev);
86
87 #if (CONFIG_GFXUMA == 1)
88         msr_t msr, msr2;
89
90         /* TOP_MEM: the top of DRAM below 4G */
91         msr = rdmsr(TOP_MEM);
92         printk
93             (BIOS_INFO, "%s, TOP MEM: msr.lo = 0x%08x, msr.hi = 0x%08x\n",
94              __func__, msr.lo, msr.hi);
95
96         /* TOP_MEM2: the top of DRAM above 4G */
97         msr2 = rdmsr(TOP_MEM2);
98         printk
99             (BIOS_INFO, "%s, TOP MEM2: msr2.lo = 0x%08x, msr2.hi = 0x%08x\n",
100              __func__, msr2.lo, msr2.hi);
101
102         /* refer to UMA Size Consideration in 780 BDG. */
103         switch (msr.lo) {
104         case 0x10000000:        /* 256M system memory */
105                 uma_memory_size = 0x4000000;    /* 64M recommended UMA */
106                 break;
107
108         case 0x20000000:        /* 512M system memory */
109                 uma_memory_size = 0x8000000;    /* 128M recommended UMA */
110                 break;
111
112         default:                /* 1GB and above system memory */
113                 uma_memory_size = 0x10000000;   /* 256M recommended UMA */
114                 break;
115         }
116
117         uma_memory_base = msr.lo - uma_memory_size;     /* TOP_MEM1 */
118         printk(BIOS_INFO, "%s: uma size 0x%08llx, memory start 0x%08llx\n",
119                     __func__, uma_memory_size, uma_memory_base);
120
121         /* TODO: TOP_MEM2 */
122 #else
123         uma_memory_size = 0x8000000;    /* 128M recommended UMA */
124         uma_memory_base = 0x38000000;   /* 1GB  system memory supposed */
125 #endif
126
127         set_pcie_dereset();
128         /* get_ide_dma66(); */
129 }
130
131 int add_mainboard_resources(struct lb_memory *mem)
132 {
133         /* UMA is removed from system memory in the northbridge code, but
134          * in some circumstances we want the memory mentioned as reserved.
135          */
136 #if (CONFIG_GFXUMA == 1)
137         printk(BIOS_INFO, "uma_memory_start=0x%llx, uma_memory_size=0x%llx \n",
138                     uma_memory_base, uma_memory_size);
139         lb_add_memory_range(mem, LB_MEM_RESERVED, uma_memory_base,
140                             uma_memory_size);
141 #endif
142         return 0;
143 }
144
145 struct chip_operations mainboard_ops = {
146         CHIP_NAME("GIGABYTE MA78GM-US2H")
147         .enable_dev = ma78gm_enable,
148 };