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