pinmux-r7785rp.c 553 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2008 Paul Mundt
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. */
  8. #include <linux/init.h>
  9. #include <linux/gpio.h>
  10. #include <cpu/sh7785.h>
  11. void __init highlander_plat_pinmux_setup(void)
  12. {
  13. /* SCIF0 */
  14. gpio_request(GPIO_FN_SCIF0_CTS, NULL);
  15. gpio_request(GPIO_FN_SCIF0_RTS, NULL);
  16. gpio_request(GPIO_FN_SCIF0_SCK, NULL);
  17. gpio_request(GPIO_FN_SCIF0_RXD, NULL);
  18. gpio_request(GPIO_FN_SCIF0_TXD, NULL);
  19. }