Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / sh / kernel / cpu / sh4a / pinmux-sh7786.c
blob47e8639f3e71b123a0c256619ad9f3aa30a8a5a3
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * SH7786 Pinmux
5 * Copyright (C) 2008, 2009 Renesas Solutions Corp.
6 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
8 * Based on SH7785 pinmux
10 * Copyright (C) 2008 Magnus Damm
13 #include <linux/bug.h>
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/ioport.h>
17 #include <cpu/pfc.h>
19 static struct resource sh7786_pfc_resources[] = {
20 [0] = {
21 .start = 0xffcc0000,
22 .end = 0xffcc008f,
23 .flags = IORESOURCE_MEM,
27 static int __init plat_pinmux_setup(void)
29 return sh_pfc_register("pfc-sh7786", sh7786_pfc_resources,
30 ARRAY_SIZE(sh7786_pfc_resources));
32 arch_initcall(plat_pinmux_setup);