blob: bc94257fa67d823485a9eb5744241a1744f370c2 [file] [log] [blame]
Grant Ericksonc821b5f2008-05-22 14:44:14 -07001/*
2 * Copyright (c) 2008 Nuovation System Designs, LLC
3 * Grant Erickson <gerickson@nuovations.com>
4 *
Stefan Roesefb951692009-09-28 17:33:45 +02005 * Copyright (c) 2007-2009 DENX Software Engineering, GmbH
Grant Ericksonc821b5f2008-05-22 14:44:14 -07006 * Stefan Roese <sr@denx.de>
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Grant Ericksonc821b5f2008-05-22 14:44:14 -07009 *
10 * Description:
11 * This file implements ECC initialization for PowerPC processors
Stefan Roesefb951692009-09-28 17:33:45 +020012 * using the IBM SDRAM DDR1 & DDR2 controller.
Grant Ericksonc821b5f2008-05-22 14:44:14 -070013 */
14
15#ifndef _ECC_H_
16#define _ECC_H_
17
Stefan Roese39b32be2008-06-02 17:20:03 +020018/*
19 * Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
20 * compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
21 * we need to make some processor dependant defines used later on by the
22 * driver.
23 */
24
25/* For 440GP/GX/EP/GR */
26#if defined(CONFIG_SDRAM_PPC4xx_IBM_DDR)
Stefan Roesefb951692009-09-28 17:33:45 +020027#define SDRAM_MCOPT1 SDRAM_CFG0
28#define SDRAM_MCOPT1_MCHK_MASK SDRAM_CFG0_MCHK_MASK
29#define SDRAM_MCOPT1_MCHK_NON SDRAM_CFG0_MCHK_NON
30#define SDRAM_MCOPT1_MCHK_GEN SDRAM_CFG0_MCHK_GEN
31#define SDRAM_MCOPT1_MCHK_CHK SDRAM_CFG0_MCHK_CHK
32#define SDRAM_MCOPT1_MCHK_CHK_REP SDRAM_CFG0_MCHK_CHK
33#define SDRAM_MCOPT1_DMWD_MASK SDRAM_CFG0_DMWD_MASK
34#define SDRAM_MCOPT1_DMWD_32 SDRAM_CFG0_DMWD_32
35
36#define SDRAM_MCSTAT SDRAM0_MCSTS
37#define SDRAM_MCSTAT_IDLE_MASK SDRAM_MCSTS_CIS
38#define SDRAM_MCSTAT_IDLE_NOT SDRAM_MCSTS_IDLE_NOT
39
40#define SDRAM_ECCES SDRAM0_ECCESR
Stefan Roese39b32be2008-06-02 17:20:03 +020041#endif
42
Stefan Roesefb951692009-09-28 17:33:45 +020043void ecc_init(unsigned long * const start, unsigned long size);
44void do_program_ecc(unsigned long tlb_word2_i_value);
Stefan Roese39b32be2008-06-02 17:20:03 +020045
Stefan Roesefb951692009-09-28 17:33:45 +020046static void inline blank_string(int size)
47{
48 int i;
49
50 for (i = 0; i < size; i++)
51 putc('\b');
52 for (i = 0; i < size; i++)
53 putc(' ');
54 for (i = 0; i < size; i++)
55 putc('\b');
56}
Grant Ericksonc821b5f2008-05-22 14:44:14 -070057
58#endif /* _ECC_H_ */