aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boards/mach-highlander/pinmux-r7785rp.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/boards/mach-highlander/pinmux-r7785rp.c')
-rw-r--r--arch/sh/boards/mach-highlander/pinmux-r7785rp.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-highlander/pinmux-r7785rp.c b/arch/sh/boards/mach-highlander/pinmux-r7785rp.c
new file mode 100644
index 000000000000..c77a2bea8f2a
--- /dev/null
+++ b/arch/sh/boards/mach-highlander/pinmux-r7785rp.c
@@ -0,0 +1,20 @@
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
12void __init highlander_plat_pinmux_setup(void)
13{
14 /* SCIF0 */
15 gpio_request(GPIO_FN_SCIF0_CTS, NULL);
16 gpio_request(GPIO_FN_SCIF0_RTS, NULL);
17 gpio_request(GPIO_FN_SCIF0_SCK, NULL);
18 gpio_request(GPIO_FN_SCIF0_RXD, NULL);
19 gpio_request(GPIO_FN_SCIF0_TXD, NULL);
20}