xilinx_spi_of.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * Xilinx SPI OF device driver
  3. *
  4. * Copyright (c) 2009 Intel Corporation
  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. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. /* Supports:
  20. * Xilinx SPI devices as OF devices
  21. *
  22. * Inspired by xilinx_spi.c, 2002-2007 (c) MontaVista Software, Inc.
  23. */
  24. #include <linux/module.h>
  25. #include <linux/init.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/io.h>
  28. #include <linux/of_platform.h>
  29. #include <linux/of_device.h>
  30. #include <linux/of_spi.h>
  31. #include <linux/spi/xilinx_spi.h>
  32. #include "xilinx_spi.h"
  33. static int __devinit xilinx_spi_of_probe(struct of_device *ofdev,
  34. const struct of_device_id *match)
  35. {
  36. struct spi_master *master;
  37. struct xspi_platform_data *pdata;
  38. struct resource r_mem;
  39. struct resource r_irq;
  40. int rc = 0;
  41. const u32 *prop;
  42. int len;
  43. rc = of_address_to_resource(ofdev->node, 0, &r_mem);
  44. if (rc) {
  45. dev_warn(&ofdev->dev, "invalid address\n");
  46. return rc;
  47. }
  48. rc = of_irq_to_resource(ofdev->node, 0, &r_irq);
  49. if (rc == NO_IRQ) {
  50. dev_warn(&ofdev->dev, "no IRQ found\n");
  51. return -ENODEV;
  52. }
  53. ofdev->dev.platform_data =
  54. kzalloc(sizeof(struct xspi_platform_data), GFP_KERNEL);
  55. pdata = ofdev->dev.platform_data;
  56. if (!pdata)
  57. return -ENOMEM;
  58. /* number of slave select bits is required */
  59. prop = of_get_property(ofdev->node, "xlnx,num-ss-bits", &len);
  60. if (!prop || len < sizeof(*prop)) {
  61. dev_warn(&ofdev->dev, "no 'xlnx,num-ss-bits' property\n");
  62. return -EINVAL;
  63. }
  64. pdata->num_chipselect = *prop;
  65. pdata->bits_per_word = 8;
  66. master = xilinx_spi_init(&ofdev->dev, &r_mem, r_irq.start, -1);
  67. if (!master)
  68. return -ENODEV;
  69. dev_set_drvdata(&ofdev->dev, master);
  70. /* Add any subnodes on the SPI bus */
  71. of_register_spi_devices(master, ofdev->node);
  72. return 0;
  73. }
  74. static int __devexit xilinx_spi_remove(struct of_device *ofdev)
  75. {
  76. xilinx_spi_deinit(dev_get_drvdata(&ofdev->dev));
  77. dev_set_drvdata(&ofdev->dev, 0);
  78. kfree(ofdev->dev.platform_data);
  79. ofdev->dev.platform_data = NULL;
  80. return 0;
  81. }
  82. static int __exit xilinx_spi_of_remove(struct of_device *op)
  83. {
  84. return xilinx_spi_remove(op);
  85. }
  86. static struct of_device_id xilinx_spi_of_match[] = {
  87. { .compatible = "xlnx,xps-spi-2.00.a", },
  88. { .compatible = "xlnx,xps-spi-2.00.b", },
  89. {}
  90. };
  91. MODULE_DEVICE_TABLE(of, xilinx_spi_of_match);
  92. static struct of_platform_driver xilinx_spi_of_driver = {
  93. .match_table = xilinx_spi_of_match,
  94. .probe = xilinx_spi_of_probe,
  95. .remove = __exit_p(xilinx_spi_of_remove),
  96. .driver = {
  97. .name = "xilinx-xps-spi",
  98. .owner = THIS_MODULE,
  99. },
  100. };
  101. static int __init xilinx_spi_of_init(void)
  102. {
  103. return of_register_platform_driver(&xilinx_spi_of_driver);
  104. }
  105. module_init(xilinx_spi_of_init);
  106. static void __exit xilinx_spi_of_exit(void)
  107. {
  108. of_unregister_platform_driver(&xilinx_spi_of_driver);
  109. }
  110. module_exit(xilinx_spi_of_exit);
  111. MODULE_AUTHOR("Mocean Laboratories <info@mocean-labs.com>");
  112. MODULE_DESCRIPTION("Xilinx SPI platform driver");
  113. MODULE_LICENSE("GPL v2");