blob: 437a38fdedbcaf08f9d81ab2b64f7ec50a3b2488 [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>
Uwe Hermann26f0abd2007-10-31 00:00:57 +00007
Uwe Hermann0865b4d2010-09-19 21:12:05 +00008/*
9 * ASUS P3B-F specific SPD enable magic.
10 *
11 * Setting the byte at offset 0x37 in the PM I/O space to 0x6f will make the
12 * board DIMMs accessible at SMBus/SPD offsets 0x50-0x53. Per default the SPD
13 * offsets 0x50-0x53 are _not_ readable (all SPD reads will return 0xff) which
14 * will make RAM init fail.
15 *
16 * Tested values for PM I/O offset 0x37:
17 * 0x67: 11 00 111: Only SMBus/I2C offsets 0x48/0x49/0x2d accessible
18 * 0x6f: 11 01 111: Only SMBus/I2C offsets 0x50-0x53 (SPD) accessible
19 * 0x77: 11 10 111: Only SMBus/I2C offset 0x69 accessible
20 *
21 * PM I/O space offset 0x37 is GPOREG[31:24], i.e. it controls the GPIOs
22 * 24-30 of the PIIX4E (bit 31 is reserved). Thus, GPIOs 27 and 28
23 * control which SMBus/I2C offsets can be accessed.
24 */
Kyösti Mälkki93e08c72020-01-07 15:17:48 +020025void enable_spd(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000026{
27 outb(0x6f, PM_IO_BASE + 0x37);
28}
29
30/*
31 * Disable SPD access after RAM init to allow access to SMBus/I2C offsets
32 * 0x48/0x49/0x2d, which is required e.g. by lm-sensors.
33 */
Kyösti Mälkki93e08c72020-01-07 15:17:48 +020034void disable_spd(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000035{
36 outb(0x67, PM_IO_BASE + 0x37);
37}