2015-07-08 15:39:24 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2016-02-16 19:09:00 +00:00
|
|
|
#ifndef __CORE_CONTROL_H__
|
|
|
|
#define __CORE_CONTROL_H__
|
2015-07-08 15:39:24 +00:00
|
|
|
|
2015-07-30 16:41:33 +00:00
|
|
|
#include <cstddef>
|
|
|
|
|
2015-08-21 00:11:08 +00:00
|
|
|
#include "memory_map.hpp"
|
2015-07-30 16:41:33 +00:00
|
|
|
#include "spi_image.hpp"
|
|
|
|
|
2023-02-16 12:09:23 +00:00
|
|
|
void m4_init(const portapack::spi_flash::image_tag_t image_tag, const portapack::memory::region_t to, const bool full_reset);
|
2023-10-02 18:19:22 +00:00
|
|
|
void m4_init_prepared(const uint32_t m4_code, const bool full_reset);
|
2015-08-21 01:03:49 +00:00
|
|
|
void m4_request_shutdown();
|
2015-07-08 15:39:24 +00:00
|
|
|
|
2016-02-16 19:04:35 +00:00
|
|
|
void m0_halt();
|
|
|
|
|
2023-05-18 20:16:05 +00:00
|
|
|
#endif /*__CORE_CONTROL_H__*/
|