walnux/libs/libc/misc/lib_memoryregion.c
anjiahao 542a5555d3 libc:add parse_memory_range to parse memory string
Signed-off-by: anjiahao <anjiahao@xiaomi.com>
2023-12-10 07:02:03 -08:00

80 lines
2.7 KiB
C

/****************************************************************************
* libs/libc/misc/lib_memoryregion.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/memoryregion.h>
#include <stdlib.h>
#include <errno.h>
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: parse_memory_region
*
* Input Parameters:
* format - The format string to parse. <start>,<end>,<flags>,...
* start - The start address of the memory region
* end - The end address of the memory region
* flags - Readable 0x1, writable 0x2, executable 0x4
* region - The memory region to populate
* num - The number of memory regions to parse
*
* example: 0x1000,0x2000,0x1,0x2000,0x3000,0x3,0x3000,0x4000,0x7
*
****************************************************************************/
ssize_t parse_memory_region(FAR const char *format,
FAR struct memory_region_s *region,
size_t num)
{
FAR char *endptr;
size_t i = 0;
if (format == NULL || region == NULL || num == 0)
{
return -EINVAL;
}
while (*format != '\0' && i < num * 3)
{
if (i % 3 == 0)
{
region[i / 3].start = strtoul(format, &endptr, 0);
}
else if (i % 3 == 1)
{
region[i / 3].end = strtoul(format, &endptr, 0);
}
else if (i % 3 == 2)
{
region[i / 3].flags = strtoul(format, &endptr, 0);
}
format = endptr + 1;
i++;
}
return i / 3;
}