blob: c1cff52fb3db1bc8c35f9cc357e73237859edebf [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05002/*
3 * (C) Copyright 2000-2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
Alison Wang32dbaaf2012-03-26 21:49:04 +00006 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05007 * Hayden Fraser (Hayden.Fraser@freescale.com)
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05008 */
9
10#include <common.h>
Simon Glass49acd562019-12-28 10:45:06 -070011#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060012#include <net.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050014#include <asm/immap.h>
Remy Bohmer60f61e62009-05-02 21:49:18 +020015#include <netdev.h>
Jason Jin6752da62011-04-18 17:54:04 +080016#include <asm/io.h>
Simon Glassc05ed002020-05-10 11:40:11 -060017#include <linux/delay.h>
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050018
Simon Glass088454c2017-03-31 08:40:25 -060019DECLARE_GLOBAL_DATA_PTR;
20
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050021int checkboard(void)
22{
23 puts("Board: ");
24 puts("Freescale MCF5253 DEMO\n");
25 return 0;
26};
27
Simon Glassf1683aa2017-04-06 12:47:05 -060028int dram_init(void)
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050029{
30 u32 dramsize = 0;
31
32 /*
33 * Check to see if the SDRAM has already been initialized
34 * by a run control tool
35 */
36 if (!(mbar_readLong(MCFSIM_DCR) & 0x8000)) {
37 u32 RC, temp;
38
Tom Rini65cc0e22022-11-16 13:10:41 -050039 RC = (CFG_SYS_CLK / 1000000) >> 1;
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050040 RC = (RC * 15) >> 4;
41
42 /* Initialize DRAM Control Register: DCR */
43 mbar_writeShort(MCFSIM_DCR, (0x8400 | RC));
44 __asm__("nop");
45
46 mbar_writeLong(MCFSIM_DACR0, 0x00003224);
47 __asm__("nop");
48
49 /* Initialize DMR0 */
Tom Riniaa6e94d2022-11-16 13:10:37 -050050 dramsize = (CFG_SYS_SDRAM_SIZE << 20);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050051 temp = (dramsize - 1) & 0xFFFC0000;
52 mbar_writeLong(MCFSIM_DMR0, temp | 1);
53 __asm__("nop");
54
55 mbar_writeLong(MCFSIM_DACR0, 0x0000322c);
Jason Jin6752da62011-04-18 17:54:04 +080056 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050057 __asm__("nop");
58
59 /* Write to this block to initiate precharge */
Tom Riniaa6e94d2022-11-16 13:10:37 -050060 *(u32 *) (CFG_SYS_SDRAM_BASE) = 0xa5a5a5a5;
Jason Jin6752da62011-04-18 17:54:04 +080061 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050062 __asm__("nop");
63
64 /* Set RE bit in DACR */
65 mbar_writeLong(MCFSIM_DACR0,
66 mbar_readLong(MCFSIM_DACR0) | 0x8000);
67 __asm__("nop");
68
69 /* Wait for at least 8 auto refresh cycles to occur */
70 udelay(500);
71
72 /* Finish the configuration by issuing the MRS */
73 mbar_writeLong(MCFSIM_DACR0,
74 mbar_readLong(MCFSIM_DACR0) | 0x0040);
75 __asm__("nop");
76
Tom Riniaa6e94d2022-11-16 13:10:37 -050077 *(u32 *) (CFG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5;
Jason Jin6752da62011-04-18 17:54:04 +080078 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050079 }
80
Simon Glass088454c2017-03-31 08:40:25 -060081 gd->ram_size = dramsize;
82
83 return 0;
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050084}
85
86int testdram(void)
87{
88 /* TODO: XXX XXX XXX */
89 printf("DRAM test not implemented!\n");
90
91 return (0);
92}
93
Simon Glassfc843a02017-05-17 03:25:30 -060094#ifdef CONFIG_IDE
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050095#include <ata.h>
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050096void ide_set_reset(int idereset)
97{
Alison Wang32dbaaf2012-03-26 21:49:04 +000098 atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050099 long period;
100 /* t1, t2, t3, t4, t5, t6, t9, tRD, tA */
101 int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35}, /* PIO 0 */
102 {50, 125, 45, 20, 35, 5, 15, 0, 35}, /* PIO 1 */
103 {30, 100, 30, 15, 20, 5, 10, 0, 35}, /* PIO 2 */
104 {30, 80, 30, 10, 20, 5, 10, 0, 35}, /* PIO 3 */
105 {25, 70, 20, 10, 20, 5, 10, 0, 35} /* PIO 4 */
106 };
107
108 if (idereset) {
Alison Wang32dbaaf2012-03-26 21:49:04 +0000109 /* control reset */
110 out_8(&ata->cr, 0);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500111 udelay(100);
112 } else {
113 mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND);
114
115#define CALC_TIMING(t) (t + period - 1) / period
Tom Rini65cc0e22022-11-16 13:10:41 -0500116 period = 1000000000 / (CFG_SYS_CLK / 2); /* period in ns */
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500117
118 /*ata->ton = CALC_TIMING (180); */
Alison Wang32dbaaf2012-03-26 21:49:04 +0000119 out_8(&ata->t1, CALC_TIMING(piotms[2][0]));
120 out_8(&ata->t2w, CALC_TIMING(piotms[2][1]));
121 out_8(&ata->t2r, CALC_TIMING(piotms[2][1]));
122 out_8(&ata->ta, CALC_TIMING(piotms[2][8]));
123 out_8(&ata->trd, CALC_TIMING(piotms[2][7]));
124 out_8(&ata->t4, CALC_TIMING(piotms[2][3]));
125 out_8(&ata->t9, CALC_TIMING(piotms[2][6]));
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500126
Alison Wang32dbaaf2012-03-26 21:49:04 +0000127 /* IORDY enable */
128 out_8(&ata->cr, 0x40);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500129 udelay(2000);
Alison Wang32dbaaf2012-03-26 21:49:04 +0000130 /* IORDY enable */
131 setbits_8(&ata->cr, 0x01);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500132 }
133}
Simon Glassfc843a02017-05-17 03:25:30 -0600134#endif /* CONFIG_IDE */
Remy Bohmer60f61e62009-05-02 21:49:18 +0200135
136
137#ifdef CONFIG_DRIVER_DM9000
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900138int board_eth_init(struct bd_info *bis)
Remy Bohmer60f61e62009-05-02 21:49:18 +0200139{
140 return dm9000_initialize(bis);
141}
142#endif