blob: 937fc31971a785061e9273f849ed515360252063 [file] [log] [blame]
Rafał Miłecki72a525c2013-01-06 21:48:50 +01001/*
2 * Sonics Silicon Backplane
3 * ChipCommon serial flash interface
4 *
5 * Licensed under the GNU/GPL. See COPYING for details.
6 */
7
8#include <linux/ssb/ssb.h>
9
10#include "ssb_private.h"
11
Rafał Miłecki7b5d6042013-06-18 07:33:40 +020012static struct resource ssb_sflash_resource = {
13 .name = "ssb_sflash",
14 .start = SSB_FLASH2,
15 .end = 0,
16 .flags = IORESOURCE_MEM | IORESOURCE_READONLY,
17};
18
19struct platform_device ssb_sflash_dev = {
20 .name = "ssb_sflash",
21 .resource = &ssb_sflash_resource,
22 .num_resources = 1,
23};
24
Rafał Miłecki59015272013-01-10 10:11:37 +010025struct ssb_sflash_tbl_e {
26 char *name;
27 u32 id;
28 u32 blocksize;
29 u16 numblocks;
30};
31
Rafał Miłecki39cd2062013-06-17 19:19:19 +020032static const struct ssb_sflash_tbl_e ssb_sflash_st_tbl[] = {
Rafał Miłecki59015272013-01-10 10:11:37 +010033 { "M25P20", 0x11, 0x10000, 4, },
34 { "M25P40", 0x12, 0x10000, 8, },
35
36 { "M25P16", 0x14, 0x10000, 32, },
37 { "M25P32", 0x15, 0x10000, 64, },
38 { "M25P64", 0x16, 0x10000, 128, },
39 { "M25FL128", 0x17, 0x10000, 256, },
Hauke Mehrtensc9e4a3f2014-01-02 19:31:37 +010040 { NULL },
Rafał Miłecki59015272013-01-10 10:11:37 +010041};
42
Rafał Miłecki39cd2062013-06-17 19:19:19 +020043static const struct ssb_sflash_tbl_e ssb_sflash_sst_tbl[] = {
Rafał Miłecki59015272013-01-10 10:11:37 +010044 { "SST25WF512", 1, 0x1000, 16, },
45 { "SST25VF512", 0x48, 0x1000, 16, },
46 { "SST25WF010", 2, 0x1000, 32, },
47 { "SST25VF010", 0x49, 0x1000, 32, },
48 { "SST25WF020", 3, 0x1000, 64, },
49 { "SST25VF020", 0x43, 0x1000, 64, },
50 { "SST25WF040", 4, 0x1000, 128, },
51 { "SST25VF040", 0x44, 0x1000, 128, },
52 { "SST25VF040B", 0x8d, 0x1000, 128, },
53 { "SST25WF080", 5, 0x1000, 256, },
54 { "SST25VF080B", 0x8e, 0x1000, 256, },
55 { "SST25VF016", 0x41, 0x1000, 512, },
56 { "SST25VF032", 0x4a, 0x1000, 1024, },
57 { "SST25VF064", 0x4b, 0x1000, 2048, },
Hauke Mehrtensc9e4a3f2014-01-02 19:31:37 +010058 { NULL },
Rafał Miłecki59015272013-01-10 10:11:37 +010059};
60
Rafał Miłecki39cd2062013-06-17 19:19:19 +020061static const struct ssb_sflash_tbl_e ssb_sflash_at_tbl[] = {
Rafał Miłecki59015272013-01-10 10:11:37 +010062 { "AT45DB011", 0xc, 256, 512, },
63 { "AT45DB021", 0x14, 256, 1024, },
64 { "AT45DB041", 0x1c, 256, 2048, },
65 { "AT45DB081", 0x24, 256, 4096, },
66 { "AT45DB161", 0x2c, 512, 4096, },
67 { "AT45DB321", 0x34, 512, 8192, },
68 { "AT45DB642", 0x3c, 1024, 8192, },
Hauke Mehrtensc9e4a3f2014-01-02 19:31:37 +010069 { NULL },
Rafał Miłecki59015272013-01-10 10:11:37 +010070};
71
72static void ssb_sflash_cmd(struct ssb_chipcommon *cc, u32 opcode)
73{
74 int i;
75 chipco_write32(cc, SSB_CHIPCO_FLASHCTL,
76 SSB_CHIPCO_FLASHCTL_START | opcode);
77 for (i = 0; i < 1000; i++) {
78 if (!(chipco_read32(cc, SSB_CHIPCO_FLASHCTL) &
79 SSB_CHIPCO_FLASHCTL_BUSY))
80 return;
81 cpu_relax();
82 }
83 pr_err("SFLASH control command failed (timeout)!\n");
84}
85
Rafał Miłecki72a525c2013-01-06 21:48:50 +010086/* Initialize serial flash access */
87int ssb_sflash_init(struct ssb_chipcommon *cc)
88{
Rafał Miłeckie570bd02013-06-17 19:56:20 +020089 struct ssb_sflash *sflash = &cc->dev->bus->mipscore.sflash;
Rafał Miłecki39cd2062013-06-17 19:19:19 +020090 const struct ssb_sflash_tbl_e *e;
Rafał Miłecki59015272013-01-10 10:11:37 +010091 u32 id, id2;
92
93 switch (cc->capabilities & SSB_CHIPCO_CAP_FLASHT) {
94 case SSB_CHIPCO_FLASHT_STSER:
95 ssb_sflash_cmd(cc, SSB_CHIPCO_FLASHCTL_ST_DP);
96
97 chipco_write32(cc, SSB_CHIPCO_FLASHADDR, 0);
98 ssb_sflash_cmd(cc, SSB_CHIPCO_FLASHCTL_ST_RES);
99 id = chipco_read32(cc, SSB_CHIPCO_FLASHDATA);
100
101 chipco_write32(cc, SSB_CHIPCO_FLASHADDR, 1);
102 ssb_sflash_cmd(cc, SSB_CHIPCO_FLASHCTL_ST_RES);
103 id2 = chipco_read32(cc, SSB_CHIPCO_FLASHDATA);
104
105 switch (id) {
106 case 0xbf:
107 for (e = ssb_sflash_sst_tbl; e->name; e++) {
108 if (e->id == id2)
109 break;
110 }
111 break;
112 case 0x13:
113 return -ENOTSUPP;
114 default:
115 for (e = ssb_sflash_st_tbl; e->name; e++) {
116 if (e->id == id)
117 break;
118 }
119 break;
120 }
121 if (!e->name) {
122 pr_err("Unsupported ST serial flash (id: 0x%X, id2: 0x%X)\n",
123 id, id2);
124 return -ENOTSUPP;
125 }
126
127 break;
128 case SSB_CHIPCO_FLASHT_ATSER:
129 ssb_sflash_cmd(cc, SSB_CHIPCO_FLASHCTL_AT_STATUS);
130 id = chipco_read32(cc, SSB_CHIPCO_FLASHDATA) & 0x3c;
131
132 for (e = ssb_sflash_at_tbl; e->name; e++) {
133 if (e->id == id)
134 break;
135 }
136 if (!e->name) {
137 pr_err("Unsupported Atmel serial flash (id: 0x%X)\n",
138 id);
139 return -ENOTSUPP;
140 }
141
142 break;
143 default:
144 pr_err("Unsupported flash type\n");
145 return -ENOTSUPP;
146 }
147
Rafał Miłeckie570bd02013-06-17 19:56:20 +0200148 sflash->window = SSB_FLASH2;
149 sflash->blocksize = e->blocksize;
150 sflash->numblocks = e->numblocks;
151 sflash->size = sflash->blocksize * sflash->numblocks;
152 sflash->present = true;
153
Rafał Miłecki092c4642013-06-25 10:13:46 +0200154 pr_info("Found %s serial flash (size: %dKiB, blocksize: 0x%X, blocks: %d)\n",
155 e->name, sflash->size / 1024, e->blocksize, e->numblocks);
Rafał Miłecki59015272013-01-10 10:11:37 +0100156
Rafał Miłecki7b5d6042013-06-18 07:33:40 +0200157 /* Prepare platform device, but don't register it yet. It's too early,
158 * malloc (required by device_private_init) is not available yet. */
159 ssb_sflash_dev.resource[0].end = ssb_sflash_dev.resource[0].start +
160 sflash->size;
161 ssb_sflash_dev.dev.platform_data = sflash;
162
Rafał Miłecki092c4642013-06-25 10:13:46 +0200163 return 0;
Rafał Miłecki72a525c2013-01-06 21:48:50 +0100164}