summaryrefslogtreecommitdiffstats
path: root/target/linux/adm8668/files/drivers/mtd/maps/adm8668.c
blob: 903decc7b179e3bfc9b9437b46b9b8435acc0bc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 * Copyright (C) 2010 Scott Nicholas <neutronscott@scottn.us>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>
#include <linux/mtd/partitions.h>
#include <linux/magic.h>
#include <asm/io.h>

#define	FLASH_SIZE	0x800000
#define	FLASH_PHYS_ADDR	0x10000000

/* just interested in part of the full struct */
struct squashfs_super_block {
	__le32	s_magic;
	__le32	pad0[9];	/* it's not really padding */
	__le64	bytes_used;
};

static struct mtd_info *mymtd;

static struct map_info nor_map = {
	name:		"adm8668-nor",
	size:		FLASH_SIZE,
	phys:		FLASH_PHYS_ADDR,
	bankwidth:	2,
};

static struct mtd_partition nor_parts[] = {
	{ name: "linux",  offset: 0x40000,  size: FLASH_SIZE - 0x40000, },
	{ name: "rootfs", offset: 0x200000, size: 0x400000, },
	{ name: NULL, },
};

int __init init_mtd_partitions(struct mtd_info *mtd, size_t size)
{
	int blocksize, off;
	size_t len;
	struct squashfs_super_block hdr;

	blocksize = mtd->erasesize;
	if (blocksize < 0x10000)
		blocksize = 0x10000;

	memset(&hdr, 0xe5, sizeof(hdr));
	/* find and size squashfs */
	for (off = (128*1024); off < size; off += blocksize) {
		if (mtd->read(mtd, off, sizeof(hdr), &len, (char *)&hdr) ||
		    len != sizeof(hdr))
			continue;

		if (hdr.s_magic == SQUASHFS_MAGIC) {
			printk(KERN_INFO "%s: Filesystem type: squashfs, off=%#x size=%#x\n",
				mtd->name, off, (unsigned int)hdr.bytes_used);
			/* Update the squashfs start address only! */
			nor_parts[1].offset = off;
			nor_parts[1].size = FLASH_SIZE - off;
			return 2;
		}
	}
	return 2;
}

int __init init_nor(void)
{
	int nr_parts;

	printk(KERN_NOTICE "ADM8668 NOR flash device: %#x at %#x\n",
			FLASH_SIZE, FLASH_PHYS_ADDR);

	nor_map.virt = ioremap(FLASH_PHYS_ADDR,	FLASH_SIZE);
	if (!nor_map.virt) {
		printk("Failed to ioremap\n");
		return -EIO;
	}

	simple_map_init(&nor_map);
	mymtd = do_map_probe("cfi_probe", &nor_map);
	if (!mymtd) {
		iounmap((void *)nor_map.virt);
		return -ENXIO;
	}
	mymtd->owner = THIS_MODULE;
	nr_parts = init_mtd_partitions(mymtd, mymtd->size);
	add_mtd_partitions(mymtd, nor_parts, nr_parts);

	return 0;
}

static void __exit cleanup_nor(void)
{
	if (mymtd) {
		del_mtd_partitions(mymtd);
		map_destroy(mymtd);
	}
	if (nor_map.virt) {
		iounmap((void *)nor_map.virt);
		nor_map.virt = 0;
	}
}

module_init(init_nor);
module_exit(cleanup_nor);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Scott Nicholas <neutronscott@scottn.us>");
MODULE_DESCRIPTION("MTD map driver for ADM8668 NOR Flash");