3 * Vipin Kumar, ST Microelectronics, vipin.kumar@st.com.
5 * SPDX-License-Identifier: GPL-2.0+
10 #include <linux/err.h>
11 #include <linux/mtd/st_smi.h>
14 #include <asm/arch/hardware.h>
16 #if defined(CONFIG_MTD_NOR_FLASH)
18 static struct smi_regs *const smicntl =
19 (struct smi_regs * const)CONFIG_SYS_SMI_BASE;
20 static ulong bank_base[CONFIG_SYS_MAX_FLASH_BANKS] =
21 CONFIG_SYS_FLASH_ADDR_BASE;
22 flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
24 /* data structure to maintain flash ids from different vendors */
30 unsigned long sectorsize;
31 unsigned long size_in_bytes;
34 #define FLASH_ID(n, es, id, psize, ssize, size) \
40 .sectorsize = ssize, \
41 .size_in_bytes = size \
45 * List of supported flash devices.
46 * Currently the erase_cmd field is not used in this driver.
48 static struct flash_device flash_devices[] = {
49 FLASH_ID("st m25p16" , 0xd8, 0x00152020, 0x100, 0x10000, 0x200000),
50 FLASH_ID("st m25p32" , 0xd8, 0x00162020, 0x100, 0x10000, 0x400000),
51 FLASH_ID("st m25p64" , 0xd8, 0x00172020, 0x100, 0x10000, 0x800000),
52 FLASH_ID("st m25p128" , 0xd8, 0x00182020, 0x100, 0x40000, 0x1000000),
53 FLASH_ID("st m25p05" , 0xd8, 0x00102020, 0x80 , 0x8000 , 0x10000),
54 FLASH_ID("st m25p10" , 0xd8, 0x00112020, 0x80 , 0x8000 , 0x20000),
55 FLASH_ID("st m25p20" , 0xd8, 0x00122020, 0x100, 0x10000, 0x40000),
56 FLASH_ID("st m25p40" , 0xd8, 0x00132020, 0x100, 0x10000, 0x80000),
57 FLASH_ID("st m25p80" , 0xd8, 0x00142020, 0x100, 0x10000, 0x100000),
58 FLASH_ID("st m45pe10" , 0xd8, 0x00114020, 0x100, 0x10000, 0x20000),
59 FLASH_ID("st m45pe20" , 0xd8, 0x00124020, 0x100, 0x10000, 0x40000),
60 FLASH_ID("st m45pe40" , 0xd8, 0x00134020, 0x100, 0x10000, 0x80000),
61 FLASH_ID("st m45pe80" , 0xd8, 0x00144020, 0x100, 0x10000, 0x100000),
62 FLASH_ID("sp s25fl004" , 0xd8, 0x00120201, 0x100, 0x10000, 0x80000),
63 FLASH_ID("sp s25fl008" , 0xd8, 0x00130201, 0x100, 0x10000, 0x100000),
64 FLASH_ID("sp s25fl016" , 0xd8, 0x00140201, 0x100, 0x10000, 0x200000),
65 FLASH_ID("sp s25fl032" , 0xd8, 0x00150201, 0x100, 0x10000, 0x400000),
66 FLASH_ID("sp s25fl064" , 0xd8, 0x00160201, 0x100, 0x10000, 0x800000),
67 FLASH_ID("mac 25l512" , 0xd8, 0x001020C2, 0x010, 0x10000, 0x10000),
68 FLASH_ID("mac 25l1005" , 0xd8, 0x001120C2, 0x010, 0x10000, 0x20000),
69 FLASH_ID("mac 25l2005" , 0xd8, 0x001220C2, 0x010, 0x10000, 0x40000),
70 FLASH_ID("mac 25l4005" , 0xd8, 0x001320C2, 0x010, 0x10000, 0x80000),
71 FLASH_ID("mac 25l4005a" , 0xd8, 0x001320C2, 0x010, 0x10000, 0x80000),
72 FLASH_ID("mac 25l8005" , 0xd8, 0x001420C2, 0x010, 0x10000, 0x100000),
73 FLASH_ID("mac 25l1605" , 0xd8, 0x001520C2, 0x100, 0x10000, 0x200000),
74 FLASH_ID("mac 25l1605a" , 0xd8, 0x001520C2, 0x010, 0x10000, 0x200000),
75 FLASH_ID("mac 25l3205" , 0xd8, 0x001620C2, 0x100, 0x10000, 0x400000),
76 FLASH_ID("mac 25l3205a" , 0xd8, 0x001620C2, 0x100, 0x10000, 0x400000),
77 FLASH_ID("mac 25l6405" , 0xd8, 0x001720C2, 0x100, 0x10000, 0x800000),
78 FLASH_ID("wbd w25q128" , 0xd8, 0x001840EF, 0x100, 0x10000, 0x1000000),
82 * smi_wait_xfer_finish - Wait until TFF is set in status register
83 * @timeout: timeout in milliseconds
85 * Wait until TFF is set in status register
87 static int smi_wait_xfer_finish(int timeout)
89 ulong start = get_timer(0);
91 while (get_timer(start) < timeout) {
92 if (readl(&smicntl->smi_sr) & TFF)
103 * smi_read_id - Read flash id
104 * @info: flash_info structure pointer
105 * @banknum: bank number
107 * Read the flash id present at bank #banknum
109 static unsigned int smi_read_id(flash_info_t *info, int banknum)
113 writel(readl(&smicntl->smi_cr1) | SW_MODE, &smicntl->smi_cr1);
114 writel(READ_ID, &smicntl->smi_tr);
115 writel((banknum << BANKSEL_SHIFT) | SEND | TX_LEN_1 | RX_LEN_3,
118 if (smi_wait_xfer_finish(XFER_FINISH_TOUT))
121 value = (readl(&smicntl->smi_rr) & 0x00FFFFFF);
123 writel(readl(&smicntl->smi_sr) & ~TFF, &smicntl->smi_sr);
124 writel(readl(&smicntl->smi_cr1) & ~SW_MODE, &smicntl->smi_cr1);
130 * flash_get_size - Detect the SMI flash by reading the ID.
131 * @base: Base address of the flash area bank #banknum
132 * @banknum: Bank number
134 * Detect the SMI flash by reading the ID. Initializes the flash_info structure
135 * with size, sector count etc.
137 static ulong flash_get_size(ulong base, int banknum)
139 flash_info_t *info = &flash_info[banknum];
143 value = smi_read_id(info, banknum);
146 printf("Flash id could not be read\n");
150 /* Matches chip-id to entire list of 'serial-nor flash' ids */
151 for (i = 0; i < ARRAY_SIZE(flash_devices); i++) {
152 if (flash_devices[i].device_id == value) {
153 info->size = flash_devices[i].size_in_bytes;
154 info->flash_id = value;
155 info->start[0] = base;
157 info->size/flash_devices[i].sectorsize;
167 * smi_read_sr - Read status register of SMI
170 * This routine will get the status register of the flash chip present at the
173 static int smi_read_sr(int bank)
177 /* store the CTRL REG1 state */
178 ctrlreg1 = readl(&smicntl->smi_cr1);
180 /* Program SMI in HW Mode */
181 writel(readl(&smicntl->smi_cr1) & ~(SW_MODE | WB_MODE),
184 /* Performing a RSR instruction in HW mode */
185 writel((bank << BANKSEL_SHIFT) | RD_STATUS_REG, &smicntl->smi_cr2);
187 if (smi_wait_xfer_finish(XFER_FINISH_TOUT))
190 val = readl(&smicntl->smi_sr);
192 /* Restore the CTRL REG1 state */
193 writel(ctrlreg1, &smicntl->smi_cr1);
199 * smi_wait_till_ready - Wait till last operation is over.
200 * @bank: bank number shifted.
201 * @timeout: timeout in milliseconds.
203 * This routine checks for WIP(write in progress)bit in Status register(SMSR-b0)
204 * The routine checks for #timeout loops, each at interval of 1 milli-second.
205 * If successful the routine returns 0.
207 static int smi_wait_till_ready(int bank, int timeout)
210 ulong start = get_timer(0);
212 /* One chip guarantees max 5 msec wait here after page writes,
213 but potentially three seconds (!) after page erase. */
214 while (get_timer(start) < timeout) {
215 sr = smi_read_sr(bank);
216 if ((sr >= 0) && (!(sr & WIP_BIT)))
219 /* Try again after 10 usec */
223 printf("SMI controller is still in wait, timeout=%d\n", timeout);
228 * smi_write_enable - Enable the flash to do write operation
231 * Set write enable latch with Write Enable command.
232 * Returns negative if error occurred.
234 static int smi_write_enable(int bank)
238 int timeout = WMODE_TOUT;
241 /* Store the CTRL REG1 state */
242 ctrlreg1 = readl(&smicntl->smi_cr1);
244 /* Program SMI in H/W Mode */
245 writel(readl(&smicntl->smi_cr1) & ~SW_MODE, &smicntl->smi_cr1);
247 /* Give the Flash, Write Enable command */
248 writel((bank << BANKSEL_SHIFT) | WE, &smicntl->smi_cr2);
250 if (smi_wait_xfer_finish(XFER_FINISH_TOUT))
253 /* Restore the CTRL REG1 state */
254 writel(ctrlreg1, &smicntl->smi_cr1);
256 start = get_timer(0);
257 while (get_timer(start) < timeout) {
258 sr = smi_read_sr(bank);
259 if ((sr >= 0) && (sr & (1 << (bank + WM_SHIFT))))
262 /* Try again after 10 usec */
270 * smi_init - SMI initialization routine
272 * SMI initialization routine. Sets SMI control register1.
276 /* Setting the fast mode values. SMI working at 166/4 = 41.5 MHz */
277 writel(HOLD1 | FAST_MODE | BANK_EN | DSEL_TIME | PRESCAL4,
282 * smi_sector_erase - Erase flash sector
283 * @info: flash_info structure pointer
284 * @sector: sector number
286 * Set write enable latch with Write Enable command.
287 * Returns negative if error occurred.
289 static int smi_sector_erase(flash_info_t *info, unsigned int sector)
292 unsigned int sect_add;
293 unsigned int instruction;
295 switch (info->start[0]) {
312 sect_add = sector * (info->size / info->sector_count);
313 instruction = ((sect_add >> 8) & 0x0000FF00) | SECTOR_ERASE;
315 writel(readl(&smicntl->smi_sr) & ~(ERF1 | ERF2), &smicntl->smi_sr);
317 /* Wait until finished previous write command. */
318 if (smi_wait_till_ready(bank, CONFIG_SYS_FLASH_ERASE_TOUT))
321 /* Send write enable, before erase commands. */
322 if (smi_write_enable(bank))
325 /* Put SMI in SW mode */
326 writel(readl(&smicntl->smi_cr1) | SW_MODE, &smicntl->smi_cr1);
328 /* Send Sector Erase command in SW Mode */
329 writel(instruction, &smicntl->smi_tr);
330 writel((bank << BANKSEL_SHIFT) | SEND | TX_LEN_4,
332 if (smi_wait_xfer_finish(XFER_FINISH_TOUT))
335 if (smi_wait_till_ready(bank, CONFIG_SYS_FLASH_ERASE_TOUT))
338 /* Put SMI in HW mode */
339 writel(readl(&smicntl->smi_cr1) & ~SW_MODE,
346 * smi_write - Write to SMI flash
347 * @src_addr: source buffer
348 * @dst_addr: destination buffer
349 * @length: length to write in bytes
350 * @bank: bank base address
354 static int smi_write(unsigned int *src_addr, unsigned int *dst_addr,
355 unsigned int length, ulong bank_addr)
357 u8 *src_addr8 = (u8 *)src_addr;
358 u8 *dst_addr8 = (u8 *)dst_addr;
379 if (smi_wait_till_ready(banknum, CONFIG_SYS_FLASH_WRITE_TOUT))
382 /* Set SMI in Hardware Mode */
383 writel(readl(&smicntl->smi_cr1) & ~SW_MODE, &smicntl->smi_cr1);
385 if (smi_write_enable(banknum))
388 /* Perform the write command */
389 for (i = 0; i < length; i += 4) {
390 if (((ulong) (dst_addr) % SFLASH_PAGE_SIZE) == 0) {
391 if (smi_wait_till_ready(banknum,
392 CONFIG_SYS_FLASH_WRITE_TOUT))
395 if (smi_write_enable(banknum))
403 * Handle special case, where length < 4 (redundant env)
405 for (k = 0; k < length; k++)
406 *dst_addr8++ = *src_addr8++;
408 /* Normal 32bit write */
409 *dst_addr++ = *src_addr++;
412 if ((readl(&smicntl->smi_sr) & (ERF1 | ERF2)))
416 if (smi_wait_till_ready(banknum, CONFIG_SYS_FLASH_WRITE_TOUT))
419 writel(readl(&smicntl->smi_sr) & ~(WCF), &smicntl->smi_sr);
425 * write_buff - Write to SMI flash
426 * @info: flash info structure
427 * @src: source buffer
428 * @dest_addr: destination buffer
429 * @length: length to write in words
433 int write_buff(flash_info_t *info, uchar *src, ulong dest_addr, ulong length)
435 return smi_write((unsigned int *)src, (unsigned int *)dest_addr,
436 length, info->start[0]);
440 * flash_init - SMI flash initialization
442 * SMI flash initialization
444 unsigned long flash_init(void)
446 unsigned long size = 0;
451 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
452 flash_info[i].flash_id = FLASH_UNKNOWN;
453 size += flash_info[i].size = flash_get_size(bank_base[i], i);
456 for (j = 0; j < CONFIG_SYS_MAX_FLASH_BANKS; j++) {
457 for (i = 1; i < flash_info[j].sector_count; i++)
458 flash_info[j].start[i] =
459 flash_info[j].start[i - 1] +
460 flash_info->size / flash_info->sector_count;
468 * flash_print_info - Print SMI flash information
470 * Print SMI flash information
472 void flash_print_info(flash_info_t *info)
475 if (info->flash_id == FLASH_UNKNOWN) {
476 puts("missing or unknown FLASH type\n");
480 if (info->size >= 0x100000)
481 printf(" Size: %ld MB in %d Sectors\n",
482 info->size >> 20, info->sector_count);
484 printf(" Size: %ld KB in %d Sectors\n",
485 info->size >> 10, info->sector_count);
487 puts(" Sector Start Addresses:");
488 for (i = 0; i < info->sector_count; ++i) {
489 #ifdef CONFIG_SYS_FLASH_EMPTY_INFO
495 * Check if whole sector is erased
497 size = (info->size) / (info->sector_count);
498 flash = (u32 *) info->start[i];
499 size = size / sizeof(int);
501 while ((size--) && (*flash++ == ~0))
515 erased ? " E" : " ", info->protect[i] ? "RO " : " ");
520 info->start[i], info->protect[i] ? " (RO) " : " ");
528 * flash_erase - Erase SMI flash
532 int flash_erase(flash_info_t *info, int s_first, int s_last)
538 if ((s_first < 0) || (s_first > s_last)) {
539 puts("- no sectors to erase\n");
543 for (sect = s_first; sect <= s_last; ++sect) {
544 if (info->protect[sect])
548 printf("- Warning: %d protected sectors will not be erased!\n",
554 for (sect = s_first; sect <= s_last; sect++) {
555 if (info->protect[sect] == 0) {
556 if (smi_sector_erase(info, sect))