153 #define BLK_SIZE (0x20000) //128KB
154 static struct mtd_partition __initdata smartarm3250_nand_partition[] = {
155 {
156 .name = "smartarm3250-boot",
157 .offset = 0,
158 .size = (BLK_SIZE * 12)
159 },
160 {
161 .name = "smartarm3250-ubt-prms",
162 .offset = (BLK_SIZE * 12),
163 .size = (BLK_SIZE * 2)
164 },
165 {
166 .name = "smartarm3250-kernel",
167 .offset = (BLK_SIZE * 16),
168 .size = (BLK_SIZE * 32)
169 },
170 {
171 .name = "smartarm3250-rootfs",
172 .offset = (BLK_SIZE * 48),
173 .size = MTDPART_SIZ_FULL
174 },
175 };