blob: 18e7761137a33037a21aa61585e20d98f47b172e [file] [log] [blame]
Rafał Miłecki5fe42d52012-09-17 11:50:49 +02001#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/slab.h>
4#include <linux/mtd/mtd.h>
5#include <linux/platform_device.h>
6#include <linux/bcma/bcma.h>
7
Rafał Miłeckia2f74a72013-01-06 21:28:50 +01008#include "bcm47xxsflash.h"
9
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020010MODULE_LICENSE("GPL");
11MODULE_DESCRIPTION("Serial flash driver for BCMA bus");
12
Artem Bityutskiyafffeec2013-03-12 10:50:07 +020013static const char * const probes[] = { "bcm47xxpart", NULL };
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020014
15static int bcm47xxsflash_read(struct mtd_info *mtd, loff_t from, size_t len,
16 size_t *retlen, u_char *buf)
17{
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010018 struct bcm47xxsflash *b47s = mtd->priv;
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020019
20 /* Check address range */
21 if ((from + len) > mtd->size)
22 return -EINVAL;
23
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010024 memcpy_fromio(buf, (void __iomem *)KSEG0ADDR(b47s->window + from),
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020025 len);
Hauke Mehrtens60aca062013-01-24 17:39:54 +010026 *retlen = len;
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020027
28 return len;
29}
30
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010031static void bcm47xxsflash_fill_mtd(struct bcm47xxsflash *b47s)
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020032{
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010033 struct mtd_info *mtd = &b47s->mtd;
34
35 mtd->priv = b47s;
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020036 mtd->name = "bcm47xxsflash";
37 mtd->owner = THIS_MODULE;
38 mtd->type = MTD_ROM;
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010039 mtd->size = b47s->size;
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020040 mtd->_read = bcm47xxsflash_read;
41
42 /* TODO: implement writing support and verify/change following code */
43 mtd->flags = MTD_CAP_ROM;
44 mtd->writebufsize = mtd->writesize = 1;
45}
46
Rafał Miłeckif1a7c9d2013-02-04 08:23:08 +010047/**************************************************
48 * BCMA
49 **************************************************/
50
51static int bcm47xxsflash_bcma_probe(struct platform_device *pdev)
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020052{
53 struct bcma_sflash *sflash = dev_get_platdata(&pdev->dev);
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010054 struct bcm47xxsflash *b47s;
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020055 int err;
56
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010057 b47s = kzalloc(sizeof(*b47s), GFP_KERNEL);
58 if (!b47s) {
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020059 err = -ENOMEM;
60 goto out;
61 }
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010062 sflash->priv = b47s;
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020063
Rafał Miłecki41c81532013-03-06 12:33:17 +010064 b47s->bcma_cc = container_of(sflash, struct bcma_drv_cc, sflash);
65
Rafał Miłecki1f816bc2013-03-06 12:34:19 +010066 switch (b47s->bcma_cc->capabilities & BCMA_CC_CAP_FLASHT) {
67 case BCMA_CC_FLASHT_STSER:
68 b47s->type = BCM47XXSFLASH_TYPE_ST;
69 break;
70 case BCMA_CC_FLASHT_ATSER:
71 b47s->type = BCM47XXSFLASH_TYPE_ATMEL;
72 break;
73 }
74
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010075 b47s->window = sflash->window;
76 b47s->blocksize = sflash->blocksize;
77 b47s->numblocks = sflash->numblocks;
78 b47s->size = sflash->size;
79 bcm47xxsflash_fill_mtd(b47s);
80
81 err = mtd_device_parse_register(&b47s->mtd, probes, NULL, NULL, 0);
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020082 if (err) {
83 pr_err("Failed to register MTD device: %d\n", err);
84 goto err_dev_reg;
85 }
86
87 return 0;
88
89err_dev_reg:
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010090 kfree(&b47s->mtd);
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020091out:
92 return err;
93}
94
Rafał Miłeckif1a7c9d2013-02-04 08:23:08 +010095static int bcm47xxsflash_bcma_remove(struct platform_device *pdev)
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020096{
97 struct bcma_sflash *sflash = dev_get_platdata(&pdev->dev);
Rafał Miłeckia2f74a72013-01-06 21:28:50 +010098 struct bcm47xxsflash *b47s = sflash->priv;
Rafał Miłecki5fe42d52012-09-17 11:50:49 +020099
Rafał Miłeckia2f74a72013-01-06 21:28:50 +0100100 mtd_device_unregister(&b47s->mtd);
101 kfree(b47s);
Rafał Miłecki5fe42d52012-09-17 11:50:49 +0200102
103 return 0;
104}
105
106static struct platform_driver bcma_sflash_driver = {
Rafał Miłeckif1a7c9d2013-02-04 08:23:08 +0100107 .probe = bcm47xxsflash_bcma_probe,
108 .remove = bcm47xxsflash_bcma_remove,
Rafał Miłecki5fe42d52012-09-17 11:50:49 +0200109 .driver = {
110 .name = "bcma_sflash",
111 .owner = THIS_MODULE,
112 },
113};
114
Rafał Miłeckif1a7c9d2013-02-04 08:23:08 +0100115/**************************************************
116 * Init
117 **************************************************/
118
Rafał Miłecki5fe42d52012-09-17 11:50:49 +0200119static int __init bcm47xxsflash_init(void)
120{
121 int err;
122
Hauke Mehrtens2d13dc32013-01-24 17:39:55 +0100123 err = platform_driver_register(&bcma_sflash_driver);
Rafał Miłecki5fe42d52012-09-17 11:50:49 +0200124 if (err)
125 pr_err("Failed to register BCMA serial flash driver: %d\n",
126 err);
127
128 return err;
129}
130
131static void __exit bcm47xxsflash_exit(void)
132{
133 platform_driver_unregister(&bcma_sflash_driver);
134}
135
136module_init(bcm47xxsflash_init);
137module_exit(bcm47xxsflash_exit);