2 * Header file for UBI support for U-Boot
4 * Adaptation from kernel to U-Boot
6 * Copyright (C) 2005-2007 Samsung Electronics
7 * Kyungmin Park <kyungmin.park@samsung.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
21 #include <linux/crc32.h>
22 #include <linux/types.h>
23 #include <linux/list.h>
24 #include <linux/rbtree.h>
25 #include <linux/string.h>
26 #include <linux/mtd/mtd.h>
27 #include <linux/mtd/ubi.h>
29 #ifdef CONFIG_CMD_ONENAND
30 #include <onenand_uboot.h>
33 #include <asm/errno.h>
35 #define DPRINTK(format, args...) \
37 printf("%s[%d]: " format "\n", __func__, __LINE__, ##args); \
41 #define CONFIG_MTD_UBI_WL_THRESHOLD 4096
42 #define CONFIG_MTD_UBI_BEB_RESERVE 1
43 #define UBI_IO_DEBUG 0
45 /* debug options (Linux: drivers/mtd/ubi/Kconfig.debug) */
46 #undef CONFIG_MTD_UBI_DEBUG
47 #undef CONFIG_MTD_UBI_DEBUG_PARANOID
48 #undef CONFIG_MTD_UBI_DEBUG_MSG
49 #undef CONFIG_MTD_UBI_DEBUG_MSG_EBA
50 #undef CONFIG_MTD_UBI_DEBUG_MSG_WL
51 #undef CONFIG_MTD_UBI_DEBUG_MSG_IO
52 #undef CONFIG_MTD_UBI_DEBUG_MSG_BLD
53 #define CONFIG_MTD_UBI_DEBUG_DISABLE_BGT
56 #define get_device(...)
57 #define put_device(...)
58 #define ubi_sysfs_init(...) 0
59 #define ubi_sysfs_close(...) do { } while (0)
60 static inline int is_power_of_2(unsigned long n)
62 return (n != 0 && ((n & (n - 1)) == 0));
70 #define alloc_chrdev_region(...) 0
71 #define unregister_chrdev_region(...)
73 #define class_create(...) __builtin_return_address(0)
74 #define class_create_file(...) 0
75 #define class_remove_file(...)
76 #define class_destroy(...)
77 #define misc_register(...) 0
78 #define misc_deregister(...)
81 #define device_register(...) 0
82 #define volume_sysfs_init(...) 0
83 #define volume_sysfs_close(...) do { } while (0)
90 #define init_waitqueue_head(...) do { } while (0)
91 #define wait_event_interruptible(...) 0
92 #define wake_up_interruptible(...) do { } while (0)
93 #define print_hex_dump(...) do { } while (0)
94 #define dump_stack(...) do { } while (0)
97 #define task_pid_nr(x) 0
98 #define set_freezable(...) do { } while (0)
99 #define try_to_freeze(...) 0
100 #define set_current_state(...) do { } while (0)
101 #define kthread_should_stop(...) 0
102 #define schedule() do { } while (0)
105 static inline unsigned long copy_from_user(void *dest, const void *src,
108 memcpy((void *)dest, (void *)src, count);
113 typedef int spinlock_t;
114 typedef int wait_queue_head_t;
115 #define spin_lock_init(...)
116 #define spin_lock(...)
117 #define spin_unlock(...)
119 #define mutex_init(...)
120 #define mutex_lock(...)
121 #define mutex_unlock(...)
123 #define init_rwsem(...) do { } while (0)
124 #define down_read(...) do { } while (0)
125 #define down_write(...) do { } while (0)
126 #define down_write_trylock(...) 1
127 #define up_read(...) do { } while (0)
128 #define up_write(...) do { } while (0)
130 struct kmem_cache { int i; };
131 #define kmem_cache_create(...) 1
132 #define kmem_cache_alloc(obj, gfp) malloc(sizeof(struct ubi_wl_entry))
133 #define kmem_cache_free(obj, size) free(size)
134 #define kmem_cache_destroy(...)
136 #define cond_resched() do { } while (0)
137 #define yield() do { } while (0)
151 #define kthread_create(...) __builtin_return_address(0)
152 #define kthread_stop(...) do { } while (0)
153 #define wake_up_process(...) do { } while (0)
155 #define BUS_ID_SIZE 20
157 struct rw_semaphore { int i; };
159 struct device *parent;
161 char bus_id[BUS_ID_SIZE]; /* position on parent bus */
162 dev_t devt; /* dev_t, creates the sysfs "dev" */
163 void (*release)(struct device *dev);
165 struct mutex { int i; };
166 struct kernel_param { int i; };
172 #define cdev_init(...) do { } while (0)
173 #define cdev_add(...) 0
174 #define cdev_del(...) do { } while (0)
176 #define MAX_ERRNO 4095
177 #define IS_ERR_VALUE(x) ((x) >= (unsigned long)-MAX_ERRNO)
179 static inline void *ERR_PTR(long error)
181 return (void *) error;
184 static inline long PTR_ERR(const void *ptr)
189 static inline long IS_ERR(const void *ptr)
191 return IS_ERR_VALUE((unsigned long)ptr);
195 #define THIS_MODULE 0
196 #define try_module_get(...) 1
197 #define module_put(...) do { } while (0)
198 #define module_init(...)
199 #define module_exit(...)
200 #define EXPORT_SYMBOL(...)
201 #define EXPORT_SYMBOL_GPL(...)
202 #define module_param_call(...)
203 #define MODULE_PARM_DESC(...)
204 #define MODULE_VERSION(...)
205 #define MODULE_DESCRIPTION(...)
206 #define MODULE_AUTHOR(...)
207 #define MODULE_LICENSE(...)
210 #include "../drivers/mtd/ubi/ubi.h"
214 extern int ubi_mtd_param_parse(const char *val, struct kernel_param *kp);
215 extern int ubi_init(void);
216 extern void ubi_exit(void);
218 extern struct ubi_device *ubi_devices[];