Graeme Russ | a875dda | 2011-12-23 16:51:29 +1100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2011 |
| 3 | * Graeme Russ, <graeme.russ@gmail.com> |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | #include <common.h> |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 24 | #include <fdtdec.h> |
Gabe Black | a97cbda | 2012-11-03 11:41:23 +0000 | [diff] [blame] | 25 | #include <spi.h> |
Simon Glass | 3e93e33 | 2013-03-05 14:39:54 +0000 | [diff] [blame] | 26 | #include <asm/sections.h> |
Graeme Russ | a875dda | 2011-12-23 16:51:29 +1100 | [diff] [blame] | 27 | |
| 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
Simon Glass | 3297d4d | 2013-02-28 19:26:10 +0000 | [diff] [blame] | 30 | /* Get the top of usable RAM */ |
| 31 | __weak ulong board_get_usable_ram_top(ulong total_size) |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 32 | { |
Simon Glass | 3297d4d | 2013-02-28 19:26:10 +0000 | [diff] [blame] | 33 | return gd->ram_size; |
| 34 | } |
| 35 | |
| 36 | int calculate_relocation_address(void) |
| 37 | { |
| 38 | const ulong uboot_size = (uintptr_t)&__bss_end - |
| 39 | (uintptr_t)&__text_start; |
| 40 | ulong total_size; |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 41 | ulong dest_addr; |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 42 | ulong fdt_size = 0; |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 43 | |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 44 | #if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL) |
| 45 | if (gd->fdt_blob) |
| 46 | fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32); |
| 47 | #endif |
Simon Glass | 3297d4d | 2013-02-28 19:26:10 +0000 | [diff] [blame] | 48 | total_size = ALIGN(uboot_size, 1 << 12) + CONFIG_SYS_MALLOC_LEN + |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 49 | CONFIG_SYS_STACK_SIZE + fdt_size; |
Simon Glass | 3297d4d | 2013-02-28 19:26:10 +0000 | [diff] [blame] | 50 | |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 51 | dest_addr = board_get_usable_ram_top(total_size); |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 52 | /* |
| 53 | * NOTE: All destination address are rounded down to 16-byte |
| 54 | * boundary to satisfy various worst-case alignment |
| 55 | * requirements |
| 56 | */ |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 57 | dest_addr &= ~15; |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 58 | |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 59 | #if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL) |
| 60 | /* |
| 61 | * If the device tree is sitting immediate above our image then we |
| 62 | * must relocate it. If it is embedded in the data section, then it |
| 63 | * will be relocated with other data. |
| 64 | */ |
| 65 | if (gd->fdt_blob) { |
| 66 | dest_addr -= fdt_size; |
Simon Glass | c45e359 | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 67 | gd->new_fdt = (void *)dest_addr; |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 68 | dest_addr &= ~15; |
| 69 | } |
| 70 | #endif |
Simon Glass | 3297d4d | 2013-02-28 19:26:10 +0000 | [diff] [blame] | 71 | /* U-Boot is below the FDT */ |
| 72 | dest_addr -= uboot_size; |
| 73 | dest_addr &= ~((1 << 12) - 1); |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 74 | gd->relocaddr = dest_addr; |
Simon Glass | 3297d4d | 2013-02-28 19:26:10 +0000 | [diff] [blame] | 75 | gd->reloc_off = dest_addr - (uintptr_t)&__text_start; |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 76 | |
Gabe Black | 1311361 | 2012-11-03 11:41:24 +0000 | [diff] [blame] | 77 | /* Stack is at the bottom, so it can grow down */ |
| 78 | gd->start_addr_sp = dest_addr - CONFIG_SYS_MALLOC_LEN; |
| 79 | |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
Graeme Russ | 3fb4f9e | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 83 | int init_cache_f_r(void) |
| 84 | { |
| 85 | /* Initialise the CPU cache(s) */ |
| 86 | return init_cache(); |
| 87 | } |
| 88 | |
Graeme Russ | a875dda | 2011-12-23 16:51:29 +1100 | [diff] [blame] | 89 | bd_t bd_data; |
| 90 | |
| 91 | int init_bd_struct_r(void) |
| 92 | { |
| 93 | gd->bd = &bd_data; |
| 94 | memset(gd->bd, 0, sizeof(bd_t)); |
| 95 | |
| 96 | return 0; |
| 97 | } |
| 98 | |
Gabe Black | a97cbda | 2012-11-03 11:41:23 +0000 | [diff] [blame] | 99 | int init_func_spi(void) |
| 100 | { |
| 101 | puts("SPI: "); |
| 102 | spi_init(); |
| 103 | puts("ready\n"); |
| 104 | return 0; |
| 105 | } |
Gabe Black | 050a4c6 | 2012-11-03 11:41:30 +0000 | [diff] [blame] | 106 | |
Gabe Black | 050a4c6 | 2012-11-03 11:41:30 +0000 | [diff] [blame] | 107 | int find_fdt(void) |
| 108 | { |
| 109 | #ifdef CONFIG_OF_EMBED |
| 110 | /* Get a pointer to the FDT */ |
| 111 | gd->fdt_blob = _binary_dt_dtb_start; |
| 112 | #elif defined CONFIG_OF_SEPARATE |
| 113 | /* FDT is at end of image */ |
Simon Glass | 781db8c | 2013-02-28 19:26:13 +0000 | [diff] [blame] | 114 | gd->fdt_blob = (ulong *)&_end; |
Gabe Black | 050a4c6 | 2012-11-03 11:41:30 +0000 | [diff] [blame] | 115 | #endif |
| 116 | /* Allow the early environment to override the fdt address */ |
| 117 | gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16, |
| 118 | (uintptr_t)gd->fdt_blob); |
| 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
| 123 | int prepare_fdt(void) |
| 124 | { |
| 125 | /* For now, put this check after the console is ready */ |
| 126 | if (fdtdec_prepare_fdt()) { |
| 127 | panic("** CONFIG_OF_CONTROL defined but no FDT - please see " |
| 128 | "doc/README.fdt-control"); |
| 129 | } |
| 130 | |
| 131 | return 0; |
| 132 | } |