2016-09-02 20:00:30 -04:00
|
|
|
/*
|
2017-08-27 15:02:50 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2016-09-02 20:00:30 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2018-10-19 21:46:22 -04:00
|
|
|
* Copyright (c) 2018 Scott Shawcroft for Adafruit Industries LLC
|
2016-09-02 20:00:30 -04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2018-10-19 21:46:22 -04:00
|
|
|
#ifndef MICROPY_INCLUDED_SUPERVISOR_SPI_FLASH_H
|
|
|
|
#define MICROPY_INCLUDED_SUPERVISOR_SPI_FLASH_H
|
2016-10-05 14:07:29 -04:00
|
|
|
|
2016-10-28 23:16:39 -04:00
|
|
|
#include <stdbool.h>
|
2018-02-16 17:00:26 -05:00
|
|
|
#include <stdint.h>
|
2016-10-28 23:16:39 -04:00
|
|
|
|
2021-03-25 13:03:05 -04:00
|
|
|
#include "shared/external_flash/device.h"
|
2018-03-22 19:42:47 -04:00
|
|
|
|
2020-01-17 13:31:12 -05:00
|
|
|
#include "shared-bindings/busio/SPI.h"
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
extern busio_spi_obj_t supervisor_flash_spi_bus; // Used to share SPI bus on some boards
|
2020-01-17 13:31:12 -05:00
|
|
|
|
2018-02-16 17:00:26 -05:00
|
|
|
// This API is implemented for both normal SPI peripherals and QSPI peripherals.
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2018-02-16 20:22:33 -05:00
|
|
|
bool spi_flash_command(uint8_t command);
|
2021-03-15 09:57:36 -04:00
|
|
|
bool spi_flash_read_command(uint8_t command, uint8_t *response, uint32_t length);
|
|
|
|
bool spi_flash_write_command(uint8_t command, uint8_t *data, uint32_t length);
|
2018-02-16 17:00:26 -05:00
|
|
|
bool spi_flash_sector_command(uint8_t command, uint32_t address);
|
2021-03-15 09:57:36 -04:00
|
|
|
bool spi_flash_write_data(uint32_t address, uint8_t *data, uint32_t data_length);
|
|
|
|
bool spi_flash_read_data(uint32_t address, uint8_t *data, uint32_t data_length);
|
2016-10-13 17:53:31 -04:00
|
|
|
void spi_flash_init(void);
|
2021-03-15 09:57:36 -04:00
|
|
|
void spi_flash_init_device(const external_flash_device *device);
|
2016-10-05 14:07:29 -04:00
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
#endif // MICROPY_INCLUDED_SUPERVISOR_SPI_FLASH_H
|