Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
dev-flash.c
Go to the documentation of this file.
1 /*
2  * Broadcom BCM63xx flash registration
3  *
4  * This file is subject to the terms and conditions of the GNU General Public
5  * License. See the file "COPYING" in the main directory of this archive
6  * for more details.
7  *
8  * Copyright (C) 2008 Maxime Bizon <[email protected]>
9  * Copyright (C) 2008 Florian Fainelli <[email protected]>
10  * Copyright (C) 2012 Jonas Gorski <[email protected]>
11  */
12 
13 #include <linux/init.h>
14 #include <linux/kernel.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 
20 #include <bcm63xx_cpu.h>
21 #include <bcm63xx_dev_flash.h>
22 #include <bcm63xx_regs.h>
23 #include <bcm63xx_io.h>
24 
25 static struct mtd_partition mtd_partitions[] = {
26  {
27  .name = "cfe",
28  .offset = 0x0,
29  .size = 0x40000,
30  }
31 };
32 
33 static const char *bcm63xx_part_types[] = { "bcm63xxpart", NULL };
34 
35 static struct physmap_flash_data flash_data = {
36  .width = 2,
37  .parts = mtd_partitions,
38  .part_probe_types = bcm63xx_part_types,
39 };
40 
41 static struct resource mtd_resources[] = {
42  {
43  .start = 0, /* filled at runtime */
44  .end = 0, /* filled at runtime */
45  .flags = IORESOURCE_MEM,
46  }
47 };
48 
49 static struct platform_device mtd_dev = {
50  .name = "physmap-flash",
51  .resource = mtd_resources,
52  .num_resources = ARRAY_SIZE(mtd_resources),
53  .dev = {
54  .platform_data = &flash_data,
55  },
56 };
57 
58 static int __init bcm63xx_detect_flash_type(void)
59 {
60  u32 val;
61 
62  switch (bcm63xx_get_cpu_id()) {
63  case BCM6328_CPU_ID:
67  else
69  case BCM6338_CPU_ID:
70  case BCM6345_CPU_ID:
71  case BCM6348_CPU_ID:
72  /* no way to auto detect so assume parallel */
74  case BCM6358_CPU_ID:
78  else
80  case BCM6368_CPU_ID:
82  switch (val & STRAPBUS_6368_BOOT_SEL_MASK) {
89  }
90  default:
91  return -EINVAL;
92  }
93 }
94 
96 {
97  int flash_type;
98  u32 val;
99 
100  flash_type = bcm63xx_detect_flash_type();
101 
102  switch (flash_type) {
104  /* read base address of boot chip select (0) */
105  val = bcm_mpi_readl(MPI_CSBASE_REG(0));
106  val &= MPI_CSBASE_BASE_MASK;
107 
108  mtd_resources[0].start = val;
109  mtd_resources[0].end = 0x1FFFFFFF;
110 
111  return platform_device_register(&mtd_dev);
113  pr_warn("unsupported serial flash detected\n");
114  return -ENODEV;
116  pr_warn("unsupported NAND flash detected\n");
117  return -ENODEV;
118  default:
119  pr_err("flash detection failed for BCM%x: %d\n",
120  bcm63xx_get_cpu_id(), flash_type);
121  return -ENODEV;
122  }
123 }