wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003, Psyent Corporation <www.psyent.com> |
| 3 | * Scott McNutt <smcnutt@psyent.com> |
| 4 | * |
| 5 | * (C) Copyright 2000-2002 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 12 | #include <stdio_dev.h> |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 13 | #include <watchdog.h> |
Peter Tyser | 5e93bd1 | 2009-08-21 23:05:19 -0500 | [diff] [blame] | 14 | #include <malloc.h> |
Thomas Chou | 441cac1 | 2010-04-22 17:27:16 +0800 | [diff] [blame] | 15 | #include <mmc.h> |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 16 | #include <net.h> |
| 17 | #ifdef CONFIG_STATUS_LED |
| 18 | #include <status_led.h> |
| 19 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 20 | #if defined(CONFIG_SYS_NIOS_EPCSBASE) |
Scott McNutt | 1f6ce8f | 2006-06-08 12:08:12 -0400 | [diff] [blame] | 21 | #include <nios2-epcs.h> |
| 22 | #endif |
Thomas Chou | 441cac1 | 2010-04-22 17:27:16 +0800 | [diff] [blame] | 23 | #ifdef CONFIG_CMD_NAND |
| 24 | #include <nand.h> /* cannot even include nand.h if it isnt configured */ |
| 25 | #endif |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 26 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * All attempts to come up with a "common" initialization sequence |
| 31 | * that works for all boards and architectures failed: some of the |
| 32 | * requirements are just _too_ different. To get rid of the resulting |
| 33 | * mess of board dependend #ifdef'ed code we now make the whole |
| 34 | * initialization sequence configurable to the user. |
| 35 | * |
| 36 | * The requirements for any new initalization function is simple: it |
| 37 | * receives a pointer to the "global data" structure as it's only |
| 38 | * argument, and returns an integer return code, where 0 means |
| 39 | * "continue" and != 0 means "fatal error, hang the system". |
| 40 | */ |
| 41 | |
| 42 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 43 | typedef int (init_fnc_t) (void); |
| 44 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 45 | |
| 46 | /************************************************************************ |
| 47 | * Initialization sequence * |
| 48 | ***********************************************************************/ |
| 49 | |
| 50 | init_fnc_t *init_sequence[] = { |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 51 | #if defined(CONFIG_BOARD_EARLY_INIT_F) |
| 52 | board_early_init_f, /* Call board-specific init code early.*/ |
| 53 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 54 | #if defined(CONFIG_SYS_NIOS_EPCSBASE) |
Scott McNutt | 1f6ce8f | 2006-06-08 12:08:12 -0400 | [diff] [blame] | 55 | epcs_reset, |
| 56 | #endif |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 57 | |
| 58 | env_init, |
| 59 | serial_init, |
| 60 | console_init_f, |
| 61 | display_options, |
| 62 | checkcpu, |
| 63 | checkboard, |
| 64 | NULL, /* Terminate this list */ |
| 65 | }; |
| 66 | |
| 67 | |
| 68 | /***********************************************************************/ |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 69 | void board_init(void) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 70 | { |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 71 | bd_t *bd; |
| 72 | init_fnc_t **init_fnc_ptr; |
Thomas Chou | 7dfb060 | 2012-04-23 10:55:02 +0800 | [diff] [blame] | 73 | static gd_t gd_data; |
| 74 | static bd_t bd_data; |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 75 | |
Thomas Chou | 7dfb060 | 2012-04-23 10:55:02 +0800 | [diff] [blame] | 76 | /* Pointer is writable since we allocated a register for it. */ |
| 77 | gd = &gd_data; |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 78 | /* compiler optimization barrier needed for GCC >= 3.4 */ |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 79 | __asm__ __volatile__("" : : : "memory"); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 80 | |
Thomas Chou | 7dfb060 | 2012-04-23 10:55:02 +0800 | [diff] [blame] | 81 | gd->bd = &bd_data; |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 82 | gd->baudrate = CONFIG_BAUDRATE; |
| 83 | gd->cpu_clk = CONFIG_SYS_CLK_FREQ; |
| 84 | |
| 85 | bd = gd->bd; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 86 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; |
| 87 | bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE; |
Thomas Chou | 441cac1 | 2010-04-22 17:27:16 +0800 | [diff] [blame] | 88 | #ifndef CONFIG_SYS_NO_FLASH |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 89 | bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; |
Thomas Chou | 441cac1 | 2010-04-22 17:27:16 +0800 | [diff] [blame] | 90 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | #if defined(CONFIG_SYS_SRAM_BASE) && defined(CONFIG_SYS_SRAM_SIZE) |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 92 | bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 94 | #endif |
| 95 | bd->bi_baudrate = CONFIG_BAUDRATE; |
| 96 | |
| 97 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 98 | WATCHDOG_RESET(); |
| 99 | if ((*init_fnc_ptr) () != 0) |
| 100 | hang(); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 103 | WATCHDOG_RESET(); |
Peter Tyser | d4e8ada | 2009-08-21 23:05:21 -0500 | [diff] [blame] | 104 | |
| 105 | /* The Malloc area is immediately below the monitor copy in RAM */ |
Peter Tyser | a483a16 | 2009-08-21 23:05:20 -0500 | [diff] [blame] | 106 | mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN); |
Stefan Roese | c790b04 | 2009-05-11 15:50:12 +0200 | [diff] [blame] | 107 | |
Thomas Chou | 441cac1 | 2010-04-22 17:27:16 +0800 | [diff] [blame] | 108 | #ifndef CONFIG_SYS_NO_FLASH |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 109 | WATCHDOG_RESET(); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 110 | bd->bi_flashsize = flash_init(); |
Thomas Chou | 441cac1 | 2010-04-22 17:27:16 +0800 | [diff] [blame] | 111 | #endif |
| 112 | |
| 113 | #ifdef CONFIG_CMD_NAND |
| 114 | puts("NAND: "); |
| 115 | nand_init(); |
| 116 | #endif |
| 117 | |
| 118 | #ifdef CONFIG_GENERIC_MMC |
| 119 | puts("MMC: "); |
| 120 | mmc_initialize(bd); |
| 121 | #endif |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 122 | |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 123 | WATCHDOG_RESET(); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 124 | env_relocate(); |
| 125 | |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 126 | WATCHDOG_RESET(); |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 127 | stdio_init(); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 128 | jumptable_init(); |
| 129 | console_init_r(); |
| 130 | |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 131 | WATCHDOG_RESET(); |
| 132 | interrupt_init(); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 133 | |
Scott McNutt | 1f6ce8f | 2006-06-08 12:08:12 -0400 | [diff] [blame] | 134 | #if defined(CONFIG_BOARD_LATE_INIT) |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 135 | board_late_init(); |
Scott McNutt | 1f6ce8f | 2006-06-08 12:08:12 -0400 | [diff] [blame] | 136 | #endif |
| 137 | |
Scott McNutt | 3fd2a1f | 2010-03-21 13:26:33 -0400 | [diff] [blame] | 138 | #if defined(CONFIG_CMD_NET) |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 139 | puts("Net: "); |
| 140 | eth_initialize(bd); |
Scott McNutt | 3fd2a1f | 2010-03-21 13:26:33 -0400 | [diff] [blame] | 141 | #endif |
| 142 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 143 | /* main_loop */ |
| 144 | for (;;) { |
Andreas Bießmann | 63495ad | 2013-04-18 22:48:47 +0000 | [diff] [blame] | 145 | WATCHDOG_RESET(); |
| 146 | main_loop(); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 147 | } |
| 148 | } |