161dc6eaeSPaul Mundt /*
261dc6eaeSPaul Mundt  * Copyright (C) 2008 Paul Mundt
361dc6eaeSPaul Mundt  *
461dc6eaeSPaul Mundt  * This file is subject to the terms and conditions of the GNU General Public
561dc6eaeSPaul Mundt  * License.  See the file "COPYING" in the main directory of this archive
661dc6eaeSPaul Mundt  * for more details.
761dc6eaeSPaul Mundt  */
861dc6eaeSPaul Mundt #include <linux/init.h>
961dc6eaeSPaul Mundt #include <linux/gpio.h>
1061dc6eaeSPaul Mundt #include <cpu/sh7785.h>
1161dc6eaeSPaul Mundt 
1261dc6eaeSPaul Mundt void __init highlander_plat_pinmux_setup(void)
1361dc6eaeSPaul Mundt {
1461dc6eaeSPaul Mundt 	/* SCIF0 */
1561dc6eaeSPaul Mundt 	gpio_request(GPIO_FN_SCIF0_CTS, NULL);
1661dc6eaeSPaul Mundt 	gpio_request(GPIO_FN_SCIF0_RTS, NULL);
1761dc6eaeSPaul Mundt 	gpio_request(GPIO_FN_SCIF0_SCK, NULL);
1861dc6eaeSPaul Mundt 	gpio_request(GPIO_FN_SCIF0_RXD, NULL);
1961dc6eaeSPaul Mundt 	gpio_request(GPIO_FN_SCIF0_TXD, NULL);
2061dc6eaeSPaul Mundt }
21