1 /*
2  * SH7269 Pinmux
3  *
4  * Copyright (C) 2012  Renesas Electronics Europe Ltd
5  * Copyright (C) 2012  Phil Edworthy
6  *
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.
10  */
11 
12 #include <linux/bug.h>
13 #include <linux/init.h>
14 #include <linux/ioport.h>
15 #include <linux/kernel.h>
16 #include <cpu/pfc.h>
17 
18 static struct resource sh7269_pfc_resources[] = {
19 	[0] = {
20 		.start	= 0xfffe3800,
21 		.end	= 0xfffe391f,
22 		.flags	= IORESOURCE_MEM,
23 	},
24 };
25 
26 static int __init plat_pinmux_setup(void)
27 {
28 	return sh_pfc_register("pfc-sh7269", sh7269_pfc_resources,
29 			       ARRAY_SIZE(sh7269_pfc_resources));
30 }
31 arch_initcall(plat_pinmux_setup);
32