blob: 15591c1c0afd5ce6544916a641b6445792f9cfc5 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi2efc8802012-11-06 11:03:53 +01002
3#include <types.h>
Elyes HAOUAS1bc7b6e2019-05-05 16:29:41 +02004#include <cf9_reset.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Elyes HAOUAS1bc7b6e2019-05-05 16:29:41 +02006
Patrick Georgi2efc8802012-11-06 11:03:53 +01007#include "gm45.h"
8
9void gm45_early_reset(void/*const timings_t *const timings*/)
10{
11 int ch, r;
12
13 /* Reset DRAM power-up settings in CLKCFG (they are not
14 affected by system reset but may disrupt raminit). */
Angel Pons3f1f8ef2021-03-27 13:52:43 +010015 mchbar_clrsetbits32(CLKCFG_MCHBAR, 3 << 21, 1 << 3);
Patrick Georgi2efc8802012-11-06 11:03:53 +010016
17 /*\ Next settings are the real purpose of this function:
18 If these steps are not performed, reset results in power off. \*/
19
20 /* Initialize some DRAM settings to 1 populated rank of 128MB. */
21 FOR_EACH_CHANNEL(ch) {
22 /* Configure DRAM control mode. */
Angel Pons3f1f8ef2021-03-27 13:52:43 +010023 mchbar_clrsetbits32(CxDRC0_MCHBAR(ch), CxDRC0_RANKEN_MASK,
24 (ch ? 0 : CxDRC0_RANKEN(0)));
25 mchbar_write32(CxDRC1_MCHBAR(ch),
26 (mchbar_read32(CxDRC1_MCHBAR(ch)) | CxDRC1_NOTPOP_MASK) &
27 ~(ch ? 0 : CxDRC1_NOTPOP(0)));
28 mchbar_write32(CxDRC2_MCHBAR(ch),
29 (mchbar_read32(CxDRC2_MCHBAR(ch)) | CxDRC2_NOTPOP_MASK) &
30 ~(ch ? 0 : CxDRC2_NOTPOP(0)));
Patrick Georgi2efc8802012-11-06 11:03:53 +010031 /*if (timings && (timings->mem_clock == MEM_CLOCK_1067MT))
Angel Pons3f1f8ef2021-03-27 13:52:43 +010032 mchbar_setbits32(CxDRC2_MCHBAR(ch), CxDRC2_CLK1067MT);*/
Patrick Georgi2efc8802012-11-06 11:03:53 +010033
34 /* Program rank boundaries (CxDRBy). */
35 for (r = 0; r < RANKS_PER_CHANNEL; r += 2)
Angel Pons3f1f8ef2021-03-27 13:52:43 +010036 mchbar_write32(CxDRBy_MCHBAR(ch, r),
37 CxDRBy_BOUND_MB(r, 128) | CxDRBy_BOUND_MB(r + 1, 128));
Patrick Georgi2efc8802012-11-06 11:03:53 +010038 }
39 /* Set DCC mode to no operation and do magic 0xf0 thing. */
Angel Pons3f1f8ef2021-03-27 13:52:43 +010040 mchbar_clrsetbits32(DCC_MCHBAR, DCC_CMD_MASK, DCC_CMD_NOP);
Angel Ponsb0535832020-06-08 11:46:58 +020041
42 pci_and_config8(PCI_DEV(0, 0, 0), 0xf0, ~(1 << 2));
43
44 pci_or_config8(PCI_DEV(0, 0, 0), 0xf0, (1 << 2));
45
Patrick Georgi2efc8802012-11-06 11:03:53 +010046 /* Normally, we would set this after successful raminit. */
Angel Pons3f1f8ef2021-03-27 13:52:43 +010047 mchbar_setbits32(DCC_MCHBAR, 1 << 19);
Patrick Georgi2efc8802012-11-06 11:03:53 +010048
Elyes HAOUAS1bc7b6e2019-05-05 16:29:41 +020049 system_reset();
Patrick Georgi2efc8802012-11-06 11:03:53 +010050}