blob: 0b202024f6ffac3c7683b65af68f1869ca904bde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/kernel/machchk.C $ */
/* */
/* OpenPOWER HostBoot Project */
/* */
/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
/* Licensed under the Apache License, Version 2.0 (the "License"); */
/* you may not use this file except in compliance with the License. */
/* You may obtain a copy of the License at */
/* */
/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
/* Unless required by applicable law or agreed to in writing, software */
/* distributed under the License is distributed on an "AS IS" BASIS, */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
/* implied. See the License for the specific language governing */
/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
#include <kernel/machchk.H>
#include <kernel/console.H>
#include <kernel/vmmmgr.H>
#include <sys/mmio.h>
namespace Kernel
{
namespace MachineCheck
{
bool handleLoadUE(task_t* t)
{
bool handled = false;
static const uint32_t LDX_INSTR_MASK = 0xFC0007FE;
static const uint32_t LDX_INSTR = 0x7C00002A;
static const uint32_t LDX_RA_MASK = 0x001F0000;
static const uint32_t LDX_RB_MASK = 0x0000F800;
static const uint32_t LDX_RT_MASK = 0x03E00000;
do
{
//Get instruction that caused the SUE
uint64_t physInstAddr = VmmManager::findKernelAddress(
reinterpret_cast<uint64_t>(t->context.nip));
uint32_t* instruction = reinterpret_cast<uint32_t*>(physInstAddr);
if((*instruction & LDX_INSTR_MASK) != LDX_INSTR)
{
//Not an LDX instruction, unhandled exception
printk("MachineCheck::handleUE: Instruction 0x%.8x not handled.\n",
*instruction);
break;
}
uint64_t ueMagicValue = 0x0;
// If task is tolerating UEs, replace with "Dead Data".
if (t->tolerate_ue)
{
ueMagicValue = MM_UE_MAGIC_VALUE;
}
// Otherwise, check for specific MMIO addresses.
else
{
//Compute the accessed address
uint32_t rA = (*instruction & LDX_RA_MASK) >> 16;
uint32_t rB = (*instruction & LDX_RB_MASK) >> 11;
uint64_t vaddr = 0;
if(rA != 0)
{
vaddr = t->context.gprs[rA] +
t->context.gprs[rB];
}
else
{
vaddr = t->context.gprs[rB];
}
uint64_t phys = VmmManager::findPhysicalAddress(vaddr);
//Check if address is in IBSCOM MMIO Range.
if((phys >= MMIO_IBSCOM_START) &&
(phys <= MMIO_IBSCOM_END))
{
ueMagicValue = MMIO_IBSCOM_UE_DETECTED;
}
else
{
printk("MachineCheck::handleUE: Unrecognized address %lx\n",
phys);
break;
}
}
// Write pattern into result register.
uint32_t rT = (*instruction & LDX_RT_MASK) >> 21;
t->context.gprs[rT] = ueMagicValue;
// Advance to next instruction.
uint32_t* nextInst = reinterpret_cast<uint32_t*>(t->context.nip);
nextInst++;
t->context.nip = reinterpret_cast<void*>(nextInst);
// Successfully handled.
handled = true;
} while (false);
return handled;
}
bool handleSLB(task_t* t)
{
// Reinitialize the SLB.
VmmManager::init_slb();
return true;
}
}
}
|