IEI Kino mainboard support based on Mahogany Fam10.
[coreboot.git] / src / mainboard / iei / kino-780am2-fam10 / mainboard.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2010 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <console/console.h>
21 #include <device/device.h>
22 #include <device/pci.h>
23 #include <arch/io.h>
24 #include <boot/tables.h>
25 #include <cpu/x86/msr.h>
26 #include <cpu/amd/mtrr.h>
27 #include <device/pci_def.h>
28 #include <southbridge/amd/sb700/sb700.h>
29 #include "chip.h"
30
31 #define SMBUS_IO_BASE 0x6000
32
33 uint64_t uma_memory_base, uma_memory_size;
34
35 void set_pcie_dereset(void);
36 void set_pcie_reset(void);
37 u8 is_dev3_present(void);
38 /* TODO - Need to find GPIO for PCIE slot.
39  * Kino uses GPIO ? as PCIe slot reset, GPIO? as GFX slot reset. We need to
40  * pull it up before training the slot.
41  ***/
42 void set_pcie_dereset()
43 {
44         /* PCIE slot not yet supported.*/
45 }
46
47 void set_pcie_reset()
48 {
49         /* PCIE slot not yet supported.*/
50 }
51
52 u8 is_dev3_present(void)
53 {
54         return 0;
55 }
56
57 /*************************************************
58 * enable the dedicated function in kino board.
59 * This function called early than rs780_enable.
60 *************************************************/
61 static void kino_enable(device_t dev)
62 {
63         printk(BIOS_INFO, "Mainboard Kino Enable. dev=0x%p\n", dev);
64
65 #if (CONFIG_GFXUMA == 1)
66         msr_t msr, msr2;
67
68         /* TOP_MEM: the top of DRAM below 4G */
69         msr = rdmsr(TOP_MEM);
70         printk
71             (BIOS_INFO, "%s, TOP MEM: msr.lo = 0x%08x, msr.hi = 0x%08x\n",
72              __func__, msr.lo, msr.hi);
73
74         /* TOP_MEM2: the top of DRAM above 4G */
75         msr2 = rdmsr(TOP_MEM2);
76         printk
77             (BIOS_INFO, "%s, TOP MEM2: msr2.lo = 0x%08x, msr2.hi = 0x%08x\n",
78              __func__, msr2.lo, msr2.hi);
79
80         /* refer to UMA Size Consideration in 780 BDG. */
81         switch (msr.lo) {
82         case 0x10000000:        /* 256M system memory */
83                 uma_memory_size = 0x4000000;    /* 64M recommended UMA */
84                 break;
85
86         case 0x20000000:        /* 512M system memory */
87                 uma_memory_size = 0x8000000;    /* 128M recommended UMA */
88                 break;
89
90         default:                /* 1GB and above system memory */
91                 uma_memory_size = 0x10000000;   /* 256M recommended UMA */
92                 break;
93         }
94
95         uma_memory_base = msr.lo - uma_memory_size;     /* TOP_MEM1 */
96         printk(BIOS_INFO, "%s: uma size 0x%08llx, memory start 0x%08llx\n",
97                     __func__, uma_memory_size, uma_memory_base);
98
99         /* TODO: TOP_MEM2 */
100 #else
101         uma_memory_size = 0x8000000;    /* 128M recommended UMA */
102         uma_memory_base = 0x38000000;   /* 1GB  system memory supposed */
103 #endif
104
105         set_pcie_dereset();
106         /* get_ide_dma66(); */
107 }
108
109 int add_mainboard_resources(struct lb_memory *mem)
110 {
111         /* UMA is removed from system memory in the northbridge code, but
112          * in some circumstances we want the memory mentioned as reserved.
113          */
114 #if (CONFIG_GFXUMA == 1)
115         printk(BIOS_INFO, "uma_memory_start=0x%llx, uma_memory_size=0x%llx \n",
116                     uma_memory_base, uma_memory_size);
117         lb_add_memory_range(mem, LB_MEM_RESERVED, uma_memory_base,
118                             uma_memory_size);
119 #endif
120         return 0;
121 }
122
123 struct chip_operations mainboard_ops = {
124         CHIP_NAME("IEI Kino-780AM2 Mainboard")
125         .enable_dev = kino_enable,
126 };