blob: 1ddff062ad7eeb62c9ad4afe140a43adf34c7417 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenkfe8c2802002-11-03 00:38:21 +00002#ifndef load_kernel_h
3#define load_kernel_h
4/*-------------------------------------------------------------------------
5 * Filename: load_kernel.h
6 * Version: $Id: load_kernel.h,v 1.3 2002/01/25 01:34:11 nyet Exp $
7 * Copyright: Copyright (C) 2001, Russ Dill
8 * Author: Russ Dill <Russ.Dill@asu.edu>
9 * Description: header for load kernel modules
10 *-----------------------------------------------------------------------*/
wdenkfe8c2802002-11-03 00:38:21 +000011
Wolfgang Denk700a0c62005-08-08 01:03:24 +020012#include <linux/list.h>
wdenkfe8c2802002-11-03 00:38:21 +000013
Wolfgang Denk700a0c62005-08-08 01:03:24 +020014/* mtd device types */
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +090015#define MTD_DEV_TYPE_NOR 0x0001
16#define MTD_DEV_TYPE_NAND 0x0002
17#define MTD_DEV_TYPE_ONENAND 0x0004
18
19#define MTD_DEV_TYPE(type) ((type == MTD_DEV_TYPE_NAND) ? "nand" : \
20 (type == MTD_DEV_TYPE_ONENAND) ? "onenand" : "nor")
wdenkfe8c2802002-11-03 00:38:21 +000021
Wolfgang Denk700a0c62005-08-08 01:03:24 +020022struct mtd_device {
23 struct list_head link;
24 struct mtdids *id; /* parent mtd id entry */
25 u16 num_parts; /* number of partitions on this device */
26 struct list_head parts; /* partitions */
wdenkfe8c2802002-11-03 00:38:21 +000027};
28
Wolfgang Denk700a0c62005-08-08 01:03:24 +020029struct part_info {
30 struct list_head link;
31 char *name; /* partition name */
32 u8 auto_name; /* set to 1 for generated name */
Paul Burton39ac3442013-09-04 15:16:57 +010033 u64 size; /* total size of the partition */
34 u64 offset; /* offset within device */
Wolfgang Denk700a0c62005-08-08 01:03:24 +020035 void *jffs2_priv; /* used internaly by jffs2 */
36 u32 mask_flags; /* kernel MTD mask flags */
Ilya Yanoke0b55322008-11-13 19:49:32 +030037 u32 sector_size; /* size of sector */
Wolfgang Denk700a0c62005-08-08 01:03:24 +020038 struct mtd_device *dev; /* parent device */
39};
wdenkfe8c2802002-11-03 00:38:21 +000040
Wolfgang Denk700a0c62005-08-08 01:03:24 +020041struct mtdids {
42 struct list_head link;
43 u8 type; /* device type */
44 u8 num; /* device number */
Paul Burton39ac3442013-09-04 15:16:57 +010045 u64 size; /* device size */
Wolfgang Denk700a0c62005-08-08 01:03:24 +020046 char *mtd_id; /* linux kernel device id */
wdenkfe8c2802002-11-03 00:38:21 +000047};
48
49#define ldr_strlen strlen
50#define ldr_strncmp strncmp
51#define ldr_memcpy memcpy
52#define putstr(x) printf("%s", x)
53#define mmalloc malloc
54#define UDEBUG printf
55
56#define putnstr(str, size) printf("%*.*s", size, size, str)
57#define ldr_output_string(x) puts(x)
58#define putLabeledWord(x, y) printf("%s %08x\n", x, (unsigned int)y)
59#define led_blink(x, y, z, a)
60
Kyungmin Park7e6ee7a2008-11-19 16:32:36 +010061/* common/cmd_jffs2.c */
62extern int mtdparts_init(void);
63extern int find_dev_and_part(const char *id, struct mtd_device **dev,
64 u8 *part_num, struct part_info **part);
Anatolij Gustschin3c950e22010-03-16 17:10:05 +010065extern struct mtd_device *device_find(u8 type, u8 num);
Kyungmin Park7e6ee7a2008-11-19 16:32:36 +010066
wdenkfe8c2802002-11-03 00:38:21 +000067#endif /* load_kernel_h */