pinmux.h 327 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2016-2017 Intel Corporation <www.intel.com>
  4. */
  5. #ifndef _PINMUX_H_
  6. #define _PINMUX_H_
  7. #define PINMUX_UART 0xD
  8. #ifndef __ASSEMBLY__
  9. int config_dedicated_pins(const void *blob);
  10. int config_pins(const void *blob, const char *pin_grp);
  11. #endif
  12. #endif /* _PINMUX_H_ */