Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000-2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | * |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 6 | * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc. |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 7 | * Hayden Fraser (Hayden.Fraser@freescale.com) |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Simon Glass | 0ffd9db | 2019-12-28 10:45:06 -0700 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 12 | #include <net.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 14 | #include <asm/immap.h> |
Remy Bohmer | 7eefd92 | 2009-05-02 21:49:18 +0200 | [diff] [blame] | 15 | #include <netdev.h> |
Jason Jin | 39a12ea | 2011-04-18 17:54:04 +0800 | [diff] [blame] | 16 | #include <asm/io.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 17 | #include <linux/delay.h> |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 18 | |
Simon Glass | 39f90ba | 2017-03-31 08:40:25 -0600 | [diff] [blame] | 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 21 | int checkboard(void) |
| 22 | { |
| 23 | puts("Board: "); |
| 24 | puts("Freescale MCF5253 DEMO\n"); |
| 25 | return 0; |
| 26 | }; |
| 27 | |
Simon Glass | d35f338 | 2017-04-06 12:47:05 -0600 | [diff] [blame] | 28 | int dram_init(void) |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 29 | { |
| 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 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 39 | RC = (CONFIG_SYS_CLK / 1000000) >> 1; |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 40 | 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 */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | dramsize = (CONFIG_SYS_SDRAM_SIZE << 20); |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 51 | temp = (dramsize - 1) & 0xFFFC0000; |
| 52 | mbar_writeLong(MCFSIM_DMR0, temp | 1); |
| 53 | __asm__("nop"); |
| 54 | |
| 55 | mbar_writeLong(MCFSIM_DACR0, 0x0000322c); |
Jason Jin | 39a12ea | 2011-04-18 17:54:04 +0800 | [diff] [blame] | 56 | mb(); |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 57 | __asm__("nop"); |
| 58 | |
| 59 | /* Write to this block to initiate precharge */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 60 | *(u32 *) (CONFIG_SYS_SDRAM_BASE) = 0xa5a5a5a5; |
Jason Jin | 39a12ea | 2011-04-18 17:54:04 +0800 | [diff] [blame] | 61 | mb(); |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 62 | __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 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 77 | *(u32 *) (CONFIG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5; |
Jason Jin | 39a12ea | 2011-04-18 17:54:04 +0800 | [diff] [blame] | 78 | mb(); |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 79 | } |
| 80 | |
Simon Glass | 39f90ba | 2017-03-31 08:40:25 -0600 | [diff] [blame] | 81 | gd->ram_size = dramsize; |
| 82 | |
| 83 | return 0; |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | int testdram(void) |
| 87 | { |
| 88 | /* TODO: XXX XXX XXX */ |
| 89 | printf("DRAM test not implemented!\n"); |
| 90 | |
| 91 | return (0); |
| 92 | } |
| 93 | |
Simon Glass | b569a01 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 94 | #ifdef CONFIG_IDE |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 95 | #include <ata.h> |
| 96 | int ide_preinit(void) |
| 97 | { |
| 98 | return (0); |
| 99 | } |
| 100 | |
| 101 | void ide_set_reset(int idereset) |
| 102 | { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 103 | atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR; |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 104 | long period; |
| 105 | /* t1, t2, t3, t4, t5, t6, t9, tRD, tA */ |
| 106 | int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35}, /* PIO 0 */ |
| 107 | {50, 125, 45, 20, 35, 5, 15, 0, 35}, /* PIO 1 */ |
| 108 | {30, 100, 30, 15, 20, 5, 10, 0, 35}, /* PIO 2 */ |
| 109 | {30, 80, 30, 10, 20, 5, 10, 0, 35}, /* PIO 3 */ |
| 110 | {25, 70, 20, 10, 20, 5, 10, 0, 35} /* PIO 4 */ |
| 111 | }; |
| 112 | |
| 113 | if (idereset) { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 114 | /* control reset */ |
| 115 | out_8(&ata->cr, 0); |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 116 | udelay(100); |
| 117 | } else { |
| 118 | mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND); |
| 119 | |
| 120 | #define CALC_TIMING(t) (t + period - 1) / period |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 121 | period = 1000000000 / (CONFIG_SYS_CLK / 2); /* period in ns */ |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 122 | |
| 123 | /*ata->ton = CALC_TIMING (180); */ |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 124 | out_8(&ata->t1, CALC_TIMING(piotms[2][0])); |
| 125 | out_8(&ata->t2w, CALC_TIMING(piotms[2][1])); |
| 126 | out_8(&ata->t2r, CALC_TIMING(piotms[2][1])); |
| 127 | out_8(&ata->ta, CALC_TIMING(piotms[2][8])); |
| 128 | out_8(&ata->trd, CALC_TIMING(piotms[2][7])); |
| 129 | out_8(&ata->t4, CALC_TIMING(piotms[2][3])); |
| 130 | out_8(&ata->t9, CALC_TIMING(piotms[2][6])); |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 131 | |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 132 | /* IORDY enable */ |
| 133 | out_8(&ata->cr, 0x40); |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 134 | udelay(2000); |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 135 | /* IORDY enable */ |
| 136 | setbits_8(&ata->cr, 0x01); |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 137 | } |
| 138 | } |
Simon Glass | b569a01 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 139 | #endif /* CONFIG_IDE */ |
Remy Bohmer | 7eefd92 | 2009-05-02 21:49:18 +0200 | [diff] [blame] | 140 | |
| 141 | |
| 142 | #ifdef CONFIG_DRIVER_DM9000 |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 143 | int board_eth_init(struct bd_info *bis) |
Remy Bohmer | 7eefd92 | 2009-05-02 21:49:18 +0200 | [diff] [blame] | 144 | { |
| 145 | return dm9000_initialize(bis); |
| 146 | } |
| 147 | #endif |