OpenCores
URL https://opencores.org/ocsvn/ao486/ao486/trunk

Subversion Repositories ao486

[/] [ao486/] [trunk/] [syn/] [components/] [sd_card/] [firmware/] [bsp/] [HAL/] [src/] [alt_ecc_fatal_entry.S] - Blame information for rev 8

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 8 alfik
/******************************************************************************
2
*                                                                             *
3
* License Agreement                                                           *
4
*                                                                             *
5
* Copyright (c) 2013 Altera Corporation, San Jose, California, USA.           *
6
* All rights reserved.                                                        *
7
*                                                                             *
8
* Permission is hereby granted, free of charge, to any person obtaining a     *
9
* copy of this software and associated documentation files (the "Software"),  *
10
* to deal in the Software without restriction, including without limitation   *
11
* the rights to use, copy, modify, merge, publish, distribute, sublicense,    *
12
* and/or sell copies of the Software, and to permit persons to whom the       *
13
* Software is furnished to do so, subject to the following conditions:        *
14
*                                                                             *
15
* The above copyright notice and this permission notice shall be included in  *
16
* all copies or substantial portions of the Software.                         *
17
*                                                                             *
18
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  *
19
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,    *
20
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
21
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      *
22
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING     *
23
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER         *
24
* DEALINGS IN THE SOFTWARE.                                                   *
25
*                                                                             *
26
* This agreement shall be governed in all respects by the laws of the State   *
27
* of California and by the laws of the United States of America.              *
28
*                                                                             *
29
******************************************************************************/
30
 
31
/*
32
 * This is the code called at the beginning of the exception handler
33
 * to detect a likely fatal ECC error exception and then jump to
34
 * user-provided code to handle it.
35
 *
36
 * This code is pulled in from a .globl in alt_ecc_fatal_exception.c.
37
 * This scheme is used so that if a handler is never registered, then this
38
 * code will not appear in the generated executable, thereby improving
39
 * code footprint.
40
 *
41
 * This code is located in its own section that the linker script
42
 * explicitly mentions and ensures it gets linked at the beginning
43
 * of the exception handler.
44
 */
45
 
46
        /*
47
         * Pull in the exception handler register save code.
48
         */
49
        .globl alt_exception
50
 
51
        .section .exceptions.entry.ecc_fatal, "xa"
52
 
53
        /*
54
         * This might be handling an unrecoverable ECC error exception
55
         * in the register file and/or data cache.
56
         * Must avoid reading registers or performing load/store instructions
57
         * before this is determined because they could trigger another
58
         * unrecoverable ECC error exception and create an infinite loop.
59
         *
60
         * The EXCEPTION register is always present when ECC is present.
61
         * Bit 31 of this register indicates that there was an unrecoverable
62
         * ECC error exception in the register file and/or data cache.
63
         * Test this (using blt to check sign bit) to determine if this is
64
         * what we are dealing with.  Otherwise, just do normal processing.
65
         *
66
         * Jump to an application-provided routine to handle this condition.
67
         * Pass in the return address in the et register in case this code
68
         * can clean up the ECC error and then return here (unlikely).
69
         *
70
         * Runtime stack checking can't be enabled when ECC is present
71
         * because they both want to use the et register.
72
         */
73
        rdctl et, exception
74
        bge et, r0, alt_exception_not_ecc_fatal /* Not ECCFTL if bit 31 is 0 */
75
 
76
        /*
77
         * Load ECC fatal handler pointer into et register.
78
         * Using a ldwio is safe because it completely bypasses the data cache.
79
         */
80
        movhi et, %hi(alt_exception_ecc_fatal_handler)
81
        ori   et, et, %lo(alt_exception_ecc_fatal_handler)
82
        ldwio et, 0(et)
83
 
84
        /*
85
         * If ECC fatal handler pointer is not 0, assume a handler
86
         * has been provided by the application.
87
         */
88
        beq et, r0, alt_exception_not_ecc_fatal
89
 
90
        /*
91
         * The et register contains the address of the ECC fatal handler.
92
         * Jump to this address to invoke the handler.
93
         */
94
        jmp et
95
 
96
        /*
97
         * An ECC fatal handler can jump to this label if it able
98
         * to recover from the fatal error (rare) and wants to continue
99
         * with normal exception processing.
100
         */
101
.globl alt_exception_not_ecc_fatal
102
alt_exception_not_ecc_fatal:

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.