TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 5 | * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc. |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 6 | * Hayden Fraser (Hayden.Fraser@freescale.com) |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <asm/immap.h> |
Remy Bohmer | 60f61e6 | 2009-05-02 21:49:18 +0200 | [diff] [blame] | 13 | #include <netdev.h> |
Jason Jin | 6752da6 | 2011-04-18 17:54:04 +0800 | [diff] [blame] | 14 | #include <asm/io.h> |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 15 | |
| 16 | int checkboard(void) |
| 17 | { |
| 18 | puts("Board: "); |
| 19 | puts("Freescale MCF5253 DEMO\n"); |
| 20 | return 0; |
| 21 | }; |
| 22 | |
| 23 | phys_size_t initdram(int board_type) |
| 24 | { |
| 25 | u32 dramsize = 0; |
| 26 | |
| 27 | /* |
| 28 | * Check to see if the SDRAM has already been initialized |
| 29 | * by a run control tool |
| 30 | */ |
| 31 | if (!(mbar_readLong(MCFSIM_DCR) & 0x8000)) { |
| 32 | u32 RC, temp; |
| 33 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 34 | RC = (CONFIG_SYS_CLK / 1000000) >> 1; |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 35 | RC = (RC * 15) >> 4; |
| 36 | |
| 37 | /* Initialize DRAM Control Register: DCR */ |
| 38 | mbar_writeShort(MCFSIM_DCR, (0x8400 | RC)); |
| 39 | __asm__("nop"); |
| 40 | |
| 41 | mbar_writeLong(MCFSIM_DACR0, 0x00003224); |
| 42 | __asm__("nop"); |
| 43 | |
| 44 | /* Initialize DMR0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 45 | dramsize = (CONFIG_SYS_SDRAM_SIZE << 20); |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 46 | temp = (dramsize - 1) & 0xFFFC0000; |
| 47 | mbar_writeLong(MCFSIM_DMR0, temp | 1); |
| 48 | __asm__("nop"); |
| 49 | |
| 50 | mbar_writeLong(MCFSIM_DACR0, 0x0000322c); |
Jason Jin | 6752da6 | 2011-04-18 17:54:04 +0800 | [diff] [blame] | 51 | mb(); |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 52 | __asm__("nop"); |
| 53 | |
| 54 | /* Write to this block to initiate precharge */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 55 | *(u32 *) (CONFIG_SYS_SDRAM_BASE) = 0xa5a5a5a5; |
Jason Jin | 6752da6 | 2011-04-18 17:54:04 +0800 | [diff] [blame] | 56 | mb(); |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 57 | __asm__("nop"); |
| 58 | |
| 59 | /* Set RE bit in DACR */ |
| 60 | mbar_writeLong(MCFSIM_DACR0, |
| 61 | mbar_readLong(MCFSIM_DACR0) | 0x8000); |
| 62 | __asm__("nop"); |
| 63 | |
| 64 | /* Wait for at least 8 auto refresh cycles to occur */ |
| 65 | udelay(500); |
| 66 | |
| 67 | /* Finish the configuration by issuing the MRS */ |
| 68 | mbar_writeLong(MCFSIM_DACR0, |
| 69 | mbar_readLong(MCFSIM_DACR0) | 0x0040); |
| 70 | __asm__("nop"); |
| 71 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 72 | *(u32 *) (CONFIG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5; |
Jason Jin | 6752da6 | 2011-04-18 17:54:04 +0800 | [diff] [blame] | 73 | mb(); |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | return dramsize; |
| 77 | } |
| 78 | |
| 79 | int testdram(void) |
| 80 | { |
| 81 | /* TODO: XXX XXX XXX */ |
| 82 | printf("DRAM test not implemented!\n"); |
| 83 | |
| 84 | return (0); |
| 85 | } |
| 86 | |
| 87 | #ifdef CONFIG_CMD_IDE |
| 88 | #include <ata.h> |
| 89 | int ide_preinit(void) |
| 90 | { |
| 91 | return (0); |
| 92 | } |
| 93 | |
| 94 | void ide_set_reset(int idereset) |
| 95 | { |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 96 | atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR; |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 97 | long period; |
| 98 | /* t1, t2, t3, t4, t5, t6, t9, tRD, tA */ |
| 99 | int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35}, /* PIO 0 */ |
| 100 | {50, 125, 45, 20, 35, 5, 15, 0, 35}, /* PIO 1 */ |
| 101 | {30, 100, 30, 15, 20, 5, 10, 0, 35}, /* PIO 2 */ |
| 102 | {30, 80, 30, 10, 20, 5, 10, 0, 35}, /* PIO 3 */ |
| 103 | {25, 70, 20, 10, 20, 5, 10, 0, 35} /* PIO 4 */ |
| 104 | }; |
| 105 | |
| 106 | if (idereset) { |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 107 | /* control reset */ |
| 108 | out_8(&ata->cr, 0); |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 109 | udelay(100); |
| 110 | } else { |
| 111 | mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND); |
| 112 | |
| 113 | #define CALC_TIMING(t) (t + period - 1) / period |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 114 | period = 1000000000 / (CONFIG_SYS_CLK / 2); /* period in ns */ |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 115 | |
| 116 | /*ata->ton = CALC_TIMING (180); */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 117 | out_8(&ata->t1, CALC_TIMING(piotms[2][0])); |
| 118 | out_8(&ata->t2w, CALC_TIMING(piotms[2][1])); |
| 119 | out_8(&ata->t2r, CALC_TIMING(piotms[2][1])); |
| 120 | out_8(&ata->ta, CALC_TIMING(piotms[2][8])); |
| 121 | out_8(&ata->trd, CALC_TIMING(piotms[2][7])); |
| 122 | out_8(&ata->t4, CALC_TIMING(piotms[2][3])); |
| 123 | out_8(&ata->t9, CALC_TIMING(piotms[2][6])); |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 124 | |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 125 | /* IORDY enable */ |
| 126 | out_8(&ata->cr, 0x40); |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 127 | udelay(2000); |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 128 | /* IORDY enable */ |
| 129 | setbits_8(&ata->cr, 0x01); |
TsiChung Liew | 6d33c6a | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 130 | } |
| 131 | } |
| 132 | #endif /* CONFIG_CMD_IDE */ |
Remy Bohmer | 60f61e6 | 2009-05-02 21:49:18 +0200 | [diff] [blame] | 133 | |
| 134 | |
| 135 | #ifdef CONFIG_DRIVER_DM9000 |
| 136 | int board_eth_init(bd_t *bis) |
| 137 | { |
| 138 | return dm9000_initialize(bis); |
| 139 | } |
| 140 | #endif |