blob: 7525c152b890113f790f921238decfcc739f8384 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Rick Chen8bbb2902017-12-26 13:55:49 +08002/*
3 * Copyright (c) 2016-17 Microsemi Corporation.
4 * Padmarao Begari, Microsemi Corporation <padmarao.begari@microsemi.com>
5 *
6 * Copyright (C) 2017 Andes Technology Corporation
7 * Rick Chen, Andes Technology Corporation <rick@andestech.com>
Sean Andersonfd1f6e92019-12-25 00:27:44 -05008 *
9 * Copyright (C) 2019 Sean Anderson <seanga2@gmail.com>
Rick Chen8bbb2902017-12-26 13:55:49 +080010 */
11
12#include <common.h>
Heinrich Schuchardt7c6ca032020-08-01 15:15:39 +000013#include <efi_loader.h>
Simon Glassdb41d652019-12-28 10:45:07 -070014#include <hang.h>
Simon Glassc30b7ad2019-11-14 12:57:41 -070015#include <irq_func.h>
Simon Glass401d1c42020-10-30 21:38:53 -060016#include <asm/global_data.h>
Rick Chen8bbb2902017-12-26 13:55:49 +080017#include <asm/ptrace.h>
18#include <asm/system.h>
19#include <asm/encoding.h>
20
Heinrich Schuchardt7c6ca032020-08-01 15:15:39 +000021DECLARE_GLOBAL_DATA_PTR;
22
23static void show_efi_loaded_images(uintptr_t epc)
24{
25 efi_print_image_infos((void *)epc);
26}
27
Sean Andersonfd1f6e92019-12-25 00:27:44 -050028static void show_regs(struct pt_regs *regs)
29{
30#ifdef CONFIG_SHOW_REGS
Heinrich Schuchardtc353f2b2020-12-02 14:36:26 +010031 printf("\nSP: " REG_FMT " GP: " REG_FMT " TP: " REG_FMT "\n",
Heinrich Schuchardt7c6ca032020-08-01 15:15:39 +000032 regs->sp, regs->gp, regs->tp);
33 printf("T0: " REG_FMT " T1: " REG_FMT " T2: " REG_FMT "\n",
34 regs->t0, regs->t1, regs->t2);
35 printf("S0: " REG_FMT " S1: " REG_FMT " A0: " REG_FMT "\n",
36 regs->s0, regs->s1, regs->a0);
37 printf("A1: " REG_FMT " A2: " REG_FMT " A3: " REG_FMT "\n",
38 regs->a1, regs->a2, regs->a3);
39 printf("A4: " REG_FMT " A5: " REG_FMT " A6: " REG_FMT "\n",
40 regs->a4, regs->a5, regs->a6);
41 printf("A7: " REG_FMT " S2: " REG_FMT " S3: " REG_FMT "\n",
42 regs->a7, regs->s2, regs->s3);
43 printf("S4: " REG_FMT " S5: " REG_FMT " S6: " REG_FMT "\n",
44 regs->s4, regs->s5, regs->s6);
45 printf("S7: " REG_FMT " S8: " REG_FMT " S9: " REG_FMT "\n",
46 regs->s7, regs->s8, regs->s9);
47 printf("S10: " REG_FMT " S11: " REG_FMT " T3: " REG_FMT "\n",
48 regs->s10, regs->s11, regs->t3);
Heinrich Schuchardtc353f2b2020-12-02 14:36:26 +010049 printf("T4: " REG_FMT " T5: " REG_FMT " T6: " REG_FMT "\n",
Heinrich Schuchardt7c6ca032020-08-01 15:15:39 +000050 regs->t4, regs->t5, regs->t6);
Sean Andersonfd1f6e92019-12-25 00:27:44 -050051#endif
52}
53
54static void _exit_trap(ulong code, ulong epc, ulong tval, struct pt_regs *regs)
Bin Meng7f5d35a2018-12-12 06:12:44 -080055{
56 static const char * const exception_code[] = {
57 "Instruction address misaligned",
58 "Instruction access fault",
59 "Illegal instruction",
60 "Breakpoint",
61 "Load address misaligned",
62 "Load access fault",
63 "Store/AMO address misaligned",
64 "Store/AMO access fault",
65 "Environment call from U-mode",
66 "Environment call from S-mode",
67 "Reserved",
68 "Environment call from M-mode",
69 "Instruction page fault",
70 "Load page fault",
71 "Reserved",
72 "Store/AMO page fault",
73 };
74
Sean Andersonfd1f6e92019-12-25 00:27:44 -050075 if (code < ARRAY_SIZE(exception_code))
76 printf("Unhandled exception: %s\n", exception_code[code]);
77 else
78 printf("Unhandled exception code: %ld\n", code);
Bin Meng7f5d35a2018-12-12 06:12:44 -080079
Heinrich Schuchardt7c6ca032020-08-01 15:15:39 +000080 printf("EPC: " REG_FMT " RA: " REG_FMT " TVAL: " REG_FMT "\n",
81 epc, regs->ra, tval);
Sean Anderson85768132020-09-21 07:51:40 -040082 /* Print relocation adjustments, but only if gd is initialized */
83 if (gd && gd->flags & GD_FLG_RELOC)
Heinrich Schuchardtc353f2b2020-12-02 14:36:26 +010084 printf("EPC: " REG_FMT " RA: " REG_FMT " reloc adjusted\n",
Heinrich Schuchardt7c6ca032020-08-01 15:15:39 +000085 epc - gd->reloc_off, regs->ra - gd->reloc_off);
86
Sean Andersonfd1f6e92019-12-25 00:27:44 -050087 show_regs(regs);
Heinrich Schuchardt7c6ca032020-08-01 15:15:39 +000088 show_efi_loaded_images(epc);
Heinrich Schuchardtc353f2b2020-12-02 14:36:26 +010089 panic("\n");
Bin Meng7f5d35a2018-12-12 06:12:44 -080090}
Rick Chen8bbb2902017-12-26 13:55:49 +080091
92int interrupt_init(void)
93{
94 return 0;
95}
96
97/*
98 * enable interrupts
99 */
100void enable_interrupts(void)
101{
102}
103
104/*
105 * disable interrupts
106 */
107int disable_interrupts(void)
108{
109 return 0;
110}
111
Sean Andersonfd1f6e92019-12-25 00:27:44 -0500112ulong handle_trap(ulong cause, ulong epc, ulong tval, struct pt_regs *regs)
Rick Chen8bbb2902017-12-26 13:55:49 +0800113{
Anup Pateld2db2a82018-12-03 10:57:40 +0530114 ulong is_irq, irq;
Rick Chen8bbb2902017-12-26 13:55:49 +0800115
Heinrich Schuchardtc48e9f32020-09-26 07:50:36 +0200116 /* An UEFI application may have changed gd. Restore U-Boot's gd. */
117 efi_restore_gd();
118
Anup Pateld2db2a82018-12-03 10:57:40 +0530119 is_irq = (cause & MCAUSE_INT);
120 irq = (cause & ~MCAUSE_INT);
121
122 if (is_irq) {
123 switch (irq) {
124 case IRQ_M_EXT:
125 case IRQ_S_EXT:
126 external_interrupt(0); /* handle external interrupt */
127 break;
128 case IRQ_M_TIMER:
129 case IRQ_S_TIMER:
130 timer_interrupt(0); /* handle timer interrupt */
131 break;
132 default:
Sean Andersonfd1f6e92019-12-25 00:27:44 -0500133 _exit_trap(cause, epc, tval, regs);
Anup Pateld2db2a82018-12-03 10:57:40 +0530134 break;
135 };
136 } else {
Sean Andersonfd1f6e92019-12-25 00:27:44 -0500137 _exit_trap(cause, epc, tval, regs);
Anup Pateld2db2a82018-12-03 10:57:40 +0530138 }
Rick Chen8bbb2902017-12-26 13:55:49 +0800139
140 return epc;
141}
142
143/*
144 *Entry Point for PLIC Interrupt Handler
145 */
146__attribute__((weak)) void external_interrupt(struct pt_regs *regs)
147{
148}
149
150__attribute__((weak)) void timer_interrupt(struct pt_regs *regs)
151{
152}