pinmux.h 327 B

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