blob: 77be0aff0d67efc06a360f5c6a9f3cbdf7889698 [file] [log] [blame]
Josef Kellermannbfa7ee52011-05-11 07:47:43 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 Advanced Micro Devices, Inc.
5 * Copyright (C) 2010 Siemens AG, Inc.
6 * (Written by Josef Kellermann <joseph.kellermann@heitec.de> for Siemens AG, Inc.)
Stefan Reinauer5ff7c132011-10-31 12:56:45 -07007 *
Josef Kellermannbfa7ee52011-05-11 07:47:43 +00008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000020 */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070021
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000022#include <console/console.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <arch/io.h>
Nico Huberf1730352012-11-13 14:52:56 +010026#include <arch/interrupt.h>
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000027#include <delay.h>
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000028#include <cpu/x86/msr.h>
29#include <cpu/amd/mtrr.h>
30#include <device/pci_def.h>
31#include <pc80/mc146818rtc.h>
32#include <cpu/x86/lapic.h>
33#include <southbridge/amd/sb600/sb600.h>
34#include <southbridge/amd/rs690/chip.h>
35#include <southbridge/amd/rs690/rs690.h>
36#include <superio/ite/it8712f/it8712f.h>
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000037#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
38#include <x86emu/x86emu.h>
39#endif
40#include "int15_func.h"
Vladimir Serbinenko6985d4e2014-09-21 14:31:19 +020041#include "mainboard.h"
Josef Kellermannbfa7ee52011-05-11 07:47:43 +000042
43// ****LCD panel ID support: *****
44// Callback Sub-Function 00h - Get LCD Panel ID
45#define PANEL_TABLE_ID_NO 0 // no LCD
46#define PANEL_TABLE_ID1 1 // 1024x768_65MHz_Dual
47#define PANEL_TABLE_ID2 2 // 920x1200_162MHz
48#define PANEL_TABLE_ID3 3 // 600x1200_162MHz
49#define PANEL_TABLE_ID4 4 // 1024x768_65MHz
50#define PANEL_TABLE_ID5 5 // 1400x1050_108MHz
51#define PANEL_TABLE_ID6 6 // 1680x1050_119MHz
52#define PANEL_TABLE_ID7 7 // 2048x1536_164MHz
53#define PANEL_TABLE_ID8 8 // 1280x1024_108MHz
54#define PANEL_TABLE_ID9 9 // 1366x768_86MHz_chimei_V32B1L01
55
56// Callback Sub-Function 05h – Select Boot-up TV Standard
57#define TV_MODE_00 0x00 /* NTSC */
58#define TV_MODE_01 0x01 /* PAL */
59#define TV_MODE_02 0x02 /* PALM */
60#define TV_MODE_03 0x03 /* PAL60 */
61#define TV_MODE_04 0x04 /* NTSCJ */
62#define TV_MODE_05 0x05 /* PALCN */
63#define TV_MODE_06 0x06 /* PALN */
64#define TV_MODE_09 0x09 /* SCART-RGB */
65#define TV_MODE_NO 0xff /* No TV Support */
66
67#define PLX_VIDDID 0x861610b5
68
69/* 7475 Common Registers */
70#define REG_DEVREV2 0x12 /* ADT7490 only */
71#define REG_VTT 0x1E /* ADT7490 only */
72#define REG_EXTEND3 0x1F /* ADT7490 only */
73#define REG_VOLTAGE_BASE 0x20
74#define REG_TEMP_BASE 0x25
75#define REG_TACH_BASE 0x28
76#define REG_PWM_BASE 0x30
77#define REG_PWM_MAX_BASE 0x38
78#define REG_DEVID 0x3D
79#define REG_VENDID 0x3E
80#define REG_DEVID2 0x3F
81#define REG_STATUS1 0x41
82#define REG_STATUS2 0x42
83#define REG_VID 0x43 /* ADT7476 only */
84#define REG_VOLTAGE_MIN_BASE 0x44
85#define REG_VOLTAGE_MAX_BASE 0x45
86#define REG_TEMP_MIN_BASE 0x4E
87#define REG_TEMP_MAX_BASE 0x4F
88#define REG_TACH_MIN_BASE 0x54
89#define REG_PWM_CONFIG_BASE 0x5C
90#define REG_TEMP_TRANGE_BASE 0x5F
91#define REG_PWM_MIN_BASE 0x64
92#define REG_TEMP_TMIN_BASE 0x67
93#define REG_TEMP_THERM_BASE 0x6A
94#define REG_REMOTE1_HYSTERSIS 0x6D
95#define REG_REMOTE2_HYSTERSIS 0x6E
96#define REG_TEMP_OFFSET_BASE 0x70
97#define REG_CONFIG2 0x73
98#define REG_EXTEND1 0x76
99#define REG_EXTEND2 0x77
100#define REG_CONFIG1 0x40 // ADT7475
101#define REG_CONFIG3 0x78
102#define REG_CONFIG5 0x7C
103#define REG_CONFIG6 0x10 // ADT7475
104#define REG_CONFIG7 0x11 // ADT7475
105#define REG_CONFIG4 0x7D
106#define REG_STATUS4 0x81 /* ADT7490 only */
107#define REG_VTT_MIN 0x84 /* ADT7490 only */
108#define REG_VTT_MAX 0x86 /* ADT7490 only */
109
110#define VID_VIDSEL 0x80 /* ADT7476 only */
111
112#define CONFIG2_ATTN 0x20
113#define CONFIG3_SMBALERT 0x01
114#define CONFIG3_THERM 0x02
115#define CONFIG4_PINFUNC 0x03
116#define CONFIG4_MAXDUTY 0x08
117#define CONFIG4_ATTN_IN10 0x30
118#define CONFIG4_ATTN_IN43 0xC0
119#define CONFIG5_TWOSCOMP 0x01
120#define CONFIG5_TEMPOFFSET 0x02
121#define CONFIG5_VIDGPIO 0x10 /* ADT7476 only */
122#define REMOTE1 0
123#define LOCAL 1
124#define REMOTE2 2
125
126/* ADT7475 Settings */
127#define ADT7475_VOLTAGE_COUNT 5 /* Not counting Vtt */
128#define ADT7475_TEMP_COUNT 3
129#define ADT7475_TACH_COUNT 4
130#define ADT7475_PWM_COUNT 3
131
132/* Macros to easily index the registers */
133#define TACH_REG(idx) (REG_TACH_BASE + ((idx) * 2))
134#define TACH_MIN_REG(idx) (REG_TACH_MIN_BASE + ((idx) * 2))
135
136#define PWM_REG(idx) (REG_PWM_BASE + (idx))
137#define PWM_MAX_REG(idx) (REG_PWM_MAX_BASE + (idx))
138#define PWM_MIN_REG(idx) (REG_PWM_MIN_BASE + (idx))
139#define PWM_CONFIG_REG(idx) (REG_PWM_CONFIG_BASE + (idx))
140
141#define VOLTAGE_REG(idx) (REG_VOLTAGE_BASE + (idx))
142#define VOLTAGE_MIN_REG(idx) (REG_VOLTAGE_MIN_BASE + ((idx) * 2))
143#define VOLTAGE_MAX_REG(idx) (REG_VOLTAGE_MAX_BASE + ((idx) * 2))
144
145#define TEMP_REG(idx) (REG_TEMP_BASE + (idx))
146#define TEMP_MIN_REG(idx) (REG_TEMP_MIN_BASE + ((idx) * 2))
147#define TEMP_MAX_REG(idx) (REG_TEMP_MAX_BASE + ((idx) * 2))
148#define TEMP_TMIN_REG(idx) (REG_TEMP_TMIN_BASE + (idx))
149#define TEMP_THERM_REG(idx) (REG_TEMP_THERM_BASE + (idx))
150#define TEMP_OFFSET_REG(idx) (REG_TEMP_OFFSET_BASE + (idx))
151#define TEMP_TRANGE_REG(idx) (REG_TEMP_TRANGE_BASE + (idx))
152
153#define SMBUS_IO_BASE 0x1000
154#define ADT7475_ADDRESS 0x2E
155
Elyes HAOUAS9558c002014-07-22 19:01:45 +0200156#define D_OPEN (1 << 6)
157#define D_CLS (1 << 5)
158#define D_LCK (1 << 4)
159#define G_SMRAME (1 << 3)
160#define A_BASE_SEG ((0 << 2) | (1 << 1) | (0 << 0)) // 0x2: SMM space at 640KB-768KB
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000161
162extern int do_smbus_read_byte(u32 smbus_io_base, u32 device, u32 address);
163extern int do_smbus_write_byte(u32 smbus_io_base, u32 device, u32 address, u8 val);
164
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000165static u32 smbus_io_base = SMBUS_IO_BASE;
166static u32 adt7475_address = ADT7475_ADDRESS;
167
168/* Macro to read the registers */
169#define adt7475_read_byte(reg) \
170 do_smbus_read_byte(smbus_io_base, adt7475_address, reg)
171
172#define adt7475_write_byte(reg, val) \
173 do_smbus_write_byte(smbus_io_base, adt7475_address, reg, val)
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700174
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000175#define TWOS_COMPL 1
176
177struct __table__{
178 const char *info;
179 u8 val;
180};
181
182struct __table__ dutycycles[] = {
183 {"25%", 0x3f},{"30%", 0x4c},{"35%", 0x59},{"40%", 0x66},{"45%", 0x73},
184 {"50%", 0x80},{"55%", 0x8d},{"60%", 0x9a},{"65%", 0xa7},{"70%", 0xb4},
185 {"75%", 0xc1},{"80%", 0xce},{"85%", 0xdb},{"90%", 0xe8},{"95%", 0xf5},
186 {"100%", 0xff}
187};
188#define SIZEOF_DUTYCYCLES sizeof(dutycycles)/sizeof(struct __table__)
189#define DUTYCYCLE(i,d) (i < SIZEOF_DUTYCYCLES) ? dutycycles[i].val : dutycycles[d].val // hopefully d is a correct value !!! fix
190#define DUTYCYCLE_INFO(i) (i < SIZEOF_DUTYCYCLES) ? dutycycles[i].info : "out_of_range"
191#if TWOS_COMPL == 0
192struct __table__ temperatures[] = {
193 {"30°C", 0x5e},{"35°C", 0x63},{"40°C", 0x68},{"45°C", 0x6d},{"50°C", 0x72},
194 {"55°C", 0x77},{"60°C", 0x7c},{"65°C", 0x81},{"70°C", 0x86},{"75°C", 0x8b},
195 {"80°C", 0x90}
196};
197#else
198struct __table__ temperatures[] = {
199 {"30°C", 30},{"35°C", 35},{"40°C", 40},{"45°C", 45},{"50°C", 50},
200 {"55°C", 55},{"60°C", 60},{"65°C", 65},{"70°C", 70},{"75°C", 75},
201 {"80°C", 80}
202};
203#endif
204int trange[] = {2.0,2.5,3.33,4.0,5.0,6.67,8.0,10.0,13.33,16.0,20.0,26.67,32.0,40.0,53.33,80.0};
205
206#define SIZEOF_TEMPERATURES sizeof(temperatures)/sizeof(struct __table__)
207#define TEMPERATURE(i,d) (i < SIZEOF_TEMPERATURES) ? temperatures[i].val : temperatures[d].val // hopefully d is a correct value !!! fix
208#define TEMPERATURE_INFO(i) (i < SIZEOF_TEMPERATURES) ? temperatures[i].info : "out of range"
209
210struct fan_control {
211 unsigned int enable : 1;
212 u8 polarity;
213 u8 t_min;
214 u8 t_max;
215 u8 pwm_min;
216 u8 pwm_max;
217 u8 t_range;
218};
219/* ############################################################################################# */
220#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
221static int int15_handler(void)
222{
223#define BOOT_DISPLAY_DEFAULT 0
224#define BOOT_DISPLAY_CRT (1 << 0)
225#define BOOT_DISPLAY_TV (1 << 1)
226#define BOOT_DISPLAY_EFP (1 << 2)
227#define BOOT_DISPLAY_LCD (1 << 3)
228#define BOOT_DISPLAY_CRT2 (1 << 4)
229#define BOOT_DISPLAY_TV2 (1 << 5)
230#define BOOT_DISPLAY_EFP2 (1 << 6)
231#define BOOT_DISPLAY_LCD2 (1 << 7)
232
233 printk(BIOS_DEBUG, "%s: AX=%04x BX=%04x CX=%04x DX=%04x\n",
Patrick Georgi3c842612012-11-22 15:30:05 +0100234 __func__, X86_AX, X86_BX, X86_CX, X86_DX);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000235
Patrick Georgi3c842612012-11-22 15:30:05 +0100236 switch (X86_AX) {
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000237 case 0x4e08: /* Boot Display */
Patrick Georgi3c842612012-11-22 15:30:05 +0100238 switch (X86_BX) {
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000239 case 0x80:
Patrick Georgi3c842612012-11-22 15:30:05 +0100240 X86_AX &= ~(0xff); // Success
241 X86_BX &= ~(0xff);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000242 printk(BIOS_DEBUG, "Integrated System Information\n");
243 break;
244 case 0x00:
Patrick Georgi3c842612012-11-22 15:30:05 +0100245 X86_AX &= ~(0xff);
246 X86_BX = 0x00;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000247 printk(BIOS_DEBUG, "Panel ID = 0\n");
248 break;
249 case 0x05:
Patrick Georgi3c842612012-11-22 15:30:05 +0100250 X86_AX &= ~(0xff);
251 X86_BX = 0xff;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000252 printk(BIOS_DEBUG, "TV = off\n");
253 break;
254 default:
255 return 0;
256 }
257 break;
258 case 0x5f35: /* Boot Display */
Patrick Georgi3c842612012-11-22 15:30:05 +0100259 X86_AX = 0x005f; // Success
260 X86_CL = BOOT_DISPLAY_DEFAULT;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000261 break;
262 case 0x5f40: /* Boot Panel Type */
263 // M.x86.R_AX = 0x015f; // Supported but failed
Patrick Georgi3c842612012-11-22 15:30:05 +0100264 X86_AX = 0x005f; // Success
265 X86_CL = 3; // Display ID
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000266 break;
267 default:
268 /* Interrupt was not handled */
269 return 0;
270 }
271
272 /* Interrupt handled */
273 return 1;
274}
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000275#endif
276/* ############################################################################################# */
277
278 /**
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700279 * @brief
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000280 *
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700281 * @param
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000282 */
283
284static u8 calc_trange(u8 t_min, u8 t_max) {
285
286 u8 prev;
287 int i;
288 int diff = t_max - t_min;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700289
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000290 // walk through the trange table
291 for(i = 0, prev = 0; i < sizeof(trange)/sizeof(int); i++) {
292 if( trange[i] < diff ) {
293 prev = i; // save last val
294 continue;
295 }
296 if( diff == trange[i] ) return i;
297 if( (diff - trange[prev]) < (trange[i] - diff) ) break; // return with last val index
298 return i;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700299 }
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000300 return prev;
301}
302
303/********************************************************
304* sina uses SB600 GPIO9 to detect IDE_DMA66.
305* IDE_DMA66 is routed to GPIO 9. So we read Gpio 9 to
306* get the cable type, 40 pin or 80 pin?
307********************************************************/
308static void cable_detect(void)
309{
310
311 u8 byte;
312 struct device *sm_dev;
313 struct device *ide_dev;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700314
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000315 /* SMBus Module and ACPI Block (Device 20, Function 0) on SB600 */
316 printk(BIOS_DEBUG, "%s.\n", __func__);
317 sm_dev = dev_find_slot(0, PCI_DEVFN(0x14, 0));
318
319 byte = pci_read_config8(sm_dev, 0xA9);
320 byte |= (1 << 5); /* Set Gpio9 as input */
321 pci_write_config8(sm_dev, 0xA9, byte);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700322
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000323 /* IDE Controller (Device 20, Function 1) on SB600 */
324 ide_dev = dev_find_slot(0, PCI_DEVFN(0x14, 1));
325
326 byte = pci_read_config8(ide_dev, 9);
327 printk(BIOS_INFO, "IDE controller in %s Mode\n", byte & (1 << 0) ? "Native" : "Compatibility");
328
329 byte = pci_read_config8(ide_dev, 0x56);
330 byte &= ~(7 << 0);
331 if( pci_read_config8(sm_dev, 0xAA) & (1 << 5) )
332 byte |= 2 << 0; /* mode 2 */
333 else
334 byte |= 5 << 0; /* mode 5 */
335 printk(BIOS_INFO, "DMA mode %d selected\n", byte & (7 << 0));
336 pci_write_config8(ide_dev, 0x56, byte);
337}
338
339/**
340 * @brief Detect the ADT7475 device
341 *
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700342 * @param
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000343 */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700344
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000345static const char * adt7475_detect( void ) {
346
347 int vendid, devid, devid2;
348 const char *name = NULL;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700349
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000350 vendid = adt7475_read_byte(REG_VENDID);
351 devid2 = adt7475_read_byte(REG_DEVID2);
352 if (vendid != 0x41 || /* Analog Devices */
353 (devid2 & 0xf8) != 0x68) {
354 return name;
355 }
356
357 devid = adt7475_read_byte(REG_DEVID);
358 if (devid == 0x73)
359 name = "adt7473";
360 else if (devid == 0x75 && adt7475_address == 0x2e)
361 name = "adt7475";
362 else if (devid == 0x76)
363 name = "adt7476";
364 else if ((devid2 & 0xfc) == 0x6c)
365 name = "adt7490";
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700366
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000367 return name;
368}
369
370// thermal control defaults
371const struct fan_control cpu_fan_control_defaults = {
372 .enable = 0, // disable by default
373 .polarity = 0, // high by default
374 .t_min = 3, // default = 45°C
375 .t_max = 7, // 65°C
376 .pwm_min = 1, // default dutycycle = 30%
377 .pwm_max = 13, // 90%
378};
379const struct fan_control case_fan_control_defaults = {
380 .enable = 0, // disable by default
381 .polarity = 0, // high by default
382 .t_min = 2, // default = 40°C
383 .t_max = 8, // 70°C
384 .pwm_min = 0, // default dutycycle = 25%
385 .pwm_max = 13, // 90%
386};
387
388static void pm_init( void )
389{
390 u16 word;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700391 u8 byte;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000392 device_t sm_dev = dev_find_slot(0, PCI_DEVFN(0x14, 0));
393
394 /* set SB600 GPIO 64 to GPIO with pull-up */
395 byte = pm2_ioread(0x42);
396 byte &= 0x3f;
397 pm2_iowrite(0x42, byte);
398
399 /* set GPIO 64 to tristate */
400 word = pci_read_config16(sm_dev, 0x56);
401 word |= 1 << 7;
402 pci_write_config16(sm_dev, 0x56, word);
403
404 /* set GPIO 64 internal pull-up */
405 byte = pm2_ioread(0xf0);
406 byte &= 0xee;
407 pm2_iowrite(0xf0, byte);
408
409 /* set Talert to be active low */
410 byte = pm_ioread(0x67);
411 byte &= ~(1 << 5);
412 pm_iowrite(0x67, byte);
413
414 /* set Talert to generate ACPI event */
415 byte = pm_ioread(0x3c);
416 byte &= 0xf3;
417 pm_iowrite(0x3c, byte);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700418
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000419 /* set GPM5 to not wake from s5 */
420 byte = pm_ioread(0x77);
421 byte &= ~(1 << 5);
422 pm_iowrite(0x77, byte);
423}
424
425 /**
426 * @brief Setup thermal config on SINA Mainboard
427 *
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700428 * @param
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000429 */
430
431static void set_thermal_config(void)
432{
433 u8 byte, byte2;
434 u8 cpu_pwm_conf, case_pwm_conf;
435 device_t sm_dev;
436 struct fan_control cpu_fan_control, case_fan_control;
437 const char *name = NULL;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700438
439
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000440 sm_dev = dev_find_slot(0, PCI_DEVFN(0x14, 0));
441 smbus_io_base = pci_read_config32(sm_dev, 0x10) & ~(0xf); // get BAR0-Address which holds the SMBUS_IO_BASE
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700442
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000443 if( (name = adt7475_detect()) == NULL ) {
444 printk(BIOS_NOTICE, "Couldn't detect an ADT7473/75/76/90 part at %x:%x\n", smbus_io_base, adt7475_address);
445 return;
446 }
447 printk(BIOS_DEBUG, "Found %s part at %x:%x\n", name, smbus_io_base, adt7475_address);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700448
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000449 cpu_fan_control = cpu_fan_control_defaults;
450 case_fan_control = case_fan_control_defaults;
451
Alexandru Gagniuc72dccce2013-11-23 19:22:53 -0600452 if (get_option(&byte, "cpu_fan_control") == CB_CMOS_CHECKSUM_INVALID) {
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000453 printk(BIOS_WARNING, "%s: CMOS checksum invalid, keeping default values\n",__func__);
454 } else {
455 // get all the options needed
Alexandru Gagniuc72dccce2013-11-23 19:22:53 -0600456 if( get_option(&byte, "cpu_fan_control") == CB_SUCCESS )
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000457 cpu_fan_control.enable = byte ? 1 : 0;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700458
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000459 get_option(&cpu_fan_control.polarity, "cpu_fan_polarity");
460 get_option(&cpu_fan_control.t_min, "cpu_t_min");
461 get_option(&cpu_fan_control.t_max, "cpu_t_max");
462 get_option(&cpu_fan_control.pwm_min, "cpu_dutycycle_min");
463 get_option(&cpu_fan_control.pwm_max, "cpu_dutycycle_max");
464
Alexandru Gagniuc72dccce2013-11-23 19:22:53 -0600465 if( get_option(&byte, "chassis_fan_control") == CB_SUCCESS)
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700466 case_fan_control.enable = byte ? 1 : 0;
467 get_option(&case_fan_control.polarity, "chassis_fan_polarity");
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000468 get_option(&case_fan_control.t_min, "chassis_t_min");
469 get_option(&case_fan_control.t_max, "chassis_t_max");
470 get_option(&case_fan_control.pwm_min, "chassis_dutycycle_min");
471 get_option(&case_fan_control.pwm_max, "chassis_dutycycle_max");
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700472
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000473 }
474
475 printk(BIOS_DEBUG, "cpu_fan_control:%s", cpu_fan_control.enable ? "enable" : "disable");
476 printk(BIOS_DEBUG, " cpu_fan_polarity:%s", cpu_fan_control.polarity ? "low" : "high");
477
478 printk(BIOS_DEBUG, " cpu_t_min:%s", TEMPERATURE_INFO(cpu_fan_control.t_min));
479 cpu_fan_control.t_min = TEMPERATURE(cpu_fan_control.t_min, cpu_fan_control_defaults.t_min);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700480
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000481 printk(BIOS_DEBUG, " cpu_t_max:%s", TEMPERATURE_INFO(cpu_fan_control.t_max));
482 cpu_fan_control.t_max = TEMPERATURE(cpu_fan_control.t_max, cpu_fan_control_defaults.t_max);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700483
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000484 printk(BIOS_DEBUG, " cpu_pwm_min:%s", DUTYCYCLE_INFO(cpu_fan_control.pwm_min));
485 cpu_fan_control.pwm_min = DUTYCYCLE(cpu_fan_control.pwm_min, cpu_fan_control_defaults.pwm_min);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700486
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000487 printk(BIOS_DEBUG, " cpu_pwm_max:%s", DUTYCYCLE_INFO(cpu_fan_control.pwm_max));
488 cpu_fan_control.pwm_max = DUTYCYCLE(cpu_fan_control.pwm_max, cpu_fan_control_defaults.pwm_max);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700489
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000490 cpu_fan_control.t_range = calc_trange(cpu_fan_control.t_min, cpu_fan_control.t_max);
491 printk(BIOS_DEBUG, " cpu_t_range:0x%02x\n", cpu_fan_control.t_range);
492 cpu_fan_control.t_range <<= 4;
493 cpu_fan_control.t_range |= (4 << 0); // 35.3Hz
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700494
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000495 printk(BIOS_DEBUG, "chassis_fan_control:%s", case_fan_control.enable ? "enable" : "disable");
496 printk(BIOS_DEBUG, " chassis_fan_polarity:%s", case_fan_control.polarity ? "low" : "high");
497
498 printk(BIOS_DEBUG, " chassis_t_min:%s", TEMPERATURE_INFO(case_fan_control.t_min));
499 case_fan_control.t_min = TEMPERATURE(case_fan_control.t_min, case_fan_control_defaults.t_min);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700500
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000501 printk(BIOS_DEBUG, " chassis_t_max:%s", TEMPERATURE_INFO(case_fan_control.t_max));
502 case_fan_control.t_max = TEMPERATURE(case_fan_control.t_max, case_fan_control_defaults.t_max);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700503
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000504 printk(BIOS_DEBUG, " chassis_pwm_min:%s", DUTYCYCLE_INFO(case_fan_control.pwm_min));
505 case_fan_control.pwm_min = DUTYCYCLE(case_fan_control.pwm_min, case_fan_control_defaults.pwm_min);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700506
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000507 printk(BIOS_DEBUG, " chassis_pwm_max:%s", DUTYCYCLE_INFO(case_fan_control.pwm_max));
508 case_fan_control.pwm_max = DUTYCYCLE(case_fan_control.pwm_max, case_fan_control_defaults.pwm_max);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700509
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000510 case_fan_control.t_range = calc_trange(case_fan_control.t_min, case_fan_control.t_max);
511 printk(BIOS_DEBUG, " case_t_range:0x%02x\n", case_fan_control.t_range);
512 case_fan_control.t_range <<= 4;
513 case_fan_control.t_range |= (4 << 0); // 35.3Hz
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700514
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000515 cpu_pwm_conf = (((cpu_fan_control.polarity & 0x1) << 4) | 0x2); // bit 4 control polarity of PWMx output
516 case_pwm_conf = (((case_fan_control.polarity & 0x1) << 4) | 0x2); // bit 4 control polarity of PWMx output
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700517 cpu_pwm_conf |= cpu_fan_control.enable ? (0 << 5) : (7 << 5); // manual control
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000518 case_pwm_conf |= case_fan_control.enable ? (1 << 5) : (7 << 5); // local temp
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700519
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000520 /* set adt7475 */
521
522 adt7475_write_byte(REG_CONFIG1, 0x04); // clear register, bit 2 is read only
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700523
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000524 /* Config Register 6: */
525 adt7475_write_byte(REG_CONFIG6, 0x00);
526 /* Config Register 7 */
527 adt7475_write_byte(REG_CONFIG7, 0x00);
528
529 /* Config Register 5: */
530 /* set Offset 64 format, enable THERM on Remote 1& Local */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700531 adt7475_write_byte(REG_CONFIG5, TWOS_COMPL ? 0x61 : 0x60);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000532 /* No offset for remote 1 */
533 adt7475_write_byte(TEMP_OFFSET_REG(0), 0x00);
534 /* No offset for local */
535 adt7475_write_byte(TEMP_OFFSET_REG(1), 0x00);
536 /* No offset for remote 2 */
537 adt7475_write_byte(TEMP_OFFSET_REG(2), 0x00);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700538
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000539 /* remote 1 low temp limit */
540 adt7475_write_byte(TEMP_MIN_REG(0), 0x00);
541 /* remote 1 High temp limit (90C) */
542 adt7475_write_byte(TEMP_MAX_REG(0), 0x9a);
543
544 /* local Low Temp Limit */
545 adt7475_write_byte(TEMP_MIN_REG(1), 0x00);
546 /* local High Limit (90C) */
547 adt7475_write_byte(TEMP_MAX_REG(1), 0x9a);
548
549 /* remote 1 therm temp limit (95C) */
550 adt7475_write_byte(TEMP_THERM_REG(0), 0x9f);
551 /* local therm temp limit (95C) */
552 adt7475_write_byte(TEMP_THERM_REG(1), 0x9f);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700553
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000554 /* PWM 1 configuration register CPU fan controlled by CPU Thermal Diode */
555 adt7475_write_byte(PWM_CONFIG_REG(0), cpu_pwm_conf);
556 /* PWM 3 configuration register Case fan controlled by ADTxxxx temp */
557 adt7475_write_byte(PWM_CONFIG_REG(2), case_pwm_conf);
558
559 if( cpu_fan_control.enable ) {
560 /* PWM 1 minimum duty cycle (37%) */
561 adt7475_write_byte(PWM_MIN_REG(0), cpu_fan_control.pwm_min);
562 /* PWM 1 Maximum duty cycle (100%) */
563 adt7475_write_byte(PWM_MAX_REG(0), cpu_fan_control.pwm_max);
564 /* Remote 1 temperature Tmin (32C) */
565 adt7475_write_byte(TEMP_TMIN_REG(0), cpu_fan_control.t_min);
566 /* remote 1 Trange (53C ramp range) */
567 adt7475_write_byte(TEMP_TRANGE_REG(0), cpu_fan_control.t_range);
568 } else {
569 adt7475_write_byte(PWM_REG(0), cpu_fan_control.pwm_max);
570 }
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700571
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000572 if( case_fan_control.enable ) {
573 /* PWM 2 minimum duty cycle (37%) */
574 adt7475_write_byte(PWM_MIN_REG(2), case_fan_control.pwm_min);
575 /* PWM 2 Maximum Duty Cycle (100%) */
576 adt7475_write_byte(PWM_MAX_REG(2), case_fan_control.pwm_max);
577 /* local temperature Tmin (32C) */
578 adt7475_write_byte(TEMP_TMIN_REG(1), case_fan_control.t_min);
579 /* local Trange (53C ramp range) */
580 adt7475_write_byte(TEMP_TRANGE_REG(1), case_fan_control.t_range); // Local TRange
581 adt7475_write_byte(TEMP_TRANGE_REG(2), case_fan_control.t_range); // PWM2 Freq
582 } else {
583 adt7475_write_byte(PWM_REG(2), case_fan_control.pwm_max);
584 }
585
586 /* Config Register 3 - enable smbalert & therm */
587 adt7475_write_byte(0x78, 0x03);
588 /* Config Register 4 - enable therm output */
589 adt7475_write_byte(0x7d, 0x09);
590 /* Interrupt Mask Register 2 - Mask SMB alert for Therm Conditions, Fan 3 fault, SmbAlert Fan for Therm Timer event */
591 adt7475_write_byte(0x75, 0x2e);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700592
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000593 /* Config Register 1 Set Start bit */
594 adt7475_write_byte(0x40, 0x05);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700595
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000596 /* Read status register to clear any old errors */
597 byte2 = adt7475_read_byte(0x42);
598 byte = adt7475_read_byte(0x41);
599
600 printk(BIOS_DEBUG, "Init 'Thermal Monitor' end , status 0x42 = 0x%02x, status 0x41 = 0x%02x\n",
601 byte2, byte);
602
603}
604
605 /**
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700606 * @brief
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000607 *
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700608 * @param
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000609 */
610
611static void patch_mmio_nonposted( void )
612{
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700613 unsigned reg, index;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000614 resource_t rbase, rend;
615 u32 base, limit;
616 struct resource *resource;
617 device_t dev;
618 device_t k8_f1 = dev_find_slot(0, PCI_DEVFN(0x18,1));
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700619
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000620 printk(BIOS_DEBUG,"%s ...\n", __func__);
621
622 dev = dev_find_slot(1, PCI_DEVFN(5,0));
623 // the uma frame buffer
624 index = 0x10;
625 resource = probe_resource(dev, index);
626 if( resource ) {
627 // fixup resource nonposted in k8 mmio
628 /* Get the base address */
629 rbase = (resource->base >> 8) & ~(0xff);
630 /* Get the limit (rounded up) */
631 rend = (resource_end(resource) >> 8) & ~(0xff);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700632
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000633 printk(BIOS_DEBUG,"%s %x base = %0llx limit = %0llx\n", dev_path(dev), index, rbase, rend);
634
635 for( reg = 0xb8; reg >= 0x80; reg -= 8 ) {
636 base = pci_read_config32(k8_f1,reg);
637 limit = pci_read_config32(k8_f1,reg+4);
638 printk(BIOS_DEBUG," %02x[%08x] %02x[%08x]", reg, base, reg+4, limit);
639 if( ((base & ~(0xff)) == rbase) && ((limit & ~(0xff)) == rend) ) {
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700640 limit |= (1 << 7);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000641 printk(BIOS_DEBUG, "\nPatching %s %x <- %08x", dev_path(k8_f1), reg, limit);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700642 pci_write_config32(k8_f1, reg+4, limit);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000643 break;
644 }
645 }
646 printk(BIOS_DEBUG, "\n");
647 }
648}
649
650 /**
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700651 * @brief
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000652 *
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700653 * @param
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000654 */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700655
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000656struct {
657 unsigned int bus;
658 unsigned int devfn;
659} slot[] = {
660 {0, PCI_DEVFN(0,0)},
661 {0, PCI_DEVFN(18,0)},
662 {0, PCI_DEVFN(19,0)},{0, PCI_DEVFN(19,1)},{0, PCI_DEVFN(19,2)},{0, PCI_DEVFN(19,3)},{0, PCI_DEVFN(19,4)},{0, PCI_DEVFN(19,5)},
663 {0, PCI_DEVFN(20,0)},{0, PCI_DEVFN(20,1)},{0, PCI_DEVFN(20,2)},{0, PCI_DEVFN(20,3)},{0, PCI_DEVFN(20,5)},{0, PCI_DEVFN(20,6)},
664 {0, PCI_DEVFN(5,0)},{0, PCI_DEVFN(5,2)},
665 {255,0},
666};
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700667
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000668
Stefan Reinauer188e3c22012-07-26 12:46:48 -0700669unsigned int plx_present = 0;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000670
Stefan Reinauer188e3c22012-07-26 12:46:48 -0700671static void update_subsystemid( device_t dev )
672{
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000673 int i;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700674
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000675 dev->subsystem_vendor = 0x110a;
Stefan Reinauer188e3c22012-07-26 12:46:48 -0700676 if( plx_present ){
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000677 dev->subsystem_device = 0x4076; // U1P1 = 0x4076, U1P0 = 0x4077
678 } else {
679 dev->subsystem_device = 0x4077; // U1P0 = 0x4077
680 }
Kyösti Mälkki7baadac2012-10-07 14:57:15 +0200681 printk(BIOS_INFO, "%s [%x/%x]\n", dev_name(dev), dev->subsystem_vendor, dev->subsystem_device );
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000682 for( i=0; slot[i].bus < 255; i++) {
683 device_t d;
684 d = dev_find_slot(slot[i].bus,slot[i].devfn);
685 if( d ) {
686 printk(BIOS_DEBUG,"%s subsystem <- %x/%x\n", dev_path(d), dev->subsystem_vendor, dev->subsystem_device);
687 d->subsystem_device = dev->subsystem_device;
688 }
689 }
690}
691
692 /**
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700693 * @brief
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000694 *
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700695 * @param
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000696 */
697
Stefan Reinauer188e3c22012-07-26 12:46:48 -0700698static void detect_hw_variant( device_t dev )
699{
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000700
701 device_t nb_dev =0, dev2 = 0;
702 struct southbridge_amd_rs690_config *cfg;
703 u32 lc_state, id = 0;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700704
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000705 printk(BIOS_INFO, "Scan for PLX device ...\n");
706 nb_dev = dev_find_slot(0, PCI_DEVFN(0, 0));
707 if (!nb_dev) {
708 die("CAN NOT FIND RS690 DEVICE, HALT!\n");
709 /* NOT REACHED */
710 }
711
712 dev2 = dev_find_slot(0, PCI_DEVFN(2, 0));
713 if (!dev2) {
714 die("CAN NOT FIND GFX DEVICE 2, HALT!\n");
715 /* NOT REACHED */
716 }
717 PcieReleasePortTraining(nb_dev, dev2, 2); // we assume PLX is connected to port 2
718
719 mdelay(40);
720 lc_state = nbpcie_p_read_index(dev2, 0xa5); /* lc_state */
721 printk(BIOS_DEBUG, "lc current state=%x\n", lc_state);
722 /* LC_CURRENT_STATE = bit0-5 */
723 switch( lc_state & 0x3f ){
724 case 0x00:
725 case 0x01:
726 case 0x02:
727 case 0x03:
728 case 0x04:
729 printk(BIOS_NOTICE, "No device present, skipping PLX scan ..\n");
730 break;
731 case 0x07:
732 case 0x10:
733 {
734 struct device dummy;
735 u32 pci_primary_bus, buses;
736 u16 secondary, subordinate;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700737
738 printk(BIOS_DEBUG, "Scan for PLX bridge behind %s[%x]\n", dev_path(dev2), pci_read_config32(dev2, PCI_VENDOR_ID));
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000739 // save the existing primary/secondary/subordinate bus number configuration.
740 secondary = dev2->bus->secondary;
741 subordinate = dev2->bus->subordinate;
742 buses = pci_primary_bus = pci_read_config32(dev2, PCI_PRIMARY_BUS);
743
744 // Configure the bus numbers for this bridge
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700745 // bus number 1 is for internal gfx device, so we start with busnumber 2
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000746
747 buses &= 0xff000000;
748 buses |= ((2 << 8) | (0xff << 16));
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700749 // setup the buses in device 2
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000750 pci_write_config32(dev2,PCI_PRIMARY_BUS, buses);
751
752 // fake a device descriptor for a device behind device 2
753 dummy.bus = dev2->bus;
754 dummy.bus->secondary = (buses >> 8) & 0xff;
755 dummy.bus->subordinate = (buses >> 16) & 0xff;
756 dummy.path.type = DEVICE_PATH_PCI;
757 dummy.path.pci.devfn = PCI_DEVFN(0,0); // PLX: device number 0, function 0
758
759 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
760 /* Have we found something?
761 * Some broken boards return 0 if a slot is empty, but
762 * the expected answer is 0xffffffff
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700763 */
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000764 if ((id == 0xffffffff) || (id == 0x00000000) || (id == 0x0000ffff) || (id == 0xffff0000)) {
765 printk(BIOS_DEBUG, "%s, bad id 0x%x\n", dev_path(&dummy), id);
766 } else {
767 printk(BIOS_DEBUG, "found device [%x]\n", id);
768 }
769 // restore changes made for device 2
770 dev2->bus->secondary = secondary;
771 dev2->bus->secondary = subordinate;
772 pci_write_config32(dev2, PCI_PRIMARY_BUS, pci_primary_bus);
773 }
774 break;
775 default:
776 break;
777 }
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700778
Stefan Reinauer188e3c22012-07-26 12:46:48 -0700779 plx_present = 0;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000780 if( id == PLX_VIDDID ){
781 printk(BIOS_INFO, "found PLX device\n");
Stefan Reinauer188e3c22012-07-26 12:46:48 -0700782 plx_present = 1;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000783 cfg = (struct southbridge_amd_rs690_config *)dev2->chip_info;
784 if( cfg->gfx_tmds ) {
785 printk(BIOS_INFO, "Disable 'gfx_tmds' support\n");
786 cfg->gfx_tmds = 0;
787 cfg->gfx_link_width = 4;
788 }
789 return;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700790 }
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000791}
792
793static void smm_lock( void )
794{
795 /* LOCK the SMM memory window and enable normal SMM.
796 * After running this function, only a full reset can
797 * make the SMM registers writable again.
798 */
799 printk(BIOS_DEBUG, "Locking SMM.\n");
800 pci_write_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), 0x69,
801 D_LCK | G_SMRAME | A_BASE_SEG);
802}
803
804 /**
805 * @brief Init
806 *
807 * @param the root device
808 */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700809
Paul Menzel14c23982013-02-23 19:33:19 +0100810static void mainboard_init(device_t dev)
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000811{
Nico Huberf1730352012-11-13 14:52:56 +0100812#if CONFIG_PCI_OPTION_ROM_RUN_REALMODE
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000813 INT15_function_extensions int15_func;
814#endif
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700815
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000816 printk(BIOS_DEBUG, "%s %s[%x/%x] %s\n",
Kyösti Mälkki7baadac2012-10-07 14:57:15 +0200817 dev_name(dev), dev_path(dev), dev->subsystem_vendor, dev->subsystem_device, __func__);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700818
Nico Huberf1730352012-11-13 14:52:56 +0100819#if CONFIG_PCI_OPTION_ROM_RUN_REALMODE
Alexandru Gagniuc72dccce2013-11-23 19:22:53 -0600820 if (get_option(&int15_func.regs.func00_LCD_panel_id, "lcd_panel_id") != CB_SUCCESS)
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000821 int15_func.regs.func00_LCD_panel_id = PANEL_TABLE_ID_NO;
822 int15_func.regs.func05_TV_standard = TV_MODE_NO;
823 install_INT15_function_extensions(&int15_func);
824#endif
825 set_thermal_config();
826 pm_init();
827 cable_detect();
828 patch_mmio_nonposted();
829 smm_lock();
830}
831
832/*************************************************
833* enable the dedicated function in sina board.
834* This function called early than rs690_enable.
835*************************************************/
Paul Menzel528640d2013-02-23 21:31:23 +0100836static void mainboard_enable(device_t dev)
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000837{
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700838
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000839 printk(BIOS_INFO, "%s %s[%x/%x] %s\n",
Kyösti Mälkki7baadac2012-10-07 14:57:15 +0200840 dev_name(dev), dev_path(dev), dev->subsystem_vendor, dev->subsystem_device, __func__);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000841#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
842 /* Install custom int15 handler for VGA OPROM */
Patrick Georgi89bbcf42012-09-23 18:41:03 +0200843 mainboard_interrupt_handlers(0x15, &int15_handler);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000844#endif
845
846 detect_hw_variant(dev);
847 update_subsystemid(dev);
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000848
Paul Menzel14c23982013-02-23 19:33:19 +0100849 dev->ops->init = mainboard_init; // rest of mainboard init later
Vladimir Serbinenko6985d4e2014-09-21 14:31:19 +0200850 dev->ops->acpi_inject_dsdt_generator = mainboard_inject_dsdt;
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000851}
852
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000853struct chip_operations mainboard_ops = {
Paul Menzel528640d2013-02-23 21:31:23 +0100854 .enable_dev = mainboard_enable,
Josef Kellermannbfa7ee52011-05-11 07:47:43 +0000855};