ipa_emulation_stubs.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  4. */
  5. #if !defined(_IPA_EMULATION_STUBS_H_)
  6. # define _IPA_EMULATION_STUBS_H_
  7. # define outer_flush_range(x, y)
  8. # define __flush_dcache_area(x, y)
  9. # define __cpuc_flush_dcache_area(x, y) __flush_dcache_area(x, y)
  10. /* Point several API calls to these new EMULATION functions */
  11. # define of_property_read_bool(np, propname) \
  12. emulator_of_property_read_bool(NULL, propname)
  13. # define of_property_read_u32(np, propname, out_value) \
  14. emulator_of_property_read_u32(NULL, propname, out_value)
  15. # define of_property_read_u32_array(np, propname, out_values, sz) \
  16. emulator_of_property_read_u32_array(NULL, propname, out_values, sz)
  17. # define platform_get_resource_byname(dev, type, name) \
  18. emulator_platform_get_resource_byname(NULL, type, name)
  19. # define of_property_count_elems_of_size(np, propname, elem_size) \
  20. emulator_of_property_count_elems_of_size(NULL, propname, elem_size)
  21. # define of_property_read_variable_u32_array( \
  22. np, propname, out_values, sz_min, sz_max) \
  23. emulator_of_property_read_variable_u32_array( \
  24. NULL, propname, out_values, sz_min, sz_max)
  25. # define resource_size(res) \
  26. emulator_resource_size(res)
  27. /**
  28. * emulator_of_property_read_bool - Findfrom a property
  29. * @np: device node used to find the property value. (not used)
  30. * @propname: name of the property to be searched.
  31. *
  32. * Search for a property in a device node.
  33. * Returns true if the property exists false otherwise.
  34. */
  35. bool emulator_of_property_read_bool(
  36. const struct device_node *np,
  37. const char *propname);
  38. int emulator_of_property_read_u32(
  39. const struct device_node *np,
  40. const char *propname,
  41. u32 *out_value);
  42. /**
  43. * emulator_of_property_read_u32_array - Find and read an array of 32
  44. * bit integers from a property.
  45. *
  46. * @np: device node used to find the property value. (not used)
  47. * @propname: name of the property to be searched.
  48. * @out_values: pointer to return value, modified only if return value is 0.
  49. * @sz: number of array elements to read
  50. *
  51. * Search for a property in a device node and read 32-bit value(s) from
  52. * it. Returns 0 on success, -EINVAL if the property does not exist,
  53. * -ENODATA if property does not have a value, and -EOVERFLOW if the
  54. * property data isn't large enough.
  55. *
  56. * The out_values is modified only if a valid u32 value can be decoded.
  57. */
  58. int emulator_of_property_read_u32_array(
  59. const struct device_node *np,
  60. const char *propname,
  61. u32 *out_values,
  62. size_t sz);
  63. /**
  64. * emulator_platform_get_resource_byname - get a resource for a device
  65. * by name
  66. *
  67. * @dev: platform device
  68. * @type: resource type
  69. * @name: resource name
  70. */
  71. struct resource *emulator_platform_get_resource_byname(
  72. struct platform_device *dev,
  73. unsigned int type,
  74. const char *name);
  75. /**
  76. * emulator_of_property_count_elems_of_size - Count the number of
  77. * elements in a property
  78. *
  79. * @np: device node used to find the property value. (not used)
  80. * @propname: name of the property to be searched.
  81. * @elem_size: size of the individual element
  82. *
  83. * Search for a property and count the number of elements of size
  84. * elem_size in it. Returns number of elements on success, -EINVAL if
  85. * the property does not exist or its length does not match a multiple
  86. * of elem_size and -ENODATA if the property does not have a value.
  87. */
  88. int emulator_of_property_count_elems_of_size(
  89. const struct device_node *np,
  90. const char *propname,
  91. int elem_size);
  92. int emulator_of_property_read_variable_u32_array(
  93. const struct device_node *np,
  94. const char *propname,
  95. u32 *out_values,
  96. size_t sz_min,
  97. size_t sz_max);
  98. resource_size_t emulator_resource_size(
  99. const struct resource *res);
  100. static inline bool is_device_dma_coherent(struct device *dev)
  101. {
  102. return false;
  103. }
  104. static inline phys_addr_t qcom_smem_virt_to_phys(void *addr)
  105. {
  106. return 0;
  107. }
  108. #endif /* #if !defined(_IPA_EMULATION_STUBS_H_) */