blob: cda4d484605444f6e3019ce42b6fee1541ef4b38 [file] [log] [blame]
Wolfgang Denk74f43042005-09-25 01:48:28 +02001/*
2 * (C) Copyright 2003
3 * Texas Instruments <www.ti.com>
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Alex Zuepke <azu@sysgo.de>
12 *
13 * (C) Copyright 2002-2004
Detlev Zundel792a09e2009-05-13 10:54:10 +020014 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Wolfgang Denk74f43042005-09-25 01:48:28 +020015 *
16 * (C) Copyright 2004
17 * Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
18 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020019 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Denk74f43042005-09-25 01:48:28 +020020 */
21
22#include <common.h>
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +020023#include <efi_loader.h>
Wolfgang Denk74f43042005-09-25 01:48:28 +020024#include <asm/proc-armv/ptrace.h>
Jeroen Hofstee49c4bc32014-10-08 22:57:59 +020025#include <asm/u-boot-arm.h>
Alexander Grafcc4a4742016-03-04 01:10:12 +010026#include <efi_loader.h>
Wolfgang Denk74f43042005-09-25 01:48:28 +020027
Jean-Christophe PLAGNIOL-VILLARDc358d9c32009-05-09 13:21:18 +020028DECLARE_GLOBAL_DATA_PTR;
29
Heiko Schocherf1d2b312010-09-17 13:10:39 +020030int interrupt_init (void)
31{
32 /*
33 * setup up stacks if necessary
34 */
35 IRQ_STACK_START_IN = gd->irq_sp + 8;
36
37 return 0;
38}
Heiko Schocherf1d2b312010-09-17 13:10:39 +020039
Wolfgang Denk74f43042005-09-25 01:48:28 +020040void enable_interrupts (void)
41{
42 return;
43}
44int disable_interrupts (void)
45{
46 return 0;
47}
Wolfgang Denk74f43042005-09-25 01:48:28 +020048
49void bad_mode (void)
50{
51 panic ("Resetting CPU ...\n");
52 reset_cpu (0);
53}
54
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +020055static void show_efi_loaded_images(struct pt_regs *regs)
56{
57 efi_print_image_infos((void *)instruction_pointer(regs));
58}
59
Wolfgang Denk74f43042005-09-25 01:48:28 +020060void show_regs (struct pt_regs *regs)
61{
Heiko Schocher80402f32015-06-29 09:10:46 +020062 unsigned long __maybe_unused flags;
63 const char __maybe_unused *processor_modes[] = {
Wolfgang Denk74f43042005-09-25 01:48:28 +020064 "USER_26", "FIQ_26", "IRQ_26", "SVC_26",
65 "UK4_26", "UK5_26", "UK6_26", "UK7_26",
66 "UK8_26", "UK9_26", "UK10_26", "UK11_26",
67 "UK12_26", "UK13_26", "UK14_26", "UK15_26",
68 "USER_32", "FIQ_32", "IRQ_32", "SVC_32",
69 "UK4_32", "UK5_32", "UK6_32", "ABT_32",
Marc Zyngierb726d222014-07-12 14:24:01 +010070 "UK8_32", "UK9_32", "HYP_32", "UND_32",
Wolfgang Denk74f43042005-09-25 01:48:28 +020071 "UK12_32", "UK13_32", "UK14_32", "SYS_32",
72 };
73
74 flags = condition_codes (regs);
75
Simon Glass23d184d2015-01-30 12:04:56 -070076 printf("pc : [<%08lx>] lr : [<%08lx>]\n",
77 instruction_pointer(regs), regs->ARM_lr);
78 if (gd->flags & GD_FLG_RELOC) {
79 printf("reloc pc : [<%08lx>] lr : [<%08lx>]\n",
80 instruction_pointer(regs) - gd->reloc_off,
81 regs->ARM_lr - gd->reloc_off);
82 }
83 printf("sp : %08lx ip : %08lx fp : %08lx\n",
84 regs->ARM_sp, regs->ARM_ip, regs->ARM_fp);
Andreas Engel6d0943a2008-01-14 09:06:52 +000085 printf ("r10: %08lx r9 : %08lx r8 : %08lx\n",
Wolfgang Denk74f43042005-09-25 01:48:28 +020086 regs->ARM_r10, regs->ARM_r9, regs->ARM_r8);
Andreas Engel6d0943a2008-01-14 09:06:52 +000087 printf ("r7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n",
Wolfgang Denk74f43042005-09-25 01:48:28 +020088 regs->ARM_r7, regs->ARM_r6, regs->ARM_r5, regs->ARM_r4);
Andreas Engel6d0943a2008-01-14 09:06:52 +000089 printf ("r3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n",
Wolfgang Denk74f43042005-09-25 01:48:28 +020090 regs->ARM_r3, regs->ARM_r2, regs->ARM_r1, regs->ARM_r0);
91 printf ("Flags: %c%c%c%c",
92 flags & CC_N_BIT ? 'N' : 'n',
93 flags & CC_Z_BIT ? 'Z' : 'z',
94 flags & CC_C_BIT ? 'C' : 'c', flags & CC_V_BIT ? 'V' : 'v');
95 printf (" IRQs %s FIQs %s Mode %s%s\n",
96 interrupts_enabled (regs) ? "on" : "off",
97 fast_interrupts_enabled (regs) ? "on" : "off",
98 processor_modes[processor_mode (regs)],
99 thumb_mode (regs) ? " (T)" : "");
100}
101
Lothar Waßmannc8882362017-06-08 09:52:33 +0200102/* fixup PC to point to the instruction leading to the exception */
103static inline void fixup_pc(struct pt_regs *regs, int offset)
104{
105 uint32_t pc = instruction_pointer(regs) + offset;
106 regs->ARM_pc = pc | (regs->ARM_pc & PCMASK);
107}
108
Wolfgang Denk74f43042005-09-25 01:48:28 +0200109void do_undefined_instruction (struct pt_regs *pt_regs)
110{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100111 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200112 printf ("undefined instruction\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200113 fixup_pc(pt_regs, -4);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200114 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200115 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200116 bad_mode ();
117}
118
119void do_software_interrupt (struct pt_regs *pt_regs)
120{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100121 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200122 printf ("software interrupt\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200123 fixup_pc(pt_regs, -4);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200124 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200125 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200126 bad_mode ();
127}
128
129void do_prefetch_abort (struct pt_regs *pt_regs)
130{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100131 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200132 printf ("prefetch abort\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200133 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200134 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200135 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200136 bad_mode ();
137}
138
139void do_data_abort (struct pt_regs *pt_regs)
140{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100141 efi_restore_gd();
Tom Rini1551df32014-02-25 10:27:01 -0500142 printf ("data abort\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200143 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200144 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200145 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200146 bad_mode ();
147}
148
149void do_not_used (struct pt_regs *pt_regs)
150{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100151 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200152 printf ("not used\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200153 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200154 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200155 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200156 bad_mode ();
157}
158
159void do_fiq (struct pt_regs *pt_regs)
160{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100161 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200162 printf ("fast interrupt request\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200163 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200164 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200165 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200166 bad_mode ();
167}
168
169void do_irq (struct pt_regs *pt_regs)
170{
Alexander Grafcc4a4742016-03-04 01:10:12 +0100171 efi_restore_gd();
Wolfgang Denk74f43042005-09-25 01:48:28 +0200172 printf ("interrupt request\n");
Lothar Waßmannc8882362017-06-08 09:52:33 +0200173 fixup_pc(pt_regs, -8);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200174 show_regs (pt_regs);
Heinrich Schuchardt99b8db72018-04-05 11:56:22 +0200175 show_efi_loaded_images(pt_regs);
Wolfgang Denk74f43042005-09-25 01:48:28 +0200176 bad_mode ();
177}