perf tools: Improve 'libbabel' feature check failure message
[linux/fpc-iii.git] / arch / sh / kernel / cpu / sh4a / pinmux-sh7734.c
blobea2db632a764fb4b6a1a39a72d7b2560b3a75bbc
1 /*
2 * SH7734 processor support - PFC hardware block
4 * Copyright (C) 2012 Renesas Solutions Corp.
5 * Copyright (C) 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
11 #include <linux/bug.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/ioport.h>
15 #include <cpu/pfc.h>
17 static struct resource sh7734_pfc_resources[] = {
18 [0] = { /* PFC */
19 .start = 0xFFFC0000,
20 .end = 0xFFFC011C,
21 .flags = IORESOURCE_MEM,
23 [1] = { /* GPIO */
24 .start = 0xFFC40000,
25 .end = 0xFFC4502B,
26 .flags = IORESOURCE_MEM,
30 static int __init plat_pinmux_setup(void)
32 return sh_pfc_register("pfc-sh7734", sh7734_pfc_resources,
33 ARRAY_SIZE(sh7734_pfc_resources));
35 arch_initcall(plat_pinmux_setup);