2021-04-07 21:11:01 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021 Aidan MacDonald
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __SPL_X1000_H__
|
|
|
|
#define __SPL_X1000_H__
|
|
|
|
|
2021-07-06 20:02:37 +00:00
|
|
|
#include "boot-x1000.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
2021-04-07 21:11:01 +00:00
|
|
|
|
2021-07-06 20:02:37 +00:00
|
|
|
/* Memory allocator. Allocation starts from the top of DRAM and counts down.
|
|
|
|
* Allocation sizes are rounded up to a multiple of the cacheline size, so
|
|
|
|
* the returned address is always suitably aligned for DMA. */
|
|
|
|
extern void* spl_alloc(size_t count);
|
2021-04-07 21:11:01 +00:00
|
|
|
|
2021-07-06 20:02:37 +00:00
|
|
|
/* Access to boot storage medium, eg. flash or MMC/SD card.
|
|
|
|
*
|
|
|
|
* Read address and length is given in bytes. To make life easier, no
|
|
|
|
* alignment restrictions are placed on the buffer, length, or address.
|
|
|
|
* The buffer doesn't even need to be in DRAM.
|
2021-04-15 02:00:04 +00:00
|
|
|
*/
|
2021-07-06 20:02:37 +00:00
|
|
|
extern int spl_storage_open(void);
|
|
|
|
extern void spl_storage_close(void);
|
|
|
|
extern int spl_storage_read(uint32_t addr, uint32_t length, void* buffer);
|
|
|
|
|
|
|
|
/* Called on a fatal error -- it should do something visible to the user
|
|
|
|
* like flash the backlight repeatedly. */
|
|
|
|
extern void spl_error(void) __attribute__((noreturn));
|
2021-04-15 02:00:04 +00:00
|
|
|
|
2021-04-07 21:11:01 +00:00
|
|
|
#endif /* __SPL_X1000_H__ */
|