Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Sascha Hauer, Pengutronix |
| 3 | * Copyright (C) 2008,2009 Eric Jarrige <jorasse@users.sourceforge.net> |
| 4 | * Copyright (C) 2009 Ilya Yanok <yanok@emcraft.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation; either version 2 of |
| 9 | * the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 19 | * MA 02111-1307 USA |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <asm/io.h> |
| 25 | #include <asm/arch/imx-regs.h> |
trem | 953884c | 2012-08-25 05:30:34 +0000 | [diff] [blame] | 26 | #include <asm/gpio.h> |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 27 | |
| 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
Fabio Estevam | 77f11a9 | 2011-10-13 05:34:59 +0000 | [diff] [blame] | 30 | int board_init(void) |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 31 | { |
Heiko Schocher | bbe3109 | 2010-03-05 07:36:33 +0100 | [diff] [blame] | 32 | #if defined(CONFIG_SYS_NAND_LARGEPAGE) |
| 33 | struct system_control_regs *sc_regs = |
| 34 | (struct system_control_regs *)IMX_SYSTEM_CTL_BASE; |
| 35 | #endif |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 36 | |
| 37 | gd->bd->bi_arch_number = MACH_TYPE_IMX27LITE; |
| 38 | gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100; |
| 39 | |
| 40 | #ifdef CONFIG_MXC_UART |
Fabio Estevam | 3f7bfbd | 2011-07-01 07:15:52 +0000 | [diff] [blame] | 41 | mx27_uart1_init_pins(); |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 42 | #endif |
| 43 | #ifdef CONFIG_FEC_MXC |
| 44 | mx27_fec_init_pins(); |
| 45 | imx_gpio_mode((GPIO_PORTC | GPIO_OUT | GPIO_PUEN | GPIO_GPIO | 31)); |
trem | 953884c | 2012-08-25 05:30:34 +0000 | [diff] [blame] | 46 | gpio_set_value(GPIO_PORTC | 31, 1); |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 47 | #endif |
| 48 | #ifdef CONFIG_MXC_MMC |
Heiko Schocher | bbe3109 | 2010-03-05 07:36:33 +0100 | [diff] [blame] | 49 | #if defined(CONFIG_MAGNESIUM) |
| 50 | mx27_sd1_init_pins(); |
| 51 | #else |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 52 | mx27_sd2_init_pins(); |
| 53 | #endif |
Heiko Schocher | bbe3109 | 2010-03-05 07:36:33 +0100 | [diff] [blame] | 54 | #endif |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 55 | |
Heiko Schocher | bbe3109 | 2010-03-05 07:36:33 +0100 | [diff] [blame] | 56 | #if defined(CONFIG_SYS_NAND_LARGEPAGE) |
| 57 | /* |
| 58 | * set in FMCR NF_FMS Bit(5) to 1 |
| 59 | * (NAND Flash with 2 Kbyte page size) |
| 60 | */ |
| 61 | writel(readl(&sc_regs->fmcr) | (1 << 5), &sc_regs->fmcr); |
| 62 | #endif |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 63 | return 0; |
| 64 | } |
| 65 | |
Fabio Estevam | 77f11a9 | 2011-10-13 05:34:59 +0000 | [diff] [blame] | 66 | int dram_init(void) |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 67 | { |
Heiko Schocher | ab86f72 | 2010-09-17 13:10:42 +0200 | [diff] [blame] | 68 | /* dram_init must store complete ramsize in gd->ram_size */ |
Albert ARIBAUD | a55d23c | 2011-07-03 05:55:33 +0000 | [diff] [blame] | 69 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
Heiko Schocher | ab86f72 | 2010-09-17 13:10:42 +0200 | [diff] [blame] | 70 | PHYS_SDRAM_1_SIZE); |
| 71 | return 0; |
| 72 | } |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 73 | |
Heiko Schocher | ab86f72 | 2010-09-17 13:10:42 +0200 | [diff] [blame] | 74 | void dram_init_banksize(void) |
| 75 | { |
| 76 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
Albert ARIBAUD | a55d23c | 2011-07-03 05:55:33 +0000 | [diff] [blame] | 77 | gd->bd->bi_dram[0].size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 78 | PHYS_SDRAM_1_SIZE); |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 79 | #if CONFIG_NR_DRAM_BANKS > 1 |
| 80 | gd->bd->bi_dram[1].start = PHYS_SDRAM_2; |
Albert ARIBAUD | a55d23c | 2011-07-03 05:55:33 +0000 | [diff] [blame] | 81 | gd->bd->bi_dram[1].size = get_ram_size((void *)PHYS_SDRAM_2, |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 82 | PHYS_SDRAM_2_SIZE); |
| 83 | #endif |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | int checkboard(void) |
| 87 | { |
Fabio Estevam | 77f11a9 | 2011-10-13 05:34:59 +0000 | [diff] [blame] | 88 | puts("Board: "); |
Heiko Schocher | bbe3109 | 2010-03-05 07:36:33 +0100 | [diff] [blame] | 89 | puts(CONFIG_BOARDNAME); |
Ilya Yanok | 10bc241 | 2009-08-11 02:32:09 +0400 | [diff] [blame] | 90 | return 0; |
| 91 | } |