blob: 6b3478bdbc0313f85441d9d510d4433c55e1cf15 [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Uwe Hermann26f0abd2007-10-31 00:00:57 +00002
Kyösti Mälkkibdaec072019-03-02 23:18:29 +02003#include <arch/io.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +11004#include <southbridge/intel/i82371eb/i82371eb.h>
5#include <northbridge/intel/i440bx/raminit.h>
Uwe Hermann26f0abd2007-10-31 00:00:57 +00006
Uwe Hermann0865b4d2010-09-19 21:12:05 +00007/*
8 * ASUS P3B-F specific SPD enable magic.
9 *
10 * Setting the byte at offset 0x37 in the PM I/O space to 0x6f will make the
11 * board DIMMs accessible at SMBus/SPD offsets 0x50-0x53. Per default the SPD
12 * offsets 0x50-0x53 are _not_ readable (all SPD reads will return 0xff) which
13 * will make RAM init fail.
14 *
15 * Tested values for PM I/O offset 0x37:
16 * 0x67: 11 00 111: Only SMBus/I2C offsets 0x48/0x49/0x2d accessible
17 * 0x6f: 11 01 111: Only SMBus/I2C offsets 0x50-0x53 (SPD) accessible
18 * 0x77: 11 10 111: Only SMBus/I2C offset 0x69 accessible
19 *
20 * PM I/O space offset 0x37 is GPOREG[31:24], i.e. it controls the GPIOs
21 * 24-30 of the PIIX4E (bit 31 is reserved). Thus, GPIOs 27 and 28
22 * control which SMBus/I2C offsets can be accessed.
23 */
Kyösti Mälkki93e08c72020-01-07 15:17:48 +020024void enable_spd(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000025{
26 outb(0x6f, PM_IO_BASE + 0x37);
27}