blob: 475da286d0c6e8503a7d7526a53cb900d711d4a6 [file] [log] [blame]
Patrick Georgi02363b52020-05-05 20:48:50 +02001/* This file is part of the coreboot project. */
Patrick Georgiac959032020-05-05 22:49:26 +02002/* SPDX-License-Identifier: GPL-2.0-or-later */
Uwe Hermann26f0abd2007-10-31 00:00:57 +00003
Kyösti Mälkkibdaec072019-03-02 23:18:29 +02004#include <arch/io.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +11005#include <southbridge/intel/i82371eb/i82371eb.h>
6#include <northbridge/intel/i440bx/raminit.h>
Edward O'Callaghan6fb379a2014-06-01 17:38:22 +10007#include <superio/winbond/common/winbond.h>
Uwe Hermann26f0abd2007-10-31 00:00:57 +00008/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
Edward O'Callaghan6fb379a2014-06-01 17:38:22 +10009#include <superio/winbond/w83977tf/w83977tf.h>
Uwe Hermann26f0abd2007-10-31 00:00:57 +000010
11/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
12#define SERIAL_DEV PNP_DEV(0x3f0, W83977TF_SP1)
13
Uwe Hermann0865b4d2010-09-19 21:12:05 +000014/*
15 * ASUS P3B-F specific SPD enable magic.
16 *
17 * Setting the byte at offset 0x37 in the PM I/O space to 0x6f will make the
18 * board DIMMs accessible at SMBus/SPD offsets 0x50-0x53. Per default the SPD
19 * offsets 0x50-0x53 are _not_ readable (all SPD reads will return 0xff) which
20 * will make RAM init fail.
21 *
22 * Tested values for PM I/O offset 0x37:
23 * 0x67: 11 00 111: Only SMBus/I2C offsets 0x48/0x49/0x2d accessible
24 * 0x6f: 11 01 111: Only SMBus/I2C offsets 0x50-0x53 (SPD) accessible
25 * 0x77: 11 10 111: Only SMBus/I2C offset 0x69 accessible
26 *
27 * PM I/O space offset 0x37 is GPOREG[31:24], i.e. it controls the GPIOs
28 * 24-30 of the PIIX4E (bit 31 is reserved). Thus, GPIOs 27 and 28
29 * control which SMBus/I2C offsets can be accessed.
30 */
Kyösti Mälkki93e08c72020-01-07 15:17:48 +020031void enable_spd(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000032{
33 outb(0x6f, PM_IO_BASE + 0x37);
34}
35
36/*
37 * Disable SPD access after RAM init to allow access to SMBus/I2C offsets
38 * 0x48/0x49/0x2d, which is required e.g. by lm-sensors.
39 */
Kyösti Mälkki93e08c72020-01-07 15:17:48 +020040void disable_spd(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000041{
42 outb(0x67, PM_IO_BASE + 0x37);
43}
44
Kyösti Mälkki7a955752020-01-07 12:18:24 +020045void mainboard_enable_serial(void)
Uwe Hermann26f0abd2007-10-31 00:00:57 +000046{
Edward O'Callaghan6fb379a2014-06-01 17:38:22 +100047 winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Uwe Hermann26f0abd2007-10-31 00:00:57 +000048}