]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/sh/kernel/cpu/sh4a/pinmux-sh7724.c
Merge branch 'akpm' (patches from Andrew)
[mirror_ubuntu-jammy-kernel.git] / arch / sh / kernel / cpu / sh4a / pinmux-sh7724.c
CommitLineData
add5ca2c 1// SPDX-License-Identifier: GPL-2.0
0207a2ef
KM
2/*
3 * SH7724 Pinmux
4 *
5 * Copyright (C) 2009 Renesas Solutions Corp.
6 *
7 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
8 *
9 * Based on SH7723 Pinmux
10 * Copyright (C) 2008 Magnus Damm
0207a2ef
KM
11 */
12
42954cff 13#include <linux/bug.h>
0207a2ef
KM
14#include <linux/init.h>
15#include <linux/kernel.h>
42954cff 16#include <linux/ioport.h>
18ebd228 17#include <cpu/pfc.h>
0207a2ef 18
42954cff
LP
19static struct resource sh7724_pfc_resources[] = {
20 [0] = {
21 .start = 0xa4050100,
22 .end = 0xa405016f,
23 .flags = IORESOURCE_MEM,
24 },
25};
26
0207a2ef
KM
27static int __init plat_pinmux_setup(void)
28{
42954cff
LP
29 return sh_pfc_register("pfc-sh7724", sh7724_pfc_resources,
30 ARRAY_SIZE(sh7724_pfc_resources));
0207a2ef
KM
31}
32arch_initcall(plat_pinmux_setup);