Commit 3abe742339567ac5d63c520834826aacd9b5d5f6

Authored by Andrea Adami
Committed by Russell King
1 parent 92183103d8

ARM: 8085/1: sa1100: collie: add top boot mtd partition

The CFI mapping is now perfect so we can expose the top block, read only.
There isn't much to read, though, just the sharpsl_params values.

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

Showing 1 changed file with 5 additions and 0 deletions Side-by-side Diff

arch/arm/mach-sa1100/collie.c
... ... @@ -329,6 +329,11 @@
329 329 .name = "rootfs",
330 330 .offset = MTDPART_OFS_APPEND,
331 331 .size = 0x00e20000,
  332 + }, {
  333 + .name = "bootblock",
  334 + .offset = MTDPART_OFS_APPEND,
  335 + .size = 0x00020000,
  336 + .mask_flags = MTD_WRITEABLE
332 337 }
333 338 };
334 339