blob: 36299d6e54315d196db182e8110a02b3febf1ae1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wolfgang Denkadf20a12005-09-25 01:48:28 +02002/*
3 * (C) Copyright 2003
4 * Texas Instruments <www.ti.com>
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
10 * (C) Copyright 2002
11 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
12 * Alex Zuepke <azu@sysgo.de>
13 *
14 * (C) Copyright 2002-2004
Detlev Zundelf1b3f2b2009-05-13 10:54:10 +020015 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Wolfgang Denkadf20a12005-09-25 01:48:28 +020016 *
17 * (C) Copyright 2004
18 * Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
Wolfgang Denkadf20a12005-09-25 01:48:28 +020019 */
20
21#include <common.h>
Simon Glassafb02152019-12-28 10:45:01 -070022#include <cpu_func.h>
Heinrich Schuchardt438caa32018-04-05 11:56:22 +020023#include <efi_loader.h>
Simon Glass9b61c7c2019-11-14 12:57:41 -070024#include <irq_func.h>
Wolfgang Denkadf20a12005-09-25 01:48:28 +020025#include <asm/proc-armv/ptrace.h>
Jeroen Hofsteea9641332014-10-08 22:57:59 +020026#include <asm/u-boot-arm.h>
Wolfgang Denkadf20a12005-09-25 01:48:28 +020027
Jean-Christophe PLAGNIOL-VILLARDda7b3db2009-05-09 13:21:18 +020028DECLARE_GLOBAL_DATA_PTR;
29
Simon Glassf87959b2019-11-14 12:57:40 -070030int interrupt_init(void)
Jean-Christophe PLAGNIOL-VILLARDda7b3db2009-05-09 13:21:18 +020031{
Heiko Schocheraeb29912010-09-17 13:10:39 +020032 /*
33 * setup up stacks if necessary
34 */
35 IRQ_STACK_START_IN = gd->irq_sp + 8;
36
Ovidiu Panait8998e712020-04-20 10:31:44 +030037 enable_interrupts();
38
Heiko Schocheraeb29912010-09-17 13:10:39 +020039 return 0;
40}
Heiko Schocheraeb29912010-09-17 13:10:39 +020041
Simon Glassf87959b2019-11-14 12:57:40 -070042void enable_interrupts(void)
Wolfgang Denkadf20a12005-09-25 01:48:28 +020043{
44 return;
45}
Simon Glassf87959b2019-11-14 12:57:40 -070046int disable_interrupts(void)
Wolfgang Denkadf20a12005-09-25 01:48:28 +020047{
48 return 0;
49}
Wolfgang Denkadf20a12005-09-25 01:48:28 +020050
51void bad_mode (void)
52{
53 panic ("Resetting CPU ...\n");
Simon Glassafb02152019-12-28 10:45:01 -070054 reset_cpu(0);
Wolfgang Denkadf20a12005-09-25 01:48:28 +020055}
56
Heinrich Schuchardt438caa32018-04-05 11:56:22 +020057static void show_efi_loaded_images(struct pt_regs *regs)
58{
59 efi_print_image_infos((void *)instruction_pointer(regs));
60}
61
Heinrich Schuchardt74b0eda2018-05-15 19:42:23 +020062static void dump_instr(struct pt_regs *regs)
63{
64 unsigned long addr = instruction_pointer(regs);
65 const int thumb = thumb_mode(regs);
66 const int width = thumb ? 4 : 8;
67 int i;
68
69 if (thumb)
70 addr &= ~1L;
71 else
72 addr &= ~3L;
73 printf("Code: ");
74 for (i = -4; i < 1 + !!thumb; i++) {
75 unsigned int val;
76
77 if (thumb)
78 val = ((u16 *)addr)[i];
79 else
80 val = ((u32 *)addr)[i];
81 printf(i == 0 ? "(%0*x) " : "%0*x ", width, val);
82 }
83 printf("\n");
84}
85
Wolfgang Denkadf20a12005-09-25 01:48:28 +020086void show_regs (struct pt_regs *regs)
87{
Heiko Schocher62cb1562015-06-29 09:10:46 +020088 unsigned long __maybe_unused flags;
89 const char __maybe_unused *processor_modes[] = {
Wolfgang Denkadf20a12005-09-25 01:48:28 +020090 "USER_26", "FIQ_26", "IRQ_26", "SVC_26",
91 "UK4_26", "UK5_26", "UK6_26", "UK7_26",
92 "UK8_26", "UK9_26", "UK10_26", "UK11_26",
93 "UK12_26", "UK13_26", "UK14_26", "UK15_26",
94 "USER_32", "FIQ_32", "IRQ_32", "SVC_32",
95 "UK4_32", "UK5_32", "UK6_32", "ABT_32",
Marc Zyngier6b5b1292014-07-12 14:24:01 +010096 "UK8_32", "UK9_32", "HYP_32", "UND_32",
Wolfgang Denkadf20a12005-09-25 01:48:28 +020097 "UK12_32", "UK13_32", "UK14_32", "SYS_32",
98 };
99
100 flags = condition_codes (regs);
101
Simon Glass4b15a5f2015-01-30 12:04:56 -0700102 printf("pc : [<%08lx>] lr : [<%08lx>]\n",
103 instruction_pointer(regs), regs->ARM_lr);
104 if (gd->flags & GD_FLG_RELOC) {
105 printf("reloc pc : [<%08lx>] lr : [<%08lx>]\n",
106 instruction_pointer(regs) - gd->reloc_off,
107 regs->ARM_lr - gd->reloc_off);
108 }
109 printf("sp : %08lx ip : %08lx fp : %08lx\n",
110 regs->ARM_sp, regs->ARM_ip, regs->ARM_fp);
Andreas Engel2d4b2532008-01-14 09:06:52 +0000111 printf ("r10: %08lx r9 : %08lx r8 : %08lx\n",
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200112 regs->ARM_r10, regs->ARM_r9, regs->ARM_r8);
Andreas Engel2d4b2532008-01-14 09:06:52 +0000113 printf ("r7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n",
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200114 regs->ARM_r7, regs->ARM_r6, regs->ARM_r5, regs->ARM_r4);
Andreas Engel2d4b2532008-01-14 09:06:52 +0000115 printf ("r3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n",
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200116 regs->ARM_r3, regs->ARM_r2, regs->ARM_r1, regs->ARM_r0);
117 printf ("Flags: %c%c%c%c",
118 flags & CC_N_BIT ? 'N' : 'n',
119 flags & CC_Z_BIT ? 'Z' : 'z',
120 flags & CC_C_BIT ? 'C' : 'c', flags & CC_V_BIT ? 'V' : 'v');
121 printf (" IRQs %s FIQs %s Mode %s%s\n",
122 interrupts_enabled (regs) ? "on" : "off",
123 fast_interrupts_enabled (regs) ? "on" : "off",
124 processor_modes[processor_mode (regs)],
125 thumb_mode (regs) ? " (T)" : "");
Heinrich Schuchardt74b0eda2018-05-15 19:42:23 +0200126 dump_instr(regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200127}
128
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200129/* fixup PC to point to the instruction leading to the exception */
130static inline void fixup_pc(struct pt_regs *regs, int offset)
131{
132 uint32_t pc = instruction_pointer(regs) + offset;
133 regs->ARM_pc = pc | (regs->ARM_pc & PCMASK);
134}
135
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200136void do_undefined_instruction (struct pt_regs *pt_regs)
137{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100138 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200139 printf ("undefined instruction\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200140 fixup_pc(pt_regs, -4);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200141 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200142 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200143 bad_mode ();
144}
145
146void do_software_interrupt (struct pt_regs *pt_regs)
147{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100148 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200149 printf ("software interrupt\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200150 fixup_pc(pt_regs, -4);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200151 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200152 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200153 bad_mode ();
154}
155
156void do_prefetch_abort (struct pt_regs *pt_regs)
157{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100158 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200159 printf ("prefetch abort\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200160 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200161 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200162 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200163 bad_mode ();
164}
165
166void do_data_abort (struct pt_regs *pt_regs)
167{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100168 efi_restore_gd();
Tom Rini958a8f82014-02-25 10:27:01 -0500169 printf ("data abort\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200170 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200171 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200172 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200173 bad_mode ();
174}
175
176void do_not_used (struct pt_regs *pt_regs)
177{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100178 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200179 printf ("not used\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200180 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200181 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200182 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200183 bad_mode ();
184}
185
186void do_fiq (struct pt_regs *pt_regs)
187{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100188 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200189 printf ("fast interrupt request\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200190 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200191 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200192 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200193 bad_mode ();
194}
195
196void do_irq (struct pt_regs *pt_regs)
197{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100198 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200199 printf ("interrupt request\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200200 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200201 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200202 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200203 bad_mode ();
204}