blob: 703be5a3209c10a8d9840ced83aa1cb1aa2c06b8 [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>
Simon Glass6b9f0102020-05-10 11:40:06 -060026#include <asm/ptrace.h>
Jeroen Hofsteea9641332014-10-08 22:57:59 +020027#include <asm/u-boot-arm.h>
Wolfgang Denkadf20a12005-09-25 01:48:28 +020028
Jean-Christophe PLAGNIOL-VILLARDda7b3db2009-05-09 13:21:18 +020029DECLARE_GLOBAL_DATA_PTR;
30
Simon Glassf87959b2019-11-14 12:57:40 -070031int interrupt_init(void)
Jean-Christophe PLAGNIOL-VILLARDda7b3db2009-05-09 13:21:18 +020032{
Heiko Schocheraeb29912010-09-17 13:10:39 +020033 /*
34 * setup up stacks if necessary
35 */
36 IRQ_STACK_START_IN = gd->irq_sp + 8;
37
Ovidiu Panait8998e712020-04-20 10:31:44 +030038 enable_interrupts();
39
Heiko Schocheraeb29912010-09-17 13:10:39 +020040 return 0;
41}
Heiko Schocheraeb29912010-09-17 13:10:39 +020042
Simon Glassf87959b2019-11-14 12:57:40 -070043void enable_interrupts(void)
Wolfgang Denkadf20a12005-09-25 01:48:28 +020044{
45 return;
46}
Simon Glassf87959b2019-11-14 12:57:40 -070047int disable_interrupts(void)
Wolfgang Denkadf20a12005-09-25 01:48:28 +020048{
49 return 0;
50}
Wolfgang Denkadf20a12005-09-25 01:48:28 +020051
52void bad_mode (void)
53{
54 panic ("Resetting CPU ...\n");
Simon Glassafb02152019-12-28 10:45:01 -070055 reset_cpu(0);
Wolfgang Denkadf20a12005-09-25 01:48:28 +020056}
57
Heinrich Schuchardt438caa32018-04-05 11:56:22 +020058static void show_efi_loaded_images(struct pt_regs *regs)
59{
60 efi_print_image_infos((void *)instruction_pointer(regs));
61}
62
Heinrich Schuchardt74b0eda2018-05-15 19:42:23 +020063static void dump_instr(struct pt_regs *regs)
64{
65 unsigned long addr = instruction_pointer(regs);
66 const int thumb = thumb_mode(regs);
67 const int width = thumb ? 4 : 8;
68 int i;
69
70 if (thumb)
71 addr &= ~1L;
72 else
73 addr &= ~3L;
74 printf("Code: ");
75 for (i = -4; i < 1 + !!thumb; i++) {
76 unsigned int val;
77
78 if (thumb)
79 val = ((u16 *)addr)[i];
80 else
81 val = ((u32 *)addr)[i];
82 printf(i == 0 ? "(%0*x) " : "%0*x ", width, val);
83 }
84 printf("\n");
85}
86
Wolfgang Denkadf20a12005-09-25 01:48:28 +020087void show_regs (struct pt_regs *regs)
88{
Heiko Schocher62cb1562015-06-29 09:10:46 +020089 unsigned long __maybe_unused flags;
90 const char __maybe_unused *processor_modes[] = {
Wolfgang Denkadf20a12005-09-25 01:48:28 +020091 "USER_26", "FIQ_26", "IRQ_26", "SVC_26",
92 "UK4_26", "UK5_26", "UK6_26", "UK7_26",
93 "UK8_26", "UK9_26", "UK10_26", "UK11_26",
94 "UK12_26", "UK13_26", "UK14_26", "UK15_26",
95 "USER_32", "FIQ_32", "IRQ_32", "SVC_32",
96 "UK4_32", "UK5_32", "UK6_32", "ABT_32",
Marc Zyngier6b5b1292014-07-12 14:24:01 +010097 "UK8_32", "UK9_32", "HYP_32", "UND_32",
Wolfgang Denkadf20a12005-09-25 01:48:28 +020098 "UK12_32", "UK13_32", "UK14_32", "SYS_32",
99 };
100
101 flags = condition_codes (regs);
102
Simon Glass4b15a5f2015-01-30 12:04:56 -0700103 printf("pc : [<%08lx>] lr : [<%08lx>]\n",
104 instruction_pointer(regs), regs->ARM_lr);
105 if (gd->flags & GD_FLG_RELOC) {
106 printf("reloc pc : [<%08lx>] lr : [<%08lx>]\n",
107 instruction_pointer(regs) - gd->reloc_off,
108 regs->ARM_lr - gd->reloc_off);
109 }
110 printf("sp : %08lx ip : %08lx fp : %08lx\n",
111 regs->ARM_sp, regs->ARM_ip, regs->ARM_fp);
Andreas Engel2d4b2532008-01-14 09:06:52 +0000112 printf ("r10: %08lx r9 : %08lx r8 : %08lx\n",
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200113 regs->ARM_r10, regs->ARM_r9, regs->ARM_r8);
Andreas Engel2d4b2532008-01-14 09:06:52 +0000114 printf ("r7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n",
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200115 regs->ARM_r7, regs->ARM_r6, regs->ARM_r5, regs->ARM_r4);
Andreas Engel2d4b2532008-01-14 09:06:52 +0000116 printf ("r3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n",
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200117 regs->ARM_r3, regs->ARM_r2, regs->ARM_r1, regs->ARM_r0);
118 printf ("Flags: %c%c%c%c",
119 flags & CC_N_BIT ? 'N' : 'n',
120 flags & CC_Z_BIT ? 'Z' : 'z',
121 flags & CC_C_BIT ? 'C' : 'c', flags & CC_V_BIT ? 'V' : 'v');
122 printf (" IRQs %s FIQs %s Mode %s%s\n",
123 interrupts_enabled (regs) ? "on" : "off",
124 fast_interrupts_enabled (regs) ? "on" : "off",
125 processor_modes[processor_mode (regs)],
126 thumb_mode (regs) ? " (T)" : "");
Heinrich Schuchardt74b0eda2018-05-15 19:42:23 +0200127 dump_instr(regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200128}
129
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200130/* fixup PC to point to the instruction leading to the exception */
131static inline void fixup_pc(struct pt_regs *regs, int offset)
132{
133 uint32_t pc = instruction_pointer(regs) + offset;
134 regs->ARM_pc = pc | (regs->ARM_pc & PCMASK);
135}
136
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200137void do_undefined_instruction (struct pt_regs *pt_regs)
138{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100139 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200140 printf ("undefined instruction\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200141 fixup_pc(pt_regs, -4);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200142 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200143 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200144 bad_mode ();
145}
146
147void do_software_interrupt (struct pt_regs *pt_regs)
148{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100149 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200150 printf ("software interrupt\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200151 fixup_pc(pt_regs, -4);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200152 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200153 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200154 bad_mode ();
155}
156
157void do_prefetch_abort (struct pt_regs *pt_regs)
158{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100159 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200160 printf ("prefetch abort\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200161 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200162 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200163 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200164 bad_mode ();
165}
166
167void do_data_abort (struct pt_regs *pt_regs)
168{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100169 efi_restore_gd();
Tom Rini958a8f82014-02-25 10:27:01 -0500170 printf ("data abort\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200171 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200172 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200173 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200174 bad_mode ();
175}
176
177void do_not_used (struct pt_regs *pt_regs)
178{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100179 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200180 printf ("not used\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200181 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200182 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200183 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200184 bad_mode ();
185}
186
187void do_fiq (struct pt_regs *pt_regs)
188{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100189 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200190 printf ("fast interrupt request\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200191 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200192 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200193 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200194 bad_mode ();
195}
196
197void do_irq (struct pt_regs *pt_regs)
198{
Alexander Graf80b9c6b2016-03-04 01:10:12 +0100199 efi_restore_gd();
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200200 printf ("interrupt request\n");
Lothar Waßmanne6c13702017-06-08 09:52:33 +0200201 fixup_pc(pt_regs, -8);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200202 show_regs (pt_regs);
Heinrich Schuchardt438caa32018-04-05 11:56:22 +0200203 show_efi_loaded_images(pt_regs);
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200204 bad_mode ();
205}