pcmcia: at91_cf: add support for DT
Signed-off-by: Joachim Eastwood <manabian@gmail.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a843168dc9
commit
ed9084ecfc
19
Documentation/devicetree/bindings/ata/atmel-at91_cf.txt
Normal file
19
Documentation/devicetree/bindings/ata/atmel-at91_cf.txt
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
Atmel AT91RM9200 CompactFlash
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
- compatible : "atmel,at91rm9200-cf".
|
||||||
|
- reg : should specify localbus address and size used.
|
||||||
|
- gpios : specifies the gpio pins to control the CF device. Detect
|
||||||
|
and reset gpio's are mandatory while irq and vcc gpio's are
|
||||||
|
optional and may be set to 0 if not present.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
compact-flash@50000000 {
|
||||||
|
compatible = "atmel,at91rm9200-cf";
|
||||||
|
reg = <0x50000000 0x30000000>;
|
||||||
|
gpios = <&pioC 13 0 /* irq */
|
||||||
|
&pioC 15 0 /* detect */
|
||||||
|
0 /* vcc */
|
||||||
|
&pioC 5 0 /* reset */
|
||||||
|
>;
|
||||||
|
};
|
@ -288,7 +288,7 @@ config BFIN_CFPCMCIA
|
|||||||
|
|
||||||
config AT91_CF
|
config AT91_CF
|
||||||
tristate "AT91 CompactFlash Controller"
|
tristate "AT91 CompactFlash Controller"
|
||||||
depends on PCMCIA && ARCH_AT91RM9200
|
depends on PCMCIA && ARCH_AT91
|
||||||
help
|
help
|
||||||
Say Y here to support the CompactFlash controller on AT91 chips.
|
Say Y here to support the CompactFlash controller on AT91 chips.
|
||||||
Or choose M to compile the driver as a module named "at91_cf".
|
Or choose M to compile the driver as a module named "at91_cf".
|
||||||
|
@ -20,6 +20,9 @@
|
|||||||
#include <linux/platform_data/atmel.h>
|
#include <linux/platform_data/atmel.h>
|
||||||
#include <linux/io.h>
|
#include <linux/io.h>
|
||||||
#include <linux/sizes.h>
|
#include <linux/sizes.h>
|
||||||
|
#include <linux/of.h>
|
||||||
|
#include <linux/of_device.h>
|
||||||
|
#include <linux/of_gpio.h>
|
||||||
|
|
||||||
#include <pcmcia/ss.h>
|
#include <pcmcia/ss.h>
|
||||||
|
|
||||||
@ -211,6 +214,37 @@ static struct pccard_operations at91_cf_ops = {
|
|||||||
|
|
||||||
/*--------------------------------------------------------------------------*/
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#if defined(CONFIG_OF)
|
||||||
|
static const struct of_device_id at91_cf_dt_ids[] = {
|
||||||
|
{ .compatible = "atmel,at91rm9200-cf" },
|
||||||
|
{ /* sentinel */ }
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, at91_cf_dt_ids);
|
||||||
|
|
||||||
|
static int at91_cf_dt_init(struct platform_device *pdev)
|
||||||
|
{
|
||||||
|
struct at91_cf_data *board;
|
||||||
|
|
||||||
|
board = devm_kzalloc(&pdev->dev, sizeof(*board), GFP_KERNEL);
|
||||||
|
if (!board)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
|
board->irq_pin = of_get_gpio(pdev->dev.of_node, 0);
|
||||||
|
board->det_pin = of_get_gpio(pdev->dev.of_node, 1);
|
||||||
|
board->vcc_pin = of_get_gpio(pdev->dev.of_node, 2);
|
||||||
|
board->rst_pin = of_get_gpio(pdev->dev.of_node, 3);
|
||||||
|
|
||||||
|
pdev->dev.platform_data = board;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
static int at91_cf_dt_init(struct platform_device *pdev)
|
||||||
|
{
|
||||||
|
return -ENODEV;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static int __init at91_cf_probe(struct platform_device *pdev)
|
static int __init at91_cf_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct at91_cf_socket *cf;
|
struct at91_cf_socket *cf;
|
||||||
@ -218,7 +252,15 @@ static int __init at91_cf_probe(struct platform_device *pdev)
|
|||||||
struct resource *io;
|
struct resource *io;
|
||||||
int status;
|
int status;
|
||||||
|
|
||||||
if (!board || !gpio_is_valid(board->det_pin) || !gpio_is_valid(board->rst_pin))
|
if (!board) {
|
||||||
|
status = at91_cf_dt_init(pdev);
|
||||||
|
if (status)
|
||||||
|
return status;
|
||||||
|
|
||||||
|
board = pdev->dev.platform_data;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!gpio_is_valid(board->det_pin) || !gpio_is_valid(board->rst_pin))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
@ -360,6 +402,7 @@ static struct platform_driver at91_cf_driver = {
|
|||||||
.driver = {
|
.driver = {
|
||||||
.name = "at91_cf",
|
.name = "at91_cf",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
.of_match_table = of_match_ptr(at91_cf_dt_ids),
|
||||||
},
|
},
|
||||||
.remove = __exit_p(at91_cf_remove),
|
.remove = __exit_p(at91_cf_remove),
|
||||||
.suspend = at91_cf_suspend,
|
.suspend = at91_cf_suspend,
|
||||||
|
Reference in New Issue
Block a user