blob: d93a6eb547bff99c02548a144d48b2d86d42ff68 [file] [log] [blame]
Alexey Brodkin2f16ac92014-02-04 12:56:14 +04001/*
2 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/arcregs.h>
9#include <asm/ptrace.h>
10
11/* Bit values in STATUS32 */
12#define E1_MASK (1 << 1) /* Level 1 interrupts enable */
13#define E2_MASK (1 << 2) /* Level 2 interrupts enable */
14
15int interrupt_init(void)
16{
17 return 0;
18}
19
20/*
21 * returns true if interrupts had been enabled before we disabled them
22 */
23int disable_interrupts(void)
24{
25 int status = read_aux_reg(ARC_AUX_STATUS32);
26 int state = (status | E1_MASK | E2_MASK) ? 1 : 0;
27
28 status &= ~(E1_MASK | E2_MASK);
29 /* STATUS32 register is updated indirectly with "FLAG" instruction */
30 __asm__("flag %0" : : "r" (status));
31 return state;
32}
33
34void enable_interrupts(void)
35{
36 unsigned int status = read_aux_reg(ARC_AUX_STATUS32);
37
38 status |= E1_MASK | E2_MASK;
39 /* STATUS32 register is updated indirectly with "FLAG" instruction */
40 __asm__("flag %0" : : "r" (status));
41}
42
43static void print_reg_file(long *reg_rev, int start_num)
44{
45 unsigned int i;
46
47 /* Print 3 registers per line */
48 for (i = start_num; i < start_num + 25; i++) {
49 printf("r%02u: 0x%08lx\t", i, (unsigned long)*reg_rev);
50 if (((i + 1) % 3) == 0)
51 printf("\n");
52
53 /* Because pt_regs has registers reversed */
54 reg_rev--;
55 }
56
57 /* Add new-line if none was inserted in the end of loop above */
58 if (((i + 1) % 3) != 0)
59 printf("\n");
60}
61
62void show_regs(struct pt_regs *regs)
63{
64 printf("RET:\t0x%08lx\nBLINK:\t0x%08lx\nSTAT32:\t0x%08lx\n",
65 regs->ret, regs->blink, regs->status32);
66 printf("GP: 0x%08lx\t r25: 0x%08lx\t\n", regs->r26, regs->r25);
67 printf("BTA: 0x%08lx\t SP: 0x%08lx\t FP: 0x%08lx\n", regs->bta,
68 regs->sp, regs->fp);
69 printf("LPS: 0x%08lx\tLPE: 0x%08lx\tLPC: 0x%08lx\n", regs->lp_start,
70 regs->lp_end, regs->lp_count);
71
72 print_reg_file(&(regs->r0), 0);
73}
74
75void bad_mode(struct pt_regs *regs)
76{
77 if (regs)
78 show_regs(regs);
79
80 panic("Resetting CPU ...\n");
81}
82
83void do_memory_error(unsigned long address, struct pt_regs *regs)
84{
85 printf("Memory error exception @ 0x%lx\n", address);
86 bad_mode(regs);
87}
88
89void do_instruction_error(unsigned long address, struct pt_regs *regs)
90{
91 printf("Instruction error exception @ 0x%lx\n", address);
92 bad_mode(regs);
93}
94
95void do_machine_check_fault(unsigned long address, struct pt_regs *regs)
96{
97 printf("Machine check exception @ 0x%lx\n", address);
98 bad_mode(regs);
99}
100
101void do_interrupt_handler(void)
102{
103 printf("Interrupt fired\n");
104 bad_mode(0);
105}
106
107void do_itlb_miss(struct pt_regs *regs)
108{
109 printf("I TLB miss exception\n");
110 bad_mode(regs);
111}
112
113void do_dtlb_miss(struct pt_regs *regs)
114{
115 printf("D TLB miss exception\n");
116 bad_mode(regs);
117}
118
119void do_tlb_prot_violation(unsigned long address, struct pt_regs *regs)
120{
121 printf("TLB protection violation or misaligned access @ 0x%lx\n",
122 address);
123 bad_mode(regs);
124}
125
126void do_privilege_violation(struct pt_regs *regs)
127{
128 printf("Privilege violation exception\n");
129 bad_mode(regs);
130}
131
132void do_trap(struct pt_regs *regs)
133{
134 printf("Trap exception\n");
135 bad_mode(regs);
136}
137
138void do_extension(struct pt_regs *regs)
139{
140 printf("Extension instruction exception\n");
141 bad_mode(regs);
142}