funcmux.h 431 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2010-2012, NVIDIA CORPORATION. All rights reserved.
  4. */
  5. /* Tegra30 high-level function multiplexing */
  6. #ifndef _TEGRA30_FUNCMUX_H_
  7. #define _TEGRA30_FUNCMUX_H_
  8. #include <asm/arch-tegra/funcmux.h>
  9. /* Configs supported by the func mux */
  10. enum {
  11. FUNCMUX_DEFAULT = 0, /* default config */
  12. /* UART configs */
  13. FUNCMUX_UART1_ULPI = 0,
  14. };
  15. #endif /* _TEGRA30_FUNCMUX_H_ */