2007-10-11 02:05:48 +08:00
|
|
|
/*
|
2008-05-28 15:31:26 +08:00
|
|
|
* YAFFS: Yet another Flash File System . A NAND-flash specific file system.
|
2007-10-11 02:05:48 +08:00
|
|
|
*
|
2013-12-16 15:51:19 +08:00
|
|
|
* Copyright (C) 2002-2011 Aleph One Ltd.
|
2007-10-11 02:05:48 +08:00
|
|
|
* for Toby Churchill Ltd and Brightstar Engineering
|
|
|
|
*
|
|
|
|
* Created by Charles Manning <charles@aleph1.co.uk>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 2.1 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __YPORTENV_H__
|
|
|
|
#define __YPORTENV_H__
|
|
|
|
|
2012-10-30 22:58:13 +08:00
|
|
|
/*
|
|
|
|
* Define the MTD version in terms of Linux Kernel versions
|
|
|
|
* This allows yaffs to be used independantly of the kernel
|
|
|
|
* as well as with it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MTD_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
|
|
|
|
|
2013-12-16 15:51:19 +08:00
|
|
|
#ifdef YAFFS_OUT_OF_TREE
|
2007-10-11 02:05:48 +08:00
|
|
|
#include "moduleconfig.h"
|
2013-12-16 15:51:19 +08:00
|
|
|
#endif
|
2012-10-30 22:58:13 +08:00
|
|
|
|
2007-10-11 02:05:48 +08:00
|
|
|
#include <linux/version.h>
|
2012-10-30 22:58:13 +08:00
|
|
|
#define MTD_VERSION_CODE LINUX_VERSION_CODE
|
|
|
|
|
|
|
|
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19))
|
2007-10-11 02:05:48 +08:00
|
|
|
#include <linux/config.h>
|
|
|
|
#endif
|
2013-12-16 15:51:19 +08:00
|
|
|
#include <linux/version.h>
|
2007-10-11 02:05:48 +08:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/mm.h>
|
2007-10-11 15:36:21 +08:00
|
|
|
#include <linux/sched.h>
|
2007-10-11 02:05:48 +08:00
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/vmalloc.h>
|
2012-10-30 22:58:17 +08:00
|
|
|
#include <linux/xattr.h>
|
2013-12-16 15:51:19 +08:00
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/stat.h>
|
|
|
|
#include <linux/sort.h>
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
|
|
|
|
/* These type wrappings are used to support Unicode names in WinCE. */
|
2007-10-11 02:05:48 +08:00
|
|
|
#define YCHAR char
|
|
|
|
#define YUCHAR unsigned char
|
|
|
|
#define _Y(x) x
|
|
|
|
|
|
|
|
#define YAFFS_LOSTNFOUND_NAME "lost+found"
|
|
|
|
#define YAFFS_LOSTNFOUND_PREFIX "obj"
|
|
|
|
|
|
|
|
|
2012-10-30 22:58:17 +08:00
|
|
|
#define YAFFS_ROOT_MODE 0755
|
|
|
|
#define YAFFS_LOSTNFOUND_MODE 0700
|
2007-10-11 02:05:48 +08:00
|
|
|
|
2012-10-30 22:58:13 +08:00
|
|
|
#if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
|
2007-10-11 02:05:48 +08:00
|
|
|
#define Y_CURRENT_TIME CURRENT_TIME.tv_sec
|
|
|
|
#define Y_TIME_CONVERT(x) (x).tv_sec
|
|
|
|
#else
|
|
|
|
#define Y_CURRENT_TIME CURRENT_TIME
|
|
|
|
#define Y_TIME_CONVERT(x) (x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define compile_time_assertion(assertion) \
|
|
|
|
({ int x = __builtin_choose_expr(assertion, 0, (void)0); (void) x; })
|
|
|
|
|
|
|
|
|
2013-12-16 15:51:19 +08:00
|
|
|
#define yaffs_printf(msk, fmt, ...) \
|
|
|
|
printk(KERN_DEBUG "yaffs: " fmt "\n", ##__VA_ARGS__)
|
2012-10-30 22:58:17 +08:00
|
|
|
|
2013-12-16 15:51:19 +08:00
|
|
|
#define yaffs_trace(msk, fmt, ...) do { \
|
|
|
|
if (yaffs_trace_mask & (msk)) \
|
|
|
|
printk(KERN_DEBUG "yaffs: " fmt "\n", ##__VA_ARGS__); \
|
2012-10-30 22:58:17 +08:00
|
|
|
} while (0)
|
2007-10-11 02:05:48 +08:00
|
|
|
|
2012-10-30 22:58:17 +08:00
|
|
|
|
2007-10-11 02:05:48 +08:00
|
|
|
#endif
|