funcmux.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. /* Tegra114 high-level function multiplexing */
  17. #include <common.h>
  18. #include <asm/arch/clock.h>
  19. #include <asm/arch/funcmux.h>
  20. #include <asm/arch/pinmux.h>
  21. int funcmux_select(enum periph_id id, int config)
  22. {
  23. int bad_config = config != FUNCMUX_DEFAULT;
  24. switch (id) {
  25. case PERIPH_ID_UART4:
  26. switch (config) {
  27. case FUNCMUX_UART4_GMI:
  28. pinmux_set_func(PMUX_PINGRP_GMI_A16_PJ7,
  29. PMUX_FUNC_UARTD);
  30. pinmux_set_func(PMUX_PINGRP_GMI_A17_PB0,
  31. PMUX_FUNC_UARTD);
  32. pinmux_set_func(PMUX_PINGRP_GMI_A18_PB1,
  33. PMUX_FUNC_UARTD);
  34. pinmux_set_func(PMUX_PINGRP_GMI_A19_PK7,
  35. PMUX_FUNC_UARTD);
  36. pinmux_set_io(PMUX_PINGRP_GMI_A16_PJ7, PMUX_PIN_OUTPUT);
  37. pinmux_set_io(PMUX_PINGRP_GMI_A17_PB0, PMUX_PIN_INPUT);
  38. pinmux_set_io(PMUX_PINGRP_GMI_A18_PB1, PMUX_PIN_INPUT);
  39. pinmux_set_io(PMUX_PINGRP_GMI_A19_PK7, PMUX_PIN_OUTPUT);
  40. pinmux_tristate_disable(PMUX_PINGRP_GMI_A16_PJ7);
  41. pinmux_tristate_disable(PMUX_PINGRP_GMI_A17_PB0);
  42. pinmux_tristate_disable(PMUX_PINGRP_GMI_A18_PB1);
  43. pinmux_tristate_disable(PMUX_PINGRP_GMI_A19_PK7);
  44. break;
  45. }
  46. break;
  47. /* Add other periph IDs here as needed */
  48. default:
  49. debug("%s: invalid periph_id %d", __func__, id);
  50. return -1;
  51. }
  52. if (bad_config) {
  53. debug("%s: invalid config %d for periph_id %d", __func__,
  54. config, id);
  55. return -1;
  56. }
  57. return 0;
  58. }