blob: cfa5ca4a477c45a13690c72459a8755c1100a403 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChungLiewf7d060c2008-01-14 17:19:54 -06002/*
3 * (C) Copyright 2000-2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
Alison Wang35d23df2012-03-26 21:49:05 +00006 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiewf7d060c2008-01-14 17:19:54 -06007 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChungLiewf7d060c2008-01-14 17:19:54 -06008 */
9
10#include <config.h>
11#include <common.h>
Simon Glass0ffd9db2019-12-28 10:45:06 -070012#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
TsiChungLiewf7d060c2008-01-14 17:19:54 -060014#include <asm/immap.h>
Alison Wang35d23df2012-03-26 21:49:05 +000015#include <asm/io.h>
Simon Glassdbd79542020-05-10 11:40:11 -060016#include <linux/delay.h>
TsiChungLiewf7d060c2008-01-14 17:19:54 -060017
18DECLARE_GLOBAL_DATA_PTR;
19
20int checkboard(void)
21{
22 puts("Board: ");
23 puts("Freescale FireEngine 5373 EVB\n");
24 return 0;
25};
26
Simon Glassd35f3382017-04-06 12:47:05 -060027int dram_init(void)
TsiChungLiewf7d060c2008-01-14 17:19:54 -060028{
Alison Wang35d23df2012-03-26 21:49:05 +000029 sdram_t *sdram = (sdram_t *)(MMAP_SDRAM);
TsiChungLiewf7d060c2008-01-14 17:19:54 -060030 u32 dramsize, i;
31
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020032 dramsize = CONFIG_SYS_SDRAM_SIZE * 0x100000;
TsiChungLiewf7d060c2008-01-14 17:19:54 -060033
34 for (i = 0x13; i < 0x20; i++) {
35 if (dramsize == (1 << i))
36 break;
37 }
38 i--;
39
Alison Wang35d23df2012-03-26 21:49:05 +000040 out_be32(&sdram->cs0, CONFIG_SYS_SDRAM_BASE | i);
41 out_be32(&sdram->cfg1, CONFIG_SYS_SDRAM_CFG1);
42 out_be32(&sdram->cfg2, CONFIG_SYS_SDRAM_CFG2);
TsiChungLiewf7d060c2008-01-14 17:19:54 -060043
44 /* Issue PALL */
Alison Wang35d23df2012-03-26 21:49:05 +000045 out_be32(&sdram->ctrl, CONFIG_SYS_SDRAM_CTRL | 2);
TsiChungLiewf7d060c2008-01-14 17:19:54 -060046
47 /* Issue LEMR */
Alison Wang35d23df2012-03-26 21:49:05 +000048 out_be32(&sdram->mode, CONFIG_SYS_SDRAM_EMOD);
49 out_be32(&sdram->mode, CONFIG_SYS_SDRAM_MODE | 0x04000000);
TsiChungLiewf7d060c2008-01-14 17:19:54 -060050
51 udelay(500);
52
53 /* Issue PALL */
Alison Wang35d23df2012-03-26 21:49:05 +000054 out_be32(&sdram->ctrl, CONFIG_SYS_SDRAM_CTRL | 2);
TsiChungLiewf7d060c2008-01-14 17:19:54 -060055
56 /* Perform two refresh cycles */
Alison Wang35d23df2012-03-26 21:49:05 +000057 out_be32(&sdram->ctrl, CONFIG_SYS_SDRAM_CTRL | 4);
58 out_be32(&sdram->ctrl, CONFIG_SYS_SDRAM_CTRL | 4);
TsiChungLiewf7d060c2008-01-14 17:19:54 -060059
Alison Wang35d23df2012-03-26 21:49:05 +000060 out_be32(&sdram->mode, CONFIG_SYS_SDRAM_MODE);
TsiChungLiewf7d060c2008-01-14 17:19:54 -060061
Alison Wang35d23df2012-03-26 21:49:05 +000062 out_be32(&sdram->ctrl,
63 (CONFIG_SYS_SDRAM_CTRL & ~0x80000000) | 0x10000c00);
TsiChungLiewf7d060c2008-01-14 17:19:54 -060064
65 udelay(100);
66
Simon Glass39f90ba2017-03-31 08:40:25 -060067 gd->ram_size = dramsize;
68
69 return 0;
TsiChungLiewf7d060c2008-01-14 17:19:54 -060070};
71
72int testdram(void)
73{
74 /* TODO: XXX XXX XXX */
75 printf("DRAM test not implemented!\n");
76
77 return (0);
78}