| 1 | // SPDX-License-Identifier: GPL-2.0 |
|---|---|
| 2 | /* |
| 3 | * Copyright (C) 2008 Paul Mundt |
| 4 | */ |
| 5 | #include <linux/init.h> |
| 6 | #include <linux/gpio.h> |
| 7 | #include <cpu/sh7785.h> |
| 8 | #include <mach/highlander.h> |
| 9 | |
| 10 | void __init highlander_plat_pinmux_setup(void) |
| 11 | { |
| 12 | /* SCIF0 */ |
| 13 | gpio_request(gpio: GPIO_FN_SCIF0_CTS, NULL); |
| 14 | gpio_request(gpio: GPIO_FN_SCIF0_RTS, NULL); |
| 15 | gpio_request(gpio: GPIO_FN_SCIF0_SCK, NULL); |
| 16 | gpio_request(gpio: GPIO_FN_SCIF0_RXD, NULL); |
| 17 | gpio_request(gpio: GPIO_FN_SCIF0_TXD, NULL); |
| 18 | } |
| 19 |
