blob: 3b92493c91033cdb47bf51412be09ca5bbd22617 [file] [log] [blame]
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +00003 *
4 * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
Alexandru Gagniuc025ead72011-02-16 13:43:00 +00005 * Copyright (C) 2011 Alexandru Gagniuc <mr.nuke.me@gmail.com>
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +00006 *
7 * This program is free software; you can redistribute it and/or modify
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00008 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000010 *
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 <device/device.h>
22#include <device/pci.h>
23#include <device/pci_ops.h>
24#include <device/pci_ids.h>
25#include <console/console.h>
Alexandru Gagniuc025ead72011-02-16 13:43:00 +000026#include "k8x8xx.h"
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000027
Stefan Reinauer2e2b84e2011-11-08 09:58:29 -080028void k8x8xx_vt8237_mirrored_regs_fill(struct k8x8xx_vt8237_mirrored_regs *regs)
29{
30 msr_t msr;
31
32 regs->rom_shadow_ctrl_pg_c = 0xff;
33 regs->rom_shadow_ctrl_pg_d = 0xff;
34 regs->rom_shadow_ctrl_pg_e_memhole_smi_decoding = 0xff;
35 regs->rom_shadow_ctrl_pg_f_memhole = 0x30;
36 regs->smm_apic_decoding = 0x19;
37 msr = rdmsr(TOP_MEM);
38 regs->shadow_mem_ctrl = msr.lo >> 24;
39 regs->low_top_address = msr.lo >> 16;
40}
41
Stefan Reinauer14e22772010-04-27 06:56:47 +000042/* We support here K8M890/K8T890 and VT8237R PCI1/Vlink which setup is not in separate
Rudolf Marek316e07f2008-03-20 21:19:50 +000043 * PCI device 0:11.7, but it is mapped to PCI 0:0.7 (0x70-0x7c for PCI1)
Rudolf Mareka6ddf252007-11-13 10:47:11 +000044 */
Uwe Hermann70ab3232007-11-15 15:52:42 +000045
Florian Zumbiehl0802ad92011-11-01 20:19:01 +010046void k8x8xx_vt8237r_cfg(struct device *dev, struct device *devsb)
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000047{
Florian Zumbiehl1e1e8592011-11-01 20:18:30 +010048 u8 regm3;
49 struct k8x8xx_vt8237_mirrored_regs mregs;
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000050
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000051 pci_write_config8(dev, 0x70, 0xc2);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070052
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000053 /* PCI Control */
Kyösti Mälkki35e1c862012-02-25 17:14:20 +020054#if !CONFIG_SOUTHBRIDGE_VIA_SUBTYPE_K8T800_OLD
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000055 pci_write_config8(dev, 0x72, 0xee);
Florian Zumbiehl6a3e8d62011-11-01 20:19:38 +010056#endif
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000057 pci_write_config8(dev, 0x73, 0x01);
Kyösti Mälkki35e1c862012-02-25 17:14:20 +020058#if CONFIG_SOUTHBRIDGE_VIA_SUBTYPE_K8T800_OLD
Florian Zumbiehl6a3e8d62011-11-01 20:19:38 +010059 pci_write_config8(dev, 0x74, 0x64);
60 pci_write_config8(dev, 0x75, 0x3f);
61#else
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000062 pci_write_config8(dev, 0x74, 0x24);
63 pci_write_config8(dev, 0x75, 0x0f);
Florian Zumbiehl6a3e8d62011-11-01 20:19:38 +010064#endif
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000065 pci_write_config8(dev, 0x76, 0x50);
Kyösti Mälkki35e1c862012-02-25 17:14:20 +020066#if !CONFIG_SOUTHBRIDGE_VIA_SUBTYPE_K8T800_OLD
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000067 pci_write_config8(dev, 0x77, 0x08);
Florian Zumbiehl6a3e8d62011-11-01 20:19:38 +010068#endif
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000069 pci_write_config8(dev, 0x78, 0x01);
70 /* APIC on HT */
71 pci_write_config8(dev, 0x7c, 0x7f);
72 pci_write_config8(dev, 0x7f, 0x02);
73
Florian Zumbiehl1e1e8592011-11-01 20:18:30 +010074 k8x8xx_vt8237_mirrored_regs_fill(&mregs);
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000075
Florian Zumbiehl1e1e8592011-11-01 20:18:30 +010076 pci_write_config8(dev, 0x57, mregs.shadow_mem_ctrl); /* Shadow mem CTRL */
77 pci_write_config8(dev, 0x61, mregs.rom_shadow_ctrl_pg_c); /* Shadow page C */
78 pci_write_config8(dev, 0x62, mregs.rom_shadow_ctrl_pg_d); /* Shadow page D */
79 pci_write_config8(dev, 0xe6, mregs.smm_apic_decoding); /* SMM and APIC decoding */
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000080
Florian Zumbiehl1e1e8592011-11-01 20:18:30 +010081 regm3 = mregs.rom_shadow_ctrl_pg_e_memhole_smi_decoding; /* Shadow page E */
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000082
83 /*
84 * All access bits for 0xE0000-0xEFFFF encode as just 2 bits!
85 * So the NB reg is quite inconsistent, we expect there only 0xff or 0x00,
86 * and write them to 0x63 7-6 but! VIA 8237A has the mirror at 0x64!
87 */
88 if (regm3 == 0xff)
89 regm3 = 0xc0;
90 else
91 regm3 = 0x0;
92
93 /* Shadow page F + memhole copy */
Florian Zumbiehl1e1e8592011-11-01 20:18:30 +010094 pci_write_config8(dev, 0x63, regm3 | (mregs.rom_shadow_ctrl_pg_f_memhole & 0x3F));
Alexandru Gagniuc025ead72011-02-16 13:43:00 +000095
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +000096}
97
Rudolf Marek316e07f2008-03-20 21:19:50 +000098
99
100/**
101 * Setup the V-Link for VT8237R, 8X mode.
102 *
103 * For K8T890CF VIA recommends what is in VIA column, AW is award 8X:
104 *
105 * REG DEF AW VIA-8X VIA-4X
106 * -----------------------------
107 * NB V-Link Manual Driving Control strobe 0xb5 0x46 0x46 0x88 0x88
108 * NB V-Link Manual Driving Control - Data 0xb6 0x46 0x46 0x88 0x88
109 * NB V-Link Receiving Strobe Delay 0xb7 0x02 0x02 0x61 0x01
110 * NB V-Link Compensation Control bit4,0 (b5,b6) 0xb4 0x10 0x10 0x11 0x11
111 * SB V-Link Strobe Drive Control 0xb9 0x00 0xa5 0x98 0x98
112 * SB V-Link Data drive Control???? 0xba 0x00 0xbb 0x77 0x77
113 * SB V-Link Receive Strobe Delay???? 0xbb 0x04 0x11 0x11 0x11
114 * SB V-Link Compensation Control bit0 (use b9) 0xb8 0x00 0x01 0x01 0x01
115 * V-Link CKG Control 0xb0 0x05 0x05 0x06 0x03
116 * V-Link CKG Control 0xb1 0x05 0x05 0x01 0x03
117 */
118
119static void vt8237r_vlink_init(struct device *dev)
120{
121 u8 reg;
122
123 /*
124 * This init code is valid only for the VT8237R! For different
125 * sounthbridges (e.g. VT8237A, VT8237S, VT8237 (without plus R)
126 * and VT8251) a different init code is required.
127 */
128
129 pci_write_config8(dev, 0xb5, 0x88);
130 pci_write_config8(dev, 0xb6, 0x88);
131 pci_write_config8(dev, 0xb7, 0x61);
132
133 reg = pci_read_config8(dev, 0xb4);
134 reg |= 0x11;
135 pci_write_config8(dev, 0xb4, reg);
136
137 pci_write_config8(dev, 0xb9, 0x98);
138 pci_write_config8(dev, 0xba, 0x77);
139 pci_write_config8(dev, 0xbb, 0x11);
140
141 reg = pci_read_config8(dev, 0xb8);
142 reg |= 0x1;
143 pci_write_config8(dev, 0xb8, reg);
144
145 pci_write_config8(dev, 0xb0, 0x06);
146 pci_write_config8(dev, 0xb1, 0x01);
147
148 /* Program V-link 8X 16bit full duplex, parity enabled. */
149 pci_write_config8(dev, 0x48, 0xa3);
150}
151
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700152static void ctrl_init(struct device *dev)
Alexandru Gagniuc025ead72011-02-16 13:43:00 +0000153{
Rudolf Marek316e07f2008-03-20 21:19:50 +0000154
Alexandru Gagniuc025ead72011-02-16 13:43:00 +0000155 print_debug("K8x8xx: Initializing V-Link to VT8237R sb: ");
Rudolf Marek316e07f2008-03-20 21:19:50 +0000156 /* TODO: Fix some ordering issue fo V-link set Rx77[6] and PCI1_Rx4F[0]
157 should to 1 */
158
159 /* C2P Read ACK Return Priority */
160 /* PCI CFG Address bits[27:24] are used as extended register address
161 bit[11:8] */
162
Kyösti Mälkki35e1c862012-02-25 17:14:20 +0200163#if !CONFIG_SOUTHBRIDGE_VIA_SUBTYPE_K8T800_OLD
Rudolf Marek316e07f2008-03-20 21:19:50 +0000164 pci_write_config8(dev, 0x47, 0x30);
Florian Zumbiehl6a3e8d62011-11-01 20:19:38 +0100165#endif
Rudolf Marek316e07f2008-03-20 21:19:50 +0000166
167 /* VT8237R specific configuration other SB are done in their own directories */
168
169 device_t devsb = dev_find_device(PCI_VENDOR_ID_VIA,
170 PCI_DEVICE_ID_VIA_VT8237R_LPC, 0);
171 if (devsb) {
172 vt8237r_vlink_init(dev);
Florian Zumbiehl0802ad92011-11-01 20:19:01 +0100173 k8x8xx_vt8237r_cfg(dev, devsb);
Alexandru Gagniuc025ead72011-02-16 13:43:00 +0000174 } else {
175 print_debug("VT8237R LPC not found !\n");
176 return;
Rudolf Marek316e07f2008-03-20 21:19:50 +0000177 }
Alexandru Gagniuc025ead72011-02-16 13:43:00 +0000178 print_debug(" Done\n");
179 print_debug(" VIA_X_7 device dump:\n");
180 dump_south(dev);
Rudolf Marek316e07f2008-03-20 21:19:50 +0000181
182}
183
Rudolf Marek0f1dc4e2011-04-22 20:48:21 +0200184static struct pci_operations lops_pci = {
185 .set_subsystem = pci_dev_set_subsystem,
186};
187
Uwe Hermann70ab3232007-11-15 15:52:42 +0000188static const struct device_operations ctrl_ops = {
189 .read_resources = pci_dev_read_resources,
190 .set_resources = pci_dev_set_resources,
191 .enable_resources = pci_dev_enable_resources,
Rudolf Marek316e07f2008-03-20 21:19:50 +0000192 .init = ctrl_init,
Rudolf Marek0f1dc4e2011-04-22 20:48:21 +0200193 .ops_pci = &lops_pci,
Rudolf Marek1d4fc0c2007-10-22 19:59:57 +0000194};
195
Patrick Georgiefff7332012-07-26 19:48:23 +0200196static const unsigned short ctrl_ids[] = {
197 PCI_DEVICE_ID_VIA_K8T800_NB_SB_CTR,
198 PCI_DEVICE_ID_VIA_K8M800_NB_SB_CTR,
199 PCI_DEVICE_ID_VIA_K8T890CE_7,
200 PCI_DEVICE_ID_VIA_K8T890CF_7,
201 PCI_DEVICE_ID_VIA_K8M890CE_7,
202 0
203};
204
Alexandru Gagniuc025ead72011-02-16 13:43:00 +0000205static const struct pci_driver northbridge_driver_t800 __pci_driver = {
206 .ops = &ctrl_ops,
207 .vendor = PCI_VENDOR_ID_VIA,
Patrick Georgiefff7332012-07-26 19:48:23 +0200208 .devices= ctrl_ids,
Rudolf Marek316e07f2008-03-20 21:19:50 +0000209};