pinctrl-cs47l85.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Pinctrl for Cirrus Logic CS47L85
  4. *
  5. * Copyright (C) 2016-2017 Cirrus Logic
  6. */
  7. #include <linux/err.h>
  8. #include <linux/mfd/madera/core.h>
  9. #include "pinctrl-madera.h"
  10. /*
  11. * The alt func groups are the most commonly used functions we place these at
  12. * the lower function indexes for convenience, and the less commonly used gpio
  13. * functions at higher indexes.
  14. *
  15. * To stay consistent with the datasheet the function names are the same as
  16. * the group names for that function's pins
  17. *
  18. * Note - all 1 less than in datasheet because these are zero-indexed
  19. */
  20. static const unsigned int cs47l85_mif1_pins[] = { 8, 9 };
  21. static const unsigned int cs47l85_mif2_pins[] = { 10, 11 };
  22. static const unsigned int cs47l85_mif3_pins[] = { 12, 13 };
  23. static const unsigned int cs47l85_aif1_pins[] = { 14, 15, 16, 17 };
  24. static const unsigned int cs47l85_aif2_pins[] = { 18, 19, 20, 21 };
  25. static const unsigned int cs47l85_aif3_pins[] = { 22, 23, 24, 25 };
  26. static const unsigned int cs47l85_aif4_pins[] = { 26, 27, 28, 29 };
  27. static const unsigned int cs47l85_dmic4_pins[] = { 30, 31 };
  28. static const unsigned int cs47l85_dmic5_pins[] = { 32, 33 };
  29. static const unsigned int cs47l85_dmic6_pins[] = { 34, 35 };
  30. static const unsigned int cs47l85_spk1_pins[] = { 36, 38 };
  31. static const unsigned int cs47l85_spk2_pins[] = { 37, 39 };
  32. static const struct madera_pin_groups cs47l85_pin_groups[] = {
  33. { "aif1", cs47l85_aif1_pins, ARRAY_SIZE(cs47l85_aif1_pins) },
  34. { "aif2", cs47l85_aif2_pins, ARRAY_SIZE(cs47l85_aif2_pins) },
  35. { "aif3", cs47l85_aif3_pins, ARRAY_SIZE(cs47l85_aif3_pins) },
  36. { "aif4", cs47l85_aif4_pins, ARRAY_SIZE(cs47l85_aif4_pins) },
  37. { "mif1", cs47l85_mif1_pins, ARRAY_SIZE(cs47l85_mif1_pins) },
  38. { "mif2", cs47l85_mif2_pins, ARRAY_SIZE(cs47l85_mif2_pins) },
  39. { "mif3", cs47l85_mif3_pins, ARRAY_SIZE(cs47l85_mif3_pins) },
  40. { "dmic4", cs47l85_dmic4_pins, ARRAY_SIZE(cs47l85_dmic4_pins) },
  41. { "dmic5", cs47l85_dmic5_pins, ARRAY_SIZE(cs47l85_dmic5_pins) },
  42. { "dmic6", cs47l85_dmic6_pins, ARRAY_SIZE(cs47l85_dmic6_pins) },
  43. { "pdmspk1", cs47l85_spk1_pins, ARRAY_SIZE(cs47l85_spk1_pins) },
  44. { "pdmspk2", cs47l85_spk2_pins, ARRAY_SIZE(cs47l85_spk2_pins) },
  45. };
  46. const struct madera_pin_chip cs47l85_pin_chip = {
  47. .n_pins = CS47L85_NUM_GPIOS,
  48. .pin_groups = cs47l85_pin_groups,
  49. .n_pin_groups = ARRAY_SIZE(cs47l85_pin_groups),
  50. };