summaryrefslogtreecommitdiffstats
path: root/target/linux/ifxmips/files/drivers/mtd/maps/ifxmips.c
blob: 4b9c6ef360f494f2954f611162bfbb69527d533d (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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
 *  Driver for IFXMIPS flashmap 
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Copyright (C) 2004 Liu Peng Infineon IFAP DC COM CPE
 * Copyright (C) 2007 John Crispin <blogic@openwrt.org>
 */

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

#define DRVNAME		"ifxmips_mtd"

static struct map_info
ifxmips_map = {
	.name = DRVNAME,
	.bankwidth = 2,
	.size = 0x400000,
};

static map_word
ifxmips_read16 (struct map_info * map, unsigned long adr)
{
	map_word temp;

	adr ^= 2;
	temp.x[0] = *((__u16 *) (map->virt + adr));

	return temp;
}

static void
ifxmips_write16 (struct map_info *map, map_word d, unsigned long adr)
{
	adr ^= 2;
	*((__u16 *) (map->virt + adr)) = d.x[0];
}

void
ifxmips_copy_from (struct map_info *map, void *to, unsigned long from, ssize_t len)
{
	u8 *p;
	u8 *to_8;

	from = (unsigned long) (from + map->virt);
	p = (u8 *) from;
	to_8 = (u8 *) to;
	while(len--){
		*to_8++ = *p++;
	}
}

void
ifxmips_copy_to (struct map_info *map, unsigned long to, const void *from, ssize_t len)
{
	u8 *p =  (u8*) from;
	u8 *to_8;

	to += (unsigned long) map->virt;
	to_8 = (u8*)to;
	while(len--){
		*p++ = *to_8++;
	}
}

static struct mtd_partition
ifxmips_partitions[4] = {
	{
		name:"U-Boot",
		offset:0x00000000,
		size:0x00020000,
	},
	{
		name:"U-Boot-Env",
		offset:0x00020000,
		size:0x00010000,
	},
	{
		name:"kernel",
		offset:0x00030000,
		size:0x0,
	},
	{
		name:"rootfs",
		offset:0x0,
		size:0x0,
	},
};

int
find_uImage_size (unsigned long start_offset){
	unsigned long temp;

	ifxmips_copy_from(&ifxmips_map, &temp, start_offset + 12, 4);
	printk(KERN_INFO DRVNAME ": kernel size is %ld \n", temp + 0x40);
	return temp + 0x40;
}

int
detect_squashfs_partition (unsigned long start_offset){
	unsigned long temp;

	ifxmips_copy_from(&ifxmips_map, &temp, start_offset, 4);

	return (temp == SQUASHFS_MAGIC);
}

static int
ifxmips_mtd_probe (void)
{
	struct mtd_info *ifxmips_mtd = NULL;
	struct mtd_partition *parts = NULL;
	unsigned long uimage_size;

	ifxmips_w32(0x1d7ff, IFXMIPS_EBU_BUSCON0);

	ifxmips_map.read = ifxmips_read16;
	ifxmips_map.write = ifxmips_write16;
	ifxmips_map.copy_from = ifxmips_copy_from;
	ifxmips_map.copy_to = ifxmips_copy_to;

	ifxmips_map.phys = IFXMIPS_FLASH_START;
	ifxmips_map.virt = ioremap_nocache(IFXMIPS_FLASH_START, IFXMIPS_FLASH_MAX);
	ifxmips_map.size = IFXMIPS_FLASH_MAX;
	if (!ifxmips_map.virt) {
		printk(KERN_WARNING DRVNAME ": failed to ioremap!\n");
		return -EIO;
	}

	ifxmips_mtd = (struct mtd_info *) do_map_probe("cfi_probe", &ifxmips_map);
	if (!ifxmips_mtd) {
		iounmap(ifxmips_map.virt);
		printk(KERN_WARNING DRVNAME ": probing failed\n");
		return -ENXIO;
	}

	ifxmips_mtd->owner = THIS_MODULE;

	uimage_size = find_uImage_size(ifxmips_partitions[2].offset);

	if(detect_squashfs_partition(ifxmips_partitions[2].offset + uimage_size)){
		printk(KERN_INFO DRVNAME ": found a squashfs following the uImage\n");
	} else {
		uimage_size &= ~0xffff;
		uimage_size += 0x10000;
	}

	ifxmips_partitions[2].size = uimage_size;
	ifxmips_partitions[3].offset = ifxmips_partitions[2].offset + ifxmips_partitions[2].size;
	ifxmips_partitions[3].size = ((ifxmips_mtd->size >> 20) * 1024 * 1024) - ifxmips_partitions[3].offset;

	parts = &ifxmips_partitions[0];
	add_mtd_partitions(ifxmips_mtd, parts, 4);

	printk(KERN_INFO DRVNAME ": added ifxmips flash with %dMB\n", ifxmips_mtd->size >> 20);
	return 0;
}

static struct 
platform_driver ifxmips_mtd_driver = { 
	.probe = ifxmips_mtd_probe, 
	.driver = { 
		.name = DRVNAME, 
		.owner = THIS_MODULE, 
	}, 
}; 

int __init
init_ifxmips_mtd (void)
{
	int ret = platform_driver_register(&ifxmips_mtd_driver); 
	if (ret) 
		printk(KERN_INFO DRVNAME ": error registering platfom driver!"); 

	return ret; 
}

static void
__exit
cleanup_ifxmips_mtd (void)
{
	platform_driver_unregister(&ifxmips_mtd_driver);
}

module_init (init_ifxmips_mtd);
module_exit (cleanup_ifxmips_mtd);

MODULE_LICENSE ("GPL");
MODULE_AUTHOR ("John Crispin <blogic@openwrt.org>");
MODULE_DESCRIPTION ("MTD map driver for IFXMIPS boards");