blob: ed047da452b5685743c9f49f462a25769b3c1b05 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2 * Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
3 *
4 * (C) Copyright 2000
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
wdenkfe8c2802002-11-03 00:38:21 +00008 */
9#include <common.h>
10
11/*
12 * The exception table consists of pairs of addresses: the first is the
13 * address of an instruction that is allowed to fault, and the second is
14 * the address at which the program should continue. No registers are
15 * modified, so it is entirely up to the continuation code to figure out
16 * what to do.
17 *
18 * All the routines below use bits of fixup code that are out of line
19 * with the main instruction path. This means when everything is well,
20 * we don't even have to jump over them. Further, they do not intrude
21 * on our cache or tlb entries.
22 */
23
roy zang9d27b3a2006-12-04 17:56:59 +080024DECLARE_GLOBAL_DATA_PTR;
25
wdenkfe8c2802002-11-03 00:38:21 +000026struct exception_table_entry
27{
28 unsigned long insn, fixup;
29};
30
31extern const struct exception_table_entry __start___ex_table[];
32extern const struct exception_table_entry __stop___ex_table[];
33
34static inline unsigned long
35search_one_table(const struct exception_table_entry *first,
36 const struct exception_table_entry *last,
37 unsigned long value)
38{
Zang Roy-r619111b305bd2007-05-09 08:10:57 +080039 long diff;
Peter Tysere6b05e72009-09-21 11:20:29 -050040 while (first <= last) {
41 diff = first->insn - value;
42 if (diff == 0)
43 return first->fixup;
44 first++;
wdenk8bde7f72003-06-27 21:31:46 +000045 }
Peter Tysere6b05e72009-09-21 11:20:29 -050046
wdenk8bde7f72003-06-27 21:31:46 +000047 return 0;
wdenkfe8c2802002-11-03 00:38:21 +000048}
49
wdenkfe8c2802002-11-03 00:38:21 +000050unsigned long
51search_exception_table(unsigned long addr)
52{
53 unsigned long ret;
54
55 /* There is only the kernel to search. */
56 ret = search_one_table(__start___ex_table, __stop___ex_table-1, addr);
roy zangc9c1eee2006-12-01 19:01:25 +080057 /* if the serial port does not hang in exception, printf can be used */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058#if !defined(CONFIG_SYS_SERIAL_HANG_IN_EXCEPTION)
Kim Phillipsfe44f452012-10-29 13:34:28 +000059 debug("Bus Fault @ 0x%08lx, fixup 0x%08lx\n", addr, ret);
roy zang4c527832006-11-02 18:49:51 +080060#endif
wdenkfe8c2802002-11-03 00:38:21 +000061 if (ret) return ret;
62
63 return 0;
64}