1 // SPDX-License-Identifier: GPL-2.0
2 /***************************************************************************/
5 * firebee.c -- extra startup code support for the FireBee boards
7 * Copyright (C) 2011, Greg Ungerer (gerg@snapgear.com)
10 /***************************************************************************/
12 #include <linux/kernel.h>
13 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/mtd/mtd.h>
17 #include <linux/mtd/partitions.h>
18 #include <linux/mtd/physmap.h>
19 #include <asm/coldfire.h>
20 #include <asm/mcfsim.h>
22 /***************************************************************************/
25 * 8MB of NOR flash fitted to the FireBee board.
27 #define FLASH_PHYS_ADDR 0xe0000000 /* Physical address of flash */
28 #define FLASH_PHYS_SIZE 0x00800000 /* Size of flash */
30 #define PART_BOOT_START 0x00000000 /* Start at bottom of flash */
31 #define PART_BOOT_SIZE 0x00040000 /* 256k in size */
32 #define PART_IMAGE_START 0x00040000 /* Start after boot loader */
33 #define PART_IMAGE_SIZE 0x006c0000 /* Most of flash */
34 #define PART_FPGA_START 0x00700000 /* Start at offset 7MB */
35 #define PART_FPGA_SIZE 0x00100000 /* 1MB in size */
37 static struct mtd_partition firebee_flash_parts
[] = {
40 .offset
= PART_BOOT_START
,
41 .size
= PART_BOOT_SIZE
,
45 .offset
= PART_FPGA_START
,
46 .size
= PART_FPGA_SIZE
,
50 .offset
= PART_IMAGE_START
,
51 .size
= PART_IMAGE_SIZE
,
55 static struct physmap_flash_data firebee_flash_data
= {
57 .nr_parts
= ARRAY_SIZE(firebee_flash_parts
),
58 .parts
= firebee_flash_parts
,
61 static struct resource firebee_flash_resource
= {
62 .start
= FLASH_PHYS_ADDR
,
63 .end
= FLASH_PHYS_ADDR
+ FLASH_PHYS_SIZE
,
64 .flags
= IORESOURCE_MEM
,
67 static struct platform_device firebee_flash
= {
68 .name
= "physmap-flash",
71 .platform_data
= &firebee_flash_data
,
74 .resource
= &firebee_flash_resource
,
77 /***************************************************************************/
79 static int __init
init_firebee(void)
81 platform_device_register(&firebee_flash
);
85 arch_initcall(init_firebee
);
87 /***************************************************************************/