cfg_ucfg_api.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. /*
  2. * Copyright (c) 2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: UCFG APIs for the configuration component.
  20. *
  21. * Logically, configuration exists at the psoc level. This means, each psoc can
  22. * have its own custom configuration, and calls to lookup configuration take a
  23. * psoc parameter for reference. E.g.
  24. *
  25. * int32_t value = cfg_get(psoc, WLAN_SOME_INTEGER_CONFIG_ID);
  26. *
  27. * Configuration is cascading, and lookups happen in this order:
  28. *
  29. * 1) use psoc value, if configured
  30. * 2) use global value, if configured
  31. * 3) fallback to the default value for the configuration item
  32. *
  33. * This means a psoc configuration is a specialization of the global
  34. * configuration, and does not need to explicitly set the same values if they
  35. * would match the global config.
  36. *
  37. * In order to load and parse the global config, call cfg_parse(). In order to
  38. * load and parse psoc configs, call cfg_psoc_parse(). cfg_parse() MUST be
  39. * called before cfg_psoc_parse(), as global configuration will be consulted
  40. * during the psoc parsing process.
  41. *
  42. * There are two basic lifecycles supported:
  43. *
  44. * 1) The type and number of psocs is *not* known at load time
  45. *
  46. * // driver is loading
  47. * cfg_parse("/path/to/config");
  48. *
  49. * ...
  50. *
  51. * // a psoc has just been created
  52. * cfg_psoc_parse(psoc, "/path/to/psoc/config");
  53. *
  54. * ...
  55. *
  56. * // driver is unloading
  57. * cfg_release();
  58. *
  59. * 2) The type and number of psocs *is* known at load time
  60. *
  61. * // driver is loading
  62. * cfg_parse("/path/to/config");
  63. *
  64. * ...
  65. *
  66. * // for each psoc
  67. * cfg_psoc_parse(psoc, "/path/to/psoc/config");
  68. *
  69. * // no further psocs will be created after this point
  70. * cfg_release();
  71. *
  72. * ...
  73. *
  74. * // driver is unloaded later
  75. *
  76. * Each configuration store is reference counted to reduce memory footprint, and
  77. * the configuration component itself will hold one ref count on the global
  78. * config store. All psocs for which psoc-specific configurations have *not*
  79. * been provided will reference the global config store. Psocs for which psoc-
  80. * specific configurations *have* been provded will check for existings stores
  81. * with a matching path to use, before parsing the specified configuration file.
  82. *
  83. * If, at some point in time, it is known that no further psocs will ever be
  84. * created, a call to cfg_release() will release the global ref count held by
  85. * the configuration component. For systems which specify psoc-specific configs
  86. * for all psocs, this will release the unnecessary memory used by the global
  87. * config store. Otherwise, calling cfg_release() at unload time will ensure
  88. * the global config store is properly freed.
  89. */
  90. #ifndef __CFG_UCFG_H
  91. #define __CFG_UCFG_H
  92. #include "cfg_all.h"
  93. #include "cfg_define.h"
  94. #include "i_cfg.h"
  95. #include "qdf_status.h"
  96. #include "qdf_str.h"
  97. #include "qdf_types.h"
  98. #include "wlan_objmgr_psoc_obj.h"
  99. /**
  100. * cfg_parse() - parse an ini file, and populate the global config storei
  101. * @path: The full file path of the ini file to parse
  102. *
  103. * Note: A matching cfg_release() call is required to release allocated
  104. * resources.
  105. *
  106. * The *.ini file format is a simple format consiting of a list of key/value
  107. * pairs, separated by an '=' character. e.g.
  108. *
  109. * gConfigItem1=some string value
  110. * gConfigItem2=0xabc
  111. *
  112. * Comments are also supported, initiated with the '#' character:
  113. *
  114. * # This is a comment. It will be ignored by the *.ini parser
  115. * gConfigItem3=aa:bb:cc:dd:ee:ff # this is also a comment
  116. *
  117. * Several datatypes are natively supported:
  118. *
  119. * gInt=-123 # bin (0b), octal (0o), hex (0x), and decimal supported
  120. * gUint=123 # a non-negative integer value
  121. * gBool=y # (1, Y, y) -> true; (0, N, n) -> false
  122. * gString=any string # strings are useful for representing complex types
  123. * gMacAddr=aa:bb:cc:dd:ee:ff # colons are optional, upper and lower case
  124. * gIpv4Addr=127.0.0.1 # uses typical dot-decimal notation
  125. * gIpv6Addr=::1 # typical notation, supporting zero-compression
  126. *
  127. * Return: QDF_STATUS
  128. */
  129. QDF_STATUS cfg_parse(const char *path);
  130. /**
  131. * cfg_release() - release the global configuration store
  132. *
  133. * This API releases the configuration component's reference to the global
  134. * config store.
  135. *
  136. * See also: this file's DOC section.
  137. *
  138. * Return: None
  139. */
  140. void cfg_release(void);
  141. /**
  142. * cfg_psoc_parse() - specialize the config store for @psoc by parsing @path
  143. * @psoc: The psoc whose config store should be specialized
  144. * @path: The full file path of the ini file to parse
  145. *
  146. * See also: cfg_parse(), and this file's DOC section.
  147. *
  148. * Return: QDF_STATUS
  149. */
  150. QDF_STATUS cfg_psoc_parse(struct wlan_objmgr_psoc *psoc, const char *path);
  151. /**
  152. * cfg_parse_to_psoc_store() - Parse file @path and update psoc ini store
  153. * @psoc: The psoc whose config store should be updated
  154. * @path: The full file path of the ini file to parse
  155. *
  156. * Return: QDF_STATUS
  157. */
  158. QDF_STATUS cfg_parse_to_psoc_store(struct wlan_objmgr_psoc *psoc,
  159. const char *path);
  160. /**
  161. * cfg_parse_to_global_store() Parse file @path and update global ini store
  162. * @path: The full file path of the ini file to parse
  163. *
  164. * Return: QDF_STATUS
  165. */
  166. QDF_STATUS cfg_parse_to_global_store(const char *path);
  167. /**
  168. * cfg_get() - lookup the configured value for @id from @psoc
  169. * @psoc: The psoc from which to lookup the configured value
  170. * @id: The id of the configured value to lookup
  171. *
  172. * E.g.
  173. *
  174. * int32_t value = cfg_get(psoc, WLAN_SOME_INTEGER_CONFIG_ID);
  175. *
  176. * Return: The configured value
  177. */
  178. #define cfg_get(psoc, id) __cfg_get(psoc, __##id)
  179. /* Configuration Access APIs */
  180. #define __do_call(op, args...) op(args)
  181. #define do_call(op, args) __do_call(op, rm_parens args)
  182. #define cfg_id(id) #id
  183. #define __cfg_mtype(ini, mtype, ctype, name, min, max, fallback, desc, def...) \
  184. mtype
  185. #define cfg_mtype(id) do_call(__cfg_mtype, id)
  186. #define __cfg_type(ini, mtype, ctype, name, min, max, fallback, desc, def...) \
  187. ctype
  188. #define cfg_type(id) do_call(__cfg_type, id)
  189. #define __cfg_name(ini, mtype, ctype, name, min, max, fallback, desc, def...) \
  190. name
  191. #define cfg_name(id) do_call(__cfg_name, id)
  192. #define __cfg_min(ini, mtype, ctype, name, min, max, fallback, desc, def...) \
  193. min
  194. #define cfg_min(id) do_call(__cfg_min, id)
  195. #define __cfg_max(ini, mtype, ctype, name, min, max, fallback, desc, def...) \
  196. max
  197. #define cfg_max(id) do_call(__cfg_max, id)
  198. #define __cfg_fb(ini, mtype, ctype, name, min, max, fallback, desc, def...) \
  199. fallback
  200. #define cfg_fallback(id) do_call(__cfg_fb, id)
  201. #define __cfg_desc(ini, mtype, ctype, name, min, max, fallback, desc, def...) \
  202. desc
  203. #define cfg_description(id) do_call(__cfg_desc, id)
  204. #define __cfg_def(ini, mtype, ctype, name, min, max, fallback, desc, def...) \
  205. def
  206. #define cfg_default(id) do_call(__cfg_def, id)
  207. #define __cfg_str(id...) #id
  208. #define cfg_str(id) #id __cfg_str(id)
  209. /* validate APIs */
  210. static inline bool
  211. cfg_string_in_range(const char *value, qdf_size_t min_len, qdf_size_t max_len)
  212. {
  213. qdf_size_t len = qdf_str_len(value);
  214. return len >= min_len && len <= max_len;
  215. }
  216. #define __cfg_INT_in_range(value, min, max) (value >= min && value <= max)
  217. #define __cfg_UINT_in_range(value, min, max) (value >= min && value <= max)
  218. #define __cfg_STRING_in_range(value, min_len, max_len) \
  219. cfg_string_in_range(value, min_len, max_len)
  220. #define __cfg_BOOL_in_range(value, min, max) \
  221. ((value == min) || (value == max))
  222. #define __cfg_in_range(id, value, mtype) \
  223. __cfg_ ## mtype ## _in_range(value, cfg_min(id), cfg_max(id))
  224. /* this may look redundant, but forces @mtype to be expanded */
  225. #define __cfg_in_range_type(id, value, mtype) \
  226. __cfg_in_range(id, value, mtype)
  227. #define cfg_in_range(id, value) __cfg_in_range_type(id, value, cfg_mtype(id))
  228. /* Value-or-Default APIs */
  229. #define __cfg_value_or_default(id, value, def) \
  230. (cfg_in_range(id, value) ? value : def)
  231. #define cfg_value_or_default(id, value) \
  232. __cfg_value_or_default(id, value, cfg_default(id))
  233. /* Value-or-Clamped APIs */
  234. #define __cfg_clamp(val, min, max) (val < min ? min : (val > max ? max : val))
  235. #define cfg_clamp(id, value) __cfg_clamp(value, cfg_min(id), cfg_max(id))
  236. #endif /* __CFG_UCFG_H */