pinctrl-cs47l90.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Pinctrl for Cirrus Logic CS47L90
  4. *
  5. * Copyright (C) 2016-2017 Cirrus Logic
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by the
  9. * Free Software Foundation; version 2.
  10. */
  11. #include <linux/err.h>
  12. #include <linux/mfd/madera/core.h>
  13. #include "pinctrl-madera.h"
  14. /*
  15. * The alt func groups are the most commonly used functions we place these at
  16. * the lower function indexes for convenience, and the less commonly used gpio
  17. * functions at higher indexes.
  18. *
  19. * To stay consistent with the datasheet the function names are the same as
  20. * the group names for that function's pins
  21. *
  22. * Note - all 1 less than in datasheet because these are zero-indexed
  23. */
  24. static const unsigned int cs47l90_mif1_pins[] = { 8, 9 };
  25. static const unsigned int cs47l90_mif2_pins[] = { 10, 11 };
  26. static const unsigned int cs47l90_mif3_pins[] = { 12, 13 };
  27. static const unsigned int cs47l90_aif1_pins[] = { 14, 15, 16, 17 };
  28. static const unsigned int cs47l90_aif2_pins[] = { 18, 19, 20, 21 };
  29. static const unsigned int cs47l90_aif3_pins[] = { 22, 23, 24, 25 };
  30. static const unsigned int cs47l90_aif4_pins[] = { 26, 27, 28, 29 };
  31. static const unsigned int cs47l90_dmic4_pins[] = { 30, 31 };
  32. static const unsigned int cs47l90_dmic5_pins[] = { 32, 33 };
  33. static const unsigned int cs47l90_dmic3_pins[] = { 34, 35 };
  34. static const unsigned int cs47l90_spk1_pins[] = { 36, 37 };
  35. static const struct madera_pin_groups cs47l90_pin_groups[] = {
  36. { "aif1", cs47l90_aif1_pins, ARRAY_SIZE(cs47l90_aif1_pins) },
  37. { "aif2", cs47l90_aif2_pins, ARRAY_SIZE(cs47l90_aif2_pins) },
  38. { "aif3", cs47l90_aif3_pins, ARRAY_SIZE(cs47l90_aif3_pins) },
  39. { "aif4", cs47l90_aif4_pins, ARRAY_SIZE(cs47l90_aif4_pins) },
  40. { "mif1", cs47l90_mif1_pins, ARRAY_SIZE(cs47l90_mif1_pins) },
  41. { "mif2", cs47l90_mif2_pins, ARRAY_SIZE(cs47l90_mif2_pins) },
  42. { "mif3", cs47l90_mif3_pins, ARRAY_SIZE(cs47l90_mif3_pins) },
  43. { "dmic3", cs47l90_dmic3_pins, ARRAY_SIZE(cs47l90_dmic3_pins) },
  44. { "dmic4", cs47l90_dmic4_pins, ARRAY_SIZE(cs47l90_dmic4_pins) },
  45. { "dmic5", cs47l90_dmic5_pins, ARRAY_SIZE(cs47l90_dmic5_pins) },
  46. { "pdmspk1", cs47l90_spk1_pins, ARRAY_SIZE(cs47l90_spk1_pins) },
  47. };
  48. const struct madera_pin_chip cs47l90_pin_chip = {
  49. .n_pins = CS47L90_NUM_GPIOS,
  50. .pin_groups = cs47l90_pin_groups,
  51. .n_pin_groups = ARRAY_SIZE(cs47l90_pin_groups),
  52. };