Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * (C) Copyright 2009 Magnus Lilja <lilja.magnus@gmail.com> |
| 4 | * |
| 5 | * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> |
| 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
| 26 | |
| 27 | #include <common.h> |
Ben Warren | 736fead | 2009-07-20 22:01:11 -0700 | [diff] [blame] | 28 | #include <netdev.h> |
Stefano Babic | 8627111 | 2011-03-14 15:43:56 +0100 | [diff] [blame] | 29 | #include <asm/arch/clock.h> |
| 30 | #include <asm/arch/imx-regs.h> |
Helmut Raiger | 47c5455 | 2011-09-29 05:45:03 +0000 | [diff] [blame] | 31 | #include <asm/arch/sys_proto.h> |
Fabio Estevam | b73850f | 2011-04-10 08:17:50 +0000 | [diff] [blame] | 32 | #include <watchdog.h> |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 33 | #include <power/pmic.h> |
Fabio Estevam | 1f83d00 | 2011-10-24 05:32:28 +0000 | [diff] [blame] | 34 | #include <fsl_pmic.h> |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 35 | #include <errno.h> |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 36 | |
| 37 | DECLARE_GLOBAL_DATA_PTR; |
| 38 | |
Benoît Thébaudeau | da962b7 | 2013-04-11 09:35:51 +0000 | [diff] [blame^] | 39 | #ifdef CONFIG_SPL_BUILD |
| 40 | void board_init_f(ulong bootflag) |
| 41 | { |
| 42 | relocate_code(0, NULL, CONFIG_SPL_TEXT_BASE); |
| 43 | asm volatile("ldr pc, =nand_boot"); |
| 44 | } |
| 45 | #endif |
| 46 | |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 47 | int dram_init(void) |
| 48 | { |
Fabio Estevam | ed3df72 | 2011-02-09 01:17:55 +0000 | [diff] [blame] | 49 | /* dram_init must store complete ramsize in gd->ram_size */ |
Albert ARIBAUD | a55d23c | 2011-07-03 05:55:33 +0000 | [diff] [blame] | 50 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
Fabio Estevam | ed3df72 | 2011-02-09 01:17:55 +0000 | [diff] [blame] | 51 | PHYS_SDRAM_1_SIZE); |
| 52 | return 0; |
| 53 | } |
| 54 | |
Fabio Estevam | 9b6442f | 2011-02-09 01:17:56 +0000 | [diff] [blame] | 55 | int board_early_init_f(void) |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 56 | { |
| 57 | /* CS5: CPLD incl. network controller */ |
Helmut Raiger | 47c5455 | 2011-09-29 05:45:03 +0000 | [diff] [blame] | 58 | static const struct mxc_weimcs cs5 = { |
| 59 | /* sp wp bcd bcs psz pme sync dol cnc wsc ew wws edc */ |
| 60 | CSCR_U(0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 0, 4, 3), |
| 61 | /* oea oen ebwa ebwn csa ebc dsz csn psr cre wrap csen */ |
| 62 | CSCR_L(2, 2, 2, 5, 2, 0, 5, 2, 0, 0, 0, 1), |
| 63 | /* ebra ebrn rwa rwn mum lah lbn lba dww dct wwu age cnc2 fce*/ |
| 64 | CSCR_A(2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0) |
| 65 | }; |
| 66 | |
| 67 | mxc_setup_weimcs(5, &cs5); |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 68 | |
| 69 | /* Setup UART1 and SPI2 pins */ |
| 70 | mx31_uart1_hw_init(); |
| 71 | mx31_spi2_hw_init(); |
| 72 | |
Fabio Estevam | 9b6442f | 2011-02-09 01:17:56 +0000 | [diff] [blame] | 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | int board_init(void) |
| 77 | { |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 78 | /* adress of boot parameters */ |
| 79 | gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100; |
| 80 | |
| 81 | return 0; |
| 82 | } |
| 83 | |
Fabio Estevam | b73850f | 2011-04-10 08:17:50 +0000 | [diff] [blame] | 84 | int board_late_init(void) |
| 85 | { |
Fabio Estevam | 1f83d00 | 2011-10-24 05:32:28 +0000 | [diff] [blame] | 86 | u32 val; |
| 87 | struct pmic *p; |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 88 | int ret; |
Fabio Estevam | 1f83d00 | 2011-10-24 05:32:28 +0000 | [diff] [blame] | 89 | |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 90 | ret = pmic_init(I2C_PMIC); |
| 91 | if (ret) |
| 92 | return ret; |
Fabio Estevam | 1f83d00 | 2011-10-24 05:32:28 +0000 | [diff] [blame] | 93 | |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 94 | p = pmic_get("FSL_PMIC"); |
| 95 | if (!p) |
| 96 | return -ENODEV; |
Fabio Estevam | 1f83d00 | 2011-10-24 05:32:28 +0000 | [diff] [blame] | 97 | /* Enable RTC battery */ |
| 98 | pmic_reg_read(p, REG_POWER_CTL0, &val); |
| 99 | pmic_reg_write(p, REG_POWER_CTL0, val | COINCHEN); |
| 100 | pmic_reg_write(p, REG_INT_STATUS1, RTCRSTI); |
Fabio Estevam | b73850f | 2011-04-10 08:17:50 +0000 | [diff] [blame] | 101 | #ifdef CONFIG_HW_WATCHDOG |
Troy Kisky | abbab70 | 2012-10-22 15:19:01 +0000 | [diff] [blame] | 102 | hw_watchdog_init(); |
Fabio Estevam | b73850f | 2011-04-10 08:17:50 +0000 | [diff] [blame] | 103 | #endif |
| 104 | return 0; |
| 105 | } |
| 106 | |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 107 | int checkboard(void) |
| 108 | { |
Fabio Estevam | e9e0790 | 2011-04-18 07:38:12 +0000 | [diff] [blame] | 109 | printf("Board: MX31PDK\n"); |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 110 | return 0; |
| 111 | } |
Ben Warren | 736fead | 2009-07-20 22:01:11 -0700 | [diff] [blame] | 112 | |
| 113 | int board_eth_init(bd_t *bis) |
| 114 | { |
| 115 | int rc = 0; |
| 116 | #ifdef CONFIG_SMC911X |
| 117 | rc = smc911x_initialize(0, CONFIG_SMC911X_BASE); |
| 118 | #endif |
| 119 | return rc; |
| 120 | } |