dpaa_sys.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* Copyright 2017 NXP Semiconductor, Inc.
  2. *
  3. * Redistribution and use in source and binary forms, with or without
  4. * modification, are permitted provided that the following conditions are met:
  5. * * Redistributions of source code must retain the above copyright
  6. * notice, this list of conditions and the following disclaimer.
  7. * * Redistributions in binary form must reproduce the above copyright
  8. * notice, this list of conditions and the following disclaimer in the
  9. * documentation and/or other materials provided with the distribution.
  10. * * Neither the name of NXP Semiconductor nor the
  11. * names of its contributors may be used to endorse or promote products
  12. * derived from this software without specific prior written permission.
  13. *
  14. * ALTERNATIVELY, this software may be distributed under the terms of the
  15. * GNU General Public License ("GPL") as published by the Free Software
  16. * Foundation, either version 2 of that License or (at your option) any
  17. * later version.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY NXP Semiconductor ``AS IS'' AND ANY
  20. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  21. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  22. * DISCLAIMED. IN NO EVENT SHALL NXP Semiconductor BE LIABLE FOR ANY
  23. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  24. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  25. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  26. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  28. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. #include <linux/dma-mapping.h>
  31. #include "dpaa_sys.h"
  32. /*
  33. * Initialize a devices private memory region
  34. */
  35. int qbman_init_private_mem(struct device *dev, int idx, dma_addr_t *addr,
  36. size_t *size)
  37. {
  38. int ret;
  39. struct device_node *mem_node;
  40. u64 size64;
  41. ret = of_reserved_mem_device_init_by_idx(dev, dev->of_node, idx);
  42. if (ret) {
  43. dev_err(dev,
  44. "of_reserved_mem_device_init_by_idx(%d) failed 0x%x\n",
  45. idx, ret);
  46. return -ENODEV;
  47. }
  48. mem_node = of_parse_phandle(dev->of_node, "memory-region", 0);
  49. if (mem_node) {
  50. ret = of_property_read_u64(mem_node, "size", &size64);
  51. if (ret) {
  52. dev_err(dev, "of_address_to_resource fails 0x%x\n",
  53. ret);
  54. return -ENODEV;
  55. }
  56. *size = size64;
  57. } else {
  58. dev_err(dev, "No memory-region found for index %d\n", idx);
  59. return -ENODEV;
  60. }
  61. if (!dma_zalloc_coherent(dev, *size, addr, 0)) {
  62. dev_err(dev, "DMA Alloc memory failed\n");
  63. return -ENODEV;
  64. }
  65. /*
  66. * Disassociate the reserved memory area from the device
  67. * because a device can only have one DMA memory area. This
  68. * should be fine since the memory is allocated and initialized
  69. * and only ever accessed by the QBMan device from now on
  70. */
  71. of_reserved_mem_device_release(dev);
  72. return 0;
  73. }