mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 10:31:02 +00:00
Add intial minute-IA (x86) core to to enable the FW to boot on Intel Integrated Sensor Hub (ISH). BUG=chrome-os-partner:51851 BRANCH=None TEST=`make buildall -j` Change-Id: I4dcf841766f216cd00fb1d4214fae19ba5de5603 Signed-off-by: Jaiber John <jaiber.j.john@intel.com> Signed-off-by: Alex Brill <alexander.brill@intel.com> Reviewed-on: https://chromium-review.googlesource.com/336443 Commit-Ready: Raj Mojumder <raj.mojumder@intel.com> Tested-by: Raj Mojumder <raj.mojumder@intel.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
73 lines
1.4 KiB
C
73 lines
1.4 KiB
C
/* Copyright (c) 2016 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "console.h"
|
|
#include "cpu.h"
|
|
#include "host_command.h"
|
|
#include "panic.h"
|
|
#include "printf.h"
|
|
#include "system.h"
|
|
#include "task.h"
|
|
#include "timer.h"
|
|
#include "util.h"
|
|
#include "watchdog.h"
|
|
|
|
/* Whether bus fault is ignored */
|
|
static int bus_fault_ignored;
|
|
|
|
/* Panic data goes at the end of RAM. */
|
|
static struct panic_data * const pdata_ptr = PANIC_DATA_PTR;
|
|
|
|
/* Preceded by stack, rounded down to nearest 64-bit-aligned boundary */
|
|
static const uint32_t pstack_addr = (CONFIG_RAM_BASE + CONFIG_RAM_SIZE
|
|
- sizeof(struct panic_data)) & ~7;
|
|
|
|
/*
|
|
* Print panic data
|
|
*/
|
|
void panic_data_print(const struct panic_data *pdata)
|
|
{
|
|
}
|
|
|
|
void __keep report_panic(void)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Default exception handler, which reports a panic.
|
|
*
|
|
* Declare this as a naked call so we can extract raw LR and IPSR values.
|
|
*/
|
|
void __keep exception_panic(void);
|
|
void exception_panic(void)
|
|
{
|
|
}
|
|
|
|
#ifdef CONFIG_SOFTWARE_PANIC
|
|
void software_panic(uint32_t reason, uint32_t info)
|
|
{
|
|
}
|
|
|
|
void panic_set_reason(uint32_t reason, uint32_t info, uint8_t exception)
|
|
{
|
|
}
|
|
|
|
void panic_get_reason(uint32_t *reason, uint32_t *info, uint8_t *exception)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
void bus_fault_handler(void)
|
|
{
|
|
if (!bus_fault_ignored)
|
|
exception_panic();
|
|
}
|
|
|
|
void ignore_bus_fault(int ignored)
|
|
{
|
|
bus_fault_ignored = ignored;
|
|
}
|