blob: 1c100e6d8c969be7addedb7be133e059b282b209 [file] [log] [blame]
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05001/*
2 * (C) Copyright 2000-2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Alison Wang32dbaaf2012-03-26 21:49:04 +00005 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05006 * Hayden Fraser (Hayden.Fraser@freescale.com)
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05009 */
10
11#include <common.h>
12#include <asm/immap.h>
Remy Bohmer60f61e62009-05-02 21:49:18 +020013#include <netdev.h>
Jason Jin6752da62011-04-18 17:54:04 +080014#include <asm/io.h>
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050015
Simon Glass088454c2017-03-31 08:40:25 -060016DECLARE_GLOBAL_DATA_PTR;
17
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050018int checkboard(void)
19{
20 puts("Board: ");
21 puts("Freescale MCF5253 DEMO\n");
22 return 0;
23};
24
Simon Glass088454c2017-03-31 08:40:25 -060025int initdram(void)
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050026{
27 u32 dramsize = 0;
28
29 /*
30 * Check to see if the SDRAM has already been initialized
31 * by a run control tool
32 */
33 if (!(mbar_readLong(MCFSIM_DCR) & 0x8000)) {
34 u32 RC, temp;
35
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020036 RC = (CONFIG_SYS_CLK / 1000000) >> 1;
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050037 RC = (RC * 15) >> 4;
38
39 /* Initialize DRAM Control Register: DCR */
40 mbar_writeShort(MCFSIM_DCR, (0x8400 | RC));
41 __asm__("nop");
42
43 mbar_writeLong(MCFSIM_DACR0, 0x00003224);
44 __asm__("nop");
45
46 /* Initialize DMR0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047 dramsize = (CONFIG_SYS_SDRAM_SIZE << 20);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050048 temp = (dramsize - 1) & 0xFFFC0000;
49 mbar_writeLong(MCFSIM_DMR0, temp | 1);
50 __asm__("nop");
51
52 mbar_writeLong(MCFSIM_DACR0, 0x0000322c);
Jason Jin6752da62011-04-18 17:54:04 +080053 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050054 __asm__("nop");
55
56 /* Write to this block to initiate precharge */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020057 *(u32 *) (CONFIG_SYS_SDRAM_BASE) = 0xa5a5a5a5;
Jason Jin6752da62011-04-18 17:54:04 +080058 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050059 __asm__("nop");
60
61 /* Set RE bit in DACR */
62 mbar_writeLong(MCFSIM_DACR0,
63 mbar_readLong(MCFSIM_DACR0) | 0x8000);
64 __asm__("nop");
65
66 /* Wait for at least 8 auto refresh cycles to occur */
67 udelay(500);
68
69 /* Finish the configuration by issuing the MRS */
70 mbar_writeLong(MCFSIM_DACR0,
71 mbar_readLong(MCFSIM_DACR0) | 0x0040);
72 __asm__("nop");
73
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074 *(u32 *) (CONFIG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5;
Jason Jin6752da62011-04-18 17:54:04 +080075 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050076 }
77
Simon Glass088454c2017-03-31 08:40:25 -060078 gd->ram_size = dramsize;
79
80 return 0;
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050081}
82
83int testdram(void)
84{
85 /* TODO: XXX XXX XXX */
86 printf("DRAM test not implemented!\n");
87
88 return (0);
89}
90
91#ifdef CONFIG_CMD_IDE
92#include <ata.h>
93int ide_preinit(void)
94{
95 return (0);
96}
97
98void ide_set_reset(int idereset)
99{
Alison Wang32dbaaf2012-03-26 21:49:04 +0000100 atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500101 long period;
102 /* t1, t2, t3, t4, t5, t6, t9, tRD, tA */
103 int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35}, /* PIO 0 */
104 {50, 125, 45, 20, 35, 5, 15, 0, 35}, /* PIO 1 */
105 {30, 100, 30, 15, 20, 5, 10, 0, 35}, /* PIO 2 */
106 {30, 80, 30, 10, 20, 5, 10, 0, 35}, /* PIO 3 */
107 {25, 70, 20, 10, 20, 5, 10, 0, 35} /* PIO 4 */
108 };
109
110 if (idereset) {
Alison Wang32dbaaf2012-03-26 21:49:04 +0000111 /* control reset */
112 out_8(&ata->cr, 0);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500113 udelay(100);
114 } else {
115 mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND);
116
117#define CALC_TIMING(t) (t + period - 1) / period
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200118 period = 1000000000 / (CONFIG_SYS_CLK / 2); /* period in ns */
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500119
120 /*ata->ton = CALC_TIMING (180); */
Alison Wang32dbaaf2012-03-26 21:49:04 +0000121 out_8(&ata->t1, CALC_TIMING(piotms[2][0]));
122 out_8(&ata->t2w, CALC_TIMING(piotms[2][1]));
123 out_8(&ata->t2r, CALC_TIMING(piotms[2][1]));
124 out_8(&ata->ta, CALC_TIMING(piotms[2][8]));
125 out_8(&ata->trd, CALC_TIMING(piotms[2][7]));
126 out_8(&ata->t4, CALC_TIMING(piotms[2][3]));
127 out_8(&ata->t9, CALC_TIMING(piotms[2][6]));
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500128
Alison Wang32dbaaf2012-03-26 21:49:04 +0000129 /* IORDY enable */
130 out_8(&ata->cr, 0x40);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500131 udelay(2000);
Alison Wang32dbaaf2012-03-26 21:49:04 +0000132 /* IORDY enable */
133 setbits_8(&ata->cr, 0x01);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500134 }
135}
136#endif /* CONFIG_CMD_IDE */
Remy Bohmer60f61e62009-05-02 21:49:18 +0200137
138
139#ifdef CONFIG_DRIVER_DM9000
140int board_eth_init(bd_t *bis)
141{
142 return dm9000_initialize(bis);
143}
144#endif