blob: 9961472f69f76098faf61fc4b04faf6c6f22d7dc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wolfgang Denk74f43042005-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 Zundel792a09e2009-05-13 10:54:10 +020015 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Wolfgang Denk74f43042005-09-25 01:48:28 +020016 *
17 * (C) Copyright 2004
18 * Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
Wolfgang Denk74f43042005-09-25 01:48:28 +020019 */
20
21#include <common.h>
Simon Glass9a3b4ce2019-12-28 10:45:01 -070022#include <cpu_func.h>
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +020023#include <efi_loader.h>
Simon Glassc30b7ad2019-11-14 12:57:41 -070024#include <irq_func.h>
Sean Anderson47cfdb22023-10-27 16:40:15 -040025#include <semihosting.h>
Simon Glass401d1c42020-10-30 21:38:53 -060026#include <asm/global_data.h>
Wolfgang Denk74f43042005-09-25 01:48:28 +020027#include <asm/proc-armv/ptrace.h>
Simon Glass25a58182020-05-10 11:40:06 -060028#include <asm/ptrace.h>
Jeroen Hofstee49c4bc32014-10-08 22:57:59 +020029#include <asm/u-boot-arm.h>
Wolfgang Denk74f43042005-09-25 01:48:28 +020030
Jean-Christophe PLAGNIOL-VILLARDc358d9c32009-05-09 13:21:18 +020031DECLARE_GLOBAL_DATA_PTR;
32
Simon Glass9d3915b2019-11-14 12:57:40 -070033int interrupt_init(void)
Heiko Schocherf1d2b312010-09-17 13:10:39 +020034{
35 /*
36 * setup up stacks if necessary
37 */
38 IRQ_STACK_START_IN = gd->irq_sp + 8;
39
Ovidiu Panait5cf9e3b2020-04-20 10:31:44 +030040 enable_interrupts();
41
Heiko Schocherf1d2b312010-09-17 13:10:39 +020042 return 0;
43}
Heiko Schocherf1d2b312010-09-17 13:10:39 +020044
Simon Glass9d3915b2019-11-14 12:57:40 -070045void enable_interrupts(void)
Wolfgang Denk74f43042005-09-25 01:48:28 +020046{
47 return;
48}
Simon Glass9d3915b2019-11-14 12:57:40 -070049int disable_interrupts(void)
Wolfgang Denk74f43042005-09-25 01:48:28 +020050{
51 return 0;
52}
Wolfgang Denk74f43042005-09-25 01:48:28 +020053
54void bad_mode (void)
55{
56 panic ("Resetting CPU ...\n");
Harald Seiler35b65dd2020-12-15 16:47:52 +010057 reset_cpu();
Wolfgang Denk74f43042005-09-25 01:48:28 +020058}
59
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +020060static void show_efi_loaded_images(struct pt_regs *regs)
61{
62 efi_print_image_infos((void *)instruction_pointer(regs));
63}
64
Heinrich Schuchardtbd2a13f2018-05-15 19:42:23 +020065static void dump_instr(struct pt_regs *regs)
66{
67 unsigned long addr = instruction_pointer(regs);
68 const int thumb = thumb_mode(regs);
69 const int width = thumb ? 4 : 8;
70 int i;
71
72 if (thumb)
73 addr &= ~1L;
74 else
75 addr &= ~3L;
76 printf("Code: ");
77 for (i = -4; i < 1 + !!thumb; i++) {
78 unsigned int val;
79
80 if (thumb)
81 val = ((u16 *)addr)[i];
82 else
83 val = ((u32 *)addr)[i];
84 printf(i == 0 ? "(%0*x) " : "%0*x ", width, val);
85 }
86 printf("\n");
87}
88
Wolfgang Denk74f43042005-09-25 01:48:28 +020089void show_regs (struct pt_regs *regs)
90{
Heiko Schocher80402f32015-06-29 09:10:46 +020091 unsigned long __maybe_unused flags;
92 const char __maybe_unused *processor_modes[] = {
Wolfgang Denk74f43042005-09-25 01:48:28 +020093 "USER_26", "FIQ_26", "IRQ_26", "SVC_26",
94 "UK4_26", "UK5_26", "UK6_26", "UK7_26",
95 "UK8_26", "UK9_26", "UK10_26", "UK11_26",
96 "UK12_26", "UK13_26", "UK14_26", "UK15_26",
97 "USER_32", "FIQ_32", "IRQ_32", "SVC_32",
98 "UK4_32", "UK5_32", "UK6_32", "ABT_32",
Marc Zyngierb726d222014-07-12 14:24:01 +010099 "UK8_32", "UK9_32", "HYP_32", "UND_32",
Wolfgang Denk74f43042005-09-25 01:48:28 +0200100 "UK12_32", "UK13_32", "UK14_32", "SYS_32",
101 };
102
103 flags = condition_codes (regs);
104
Simon Glass23d184d2015-01-30 12:04:56 -0700105 printf("pc : [<%08lx>] lr : [<%08lx>]\n",
106 instruction_pointer(regs), regs->ARM_lr);
107 if (gd->flags & GD_FLG_RELOC) {
108 printf("reloc pc : [<%08lx>] lr : [<%08lx>]\n",
109 instruction_pointer(regs) - gd->reloc_off,
110 regs->ARM_lr - gd->reloc_off);
111 }
112 printf("sp : %08lx ip : %08lx fp : %08lx\n",
113 regs->ARM_sp, regs->ARM_ip, regs->ARM_fp);
Andreas Engel6d0943a2008-01-14 09:06:52 +0000114 printf ("r10: %08lx r9 : %08lx r8 : %08lx\n",
Wolfgang Denk74f43042005-09-25 01:48:28 +0200115 regs->ARM_r10, regs->ARM_r9, regs->ARM_r8);
Andreas Engel6d0943a2008-01-14 09:06:52 +0000116 printf ("r7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n",
Wolfgang Denk74f43042005-09-25 01:48:28 +0200117 regs->ARM_r7, regs->ARM_r6, regs->ARM_r5, regs->ARM_r4);
Andreas Engel6d0943a2008-01-14 09:06:52 +0000118 printf ("r3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n",
Wolfgang Denk74f43042005-09-25 01:48:28 +0200119 regs->ARM_r3, regs->ARM_r2, regs->ARM_r1, regs->ARM_r0);
120 printf ("Flags: %c%c%c%c",
121 flags & CC_N_BIT ? 'N' : 'n',
122 flags & CC_Z_BIT ? 'Z' : 'z',
123 flags & CC_C_BIT ? 'C' : 'c', flags & CC_V_BIT ? 'V' : 'v');
124 printf (" IRQs %s FIQs %s Mode %s%s\n",
125 interrupts_enabled (regs) ? "on" : "off",
126 fast_interrupts_enabled (regs) ? "on" : "off",
127 processor_modes[processor_mode (regs)],
128 thumb_mode (regs) ? " (T)" : "");
Heinrich Schuchardtbd2a13f2018-05-15 19:42:23 +0200129 dump_instr(regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200130}
131
Lothar Waßmannc8882362017-06-08 09:52:33 +0200132/* fixup PC to point to the instruction leading to the exception */
133static inline void fixup_pc(struct pt_regs *regs, int offset)
134{
135 uint32_t pc = instruction_pointer(regs) + offset;
136 regs->ARM_pc = pc | (regs->ARM_pc & PCMASK);
137}
138
Sean Anderson47cfdb22023-10-27 16:40:15 -0400139/*
140 * Try to "emulate" a semihosting call in the event that we don't have a
141 * debugger attached.
142 */
143static bool smh_emulate_trap(struct pt_regs *regs)
144{
145 if (regs->ARM_cpsr & T_BIT) {
146 u16 *insn = (u16 *)(regs->ARM_pc - 2);
147
148 if (*insn != SMH_T32_SVC)
149 return false;
150 } else {
151 u32 *insn = (u32 *)(regs->ARM_pc - 4);
152
153 if (*insn != SMH_A32_SVC)
154 return false;
155 }
156
157 /* Avoid future semihosting calls */
158 disable_semihosting();
159
160 /* Just pretend the call failed */
161 regs->ARM_r0 = -1;
162 return true;
163}
164
Wolfgang Denk74f43042005-09-25 01:48:28 +0200165void do_undefined_instruction (struct pt_regs *pt_regs)
166{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100167 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200168 printf ("undefined instruction\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200169 fixup_pc(pt_regs, -4);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200170 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200171 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200172 bad_mode ();
173}
174
175void do_software_interrupt (struct pt_regs *pt_regs)
176{
Sean Anderson47cfdb22023-10-27 16:40:15 -0400177 if (CONFIG_IS_ENABLED(SEMIHOSTING_FALLBACK) &&
178 smh_emulate_trap(pt_regs))
179 return;
180
Alexander Grafcc4a4742016-03-04 01:10:12 +0100181 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200182 printf ("software interrupt\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200183 fixup_pc(pt_regs, -4);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200184 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200185 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200186 bad_mode ();
187}
188
189void do_prefetch_abort (struct pt_regs *pt_regs)
190{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100191 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200192 printf ("prefetch abort\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200193 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200194 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200195 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200196 bad_mode ();
197}
198
199void do_data_abort (struct pt_regs *pt_regs)
200{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100201 efi_restore_gd();
Tom Rini1551df32014-02-25 10:27:01 -0500202 printf ("data abort\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200203 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200204 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200205 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200206 bad_mode ();
207}
208
209void do_not_used (struct pt_regs *pt_regs)
210{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100211 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200212 printf ("not used\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200213 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200214 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200215 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200216 bad_mode ();
217}
218
219void do_fiq (struct pt_regs *pt_regs)
220{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100221 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200222 printf ("fast interrupt request\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200223 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200224 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200225 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200226 bad_mode ();
227}
228
229void do_irq (struct pt_regs *pt_regs)
230{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100231 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200232 printf ("interrupt request\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200233 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200234 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200235 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200236 bad_mode ();
237}