⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 static-mem-allocate.c

📁 nandflash文件系统源代码
💻 C
字号:
/*
    Copyright (C) 2005-2008  Ricky Zheng <ricky_gz_zheng@yahoo.co.nz>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public
    License along with this library; if not, write to the Free
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

*/
/**
 * \file static-mem-allocate.c
 * \brief demostrate how to use static memory allocation. This example use file emulated NAND flash.
 * \author Ricky Zheng
 */

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "uffs/uffs_config.h"
#include "uffs/uffs_public.h"
#include "uffs/uffs_fs.h"
#include "uffs/uffs_utils.h"
#include "uffs/uffs_core.h"
#include "cmdline.h"
#include "uffs_fileem.h"

#define PFX "static-example: "

extern struct cli_commandset * get_helper_cmds(void);

#define DEFAULT_EMU_FILENAME "uffsemfile.bin"

#define PAGE_DATA_SIZE    512
#define PAGE_SPARE_SIZE   16
#define PAGES_PER_BLOCK   32
#define TOTAL_BLOCKS      128

#define MAN_ID          MAN_ID_SAMSUNG  // simulate Samsung's NAND flash

#define PAGE_SIZE					(PAGE_DATA_SIZE + PAGE_SPARE_SIZE)
#define BLOCK_DATA_SIZE				(PAGES_PER_BLOCK * PAGE_DATA_SIZE)
#define TOTAL_DATA_SIZE				(TOTAL_BLOCKS * BLOCK_DATA_SIZE)
#define BLOCK_SIZE					(PAGES_PER_BLOCK * PAGE_SIZE)
#define TOTAL_SIZE					(BLOCK_SIZE * TOTAL_BLOCKS)

#define MAX_MOUNT_TABLES		10
#define MAX_MOUNT_POINT_NAME	32

static uffs_Device demo_device = {0};
static struct uffs_mountTableSt demo_mount = {
  &demo_device,
  0,    /* start from block 0 */
  -1,   /* use whole chip */
  "/",  /* mount point */
  NULL
};

static struct uffs_storageAttrSt emu_storage = {0};
static struct uffs_FileEmuSt emu_private = {0};

/* static alloc the memory */
static int static_buffer[(UFFS_BLOCK_INFO_BUFFER_SIZE(PAGES_PER_BLOCK) + UFFS_PAGE_BUFFER_SIZE(PAGE_SIZE) + UFFS_TREE_BUFFER_SIZE(TOTAL_BLOCKS) + PAGE_SIZE) / sizeof(int)];
static struct uffs_memAllocatorSt static_allocator = {0};

/* init memory allocator, setup buffer sizes */
static URET static_mem_alloc_init(struct uffs_DeviceSt *dev)
{
  struct uffs_memAllocatorSt *mem = &dev->mem;
  mem->buf_start = (unsigned char *)static_buffer;
  mem->buf_size = sizeof(static_buffer);
  mem->pos = 0;

  uffs_Perror(UFFS_ERR_NOISY, PFX"Total static memory: %d bytes\n", mem->buf_size);

  return U_SUCC;
}
  
/* allocate memory (for dynamic memory allocation) */
static void * static_mem_alloc_malloc(struct uffs_DeviceSt *dev, unsigned int size)
{
  struct uffs_memAllocatorSt *mem = &dev->mem;
  void *p = NULL;

  if (mem->buf_size - mem->pos < (int)size) {
    uffs_Perror(UFFS_ERR_SERIOUS, PFX"Memory alloc failed! (alloc %d, free %d)\n", size, mem->buf_size - mem->pos);
  }
  else {
    p = mem->buf_start + size;
    mem->pos += size;
    uffs_Perror(UFFS_ERR_NOISY, PFX"Allocated %d, free %d\n", size, mem->buf_size - mem->pos);
  }

  return p;
}


static void setup_emu_storage(struct uffs_storageAttrSt *attr)
{
	attr->dev_type =	UFFS_DEV_EMU;			/* dev_type */
	attr->maker = MAN_ID;			        	/* simulate manufacture ID */
	attr->id = 0xe3;							      /* chip id, can be ignored. */
	attr->total_blocks = TOTAL_BLOCKS;			  /* total blocks */
	attr->block_data_size = BLOCK_DATA_SIZE;	/* block data size */
	attr->page_data_size = PAGE_DATA_SIZE;		/* page data size */
	attr->spare_size = PAGE_SPARE_SIZE;		  	/* page spare size */
	attr->pages_per_block = PAGES_PER_BLOCK;	/* pages per block */
	attr->block_status_offs = 5;              /* block status offset is 5th byte in spare */
}

static void setup_emu_private(uffs_FileEmu *emu)
{
	memset(emu, 0, sizeof(uffs_FileEmu));
	emu->emu_filename = DEFAULT_EMU_FILENAME;
}

static int init_uffs_fs(void)
{
	struct uffs_mountTableSt *mtbl = &demo_mount;
  struct uffs_memAllocatorSt *mem;

  /* setup emu storage */
	setup_emu_storage(&emu_storage);
	setup_emu_private(&emu_private);
	emu_storage.private = &emu_private;
  mtbl->dev->attr = &emu_storage;

  /* setup memory allocator */
  mem = &mtbl->dev->mem;
  memset(mem, 0, sizeof(struct uffs_memAllocatorSt));
  mem->init = static_mem_alloc_init;
  mem->malloc = static_mem_alloc_malloc;

  /* setup device */
  uffs_fileem_setup_device(mtbl->dev);

  /* register mount table */
  uffs_RegisterMountTable(mtbl);

	return uffs_initMountTable() == U_SUCC ? 0 : -1;
}

static int release_uffs_fs(void)
{
	return uffs_releaseMountTable();
}

int main(int argc, char *argv[])
{
	int ret;

	ret = init_uffs_fs();
	if (ret != 0) {
		printf ("Init file system fail: %d\n", ret);
		return -1;
	}

	if (uffs_InitObjectBuf() == U_SUCC) {
		cli_add_commandset(get_helper_cmds());
		cliMain();
		uffs_ReleaseObjectBuf();
	}
	else {
		printf("Fail to init Object buffer.\n");
	}

	release_uffs_fs();

	return 0;
}


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -