blob: 56f525390567c767f79147788aee68287d85b8be [file] [log] [blame]
Patrick Georgi02363b52020-05-05 20:48:50 +02001/* This file is part of the coreboot project. */
Uwe Hermann26f0abd2007-10-31 00:00:57 +00002/*
Uwe Hermann26f0abd2007-10-31 00:00:57 +00003 *
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.
Uwe Hermann26f0abd2007-10-31 00:00:57 +000013 */
14
Kyösti Mälkkibdaec072019-03-02 23:18:29 +020015#include <arch/io.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110016#include <southbridge/intel/i82371eb/i82371eb.h>
17#include <northbridge/intel/i440bx/raminit.h>
Edward O'Callaghan6fb379a2014-06-01 17:38:22 +100018#include <superio/winbond/common/winbond.h>
Uwe Hermann26f0abd2007-10-31 00:00:57 +000019/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
Edward O'Callaghan6fb379a2014-06-01 17:38:22 +100020#include <superio/winbond/w83977tf/w83977tf.h>
Uwe Hermann26f0abd2007-10-31 00:00:57 +000021
22/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
23#define SERIAL_DEV PNP_DEV(0x3f0, W83977TF_SP1)
24
Uwe Hermann0865b4d2010-09-19 21:12:05 +000025/*
26 * ASUS P3B-F specific SPD enable magic.
27 *
28 * Setting the byte at offset 0x37 in the PM I/O space to 0x6f will make the
29 * board DIMMs accessible at SMBus/SPD offsets 0x50-0x53. Per default the SPD
30 * offsets 0x50-0x53 are _not_ readable (all SPD reads will return 0xff) which
31 * will make RAM init fail.
32 *
33 * Tested values for PM I/O offset 0x37:
34 * 0x67: 11 00 111: Only SMBus/I2C offsets 0x48/0x49/0x2d accessible
35 * 0x6f: 11 01 111: Only SMBus/I2C offsets 0x50-0x53 (SPD) accessible
36 * 0x77: 11 10 111: Only SMBus/I2C offset 0x69 accessible
37 *
38 * PM I/O space offset 0x37 is GPOREG[31:24], i.e. it controls the GPIOs
39 * 24-30 of the PIIX4E (bit 31 is reserved). Thus, GPIOs 27 and 28
40 * control which SMBus/I2C offsets can be accessed.
41 */
Kyösti Mälkki93e08c72020-01-07 15:17:48 +020042void enable_spd(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000043{
44 outb(0x6f, PM_IO_BASE + 0x37);
45}
46
47/*
48 * Disable SPD access after RAM init to allow access to SMBus/I2C offsets
49 * 0x48/0x49/0x2d, which is required e.g. by lm-sensors.
50 */
Kyösti Mälkki93e08c72020-01-07 15:17:48 +020051void disable_spd(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000052{
53 outb(0x67, PM_IO_BASE + 0x37);
54}
55
Kyösti Mälkki7a955752020-01-07 12:18:24 +020056void mainboard_enable_serial(void)
Uwe Hermann26f0abd2007-10-31 00:00:57 +000057{
Edward O'Callaghan6fb379a2014-06-01 17:38:22 +100058 winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Uwe Hermann26f0abd2007-10-31 00:00:57 +000059}