]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/mtd/spi/eon.c
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / drivers / mtd / spi / eon.c
1 /*
2  * (C) Copyright 2010, ucRobotics Inc.
3  * Author: Chong Huang <chuang@ucrobotics.com>
4  * Licensed under the GPL-2 or later.
5  */
6
7 #include <common.h>
8 #include <malloc.h>
9 #include <spi_flash.h>
10
11 #include "spi_flash_internal.h"
12
13 struct eon_spi_flash_params {
14         u8 idcode1;
15         u16 nr_sectors;
16         const char *name;
17 };
18
19 static const struct eon_spi_flash_params eon_spi_flash_table[] = {
20         {
21                 .idcode1 = 0x16,
22                 .nr_sectors = 1024,
23                 .name = "EN25Q32B",
24         },
25         {
26                 .idcode1 = 0x18,
27                 .nr_sectors = 4096,
28                 .name = "EN25Q128",
29         },
30 };
31
32 struct spi_flash *spi_flash_probe_eon(struct spi_slave *spi, u8 *idcode)
33 {
34         const struct eon_spi_flash_params *params;
35         struct spi_flash *flash;
36         unsigned int i;
37
38         for (i = 0; i < ARRAY_SIZE(eon_spi_flash_table); ++i) {
39                 params = &eon_spi_flash_table[i];
40                 if (params->idcode1 == idcode[2])
41                         break;
42         }
43
44         if (i == ARRAY_SIZE(eon_spi_flash_table)) {
45                 debug("SF: Unsupported EON ID %02x\n", idcode[1]);
46                 return NULL;
47         }
48
49         flash = spi_flash_alloc_base(spi, params->name);
50         if (!flash) {
51                 debug("SF: Failed to allocate memory\n");
52                 return NULL;
53         }
54
55         flash->page_size = 256;
56         flash->sector_size = 256 * 16 * 16;
57         flash->size = 256 * 16
58             * params->nr_sectors;
59
60         return flash;
61 }