1 // SPDX-License-Identifier: GPL-2.0-only
3 * BCM47XX NAND flash driver
5 * Copyright (C) 2012 Rafał Miłecki <zajec5@gmail.com>
8 #include "bcm47xxnflash.h"
10 #include <linux/module.h>
11 #include <linux/kernel.h>
12 #include <linux/slab.h>
13 #include <linux/platform_device.h>
14 #include <linux/bcma/bcma.h>
16 MODULE_DESCRIPTION("NAND flash driver for BCMA bus");
17 MODULE_LICENSE("GPL");
18 MODULE_AUTHOR("Rafał Miłecki");
20 static const char *probes
[] = { "bcm47xxpart", NULL
};
22 static int bcm47xxnflash_probe(struct platform_device
*pdev
)
24 struct bcma_nflash
*nflash
= dev_get_platdata(&pdev
->dev
);
25 struct bcm47xxnflash
*b47n
;
29 b47n
= devm_kzalloc(&pdev
->dev
, sizeof(*b47n
), GFP_KERNEL
);
33 nand_set_controller_data(&b47n
->nand_chip
, b47n
);
34 mtd
= nand_to_mtd(&b47n
->nand_chip
);
35 mtd
->dev
.parent
= &pdev
->dev
;
36 b47n
->cc
= container_of(nflash
, struct bcma_drv_cc
, nflash
);
38 if (b47n
->cc
->core
->bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
) {
39 err
= bcm47xxnflash_ops_bcm4706_init(b47n
);
41 pr_err("Device not supported\n");
45 pr_err("Initialization failed: %d\n", err
);
49 platform_set_drvdata(pdev
, b47n
);
51 err
= mtd_device_parse_register(mtd
, probes
, NULL
, NULL
, 0);
53 pr_err("Failed to register MTD device: %d\n", err
);
60 static int bcm47xxnflash_remove(struct platform_device
*pdev
)
62 struct bcm47xxnflash
*nflash
= platform_get_drvdata(pdev
);
64 nand_release(&nflash
->nand_chip
);
69 static struct platform_driver bcm47xxnflash_driver
= {
70 .probe
= bcm47xxnflash_probe
,
71 .remove
= bcm47xxnflash_remove
,
73 .name
= "bcma_nflash",
77 module_platform_driver(bcm47xxnflash_driver
);