pinctrl-utils.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * Utils functions to implement the pincontrol driver.
  3. *
  4. * Copyright (c) 2013, NVIDIA Corporation.
  5. *
  6. * Author: Laxman Dewangan <ldewangan@nvidia.com>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation version 2.
  11. *
  12. * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind,
  13. * whether express or implied; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  20. * 02111-1307, USA
  21. */
  22. #include <linux/device.h>
  23. #include <linux/kernel.h>
  24. #include <linux/pinctrl/pinctrl.h>
  25. #include <linux/of.h>
  26. #include <linux/slab.h>
  27. #include "core.h"
  28. #include "pinctrl-utils.h"
  29. int pinctrl_utils_reserve_map(struct pinctrl_dev *pctldev,
  30. struct pinctrl_map **map, unsigned *reserved_maps,
  31. unsigned *num_maps, unsigned reserve)
  32. {
  33. unsigned old_num = *reserved_maps;
  34. unsigned new_num = *num_maps + reserve;
  35. struct pinctrl_map *new_map;
  36. if (old_num >= new_num)
  37. return 0;
  38. new_map = krealloc(*map, sizeof(*new_map) * new_num, GFP_KERNEL);
  39. if (!new_map) {
  40. dev_err(pctldev->dev, "krealloc(map) failed\n");
  41. return -ENOMEM;
  42. }
  43. memset(new_map + old_num, 0, (new_num - old_num) * sizeof(*new_map));
  44. *map = new_map;
  45. *reserved_maps = new_num;
  46. return 0;
  47. }
  48. EXPORT_SYMBOL_GPL(pinctrl_utils_reserve_map);
  49. int pinctrl_utils_add_map_mux(struct pinctrl_dev *pctldev,
  50. struct pinctrl_map **map, unsigned *reserved_maps,
  51. unsigned *num_maps, const char *group,
  52. const char *function)
  53. {
  54. if (WARN_ON(*num_maps == *reserved_maps))
  55. return -ENOSPC;
  56. (*map)[*num_maps].type = PIN_MAP_TYPE_MUX_GROUP;
  57. (*map)[*num_maps].data.mux.group = group;
  58. (*map)[*num_maps].data.mux.function = function;
  59. (*num_maps)++;
  60. return 0;
  61. }
  62. EXPORT_SYMBOL_GPL(pinctrl_utils_add_map_mux);
  63. int pinctrl_utils_add_map_configs(struct pinctrl_dev *pctldev,
  64. struct pinctrl_map **map, unsigned *reserved_maps,
  65. unsigned *num_maps, const char *group,
  66. unsigned long *configs, unsigned num_configs,
  67. enum pinctrl_map_type type)
  68. {
  69. unsigned long *dup_configs;
  70. if (WARN_ON(*num_maps == *reserved_maps))
  71. return -ENOSPC;
  72. dup_configs = kmemdup(configs, num_configs * sizeof(*dup_configs),
  73. GFP_KERNEL);
  74. if (!dup_configs) {
  75. dev_err(pctldev->dev, "kmemdup(configs) failed\n");
  76. return -ENOMEM;
  77. }
  78. (*map)[*num_maps].type = type;
  79. (*map)[*num_maps].data.configs.group_or_pin = group;
  80. (*map)[*num_maps].data.configs.configs = dup_configs;
  81. (*map)[*num_maps].data.configs.num_configs = num_configs;
  82. (*num_maps)++;
  83. return 0;
  84. }
  85. EXPORT_SYMBOL_GPL(pinctrl_utils_add_map_configs);
  86. int pinctrl_utils_add_config(struct pinctrl_dev *pctldev,
  87. unsigned long **configs, unsigned *num_configs,
  88. unsigned long config)
  89. {
  90. unsigned old_num = *num_configs;
  91. unsigned new_num = old_num + 1;
  92. unsigned long *new_configs;
  93. new_configs = krealloc(*configs, sizeof(*new_configs) * new_num,
  94. GFP_KERNEL);
  95. if (!new_configs) {
  96. dev_err(pctldev->dev, "krealloc(configs) failed\n");
  97. return -ENOMEM;
  98. }
  99. new_configs[old_num] = config;
  100. *configs = new_configs;
  101. *num_configs = new_num;
  102. return 0;
  103. }
  104. EXPORT_SYMBOL_GPL(pinctrl_utils_add_config);
  105. void pinctrl_utils_dt_free_map(struct pinctrl_dev *pctldev,
  106. struct pinctrl_map *map, unsigned num_maps)
  107. {
  108. int i;
  109. for (i = 0; i < num_maps; i++) {
  110. switch (map[i].type) {
  111. case PIN_MAP_TYPE_CONFIGS_GROUP:
  112. case PIN_MAP_TYPE_CONFIGS_PIN:
  113. kfree(map[i].data.configs.configs);
  114. break;
  115. default:
  116. break;
  117. }
  118. }
  119. kfree(map);
  120. }
  121. EXPORT_SYMBOL_GPL(pinctrl_utils_dt_free_map);