Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 1 | /* |
| 2 | * BCM47XX NAND flash driver |
| 3 | * |
| 4 | * Copyright (C) 2012 Rafał Miłecki <zajec5@gmail.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | */ |
| 11 | |
Rafał Miłecki | be0638d | 2013-02-07 11:56:04 +0100 | [diff] [blame] | 12 | #include "bcm47xxnflash.h" |
| 13 | |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 14 | #include <linux/module.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/slab.h> |
| 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/bcma/bcma.h> |
| 19 | |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 20 | MODULE_DESCRIPTION("NAND flash driver for BCMA bus"); |
| 21 | MODULE_LICENSE("GPL"); |
| 22 | MODULE_AUTHOR("Rafał Miłecki"); |
| 23 | |
| 24 | static const char *probes[] = { "bcm47xxpart", NULL }; |
| 25 | |
| 26 | static int bcm47xxnflash_probe(struct platform_device *pdev) |
| 27 | { |
| 28 | struct bcma_nflash *nflash = dev_get_platdata(&pdev->dev); |
| 29 | struct bcm47xxnflash *b47n; |
| 30 | int err = 0; |
| 31 | |
Sachin Kamat | 7e3019e | 2013-10-11 10:11:25 +0530 | [diff] [blame] | 32 | b47n = devm_kzalloc(&pdev->dev, sizeof(*b47n), GFP_KERNEL); |
| 33 | if (!b47n) |
| 34 | return -ENOMEM; |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 35 | |
| 36 | b47n->nand_chip.priv = b47n; |
| 37 | b47n->mtd.owner = THIS_MODULE; |
| 38 | b47n->mtd.priv = &b47n->nand_chip; /* Required */ |
| 39 | b47n->cc = container_of(nflash, struct bcma_drv_cc, nflash); |
| 40 | |
Rafał Miłecki | 00940a2 | 2012-11-12 13:03:25 +0100 | [diff] [blame] | 41 | if (b47n->cc->core->bus->chipinfo.id == BCMA_CHIP_ID_BCM4706) { |
| 42 | err = bcm47xxnflash_ops_bcm4706_init(b47n); |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 43 | } else { |
| 44 | pr_err("Device not supported\n"); |
| 45 | err = -ENOTSUPP; |
| 46 | } |
| 47 | if (err) { |
| 48 | pr_err("Initialization failed: %d\n", err); |
Sachin Kamat | 7e3019e | 2013-10-11 10:11:25 +0530 | [diff] [blame] | 49 | return err; |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | err = mtd_device_parse_register(&b47n->mtd, probes, NULL, NULL, 0); |
| 53 | if (err) { |
| 54 | pr_err("Failed to register MTD device: %d\n", err); |
Sachin Kamat | 7e3019e | 2013-10-11 10:11:25 +0530 | [diff] [blame] | 55 | return err; |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | return 0; |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 59 | } |
| 60 | |
Greg Kroah-Hartman | d892994 | 2012-12-21 13:19:05 -0800 | [diff] [blame] | 61 | static int bcm47xxnflash_remove(struct platform_device *pdev) |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 62 | { |
| 63 | struct bcma_nflash *nflash = dev_get_platdata(&pdev->dev); |
| 64 | |
| 65 | if (nflash->mtd) |
| 66 | mtd_device_unregister(nflash->mtd); |
| 67 | |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | static struct platform_driver bcm47xxnflash_driver = { |
Hauke Mehrtens | a7bf654 | 2013-01-28 11:25:48 +0100 | [diff] [blame] | 72 | .probe = bcm47xxnflash_probe, |
Greg Kroah-Hartman | d892994 | 2012-12-21 13:19:05 -0800 | [diff] [blame] | 73 | .remove = bcm47xxnflash_remove, |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 74 | .driver = { |
| 75 | .name = "bcma_nflash", |
Rafał Miłecki | a5401370 | 2012-11-12 13:03:21 +0100 | [diff] [blame] | 76 | }, |
| 77 | }; |
| 78 | |
Sachin Kamat | 994bbd0 | 2013-10-11 10:11:24 +0530 | [diff] [blame] | 79 | module_platform_driver(bcm47xxnflash_driver); |