Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <asm-offsets.h> |
| 8 | #include <config.h> |
Alexey Brodkin | 7a5f30d | 2015-02-19 18:40:58 +0300 | [diff] [blame] | 9 | #include <linux/linkage.h> |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 10 | #include <asm/arcregs.h> |
| 11 | |
Alexey Brodkin | 7a5f30d | 2015-02-19 18:40:58 +0300 | [diff] [blame] | 12 | ENTRY(_start) |
Igor Guryanov | 4fec6aa | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 13 | /* Setup interrupt vector base that matches "__text_start" */ |
| 14 | sr __ivt_start, [ARC_AUX_INTR_VEC_BASE] |
| 15 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 16 | ; Disable/enable I-cache according to configuration |
| 17 | lr r5, [ARC_BCR_IC_BUILD] |
| 18 | breq r5, 0, 1f ; I$ doesn't exist |
| 19 | lr r5, [ARC_AUX_IC_CTRL] |
| 20 | #ifndef CONFIG_SYS_ICACHE_OFF |
| 21 | bclr r5, r5, 0 ; 0 - Enable, 1 is Disable |
| 22 | #else |
| 23 | bset r5, r5, 0 ; I$ exists, but is not used |
| 24 | #endif |
| 25 | sr r5, [ARC_AUX_IC_CTRL] |
| 26 | |
| 27 | 1: |
| 28 | ; Disable/enable D-cache according to configuration |
| 29 | lr r5, [ARC_BCR_DC_BUILD] |
| 30 | breq r5, 0, 1f ; D$ doesn't exist |
| 31 | lr r5, [ARC_AUX_DC_CTRL] |
| 32 | bclr r5, r5, 6 ; Invalidate (discard w/o wback) |
| 33 | #ifndef CONFIG_SYS_DCACHE_OFF |
| 34 | bclr r5, r5, 0 ; Enable (+Inv) |
| 35 | #else |
| 36 | bset r5, r5, 0 ; Disable (+Inv) |
| 37 | #endif |
| 38 | sr r5, [ARC_AUX_DC_CTRL] |
Igor Guryanov | 4fec6aa | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 39 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 40 | 1: |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 41 | #ifdef CONFIG_ISA_ARCV2 |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 42 | ; Disable System-Level Cache (SLC) |
| 43 | lr r5, [ARC_BCR_SLC] |
| 44 | breq r5, 0, 1f ; SLC doesn't exist |
| 45 | lr r5, [ARC_AUX_SLC_CTRL] |
| 46 | bclr r5, r5, 6 ; Invalidate (discard w/o wback) |
| 47 | bclr r5, r5, 0 ; Enable (+Inv) |
| 48 | sr r5, [ARC_AUX_SLC_CTRL] |
| 49 | |
| 50 | 1: |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 51 | #endif |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 52 | |
Albert ARIBAUD | 6cb4c46 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 53 | /* Establish C runtime stack and frame */ |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 54 | mov %sp, CONFIG_SYS_INIT_SP_ADDR |
| 55 | mov %fp, %sp |
Igor Guryanov | 4fec6aa | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 56 | |
Albert ARIBAUD | 6cb4c46 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 57 | /* Allocate reserved area from current top of stack */ |
Alexey Brodkin | 7f188f2 | 2015-02-25 18:10:18 +0300 | [diff] [blame] | 58 | mov %r0, %sp |
Albert ARIBAUD | 6cb4c46 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 59 | bl board_init_f_alloc_reserve |
| 60 | /* Set stack below reserved area, adjust frame pointer accordingly */ |
Alexey Brodkin | 7f188f2 | 2015-02-25 18:10:18 +0300 | [diff] [blame] | 61 | mov %sp, %r0 |
| 62 | mov %fp, %sp |
| 63 | |
Albert ARIBAUD | 6cb4c46 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 64 | /* Initialize reserved area - note: r0 already contains address */ |
| 65 | bl board_init_f_init_reserve |
| 66 | |
Igor Guryanov | 4fec6aa | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 67 | /* Zero the one and only argument of "board_init_f" */ |
| 68 | mov_s %r0, 0 |
| 69 | j board_init_f |
Alexey Brodkin | 7a5f30d | 2015-02-19 18:40:58 +0300 | [diff] [blame] | 70 | ENDPROC(_start) |
Igor Guryanov | 4fec6aa | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 71 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 72 | /* |
Alexey Brodkin | 913e9f0 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 73 | * void board_init_f_r_trampoline(stack-pointer address) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 74 | * |
| 75 | * This "function" does not return, instead it continues in RAM |
| 76 | * after relocating the monitor code. |
| 77 | * |
Alexey Brodkin | 913e9f0 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 78 | * r0 = new stack-pointer |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 79 | */ |
Alexey Brodkin | 913e9f0 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 80 | ENTRY(board_init_f_r_trampoline) |
| 81 | /* Set up the stack- and frame-pointers */ |
| 82 | mov %sp, %r0 |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 83 | mov %fp, %sp |
| 84 | |
Alexey Brodkin | 913e9f0 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 85 | /* Update position of intterupt vector table */ |
| 86 | lr %r0, [ARC_AUX_INTR_VEC_BASE] |
| 87 | ld %r1, [%r25, GD_RELOC_OFF] |
| 88 | add %r0, %r0, %r1 |
| 89 | sr %r0, [ARC_AUX_INTR_VEC_BASE] |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 90 | |
Alexey Brodkin | 913e9f0 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 91 | /* Re-enter U-Boot by calling board_init_f_r */ |
| 92 | j board_init_f_r |
| 93 | ENDPROC(board_init_f_r_trampoline) |