blob: fa4600e84fc0628392f7cd11ede664b3746cd5cc [file] [log] [blame]
Tom Rini10e47792018-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 Denk47f57792005-08-08 01:03:24 +020012#include <linux/list.h>
Tom Rinidec7ea02024-05-20 13:35:03 -060013#include <linux/string.h>
wdenkfe8c2802002-11-03 00:38:21 +000014
Wolfgang Denk47f57792005-08-08 01:03:24 +020015/* mtd device types */
Kyungmin Park25383742008-08-27 14:45:20 +090016#define MTD_DEV_TYPE_NOR 0x0001
17#define MTD_DEV_TYPE_NAND 0x0002
18#define MTD_DEV_TYPE_ONENAND 0x0004
Miquel Raynalceb9cae2018-09-06 09:08:45 +020019#define MTD_DEV_TYPE_SPINAND 0x0008
Kyungmin Park25383742008-08-27 14:45:20 +090020
Miquel Raynalceb9cae2018-09-06 09:08:45 +020021#define MTD_DEV_TYPE(type) (type == MTD_DEV_TYPE_NAND ? "nand" : \
22 (type == MTD_DEV_TYPE_NOR ? "nor" : \
23 (type == MTD_DEV_TYPE_ONENAND ? "onenand" : \
24 "spi-nand"))) \
wdenkfe8c2802002-11-03 00:38:21 +000025
Wolfgang Denk47f57792005-08-08 01:03:24 +020026struct mtd_device {
27 struct list_head link;
28 struct mtdids *id; /* parent mtd id entry */
29 u16 num_parts; /* number of partitions on this device */
30 struct list_head parts; /* partitions */
wdenkfe8c2802002-11-03 00:38:21 +000031};
32
Wolfgang Denk47f57792005-08-08 01:03:24 +020033struct part_info {
34 struct list_head link;
35 char *name; /* partition name */
36 u8 auto_name; /* set to 1 for generated name */
Paul Burton5f578df2013-09-04 15:16:57 +010037 u64 size; /* total size of the partition */
38 u64 offset; /* offset within device */
Wolfgang Denk47f57792005-08-08 01:03:24 +020039 void *jffs2_priv; /* used internaly by jffs2 */
40 u32 mask_flags; /* kernel MTD mask flags */
Ilya Yanok85cceb52008-11-13 19:49:32 +030041 u32 sector_size; /* size of sector */
Wolfgang Denk47f57792005-08-08 01:03:24 +020042 struct mtd_device *dev; /* parent device */
43};
wdenkfe8c2802002-11-03 00:38:21 +000044
Wolfgang Denk47f57792005-08-08 01:03:24 +020045struct mtdids {
46 struct list_head link;
47 u8 type; /* device type */
48 u8 num; /* device number */
Paul Burton5f578df2013-09-04 15:16:57 +010049 u64 size; /* device size */
Wolfgang Denk47f57792005-08-08 01:03:24 +020050 char *mtd_id; /* linux kernel device id */
wdenkfe8c2802002-11-03 00:38:21 +000051};
52
53#define ldr_strlen strlen
54#define ldr_strncmp strncmp
55#define ldr_memcpy memcpy
56#define putstr(x) printf("%s", x)
57#define mmalloc malloc
58#define UDEBUG printf
59
60#define putnstr(str, size) printf("%*.*s", size, size, str)
61#define ldr_output_string(x) puts(x)
62#define putLabeledWord(x, y) printf("%s %08x\n", x, (unsigned int)y)
63#define led_blink(x, y, z, a)
64
Kyungmin Parkad7ae362008-11-19 16:32:36 +010065/* common/cmd_jffs2.c */
66extern int mtdparts_init(void);
67extern int find_dev_and_part(const char *id, struct mtd_device **dev,
68 u8 *part_num, struct part_info **part);
Anatolij Gustschin6c44c382010-03-16 17:10:05 +010069extern struct mtd_device *device_find(u8 type, u8 num);
Kyungmin Parkad7ae362008-11-19 16:32:36 +010070
wdenkfe8c2802002-11-03 00:38:21 +000071#endif /* load_kernel_h */