wcd9xxx-regmap.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef _WCD9XXX_REGMAP_
  14. #define _WCD9XXX_REGMAP_
  15. #include <linux/regmap.h>
  16. #include "core.h"
  17. typedef int (*regmap_patch_fptr)(struct regmap *, int);
  18. extern struct regmap_config wcd9360_regmap_config;
  19. extern struct regmap_config wcd934x_regmap_config;
  20. extern int wcd934x_regmap_register_patch(struct regmap *regmap,
  21. int version);
  22. extern struct regmap_config wcd9335_regmap_config;
  23. extern int wcd9335_regmap_register_patch(struct regmap *regmap,
  24. int version);
  25. static inline struct regmap_config *wcd9xxx_get_regmap_config(int type)
  26. {
  27. struct regmap_config *regmap_config;
  28. switch (type) {
  29. case WCD9360:
  30. regmap_config = &wcd9360_regmap_config;
  31. break;
  32. case WCD934X:
  33. regmap_config = &wcd934x_regmap_config;
  34. break;
  35. case WCD9335:
  36. regmap_config = &wcd9335_regmap_config;
  37. break;
  38. default:
  39. regmap_config = NULL;
  40. break;
  41. };
  42. return regmap_config;
  43. }
  44. static inline regmap_patch_fptr wcd9xxx_get_regmap_reg_patch(int type)
  45. {
  46. regmap_patch_fptr apply_patch;
  47. switch (type) {
  48. case WCD9335:
  49. apply_patch = wcd9335_regmap_register_patch;
  50. break;
  51. case WCD934X:
  52. apply_patch = wcd934x_regmap_register_patch;
  53. break;
  54. default:
  55. apply_patch = NULL;
  56. break;
  57. }
  58. return apply_patch;
  59. }
  60. #endif