TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. |
| 6 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
| 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
| 27 | #include <common.h> |
| 28 | #include <pci.h> |
| 29 | #include <asm/immap.h> |
| 30 | |
| 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
| 33 | int checkboard(void) |
| 34 | { |
| 35 | puts("Board: "); |
| 36 | puts("Freescale M54455 EVB\n"); |
| 37 | return 0; |
| 38 | }; |
| 39 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 40 | phys_size_t initdram(int board_type) |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 41 | { |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 42 | u32 dramsize; |
| 43 | #ifdef CONFIG_CF_SBF |
| 44 | /* |
| 45 | * Serial Boot: The dram is already initialized in start.S |
| 46 | * only require to return DRAM size |
| 47 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 48 | dramsize = CONFIG_SYS_SDRAM_SIZE * 0x100000 >> 1; |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 49 | #else |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 50 | volatile sdramc_t *sdram = (volatile sdramc_t *)(MMAP_SDRAM); |
| 51 | volatile gpio_t *gpio = (volatile gpio_t *)(MMAP_GPIO); |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 52 | u32 i; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 53 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 54 | dramsize = CONFIG_SYS_SDRAM_SIZE * 0x100000 >> 1; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 55 | |
| 56 | for (i = 0x13; i < 0x20; i++) { |
| 57 | if (dramsize == (1 << i)) |
| 58 | break; |
| 59 | } |
| 60 | i--; |
| 61 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 62 | gpio->mscr_sdram = CONFIG_SYS_SDRAM_DRV_STRENGTH; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 63 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | sdram->sdcs0 = (CONFIG_SYS_SDRAM_BASE | i); |
| 65 | sdram->sdcs1 = (CONFIG_SYS_SDRAM_BASE1 | i); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 66 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 67 | sdram->sdcfg1 = CONFIG_SYS_SDRAM_CFG1; |
| 68 | sdram->sdcfg2 = CONFIG_SYS_SDRAM_CFG2; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 69 | |
| 70 | /* Issue PALL */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 71 | sdram->sdcr = CONFIG_SYS_SDRAM_CTRL | 2; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 72 | |
| 73 | /* Issue LEMR */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 74 | sdram->sdmr = CONFIG_SYS_SDRAM_EMOD | 0x408; |
| 75 | sdram->sdmr = CONFIG_SYS_SDRAM_MODE | 0x300; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 76 | |
| 77 | udelay(500); |
| 78 | |
| 79 | /* Issue PALL */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 80 | sdram->sdcr = CONFIG_SYS_SDRAM_CTRL | 2; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 81 | |
| 82 | /* Perform two refresh cycles */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 83 | sdram->sdcr = CONFIG_SYS_SDRAM_CTRL | 4; |
| 84 | sdram->sdcr = CONFIG_SYS_SDRAM_CTRL | 4; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 85 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 86 | sdram->sdmr = CONFIG_SYS_SDRAM_MODE | 0x200; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 87 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 88 | sdram->sdcr = (CONFIG_SYS_SDRAM_CTRL & ~0x80000000) | 0x10000c00; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 89 | |
| 90 | udelay(100); |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 91 | #endif |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 92 | return (dramsize << 1); |
| 93 | }; |
| 94 | |
| 95 | int testdram(void) |
| 96 | { |
| 97 | /* TODO: XXX XXX XXX */ |
| 98 | printf("DRAM test not implemented!\n"); |
| 99 | |
| 100 | return (0); |
| 101 | } |
| 102 | |
| 103 | #if defined(CONFIG_CMD_IDE) |
| 104 | #include <ata.h> |
| 105 | |
| 106 | int ide_preinit(void) |
| 107 | { |
| 108 | volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
| 109 | |
TsiChung Liew | d04c1ef | 2010-03-09 18:32:16 -0600 | [diff] [blame] | 110 | gpio->par_fec |= (gpio->par_fec & GPIO_PAR_FEC_FEC1_UNMASK) | 0x10; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 111 | gpio->par_feci2c |= |
| 112 | (gpio->par_feci2c & 0xF0FF) | (GPIO_PAR_FECI2C_MDC1_ATA_DIOR | |
| 113 | GPIO_PAR_FECI2C_MDIO1_ATA_DIOW); |
| 114 | gpio->par_ata |= |
| 115 | (GPIO_PAR_ATA_BUFEN | GPIO_PAR_ATA_CS1 | GPIO_PAR_ATA_CS0 | |
| 116 | GPIO_PAR_ATA_DA2 | GPIO_PAR_ATA_DA1 | GPIO_PAR_ATA_DA0 |
| 117 | | GPIO_PAR_ATA_RESET_RESET | GPIO_PAR_ATA_DMARQ_DMARQ | |
| 118 | GPIO_PAR_ATA_IORDY_IORDY); |
| 119 | gpio->par_pci |= |
| 120 | (GPIO_PAR_PCI_GNT3_ATA_DMACK | GPIO_PAR_PCI_REQ3_ATA_INTRQ); |
| 121 | |
| 122 | return (0); |
| 123 | } |
| 124 | |
| 125 | void ide_set_reset(int idereset) |
| 126 | { |
| 127 | volatile atac_t *ata = (atac_t *) MMAP_ATA; |
| 128 | long period; |
| 129 | /* t1, t2, t3, t4, t5, t6, t9, tRD, tA */ |
| 130 | int piotms[5][9] = { |
| 131 | {70, 165, 60, 30, 50, 5, 20, 0, 35}, /* PIO 0 */ |
| 132 | {50, 125, 45, 20, 35, 5, 15, 0, 35}, /* PIO 1 */ |
| 133 | {30, 100, 30, 15, 20, 5, 10, 0, 35}, /* PIO 2 */ |
| 134 | {30, 80, 30, 10, 20, 5, 10, 0, 35}, /* PIO 3 */ |
| 135 | {25, 70, 20, 10, 20, 5, 10, 0, 35} |
| 136 | }; /* PIO 4 */ |
| 137 | |
| 138 | if (idereset) { |
| 139 | ata->cr = 0; /* control reset */ |
| 140 | udelay(10000); |
| 141 | } else { |
| 142 | #define CALC_TIMING(t) (t + period - 1) / period |
| 143 | period = 1000000000 / gd->bus_clk; /* period in ns */ |
| 144 | |
| 145 | /*ata->ton = CALC_TIMING (180); */ |
| 146 | ata->t1 = CALC_TIMING(piotms[2][0]); |
| 147 | ata->t2w = CALC_TIMING(piotms[2][1]); |
| 148 | ata->t2r = CALC_TIMING(piotms[2][1]); |
| 149 | ata->ta = CALC_TIMING(piotms[2][8]); |
| 150 | ata->trd = CALC_TIMING(piotms[2][7]); |
| 151 | ata->t4 = CALC_TIMING(piotms[2][3]); |
| 152 | ata->t9 = CALC_TIMING(piotms[2][6]); |
| 153 | |
| 154 | ata->cr = 0x40; /* IORDY enable */ |
| 155 | udelay(200000); |
| 156 | ata->cr |= 0x01; /* IORDY enable */ |
| 157 | } |
| 158 | } |
| 159 | #endif |
| 160 | |
| 161 | #if defined(CONFIG_PCI) |
| 162 | /* |
| 163 | * Initialize PCI devices, report devices found. |
| 164 | */ |
| 165 | static struct pci_controller hose; |
| 166 | extern void pci_mcf5445x_init(struct pci_controller *hose); |
| 167 | |
| 168 | void pci_init_board(void) |
| 169 | { |
| 170 | pci_mcf5445x_init(&hose); |
| 171 | } |
| 172 | #endif /* CONFIG_PCI */ |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 173 | |
TsiChung Liew | f78ced3 | 2008-08-19 00:26:25 +0600 | [diff] [blame] | 174 | #if defined(CONFIG_FLASH_CFI_LEGACY) |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 175 | #include <flash.h> |
| 176 | ulong board_flash_get_legacy (ulong base, int banknum, flash_info_t * info) |
| 177 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 178 | int sect[] = CONFIG_SYS_ATMEL_SECT; |
| 179 | int sectsz[] = CONFIG_SYS_ATMEL_SECTSZ; |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 180 | int i, j, k; |
| 181 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 182 | if (base != CONFIG_SYS_ATMEL_BASE) |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 183 | return 0; |
| 184 | |
| 185 | info->flash_id = 0x01000000; |
| 186 | info->portwidth = 1; |
| 187 | info->chipwidth = 1; |
TsiChung Liew | 9d3a86a | 2010-03-16 12:39:36 -0500 | [diff] [blame] | 188 | info->buffer_size = 1; |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 189 | info->erase_blk_tout = 16384; |
| 190 | info->write_tout = 2; |
| 191 | info->buffer_write_tout = 5; |
TsiChung Liew | f78ced3 | 2008-08-19 00:26:25 +0600 | [diff] [blame] | 192 | info->vendor = 0xFFF0; /* CFI_CMDSET_AMD_LEGACY */ |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 193 | info->cmd_reset = 0x00F0; |
| 194 | info->interface = FLASH_CFI_X8; |
| 195 | info->legacy_unlock = 0; |
| 196 | info->manufacturer_id = (u16) ATM_MANUFACT; |
| 197 | info->device_id = ATM_ID_LV040; |
| 198 | info->device_id2 = 0; |
| 199 | |
| 200 | info->ext_addr = 0; |
| 201 | info->cfi_version = 0x3133; |
TsiChung Liew | f78ced3 | 2008-08-19 00:26:25 +0600 | [diff] [blame] | 202 | info->cfi_offset = 0x0000; |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 203 | info->addr_unlock1 = 0x00000555; |
| 204 | info->addr_unlock2 = 0x000002AA; |
| 205 | info->name = "CFI conformant"; |
| 206 | |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 207 | info->size = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 208 | info->sector_count = CONFIG_SYS_ATMEL_TOTALSECT; |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 209 | info->start[0] = base; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 210 | for (k = 0, i = 0; i < CONFIG_SYS_ATMEL_REGION; i++) { |
TsiChung Liew | b2d022d | 2008-07-23 17:37:10 -0500 | [diff] [blame] | 211 | info->size += sect[i] * sectsz[i]; |
| 212 | |
| 213 | for (j = 0; j < sect[i]; j++, k++) { |
| 214 | info->start[k + 1] = info->start[k] + sectsz[i]; |
| 215 | info->protect[k] = 0; |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | return 1; |
| 220 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 221 | #endif /* CONFIG_SYS_FLASH_CFI */ |