blob: 047a7b4d9c2fa2bd2f29702b2f2e722bed96bbe2 [file] [log] [blame]
Michal Simek148ba552013-06-17 14:37:01 +02001/*
2 * Copyright (C) 2012 - 2013 Michal Simek <monstr@monstr.eu>
Michal Simek3e1b61d2018-01-17 07:37:47 +01003 * Copyright (C) 2012 - 2017 Xilinx, Inc. All rights reserved.
Michal Simek148ba552013-06-17 14:37:01 +02004 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <asm/io.h>
10#include <asm/arch/sys_proto.h>
11#include <asm/arch/hardware.h>
12
13DECLARE_GLOBAL_DATA_PTR;
14
Siva Durga Prasad Paladugud84bd922017-05-12 15:04:11 +053015#ifndef CONFIG_ZYNQ_DDRC_INIT
16void zynq_ddrc_init(void) {}
17#else
Michal Simek148ba552013-06-17 14:37:01 +020018/* Control regsiter bitfield definitions */
19#define ZYNQ_DDRC_CTRLREG_BUSWIDTH_MASK 0xC
20#define ZYNQ_DDRC_CTRLREG_BUSWIDTH_SHIFT 2
21#define ZYNQ_DDRC_CTRLREG_BUSWIDTH_16BIT 1
22
23/* ECC scrub regsiter definitions */
24#define ZYNQ_DDRC_ECC_SCRUBREG_ECC_MODE_MASK 0x7
25#define ZYNQ_DDRC_ECC_SCRUBREG_ECCMODE_SECDED 0x4
26
27void zynq_ddrc_init(void)
28{
29 u32 width, ecctype;
30
31 width = readl(&ddrc_base->ddrc_ctrl);
32 width = (width & ZYNQ_DDRC_CTRLREG_BUSWIDTH_MASK) >>
33 ZYNQ_DDRC_CTRLREG_BUSWIDTH_SHIFT;
34 ecctype = (readl(&ddrc_base->ecc_scrub) &
35 ZYNQ_DDRC_ECC_SCRUBREG_ECC_MODE_MASK);
36
37 /* ECC is enabled when memory is in 16bit mode and it is enabled */
38 if ((ecctype == ZYNQ_DDRC_ECC_SCRUBREG_ECCMODE_SECDED) &&
39 (width == ZYNQ_DDRC_CTRLREG_BUSWIDTH_16BIT)) {
Michal Simek03606ff2014-05-15 09:40:14 +020040 puts("ECC enabled ");
Michal Simek148ba552013-06-17 14:37:01 +020041 /*
42 * Clear the first 1MB because it is not initialized from
43 * first stage bootloader. To get ECC to work all memory has
44 * been initialized by writing any value.
45 */
Wolfgang Denk00605172014-11-06 14:02:57 +010046 /* cppcheck-suppress nullPointer */
Michal Simekec963862014-04-25 14:19:00 +020047 memset((void *)0, 0, 1 * 1024 * 1024);
Michal Simek148ba552013-06-17 14:37:01 +020048 } else {
Michal Simek03606ff2014-05-15 09:40:14 +020049 puts("ECC disabled ");
Michal Simek148ba552013-06-17 14:37:01 +020050 }
Michal Simek148ba552013-06-17 14:37:01 +020051}
Siva Durga Prasad Paladugud84bd922017-05-12 15:04:11 +053052#endif