-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
board common create generic dma allocator (from fat_dma_alloc)
- Loading branch information
Showing
16 changed files
with
233 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/**************************************************************************** | ||
* | ||
* Copyright (C) 2016-2019 PX4 Development Team. All rights reserved. | ||
* Author: David Sidrane <[email protected]> | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in | ||
* the documentation and/or other materials provided with the | ||
* distribution. | ||
* 3. Neither the name PX4 nor the names of its contributors may be | ||
* used to endorse or promote products derived from this software | ||
* without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | ||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | ||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
****************************************************************************/ | ||
|
||
/** | ||
* @file board_dma_alloc.h | ||
* | ||
* Provide DMA capable memory allocation interface | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <errno.h> | ||
#include <stdint.h> | ||
#include <stdbool.h> | ||
|
||
/************************************************************************************ | ||
* Name: board_dma_alloc_init | ||
* | ||
* Description: | ||
* All boards may optionally provide this API to instantiate a pool of | ||
* memory for uses with FAST FS DMA operations. | ||
* | ||
* Provision is controlled by declaring BOARD_DMA_ALLOC_POOL_SIZE in board_config.h | ||
* | ||
* Input Parameters: | ||
* None | ||
* | ||
* Returned Value: | ||
* Zero (OK) is returned on success; a negated errno value is returned on failure | ||
* EPERM - board does not support function | ||
* ENOMEM - There is not enough memory to satisfy allocation. | ||
* | ||
************************************************************************************/ | ||
#if defined(BOARD_DMA_ALLOC_POOL_SIZE) | ||
__EXPORT int board_dma_alloc_init(void); | ||
#else | ||
#define board_dma_alloc_init() (-EPERM) | ||
#endif | ||
|
||
/************************************************************************************ | ||
* Name: board_get_dma_usage | ||
* | ||
* Description: | ||
* All boards may optionally provide this API to supply instrumentation for a pool of | ||
* memory used for DMA operations. | ||
* | ||
* Provision is controlled by declaring BOARD_DMA_ALLOC_POOL_SIZE in board_config.h | ||
* | ||
* Input Parameters: | ||
* dma_total - A pointer to receive the total allocation size of the memory | ||
* allocated with board_dma_alloc_init. It should be equal to | ||
* BOARD_DMA_ALLOC_POOL_SIZE. | ||
* dma_used - A pointer to receive the current allocation in use. | ||
* dma_peak_used - A pointer to receive the peak allocation used. | ||
* | ||
* Returned Value: | ||
* Zero (OK) is returned on success; | ||
* | ||
************************************************************************************/ | ||
#if defined(BOARD_DMA_ALLOC_POOL_SIZE) | ||
__EXPORT int board_get_dma_usage(uint16_t *dma_total, uint16_t *dma_used, uint16_t *dma_peak_used); | ||
#else | ||
#define board_get_dma_usage(dma_total,dma_used, dma_peak_used) (-ENOMEM) | ||
#endif | ||
|
||
/************************************************************************************ | ||
* Name: dma_alloc | ||
* | ||
* Description: | ||
* All boards may optionally provide this API to supply DMA capable memory | ||
* | ||
* Input Parameters: | ||
* size - A pointer to receive the total allocation size of the memory | ||
* allocated with board_dma_alloc_init. It should be equal to | ||
* BOARD_DMA_ALLOC_POOL_SIZE. | ||
* | ||
* Returned Value: | ||
* Zero (OK) is returned on success; | ||
* | ||
************************************************************************************/ | ||
#if defined(BOARD_DMA_ALLOC_POOL_SIZE) | ||
__EXPORT void *board_dma_alloc(size_t size); | ||
#else | ||
#define board_dma_alloc(size) (NULL) | ||
#endif | ||
|
||
/************************************************************************************ | ||
* Name: dma_free | ||
* | ||
* Description: | ||
* All boards may optionally provide this API to supply DMA capable memory | ||
* | ||
* Input Parameters: | ||
* memory - A pointer to previously allocated DMA memory | ||
* size - Size of the previously allocated DMA memory | ||
* | ||
************************************************************************************/ | ||
#if defined(BOARD_DMA_ALLOC_POOL_SIZE) | ||
__EXPORT void board_dma_free(FAR void *memory, size_t size); | ||
#else | ||
#define board_dma_free(memory, size) () | ||
#endif |
Oops, something went wrong.