px4_manifest:Add Queries

This commit is contained in:
David Sidrane
2020-11-20 11:25:51 -08:00
committed by Daniel Agar
parent 68ab736b16
commit e83a00c604
7 changed files with 324 additions and 0 deletions

View File

@@ -41,6 +41,8 @@ typedef enum {
MTD_ID = 5,
MTD_NET = 6,
} px4_mtd_types_t;
#define PX4_MFT_MTD_TYPES {MTD_PARAMETERS, MTD_WAYPOINTS, MTD_CALDATA, MTD_MFT, MTD_ID, MTD_NET}
#define PX4_MFT_MTD_STR_TYPES {"MTD_PARAMETERS", "MTD_WAYPOINTS", "MTD_CALDATA", "MTD_MFT", "MTD_ID", "MTD_NET"}
typedef struct {
const px4_mtd_types_t type;
@@ -77,4 +79,27 @@ __BEGIN_DECLS
__EXPORT int px4_mtd_config(const px4_mtd_manifest_t *mft_mtd);
/************************************************************************************
* Name: px4_mtd_query
*
* Description:
* A Query interface that will lookup a type and either a) verify it exists by
* value.
*
* or it will return the path for a type.
*
*
* Input Parameters:
* type - a string-ized version of px4_mtd_types_t
* value - string to verity is that type.
* get - a pointer to a string to optionally return the path for the type.
*
* Returned Value:
* non zero if error
* 0 (get == null) item by type and value was found.
* 0 (get !=null) item by type's value is returned at get;
*
************************************************************************************/
__EXPORT int px4_mtd_query(const char *type, const char *val, const char **get = nullptr);
__END_DECLS

View File

@@ -36,8 +36,12 @@
typedef enum {
MFT = 0,
MTD = 1,
LAST_MFT_TYPE
} px4_manifest_types_e;
/* must match px4_manifest_types_e */
#define PX4_MFT_TYPES {MFT, MTD}
#define PX4_MFT_STR_TYPES {"MFT", "MTD"}
typedef struct {
@@ -99,4 +103,22 @@ __EXPORT const px4_mft_s *board_get_manifest(void);
************************************************************************************/
__EXPORT int px4_mft_configure(const px4_mft_s *mft);
/************************************************************************************
* Name: px4_mft_configure
*
* Description:
* The Px4 layer will provide this interface to start/configure the
* hardware.
*
* Input Parameters:
* mft - a pointer to the manifest
*
* Returned Value:
* non zero if error
*
************************************************************************************/
__EXPORT int px4_mft_query(const px4_mft_s *mft, px4_manifest_types_e type,
const char *sub, const char *val);
__END_DECLS

View File

@@ -40,6 +40,7 @@ __BEGIN_DECLS
typedef struct {
struct mtd_dev_s *mtd_dev;
int *partition_block_counts;
int *partition_types;
const char **partition_names;
struct mtd_dev_s **part_dev;
uint32_t devid;

View File

@@ -87,3 +87,27 @@ __EXPORT int px4_mft_configure(const px4_mft_s *mft)
return 0;
}
__EXPORT int px4_mft_query(const px4_mft_s *mft, px4_manifest_types_e type,
const char *sub, const char *val)
{
int rv = -EINVAL;
if (mft != nullptr) {
for (uint32_t m = 0; m < mft->nmft; m++) {
if (mft->mfts[m].type == type)
switch (type) {
case MTD:
return px4_mtd_query(sub, val);
break;
case MFT:
default:
rv = -ENODATA;
break;
}
}
}
return rv;
}

View File

@@ -51,6 +51,7 @@
#include <errno.h>
#include <stdbool.h>
#include "systemlib/px4_macros.h"
#include <nuttx/drivers/drivers.h>
#include <nuttx/spi/spi.h>
@@ -312,6 +313,12 @@ memoryout:
goto memoryout;
}
instances[i].partition_types = new int[nparts];
if (instances[i].partition_types == nullptr) {
goto memoryout;
}
instances[i].partition_names = new const char *[nparts];
if (instances[i].partition_names == nullptr) {
@@ -321,6 +328,7 @@ memoryout:
for (uint32_t p = 0; p < nparts; p++) {
instances[i].partition_block_counts[p] = mtd_list->entries[i]->partd[p].nblocks;
instances[i].partition_names[p] = mtd_list->entries[i]->partd[p].path;
instances[i].partition_types[p] = mtd_list->entries[i]->partd[p].type;
}
if (mtd_list->entries[i]->device->bus_type == px4_mft_device_t::I2C) {
@@ -406,3 +414,46 @@ errout:
return rv;
}
__EXPORT int px4_mtd_query(const char *sub, const char *val, const char **get)
{
int rv = -ENODEV;
if (instances != nullptr) {
static const char *keys[] = PX4_MFT_MTD_STR_TYPES;
static const px4_mtd_types_t types[] = PX4_MFT_MTD_TYPES;
int key = 0;
for (unsigned int k = 0; k < arraySize(keys); k++) {
if (!strcmp(keys[k], sub)) {
key = types[k];
break;
}
}
rv = -EINVAL;
if (key != 0) {
rv = -ENOENT;
for (int i = 0; i < num_instances; i++) {
for (unsigned n = 0; n < instances[i].n_partitions_current; n++) {
if (instances[i].partition_types[n] == key) {
if (get != nullptr && val == nullptr) {
*get = instances[i].partition_names[n];
return 0;
}
if (val != nullptr && strcmp(instances[i].partition_names[n], val) == 0) {
return 0;
}
}
}
}
}
}
return rv;
}