funcmux.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright (c) 2010-2012, 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. /* Tegra30 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_UART1:
  26. switch (config) {
  27. case FUNCMUX_UART1_ULPI:
  28. pinmux_set_func(PINGRP_ULPI_DATA0, PMUX_FUNC_UARTA);
  29. pinmux_set_func(PINGRP_ULPI_DATA1, PMUX_FUNC_UARTA);
  30. pinmux_set_func(PINGRP_ULPI_DATA2, PMUX_FUNC_UARTA);
  31. pinmux_set_func(PINGRP_ULPI_DATA3, PMUX_FUNC_UARTA);
  32. pinmux_tristate_disable(PINGRP_ULPI_DATA0);
  33. pinmux_tristate_disable(PINGRP_ULPI_DATA1);
  34. pinmux_tristate_disable(PINGRP_ULPI_DATA2);
  35. pinmux_tristate_disable(PINGRP_ULPI_DATA3);
  36. break;
  37. }
  38. break;
  39. /* Add other periph IDs here as needed */
  40. default:
  41. debug("%s: invalid periph_id %d", __func__, id);
  42. return -1;
  43. }
  44. if (bad_config) {
  45. debug("%s: invalid config %d for periph_id %d", __func__,
  46. config, id);
  47. return -1;
  48. }
  49. return 0;
  50. }