1 // SPDX-License-Identifier: GPL-2.0
3 * SH7734 processor support - PFC hardware block
5 * Copyright (C) 2012 Renesas Solutions Corp.
6 * Copyright (C) 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/ioport.h>
14 static struct resource sh7734_pfc_resources
[] = {
18 .flags
= IORESOURCE_MEM
,
23 .flags
= IORESOURCE_MEM
,
27 static int __init
plat_pinmux_setup(void)
29 return sh_pfc_register("pfc-sh7734", sh7734_pfc_resources
,
30 ARRAY_SIZE(sh7734_pfc_resources
));
32 arch_initcall(plat_pinmux_setup
);